diff --git a/grammar.js b/grammar.js index 3bf7c8f..03ef5db 100644 --- a/grammar.js +++ b/grammar.js @@ -394,12 +394,13 @@ module.exports = grammar(C, { ), ), - template_instantiation: $ => seq( + template_instantiation: $ => prec(1, seq( + optional('extern'), 'template', optional($._declaration_specifiers), field('declarator', $._declarator), ';', - ), + )), template_parameter_list: $ => seq( '<', diff --git a/src/grammar.json b/src/grammar.json index 62c8586..e6618d6 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -11997,37 +11997,53 @@ ] }, "template_instantiation": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "template" - }, - { - "type": "CHOICE", - "members": [ - { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "extern" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "template" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_declaration_specifiers" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "declarator", + "content": { "type": "SYMBOL", - "name": "_declaration_specifiers" - }, - { - "type": "BLANK" + "name": "_declarator" } - ] - }, - { - "type": "FIELD", - "name": "declarator", - "content": { - "type": "SYMBOL", - "name": "_declarator" + }, + { + "type": "STRING", + "value": ";" } - }, - { - "type": "STRING", - "value": ";" - } - ] + ] + } }, "template_parameter_list": { "type": "SEQ", diff --git a/src/parser.c b/src/parser.c index 6529d78..d9b58ad 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,8 +15,8 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8971 -#define LARGE_STATE_COUNT 2397 +#define STATE_COUNT 8995 +#define LARGE_STATE_COUNT 2409 #define SYMBOL_COUNT 552 #define ALIAS_COUNT 5 #define TOKEN_COUNT 222 @@ -24,7 +24,7 @@ #define FIELD_COUNT 53 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 -#define PRODUCTION_ID_COUNT 231 +#define PRODUCTION_ID_COUNT 232 #define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { @@ -4187,97 +4187,98 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [136] = {.index = 212, .length = 2}, [137] = {.index = 214, .length = 2}, [138] = {.index = 216, .length = 2}, - [139] = {.index = 218, .length = 3}, - [140] = {.index = 221, .length = 3}, - [141] = {.index = 224, .length = 3}, - [142] = {.index = 227, .length = 2}, + [139] = {.index = 218, .length = 2}, + [140] = {.index = 220, .length = 3}, + [141] = {.index = 223, .length = 3}, + [142] = {.index = 226, .length = 3}, [143] = {.index = 229, .length = 2}, [144] = {.index = 231, .length = 2}, - [145] = {.index = 231, .length = 2}, + [145] = {.index = 233, .length = 2}, [146] = {.index = 233, .length = 2}, - [147] = {.index = 233, .length = 2}, + [147] = {.index = 235, .length = 2}, [148] = {.index = 235, .length = 2}, - [149] = {.index = 237, .length = 3}, - [150] = {.index = 240, .length = 2}, + [149] = {.index = 237, .length = 2}, + [150] = {.index = 239, .length = 3}, [151] = {.index = 242, .length = 2}, - [152] = {.index = 244, .length = 3}, - [153] = {.index = 247, .length = 2}, - [154] = {.index = 249, .length = 3}, - [155] = {.index = 252, .length = 2}, - [156] = {.index = 254, .length = 1}, - [157] = {.index = 255, .length = 2}, + [152] = {.index = 244, .length = 2}, + [153] = {.index = 246, .length = 3}, + [154] = {.index = 249, .length = 2}, + [155] = {.index = 251, .length = 3}, + [156] = {.index = 254, .length = 2}, + [157] = {.index = 256, .length = 1}, [158] = {.index = 257, .length = 2}, - [159] = {.index = 259, .length = 4}, - [160] = {.index = 263, .length = 5}, - [161] = {.index = 268, .length = 1}, - [162] = {.index = 269, .length = 1}, - [163] = {.index = 270, .length = 2}, - [164] = {.index = 272, .length = 1}, - [165] = {.index = 273, .length = 2}, - [167] = {.index = 275, .length = 1}, - [168] = {.index = 276, .length = 2}, + [159] = {.index = 259, .length = 2}, + [160] = {.index = 261, .length = 4}, + [161] = {.index = 265, .length = 5}, + [162] = {.index = 270, .length = 1}, + [163] = {.index = 271, .length = 1}, + [164] = {.index = 272, .length = 2}, + [165] = {.index = 274, .length = 1}, + [166] = {.index = 275, .length = 2}, + [168] = {.index = 277, .length = 1}, [169] = {.index = 278, .length = 2}, - [170] = {.index = 11, .length = 1}, + [170] = {.index = 280, .length = 2}, [171] = {.index = 11, .length = 1}, - [172] = {.index = 280, .length = 1}, - [173] = {.index = 281, .length = 1}, - [174] = {.index = 282, .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}, + [172] = {.index = 11, .length = 1}, + [173] = {.index = 282, .length = 1}, + [174] = {.index = 283, .length = 1}, + [175] = {.index = 284, .length = 4}, + [176] = {.index = 288, .length = 4}, + [177] = {.index = 292, .length = 4}, + [178] = {.index = 296, .length = 2}, + [179] = {.index = 298, .length = 1}, + [180] = {.index = 299, .length = 3}, + [181] = {.index = 302, .length = 2}, + [182] = {.index = 304, .length = 3}, + [183] = {.index = 307, .length = 5}, [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}, + [185] = {.index = 314, .length = 2}, + [186] = {.index = 316, .length = 1}, + [187] = {.index = 317, .length = 2}, + [188] = {.index = 319, .length = 4}, [189] = {.index = 323, .length = 2}, - [190] = {.index = 325, .length = 3}, - [191] = {.index = 328, .length = 4}, - [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}, + [190] = {.index = 325, .length = 2}, + [191] = {.index = 327, .length = 3}, + [192] = {.index = 330, .length = 4}, + [193] = {.index = 334, .length = 4}, + [194] = {.index = 338, .length = 3}, + [195] = {.index = 341, .length = 2}, + [196] = {.index = 343, .length = 3}, + [197] = {.index = 346, .length = 3}, [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}, + [201] = {.index = 355, .length = 2}, + [202] = {.index = 357, .length = 3}, [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}, + [204] = {.index = 362, .length = 2}, + [205] = {.index = 364, .length = 3}, + [206] = {.index = 367, .length = 5}, + [207] = {.index = 372, .length = 3}, + [208] = {.index = 375, .length = 3}, [209] = {.index = 378, .length = 2}, - [210] = {.index = 380, .length = 4}, - [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}, + [210] = {.index = 380, .length = 2}, + [211] = {.index = 382, .length = 4}, + [212] = {.index = 386, .length = 5}, + [213] = {.index = 391, .length = 3}, + [214] = {.index = 394, .length = 4}, + [215] = {.index = 398, .length = 2}, + [216] = {.index = 400, .length = 1}, + [217] = {.index = 401, .length = 4}, + [218] = {.index = 405, .length = 3}, + [219] = {.index = 408, .length = 2}, + [220] = {.index = 410, .length = 1}, + [221] = {.index = 411, .length = 5}, [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}, + [223] = {.index = 418, .length = 2}, + [224] = {.index = 65, .length = 1}, + [225] = {.index = 420, .length = 5}, + [226] = {.index = 425, .length = 4}, [227] = {.index = 429, .length = 2}, - [228] = {.index = 431, .length = 5}, - [229] = {.index = 436, .length = 2}, - [230] = {.index = 438, .length = 3}, + [228] = {.index = 431, .length = 2}, + [229] = {.index = 433, .length = 5}, + [230] = {.index = 438, .length = 2}, + [231] = {.index = 440, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4614,314 +4615,317 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, [216] = + {field_declarator, 3}, + {field_type, 2, .inherited = true}, + [218] = {field_name, 1}, {field_type, 3}, - [218] = + [220] = {field_arguments, 4}, {field_declarator, 3}, {field_type, 2}, - [221] = + [223] = {field_arguments, 4}, {field_placement, 2}, {field_type, 3}, - [224] = + [226] = {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [227] = + [229] = {field_name, 3}, {field_namespace, 1}, - [229] = + [231] = {field_left, 1}, {field_right, 3}, - [231] = + [233] = {field_body, 4}, {field_name, 3}, - [233] = + [235] = {field_designator, 0}, {field_value, 2}, - [235] = + [237] = {field_name, 0}, {field_value, 2}, - [237] = + [239] = {field_base, 3, .inherited = true}, {field_body, 4}, {field_name, 2}, - [240] = + [242] = {field_body, 3}, {field_name, 0}, - [242] = + [244] = {field_body, 3, .inherited = true}, {field_name, 3, .inherited = true}, - [244] = + [246] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 2}, - [247] = + [249] = {field_initializer, 1}, {field_value, 2}, - [249] = + [251] = {field_alternative, 4}, {field_condition, 2}, {field_consequence, 3}, - [252] = + [254] = {field_body, 1}, {field_condition, 3}, - [254] = + [256] = {field_update, 2}, - [255] = + [257] = {field_initializer, 0}, {field_update, 2}, - [257] = + [259] = {field_condition, 1}, {field_initializer, 0}, - [259] = + [261] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [263] = + [265] = {field_body, 4}, {field_declarator, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_right, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [268] = + [270] = {field_value, 3}, - [269] = + [271] = {field_operand, 1}, - [270] = + [272] = {field_assembly_code, 2}, {field_output_operands, 3}, - [272] = + [274] = {field_assembly_code, 3}, - [273] = + [275] = {field_name, 2}, {field_partition, 3}, - [275] = + [277] = {field_default_type, 2}, - [276] = + [278] = {field_default_value, 2}, {field_type, 0, .inherited = true}, - [278] = + [280] = {field_body, 2}, {field_parameters, 1}, - [280] = + [282] = {field_condition, 2}, - [281] = + [283] = {field_length, 1}, - [282] = + [284] = {field_arguments, 4}, {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [286] = + [288] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_type, 0, .inherited = true}, - [290] = + [292] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [294] = + [296] = {field_declarator, 1}, {field_declarator, 2}, - [296] = + [298] = {field_declarator, 4}, - [297] = + [299] = {field_body, 4}, {field_declarator, 3}, {field_type, 1, .inherited = true}, - [300] = + [302] = {field_declarator, 0}, {field_size, 3}, - [302] = + [304] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [305] = + [307] = {field_body, 4}, {field_captures, 0}, {field_constraint, 2}, {field_declarator, 3}, {field_template_parameters, 1}, - [310] = + [312] = {field_declarator, 1}, {field_default_value, 3}, - [312] = + [314] = {field_alternative, 4}, {field_condition, 1}, - [314] = + [316] = {field_size, 2}, - [315] = + [317] = {field_name, 1}, {field_type, 4}, - [317] = + [319] = {field_arguments, 5}, {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [321] = + [323] = {field_body, 2}, {field_filter, 1}, - [323] = + [325] = {field_left, 2}, {field_right, 4}, - [325] = + [327] = {field_declarator, 1}, {field_default_value, 2}, {field_type, 0, .inherited = true}, - [328] = + [330] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_default_value, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [332] = + [334] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, {field_default_value, 0, .inherited = true}, {field_default_value, 1, .inherited = true}, - [336] = + [338] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 3}, - [339] = + [341] = {field_condition, 1}, {field_update, 3}, - [341] = + [343] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [344] = + [346] = {field_declarator, 1}, {field_right, 3}, {field_type, 0, .inherited = true}, - [347] = + [349] = {field_initializer, 0}, {field_update, 3}, - [349] = + [351] = {field_condition, 2}, {field_initializer, 0}, - [351] = + [353] = {field_member, 4}, {field_type, 2}, - [353] = + [355] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [355] = + [357] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [358] = + [360] = {field_assembly_code, 3}, {field_output_operands, 4}, - [360] = + [362] = {field_default_type, 3}, {field_name, 1}, - [362] = + [364] = {field_declarator, 1}, {field_default_value, 3}, {field_type, 0, .inherited = true}, - [365] = + [367] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [370] = + [372] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, - [373] = + [375] = {field_name, 5}, {field_namespace, 1}, {field_prefix, 3}, - [376] = + [378] = {field_end, 3}, {field_start, 1}, - [378] = + [380] = {field_declarator, 1}, {field_default_value, 2}, - [380] = + [382] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [384] = + [386] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 2}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [389] = + [391] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [392] = + [394] = {field_declarator, 2}, {field_initializer, 0}, {field_right, 4}, {field_type, 1, .inherited = true}, - [396] = + [398] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [398] = + [400] = {field_register, 1}, - [399] = + [401] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [403] = + [405] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [406] = + [408] = {field_condition, 2}, {field_message, 4}, - [408] = + [410] = {field_delimiter, 1}, - [409] = + [411] = {field_declarator, 1}, {field_declarator, 4, .inherited = true}, {field_default_value, 3}, {field_default_value, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [414] = + [416] = {field_constraint, 0}, {field_value, 2}, - [416] = + [418] = {field_register, 1}, {field_register, 2, .inherited = true}, - [418] = + [420] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [423] = + [425] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [427] = + [429] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [429] = + [431] = {field_label, 1}, {field_label, 2, .inherited = true}, - [431] = + [433] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [436] = + [438] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [438] = + [440] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -4998,32 +5002,32 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [125] = { [1] = alias_sym_field_identifier, }, - [138] = { + [139] = { [1] = alias_sym_type_identifier, }, - [144] = { + [145] = { [3] = alias_sym_namespace_identifier, }, - [146] = { + [147] = { [0] = alias_sym_field_identifier, }, - [166] = { + [167] = { [2] = alias_sym_type_identifier, }, - [170] = { + [171] = { [1] = alias_sym_namespace_identifier, [3] = alias_sym_namespace_identifier, }, - [171] = { + [172] = { [1] = alias_sym_namespace_identifier, }, - [186] = { + [187] = { [1] = alias_sym_type_identifier, }, - [199] = { + [200] = { [4] = alias_sym_field_identifier, }, - [203] = { + [204] = { [1] = alias_sym_type_identifier, }, }; @@ -5054,108 +5058,108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [12] = 2, [13] = 13, [14] = 14, - [15] = 15, + [15] = 14, [16] = 16, - [17] = 17, - [18] = 18, + [17] = 16, + [18] = 13, [19] = 19, - [20] = 20, - [21] = 14, + [20] = 14, + [21] = 16, [22] = 13, - [23] = 15, - [24] = 18, - [25] = 14, - [26] = 13, - [27] = 15, - [28] = 18, - [29] = 14, - [30] = 13, - [31] = 15, - [32] = 18, + [23] = 19, + [24] = 14, + [25] = 16, + [26] = 19, + [27] = 13, + [28] = 28, + [29] = 29, + [30] = 30, + [31] = 31, + [32] = 19, [33] = 33, [34] = 34, [35] = 35, [36] = 36, [37] = 37, [38] = 33, - [39] = 39, + [39] = 37, [40] = 36, [41] = 41, - [42] = 42, - [43] = 36, - [44] = 44, - [45] = 39, + [42] = 37, + [43] = 43, + [44] = 33, + [45] = 45, [46] = 36, - [47] = 41, - [48] = 44, + [47] = 37, + [48] = 43, [49] = 49, - [50] = 39, - [51] = 36, - [52] = 41, - [53] = 33, - [54] = 36, - [55] = 39, + [50] = 45, + [51] = 45, + [52] = 36, + [53] = 37, + [54] = 43, + [55] = 55, [56] = 36, - [57] = 39, - [58] = 36, - [59] = 39, + [57] = 36, + [58] = 37, + [59] = 59, [60] = 36, - [61] = 61, - [62] = 39, + [61] = 37, + [62] = 43, [63] = 36, - [64] = 41, - [65] = 39, - [66] = 36, - [67] = 39, - [68] = 36, - [69] = 44, - [70] = 39, + [64] = 37, + [65] = 36, + [66] = 37, + [67] = 36, + [68] = 37, + [69] = 36, + [70] = 37, [71] = 36, - [72] = 72, - [73] = 39, + [72] = 37, + [73] = 73, [74] = 36, - [75] = 39, + [75] = 37, [76] = 36, - [77] = 39, + [77] = 37, [78] = 36, - [79] = 39, - [80] = 39, - [81] = 39, + [79] = 37, + [80] = 36, + [81] = 37, [82] = 36, - [83] = 39, - [84] = 44, + [83] = 37, + [84] = 45, [85] = 85, [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 86, - [91] = 89, - [92] = 88, - [93] = 85, - [94] = 87, - [95] = 86, - [96] = 85, - [97] = 87, - [98] = 89, - [99] = 88, - [100] = 85, - [101] = 86, - [102] = 88, - [103] = 87, + [90] = 87, + [91] = 88, + [92] = 85, + [93] = 89, + [94] = 86, + [95] = 85, + [96] = 86, + [97] = 88, + [98] = 88, + [99] = 89, + [100] = 86, + [101] = 87, + [102] = 87, + [103] = 85, [104] = 89, [105] = 105, - [106] = 88, - [107] = 107, - [108] = 85, - [109] = 107, - [110] = 107, - [111] = 86, - [112] = 107, + [106] = 106, + [107] = 106, + [108] = 89, + [109] = 86, + [110] = 106, + [111] = 85, + [112] = 106, [113] = 87, - [114] = 89, - [115] = 107, - [116] = 107, + [114] = 106, + [115] = 88, + [116] = 106, [117] = 117, [118] = 117, [119] = 117, @@ -5167,30 +5171,30 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [125] = 123, [126] = 123, [127] = 127, - [128] = 128, - [129] = 128, - [130] = 128, - [131] = 128, - [132] = 128, - [133] = 128, + [128] = 127, + [129] = 127, + [130] = 127, + [131] = 127, + [132] = 132, + [133] = 127, [134] = 134, [135] = 135, [136] = 136, [137] = 137, [138] = 137, [139] = 139, - [140] = 140, - [141] = 139, + [140] = 139, + [141] = 141, [142] = 142, [143] = 142, [144] = 144, - [145] = 140, + [145] = 141, [146] = 144, [147] = 139, [148] = 142, - [149] = 140, + [149] = 141, [150] = 144, - [151] = 142, + [151] = 141, [152] = 142, [153] = 139, [154] = 142, @@ -5209,78 +5213,78 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [167] = 142, [168] = 139, [169] = 142, - [170] = 140, - [171] = 139, + [170] = 139, + [171] = 142, [172] = 142, [173] = 139, [174] = 174, [175] = 175, - [176] = 175, - [177] = 177, + [176] = 176, + [177] = 174, [178] = 178, - [179] = 177, + [179] = 178, [180] = 174, - [181] = 181, + [181] = 175, [182] = 182, - [183] = 183, - [184] = 181, - [185] = 178, - [186] = 175, - [187] = 177, - [188] = 178, - [189] = 175, - [190] = 177, - [191] = 174, - [192] = 140, - [193] = 174, - [194] = 181, + [183] = 182, + [184] = 184, + [185] = 185, + [186] = 178, + [187] = 176, + [188] = 188, + [189] = 174, + [190] = 178, + [191] = 176, + [192] = 174, + [193] = 141, + [194] = 175, [195] = 182, - [196] = 183, - [197] = 178, - [198] = 175, - [199] = 181, - [200] = 182, - [201] = 201, - [202] = 183, - [203] = 201, - [204] = 182, - [205] = 175, - [206] = 174, - [207] = 183, + [196] = 184, + [197] = 185, + [198] = 176, + [199] = 176, + [200] = 184, + [201] = 185, + [202] = 188, + [203] = 184, + [204] = 185, + [205] = 176, + [206] = 175, + [207] = 175, [208] = 137, - [209] = 181, - [210] = 182, - [211] = 183, - [212] = 177, + [209] = 182, + [210] = 184, + [211] = 185, + [212] = 174, [213] = 178, - [214] = 178, - [215] = 201, - [216] = 140, - [217] = 174, - [218] = 181, + [214] = 185, + [215] = 178, + [216] = 188, + [217] = 141, + [218] = 175, [219] = 182, - [220] = 201, - [221] = 183, - [222] = 201, - [223] = 177, - [224] = 224, - [225] = 137, - [226] = 226, - [227] = 137, - [228] = 228, + [220] = 188, + [221] = 184, + [222] = 188, + [223] = 182, + [224] = 137, + [225] = 225, + [226] = 137, + [227] = 227, + [228] = 225, [229] = 229, [230] = 230, - [231] = 226, - [232] = 224, - [233] = 228, - [234] = 228, - [235] = 228, + [231] = 231, + [232] = 229, + [233] = 229, + [234] = 227, + [235] = 229, [236] = 236, [237] = 237, - [238] = 238, - [239] = 137, - [240] = 135, - [241] = 136, + [238] = 137, + [239] = 135, + [240] = 136, + [241] = 241, [242] = 242, [243] = 243, [244] = 244, @@ -5303,20 +5307,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [261] = 261, [262] = 262, [263] = 263, - [264] = 236, + [264] = 241, [265] = 265, [266] = 266, [267] = 267, [268] = 268, [269] = 269, - [270] = 270, + [270] = 237, [271] = 271, [272] = 272, [273] = 273, - [274] = 237, + [274] = 274, [275] = 275, [276] = 276, - [277] = 238, + [277] = 236, [278] = 278, [279] = 279, [280] = 280, @@ -5339,14 +5343,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [297] = 297, [298] = 298, [299] = 299, - [300] = 273, + [300] = 269, [301] = 301, - [302] = 279, - [303] = 282, - [304] = 285, + [302] = 271, + [303] = 278, + [304] = 280, [305] = 305, [306] = 306, - [307] = 251, + [307] = 283, [308] = 308, [309] = 309, [310] = 310, @@ -5365,14 +5369,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [323] = 323, [324] = 324, [325] = 325, - [326] = 280, + [326] = 326, [327] = 327, [328] = 328, [329] = 329, [330] = 330, [331] = 331, - [332] = 262, - [333] = 333, + [332] = 332, + [333] = 285, [334] = 334, [335] = 335, [336] = 336, @@ -5387,796 +5391,796 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [345] = 345, [346] = 346, [347] = 347, - [348] = 259, - [349] = 283, - [350] = 258, - [351] = 351, - [352] = 352, + [348] = 348, + [349] = 259, + [350] = 256, + [351] = 248, + [352] = 261, [353] = 353, [354] = 354, - [355] = 278, + [355] = 355, [356] = 356, [357] = 357, [358] = 358, [359] = 359, - [360] = 360, + [360] = 268, [361] = 361, [362] = 362, [363] = 363, - [364] = 226, + [364] = 364, [365] = 365, - [366] = 366, - [367] = 224, + [366] = 227, + [367] = 367, [368] = 368, - [369] = 369, + [369] = 225, [370] = 370, [371] = 371, - [372] = 270, - [373] = 271, - [374] = 275, - [375] = 276, - [376] = 229, - [377] = 377, - [378] = 281, - [379] = 284, - [380] = 380, - [381] = 381, - [382] = 380, - [383] = 381, + [372] = 372, + [373] = 373, + [374] = 257, + [375] = 267, + [376] = 274, + [377] = 275, + [378] = 231, + [379] = 379, + [380] = 279, + [381] = 348, + [382] = 382, + [383] = 382, [384] = 384, - [385] = 244, - [386] = 245, - [387] = 246, - [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, + [385] = 385, + [386] = 384, + [387] = 243, + [388] = 244, + [389] = 245, + [390] = 246, + [391] = 247, + [392] = 379, + [393] = 249, + [394] = 250, + [395] = 251, + [396] = 230, + [397] = 348, + [398] = 253, + [399] = 382, + [400] = 384, + [401] = 385, + [402] = 385, + [403] = 403, + [404] = 255, [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] = 229, + [407] = 407, + [408] = 379, + [409] = 263, + [410] = 242, + [411] = 379, + [412] = 379, + [413] = 276, + [414] = 252, + [415] = 379, + [416] = 272, + [417] = 282, + [418] = 379, + [419] = 227, + [420] = 379, + [421] = 379, + [422] = 379, + [423] = 273, + [424] = 379, + [425] = 379, + [426] = 379, + [427] = 258, + [428] = 428, + [429] = 379, + [430] = 430, + [431] = 260, + [432] = 379, + [433] = 225, + [434] = 379, + [435] = 379, + [436] = 284, + [437] = 254, + [438] = 438, + [439] = 286, + [440] = 265, + [441] = 441, + [442] = 262, + [443] = 281, + [444] = 444, + [445] = 444, + [446] = 229, + [447] = 438, + [448] = 229, + [449] = 297, + [450] = 231, [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] = 317, - [509] = 509, - [510] = 510, - [511] = 253, - [512] = 512, - [513] = 260, - [514] = 514, + [452] = 231, + [453] = 229, + [454] = 230, + [455] = 455, + [456] = 229, + [457] = 266, + [458] = 229, + [459] = 229, + [460] = 460, + [461] = 236, + [462] = 462, + [463] = 462, + [464] = 462, + [465] = 462, + [466] = 462, + [467] = 462, + [468] = 462, + [469] = 462, + [470] = 462, + [471] = 462, + [472] = 237, + [473] = 241, + [474] = 460, + [475] = 135, + [476] = 241, + [477] = 136, + [478] = 135, + [479] = 462, + [480] = 136, + [481] = 237, + [482] = 462, + [483] = 236, + [484] = 250, + [485] = 334, + [486] = 322, + [487] = 335, + [488] = 336, + [489] = 337, + [490] = 338, + [491] = 290, + [492] = 339, + [493] = 340, + [494] = 341, + [495] = 342, + [496] = 294, + [497] = 343, + [498] = 295, + [499] = 499, + [500] = 287, + [501] = 501, + [502] = 311, + [503] = 344, + [504] = 345, + [505] = 323, + [506] = 284, + [507] = 324, + [508] = 346, + [509] = 347, + [510] = 263, + [511] = 511, + [512] = 312, + [513] = 308, + [514] = 305, [515] = 515, [516] = 516, - [517] = 517, + [517] = 289, [518] = 518, - [519] = 519, + [519] = 242, [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, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 298, + [527] = 353, + [528] = 354, + [529] = 355, + [530] = 356, + [531] = 531, + [532] = 532, + [533] = 259, + [534] = 261, + [535] = 358, + [536] = 359, + [537] = 268, + [538] = 361, [539] = 362, - [540] = 255, - [541] = 541, - [542] = 313, - [543] = 249, - [544] = 544, - [545] = 545, - [546] = 546, - [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] = 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, + [540] = 363, + [541] = 299, + [542] = 272, + [543] = 262, + [544] = 364, + [545] = 254, + [546] = 256, + [547] = 276, + [548] = 548, + [549] = 317, + [550] = 282, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 258, + [555] = 365, + [556] = 260, + [557] = 286, + [558] = 265, + [559] = 309, + [560] = 269, + [561] = 271, + [562] = 441, + [563] = 278, + [564] = 276, + [565] = 252, + [566] = 242, + [567] = 259, + [568] = 261, + [569] = 268, + [570] = 570, + [571] = 272, + [572] = 262, + [573] = 256, + [574] = 301, + [575] = 575, + [576] = 273, + [577] = 313, + [578] = 266, + [579] = 579, + [580] = 580, + [581] = 318, + [582] = 248, + [583] = 282, + [584] = 584, + [585] = 585, + [586] = 258, + [587] = 260, + [588] = 314, + [589] = 286, + [590] = 265, + [591] = 284, + [592] = 269, + [593] = 273, + [594] = 271, + [595] = 278, + [596] = 280, + [597] = 325, + [598] = 283, + [599] = 285, + [600] = 266, + [601] = 243, + [602] = 244, + [603] = 367, + [604] = 368, + [605] = 245, + [606] = 606, + [607] = 246, + [608] = 247, + [609] = 315, + [610] = 248, + [611] = 288, + [612] = 328, + [613] = 254, + [614] = 310, + [615] = 326, + [616] = 319, + [617] = 329, + [618] = 296, + [619] = 330, + [620] = 257, + [621] = 280, + [622] = 267, + [623] = 274, + [624] = 283, + [625] = 275, + [626] = 320, + [627] = 331, + [628] = 279, + [629] = 281, + [630] = 332, + [631] = 370, + [632] = 371, + [633] = 257, + [634] = 243, + [635] = 244, + [636] = 245, + [637] = 267, + [638] = 274, + [639] = 275, + [640] = 327, + [641] = 249, + [642] = 250, + [643] = 251, + [644] = 291, + [645] = 255, + [646] = 246, + [647] = 247, + [648] = 292, + [649] = 263, + [650] = 249, [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, + [652] = 251, + [653] = 252, + [654] = 253, + [655] = 266, + [656] = 372, + [657] = 293, + [658] = 255, + [659] = 373, + [660] = 660, + [661] = 316, + [662] = 285, + [663] = 279, + [664] = 281, + [665] = 665, + [666] = 253, [667] = 321, - [668] = 305, - [669] = 322, - [670] = 308, - [671] = 309, - [672] = 310, - [673] = 311, - [674] = 320, + [668] = 306, + [669] = 669, + [670] = 363, + [671] = 315, + [672] = 316, + [673] = 317, + [674] = 318, [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] = 362, - [765] = 319, - [766] = 363, - [767] = 437, - [768] = 439, - [769] = 288, - [770] = 365, - [771] = 366, - [772] = 289, - [773] = 290, - [774] = 291, - [775] = 292, - [776] = 293, - [777] = 294, - [778] = 295, - [779] = 296, - [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, + [676] = 324, + [677] = 328, + [678] = 329, + [679] = 329, + [680] = 330, + [681] = 314, + [682] = 337, + [683] = 338, + [684] = 339, + [685] = 340, + [686] = 341, + [687] = 355, + [688] = 331, + [689] = 332, + [690] = 361, + [691] = 362, + [692] = 367, + [693] = 365, + [694] = 368, + [695] = 334, + [696] = 367, + [697] = 368, + [698] = 335, + [699] = 370, + [700] = 371, + [701] = 372, + [702] = 373, + [703] = 336, + [704] = 337, + [705] = 338, + [706] = 339, + [707] = 345, + [708] = 340, + [709] = 364, + [710] = 341, + [711] = 342, + [712] = 343, + [713] = 287, + [714] = 344, + [715] = 345, + [716] = 346, + [717] = 347, + [718] = 288, + [719] = 289, + [720] = 290, + [721] = 291, + [722] = 292, + [723] = 293, + [724] = 353, + [725] = 354, + [726] = 355, + [727] = 356, + [728] = 441, + [729] = 370, + [730] = 371, + [731] = 294, + [732] = 358, + [733] = 359, + [734] = 295, + [735] = 361, + [736] = 362, + [737] = 363, + [738] = 296, + [739] = 364, + [740] = 297, + [741] = 298, + [742] = 299, + [743] = 365, + [744] = 301, + [745] = 372, + [746] = 373, + [747] = 441, + [748] = 305, + [749] = 306, + [750] = 288, + [751] = 291, + [752] = 294, + [753] = 296, + [754] = 298, + [755] = 308, + [756] = 301, + [757] = 309, + [758] = 310, + [759] = 311, + [760] = 305, + [761] = 312, + [762] = 308, + [763] = 309, + [764] = 310, + [765] = 313, + [766] = 314, + [767] = 311, + [768] = 312, + [769] = 320, + [770] = 321, + [771] = 322, + [772] = 323, + [773] = 315, + [774] = 316, + [775] = 325, + [776] = 326, + [777] = 327, + [778] = 317, + [779] = 318, + [780] = 319, + [781] = 320, + [782] = 321, + [783] = 322, + [784] = 328, + [785] = 330, + [786] = 331, + [787] = 332, + [788] = 334, + [789] = 335, + [790] = 342, + [791] = 343, + [792] = 287, + [793] = 344, + [794] = 346, + [795] = 347, + [796] = 323, + [797] = 324, + [798] = 325, + [799] = 326, + [800] = 327, + [801] = 353, + [802] = 354, + [803] = 356, + [804] = 358, + [805] = 359, + [806] = 313, + [807] = 438, + [808] = 289, + [809] = 290, + [810] = 292, + [811] = 293, + [812] = 295, + [813] = 297, + [814] = 299, + [815] = 438, + [816] = 306, + [817] = 336, + [818] = 137, + [819] = 819, + [820] = 820, + [821] = 819, + [822] = 819, + [823] = 819, + [824] = 820, + [825] = 819, + [826] = 820, + [827] = 820, + [828] = 819, + [829] = 820, + [830] = 819, + [831] = 820, + [832] = 819, + [833] = 820, + [834] = 606, + [835] = 820, + [836] = 819, + [837] = 820, + [838] = 606, + [839] = 820, [840] = 840, [841] = 841, - [842] = 841, - [843] = 843, - [844] = 476, - [845] = 476, - [846] = 846, - [847] = 476, + [842] = 819, + [843] = 137, + [844] = 137, + [845] = 137, + [846] = 137, + [847] = 137, [848] = 848, - [849] = 848, - [850] = 848, - [851] = 848, - [852] = 848, - [853] = 848, - [854] = 848, - [855] = 855, + [849] = 849, + [850] = 849, + [851] = 460, + [852] = 460, + [853] = 853, + [854] = 854, + [855] = 460, [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 855, - [861] = 857, - [862] = 862, + [857] = 856, + [858] = 856, + [859] = 856, + [860] = 856, + [861] = 856, + [862] = 856, [863] = 863, [864] = 864, - [865] = 856, - [866] = 855, - [867] = 857, - [868] = 863, - [869] = 857, - [870] = 863, - [871] = 855, + [865] = 865, + [866] = 863, + [867] = 863, + [868] = 868, + [869] = 869, + [870] = 870, + [871] = 871, [872] = 872, - [873] = 855, - [874] = 863, - [875] = 875, - [876] = 855, - [877] = 858, - [878] = 878, - [879] = 872, - [880] = 880, + [873] = 872, + [874] = 874, + [875] = 863, + [876] = 876, + [877] = 877, + [878] = 863, + [879] = 874, + [880] = 863, [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, + [882] = 882, + [883] = 863, + [884] = 869, + [885] = 877, + [886] = 868, + [887] = 877, + [888] = 872, + [889] = 871, + [890] = 872, + [891] = 877, + [892] = 227, + [893] = 893, + [894] = 894, + [895] = 460, + [896] = 225, + [897] = 460, + [898] = 893, + [899] = 899, + [900] = 899, + [901] = 893, + [902] = 893, [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, + [904] = 899, + [905] = 893, + [906] = 893, + [907] = 899, + [908] = 460, + [909] = 135, + [910] = 236, + [911] = 136, + [912] = 853, + [913] = 854, + [914] = 237, + [915] = 241, + [916] = 916, + [917] = 245, + [918] = 279, + [919] = 281, + [920] = 920, + [921] = 257, + [922] = 284, + [923] = 283, + [924] = 267, + [925] = 274, + [926] = 275, + [927] = 243, + [928] = 244, + [929] = 252, + [930] = 246, + [931] = 247, + [932] = 920, + [933] = 253, + [934] = 254, + [935] = 249, + [936] = 250, + [937] = 248, + [938] = 285, + [939] = 255, + [940] = 242, + [941] = 259, + [942] = 261, + [943] = 268, + [944] = 272, + [945] = 262, + [946] = 876, + [947] = 256, + [948] = 276, + [949] = 273, + [950] = 282, + [951] = 280, + [952] = 258, + [953] = 260, + [954] = 286, + [955] = 265, + [956] = 269, + [957] = 271, + [958] = 278, + [959] = 263, + [960] = 251, + [961] = 961, + [962] = 962, + [963] = 962, + [964] = 964, + [965] = 965, + [966] = 966, + [967] = 966, + [968] = 968, + [969] = 969, + [970] = 964, + [971] = 965, + [972] = 968, + [973] = 966, + [974] = 968, + [975] = 962, + [976] = 966, + [977] = 965, + [978] = 966, + [979] = 966, + [980] = 962, + [981] = 965, + [982] = 962, + [983] = 966, + [984] = 962, + [985] = 962, + [986] = 968, + [987] = 965, + [988] = 962, + [989] = 966, + [990] = 965, + [991] = 968, + [992] = 964, [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] = 1009, - [1010] = 1008, - [1011] = 1009, - [1012] = 1009, - [1013] = 1009, - [1014] = 1009, - [1015] = 1008, - [1016] = 1008, - [1017] = 1008, - [1018] = 1009, - [1019] = 1008, - [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, + [994] = 968, + [995] = 964, + [996] = 903, + [997] = 962, + [998] = 965, + [999] = 966, + [1000] = 964, + [1001] = 962, + [1002] = 962, + [1003] = 966, + [1004] = 965, + [1005] = 962, + [1006] = 966, + [1007] = 968, + [1008] = 964, + [1009] = 968, + [1010] = 962, + [1011] = 965, + [1012] = 966, + [1013] = 968, + [1014] = 966, + [1015] = 1015, + [1016] = 1016, + [1017] = 903, + [1018] = 1016, + [1019] = 1016, + [1020] = 1016, + [1021] = 1015, + [1022] = 1016, + [1023] = 1015, + [1024] = 1015, + [1025] = 1015, + [1026] = 1015, + [1027] = 1016, + [1028] = 1028, + [1029] = 1029, + [1030] = 1030, + [1031] = 1031, + [1032] = 1032, + [1033] = 1031, [1034] = 1034, - [1035] = 1034, - [1036] = 1026, - [1037] = 1025, - [1038] = 1034, - [1039] = 1023, + [1035] = 1032, + [1036] = 1034, + [1037] = 1037, + [1038] = 1038, + [1039] = 1032, [1040] = 1034, - [1041] = 1034, - [1042] = 1034, + [1041] = 1041, + [1042] = 1032, [1043] = 1034, - [1044] = 1034, - [1045] = 1026, - [1046] = 1025, - [1047] = 1025, + [1044] = 1032, + [1045] = 1034, + [1046] = 1038, + [1047] = 1034, [1048] = 1034, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, - [1052] = 1052, - [1053] = 1053, - [1054] = 1054, - [1055] = 1055, - [1056] = 1056, + [1049] = 1038, + [1050] = 1031, + [1051] = 1038, + [1052] = 1038, + [1053] = 1038, + [1054] = 1038, + [1055] = 1038, + [1056] = 1038, [1057] = 1057, - [1058] = 1053, + [1058] = 1058, [1059] = 1059, - [1060] = 1060, + [1060] = 1059, [1061] = 1061, [1062] = 1062, - [1063] = 1053, + [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1066, + [1067] = 1067, [1068] = 1068, [1069] = 1069, [1070] = 1070, - [1071] = 1066, + [1071] = 1059, [1072] = 1072, - [1073] = 1072, - [1074] = 1065, - [1075] = 1065, - [1076] = 1065, - [1077] = 1066, - [1078] = 1078, - [1079] = 1072, - [1080] = 1065, + [1073] = 1073, + [1074] = 1074, + [1075] = 1075, + [1076] = 1074, + [1077] = 1077, + [1078] = 1072, + [1079] = 1079, + [1080] = 1080, [1081] = 1081, [1082] = 1072, - [1083] = 1066, - [1084] = 1066, + [1083] = 1074, + [1084] = 1072, [1085] = 1085, - [1086] = 1066, - [1087] = 1066, + [1086] = 1072, + [1087] = 1074, [1088] = 1072, - [1089] = 1065, - [1090] = 1066, + [1089] = 1089, + [1090] = 1090, [1091] = 1091, - [1092] = 1065, - [1093] = 1093, - [1094] = 1094, - [1095] = 1095, - [1096] = 1065, - [1097] = 1066, - [1098] = 1098, - [1099] = 1099, - [1100] = 1065, - [1101] = 1066, + [1092] = 1074, + [1093] = 1081, + [1094] = 1081, + [1095] = 1081, + [1096] = 1081, + [1097] = 1074, + [1098] = 1081, + [1099] = 1074, + [1100] = 1074, + [1101] = 1072, [1102] = 1072, [1103] = 1103, - [1104] = 1066, - [1105] = 1065, - [1106] = 1066, - [1107] = 1065, - [1108] = 1072, + [1104] = 1074, + [1105] = 1072, + [1106] = 1106, + [1107] = 1072, + [1108] = 1074, [1109] = 1109, [1110] = 1110, - [1111] = 1065, + [1111] = 1111, [1112] = 1112, - [1113] = 1065, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, + [1113] = 1113, + [1114] = 1072, + [1115] = 1074, + [1116] = 1074, [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, + [1118] = 1081, + [1119] = 1074, + [1120] = 1072, + [1121] = 1072, [1122] = 1122, [1123] = 1123, [1124] = 1124, [1125] = 1125, [1126] = 1126, - [1127] = 1117, + [1127] = 1127, [1128] = 1128, [1129] = 1129, [1130] = 1130, [1131] = 1131, [1132] = 1132, [1133] = 1133, - [1134] = 1128, + [1134] = 1134, [1135] = 1135, - [1136] = 1119, - [1137] = 1133, + [1136] = 1136, + [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, @@ -6185,88 +6189,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1143] = 1143, [1144] = 1144, [1145] = 1145, - [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] = 1143, - [1160] = 1133, - [1161] = 1138, - [1162] = 1141, - [1163] = 1163, - [1164] = 1131, - [1165] = 1141, - [1166] = 1118, - [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, + [1146] = 1146, + [1147] = 1126, + [1148] = 1148, + [1149] = 1127, + [1150] = 1150, + [1151] = 1130, + [1152] = 1131, + [1153] = 1132, + [1154] = 1154, + [1155] = 1155, + [1156] = 1156, + [1157] = 1157, + [1158] = 1158, + [1159] = 1130, + [1160] = 1160, + [1161] = 1123, + [1162] = 1127, + [1163] = 1130, + [1164] = 1164, + [1165] = 1124, + [1166] = 1166, + [1167] = 1125, + [1168] = 1130, + [1169] = 1129, + [1170] = 1131, + [1171] = 1132, + [1172] = 1172, + [1173] = 1173, + [1174] = 1128, + [1175] = 1130, + [1176] = 1130, + [1177] = 1131, + [1178] = 1158, + [1179] = 1130, + [1180] = 1132, + [1181] = 1130, + [1182] = 1164, [1183] = 1183, [1184] = 1184, - [1185] = 1185, - [1186] = 1133, - [1187] = 1152, - [1188] = 1163, - [1189] = 1133, - [1190] = 1114, - [1191] = 1191, - [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] = 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] = 1225, - [1226] = 1226, - [1227] = 1227, + [1185] = 1157, + [1186] = 1135, + [1187] = 1136, + [1188] = 1138, + [1189] = 1139, + [1190] = 1140, + [1191] = 1173, + [1192] = 1141, + [1193] = 1164, + [1194] = 1142, + [1195] = 1122, + [1196] = 1164, + [1197] = 1197, + [1198] = 1164, + [1199] = 1126, + [1200] = 1164, + [1201] = 1183, + [1202] = 1164, + [1203] = 1127, + [1204] = 1164, + [1205] = 1128, + [1206] = 1143, + [1207] = 1164, + [1208] = 1164, + [1209] = 1130, + [1210] = 1144, + [1211] = 1133, + [1212] = 1130, + [1213] = 1130, + [1214] = 1131, + [1215] = 1134, + [1216] = 1137, + [1217] = 1150, + [1218] = 1154, + [1219] = 1155, + [1220] = 1126, + [1221] = 1197, + [1222] = 1132, + [1223] = 1145, + [1224] = 1146, + [1225] = 1148, + [1226] = 1130, + [1227] = 1156, [1228] = 1228, [1229] = 1229, [1230] = 1230, @@ -6278,7738 +6282,7762 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1236] = 1236, [1237] = 1237, [1238] = 1238, - [1239] = 1239, + [1239] = 1230, [1240] = 1240, [1241] = 1241, [1242] = 1242, [1243] = 1243, - [1244] = 1244, - [1245] = 1221, + [1244] = 1231, + [1245] = 1235, [1246] = 1246, - [1247] = 1225, - [1248] = 1226, - [1249] = 1249, - [1250] = 1227, - [1251] = 1228, - [1252] = 1229, + [1247] = 1247, + [1248] = 1248, + [1249] = 1234, + [1250] = 1235, + [1251] = 1251, + [1252] = 1252, [1253] = 1230, [1254] = 1231, - [1255] = 1232, - [1256] = 1234, - [1257] = 1235, + [1255] = 1230, + [1256] = 1256, + [1257] = 1257, [1258] = 1258, [1259] = 1259, - [1260] = 1221, + [1260] = 1260, [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] = 1286, - [1287] = 1258, + [1262] = 1232, + [1263] = 1263, + [1264] = 1264, + [1265] = 1233, + [1266] = 1266, + [1267] = 1237, + [1268] = 1233, + [1269] = 1269, + [1270] = 1270, + [1271] = 1234, + [1272] = 1238, + [1273] = 1273, + [1274] = 1274, + [1275] = 1275, + [1276] = 1240, + [1277] = 1235, + [1278] = 1248, + [1279] = 1251, + [1280] = 1252, + [1281] = 1259, + [1282] = 1261, + [1283] = 1263, + [1284] = 1264, + [1285] = 1237, + [1286] = 1238, + [1287] = 1240, [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, + [1289] = 1235, + [1290] = 1269, + [1291] = 1291, + [1292] = 1230, + [1293] = 1293, + [1294] = 1294, + [1295] = 1294, + [1296] = 1270, + [1297] = 1231, + [1298] = 1258, + [1299] = 1299, + [1300] = 1230, + [1301] = 1270, + [1302] = 1302, + [1303] = 1248, + [1304] = 1251, + [1305] = 1252, + [1306] = 1259, + [1307] = 1261, + [1308] = 1263, + [1309] = 1264, + [1310] = 1237, + [1311] = 1238, + [1312] = 1240, + [1313] = 1232, + [1314] = 1233, + [1315] = 1234, + [1316] = 1235, [1317] = 1317, - [1318] = 1318, - [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] = 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] = 1227, - [1401] = 1228, - [1402] = 1229, - [1403] = 1230, - [1404] = 1231, - [1405] = 1232, - [1406] = 1234, - [1407] = 1242, - [1408] = 1243, - [1409] = 1265, - [1410] = 1318, + [1318] = 1230, + [1319] = 1231, + [1320] = 1257, + [1321] = 1258, + [1322] = 1260, + [1323] = 1323, + [1324] = 1232, + [1325] = 1325, + [1326] = 1233, + [1327] = 1269, + [1328] = 1270, + [1329] = 1234, + [1330] = 1232, + [1331] = 1231, + [1332] = 1233, + [1333] = 1248, + [1334] = 1251, + [1335] = 1252, + [1336] = 1259, + [1337] = 1261, + [1338] = 1263, + [1339] = 1264, + [1340] = 1237, + [1341] = 1238, + [1342] = 1240, + [1343] = 1235, + [1344] = 1269, + [1345] = 1270, + [1346] = 1346, + [1347] = 1230, + [1348] = 1231, + [1349] = 1270, + [1350] = 1248, + [1351] = 1251, + [1352] = 1252, + [1353] = 1259, + [1354] = 1261, + [1355] = 1263, + [1356] = 1264, + [1357] = 1237, + [1358] = 1238, + [1359] = 1240, + [1360] = 1232, + [1361] = 1233, + [1362] = 1257, + [1363] = 1260, + [1364] = 1234, + [1365] = 1365, + [1366] = 1269, + [1367] = 1231, + [1368] = 1368, + [1369] = 1369, + [1370] = 1234, + [1371] = 1371, + [1372] = 1302, + [1373] = 1270, + [1374] = 1248, + [1375] = 1251, + [1376] = 1252, + [1377] = 1259, + [1378] = 1261, + [1379] = 1263, + [1380] = 1264, + [1381] = 1237, + [1382] = 1238, + [1383] = 1240, + [1384] = 1257, + [1385] = 1232, + [1386] = 1260, + [1387] = 1387, + [1388] = 1388, + [1389] = 1248, + [1390] = 1229, + [1391] = 1270, + [1392] = 1248, + [1393] = 1251, + [1394] = 1252, + [1395] = 1259, + [1396] = 1261, + [1397] = 1263, + [1398] = 1264, + [1399] = 1237, + [1400] = 1238, + [1401] = 1240, + [1402] = 1257, + [1403] = 1260, + [1404] = 1233, + [1405] = 1251, + [1406] = 1252, + [1407] = 1257, + [1408] = 1260, + [1409] = 1234, + [1410] = 1232, [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] = 1429, - [1430] = 1430, - [1431] = 1221, - [1432] = 1225, - [1433] = 1226, - [1434] = 1249, - [1435] = 1227, - [1436] = 1228, - [1437] = 1229, - [1438] = 1230, - [1439] = 1231, - [1440] = 1232, - [1441] = 1234, - [1442] = 1265, - [1443] = 1318, - [1444] = 1444, - [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, + [1412] = 1233, + [1413] = 1261, + [1414] = 1270, + [1415] = 1257, + [1416] = 1260, + [1417] = 1263, + [1418] = 1234, + [1419] = 1264, + [1420] = 1237, + [1421] = 1238, + [1422] = 1240, + [1423] = 1257, + [1424] = 1235, + [1425] = 1260, + [1426] = 1248, + [1427] = 1235, + [1428] = 1251, + [1429] = 1257, + [1430] = 1260, + [1431] = 1248, + [1432] = 1251, + [1433] = 1252, + [1434] = 1259, + [1435] = 1261, + [1436] = 1263, + [1437] = 1264, + [1438] = 1237, + [1439] = 1238, + [1440] = 1240, + [1441] = 1235, + [1442] = 1274, + [1443] = 1266, + [1444] = 1270, + [1445] = 1234, + [1446] = 1248, + [1447] = 1251, + [1448] = 1252, + [1449] = 1259, + [1450] = 1261, + [1451] = 1263, + [1452] = 1264, + [1453] = 1237, + [1454] = 1238, + [1455] = 1240, + [1456] = 1235, + [1457] = 1247, + [1458] = 1371, + [1459] = 1387, + [1460] = 1230, + [1461] = 1241, + [1462] = 1252, + [1463] = 1231, + [1464] = 1246, + [1465] = 1259, + [1466] = 1261, + [1467] = 1231, + [1468] = 1274, + [1469] = 1266, + [1470] = 1263, + [1471] = 1368, + [1472] = 1247, + [1473] = 1371, + [1474] = 1387, + [1475] = 1241, + [1476] = 1369, + [1477] = 1246, + [1478] = 1274, + [1479] = 1266, + [1480] = 1247, + [1481] = 1371, + [1482] = 1387, + [1483] = 1241, + [1484] = 1246, + [1485] = 1274, + [1486] = 1266, + [1487] = 1257, + [1488] = 1247, + [1489] = 1371, + [1490] = 1387, + [1491] = 1241, + [1492] = 1246, + [1493] = 1231, + [1494] = 1247, + [1495] = 1371, + [1496] = 1387, + [1497] = 1241, + [1498] = 1229, + [1499] = 1246, + [1500] = 1247, + [1501] = 1371, + [1502] = 1241, + [1503] = 1230, + [1504] = 1257, + [1505] = 1260, + [1506] = 1232, + [1507] = 1233, + [1508] = 1365, + [1509] = 1230, + [1510] = 1257, + [1511] = 1260, + [1512] = 1512, + [1513] = 1251, + [1514] = 1365, + [1515] = 1365, + [1516] = 1365, + [1517] = 1365, + [1518] = 1365, + [1519] = 1232, + [1520] = 1233, + [1521] = 1269, + [1522] = 1270, + [1523] = 1234, + [1524] = 1270, + [1525] = 1248, + [1526] = 1251, + [1527] = 1252, + [1528] = 1259, + [1529] = 1261, + [1530] = 1263, + [1531] = 1264, + [1532] = 1237, + [1533] = 1238, + [1534] = 1240, + [1535] = 1232, + [1536] = 1233, + [1537] = 1234, + [1538] = 1235, + [1539] = 1230, + [1540] = 1231, + [1541] = 1541, + [1542] = 1260, + [1543] = 1270, + [1544] = 1234, + [1545] = 1248, + [1546] = 1252, + [1547] = 1259, + [1548] = 1261, + [1549] = 1263, + [1550] = 1264, + [1551] = 1237, + [1552] = 1238, + [1553] = 1240, + [1554] = 1235, + [1555] = 1230, + [1556] = 1231, + [1557] = 1257, + [1558] = 1260, + [1559] = 1232, + [1560] = 1233, + [1561] = 1264, [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1314, + [1563] = 1229, + [1564] = 1229, + [1565] = 1229, + [1566] = 1232, [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] = 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] = 895, - [1610] = 1610, - [1611] = 1611, - [1612] = 1612, - [1613] = 1613, - [1614] = 1612, - [1615] = 1613, - [1616] = 1567, - [1617] = 1562, - [1618] = 1560, - [1619] = 1559, - [1620] = 1565, - [1621] = 1564, - [1622] = 1563, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1256, + [1575] = 1575, + [1576] = 1571, + [1577] = 1569, + [1578] = 1567, + [1579] = 1572, + [1580] = 1570, + [1581] = 1568, + [1582] = 1573, + [1583] = 1575, + [1584] = 1584, + [1585] = 1584, + [1586] = 345, + [1587] = 364, + [1588] = 1588, + [1589] = 1589, + [1590] = 1589, + [1591] = 1589, + [1592] = 1589, + [1593] = 1256, + [1594] = 1570, + [1595] = 1256, + [1596] = 1575, + [1597] = 1572, + [1598] = 1573, + [1599] = 1571, + [1600] = 1600, + [1601] = 1600, + [1602] = 1567, + [1603] = 1603, + [1604] = 1569, + [1605] = 1568, + [1606] = 1600, + [1607] = 1600, + [1608] = 1571, + [1609] = 1609, + [1610] = 903, + [1611] = 903, + [1612] = 1571, + [1613] = 1575, + [1614] = 1573, + [1615] = 1572, + [1616] = 1570, + [1617] = 1567, + [1618] = 1569, + [1619] = 903, + [1620] = 1620, + [1621] = 1568, + [1622] = 1622, [1623] = 1623, - [1624] = 1561, - [1625] = 1561, - [1626] = 1613, - [1627] = 1627, - [1628] = 1628, - [1629] = 1629, - [1630] = 1630, - [1631] = 1631, - [1632] = 1632, - [1633] = 1633, - [1634] = 1634, - [1635] = 1612, - [1636] = 1636, - [1637] = 1637, + [1624] = 1624, + [1625] = 1624, + [1626] = 1626, + [1627] = 1626, + [1628] = 1568, + [1629] = 1575, + [1630] = 1573, + [1631] = 1569, + [1632] = 1570, + [1633] = 1567, + [1634] = 1572, + [1635] = 1635, + [1636] = 1571, + [1637] = 1571, [1638] = 1638, [1639] = 1639, - [1640] = 1633, + [1640] = 1624, [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, + [1645] = 1645, + [1646] = 1646, + [1647] = 1647, + [1648] = 1626, + [1649] = 1638, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 1653, [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] = 226, - [1710] = 230, - [1711] = 1610, - [1712] = 1611, - [1713] = 224, - [1714] = 1714, - [1715] = 1715, + [1656] = 1656, + [1657] = 1609, + [1658] = 1624, + [1659] = 1626, + [1660] = 1660, + [1661] = 1660, + [1662] = 1609, + [1663] = 1660, + [1664] = 1660, + [1665] = 1665, + [1666] = 1609, + [1667] = 1665, + [1668] = 1668, + [1669] = 1665, + [1670] = 1665, + [1671] = 1668, + [1672] = 1665, + [1673] = 1668, + [1674] = 1620, + [1675] = 1668, + [1676] = 1668, + [1677] = 1626, + [1678] = 1624, + [1679] = 1665, + [1680] = 1665, + [1681] = 1668, + [1682] = 1668, + [1683] = 1638, + [1684] = 1609, + [1685] = 1620, + [1686] = 1609, + [1687] = 1622, + [1688] = 1638, + [1689] = 1623, + [1690] = 1690, + [1691] = 1623, + [1692] = 1622, + [1693] = 1623, + [1694] = 1622, + [1695] = 1567, + [1696] = 1568, + [1697] = 1569, + [1698] = 1698, + [1699] = 1620, + [1700] = 1638, + [1701] = 1570, + [1702] = 1620, + [1703] = 1575, + [1704] = 1572, + [1705] = 1573, + [1706] = 1571, + [1707] = 1707, + [1708] = 1567, + [1709] = 225, + [1710] = 1572, + [1711] = 1570, + [1712] = 1573, + [1713] = 1569, + [1714] = 1568, + [1715] = 1575, [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, + [1717] = 1623, + [1718] = 1622, + [1719] = 1623, + [1720] = 1720, + [1721] = 230, + [1722] = 1722, + [1723] = 1723, + [1724] = 227, + [1725] = 231, + [1726] = 1726, + [1727] = 1622, + [1728] = 1728, [1729] = 1729, - [1730] = 371, - [1731] = 1731, - [1732] = 1732, - [1733] = 1733, - [1734] = 285, - [1735] = 251, - [1736] = 1736, - [1737] = 270, - [1738] = 271, - [1739] = 275, - [1740] = 276, - [1741] = 1741, - [1742] = 365, - [1743] = 366, - [1744] = 250, - [1745] = 242, - [1746] = 252, - [1747] = 256, + [1730] = 1728, + [1731] = 1728, + [1732] = 1728, + [1733] = 237, + [1734] = 1734, + [1735] = 136, + [1736] = 1571, + [1737] = 1737, + [1738] = 266, + [1739] = 266, + [1740] = 1256, + [1741] = 135, + [1742] = 335, + [1743] = 275, + [1744] = 318, + [1745] = 1745, + [1746] = 306, + [1747] = 319, [1748] = 1748, - [1749] = 1314, + [1749] = 1749, [1750] = 1750, - [1751] = 262, - [1752] = 281, - [1753] = 284, - [1754] = 344, - [1755] = 254, - [1756] = 362, - [1757] = 368, - [1758] = 369, - [1759] = 1759, - [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] = 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] = 314, - [1786] = 315, - [1787] = 1565, - [1788] = 1562, - [1789] = 1567, - [1790] = 316, + [1751] = 274, + [1752] = 372, + [1753] = 1753, + [1754] = 373, + [1755] = 311, + [1756] = 249, + [1757] = 250, + [1758] = 251, + [1759] = 280, + [1760] = 255, + [1761] = 1761, + [1762] = 283, + [1763] = 312, + [1764] = 1764, + [1765] = 1765, + [1766] = 1256, + [1767] = 329, + [1768] = 1768, + [1769] = 285, + [1770] = 313, + [1771] = 370, + [1772] = 279, + [1773] = 281, + [1774] = 345, + [1775] = 253, + [1776] = 1776, + [1777] = 364, + [1778] = 1567, + [1779] = 331, + [1780] = 1780, + [1781] = 332, + [1782] = 334, + [1783] = 336, + [1784] = 337, + [1785] = 1761, + [1786] = 338, + [1787] = 1787, + [1788] = 1788, + [1789] = 1776, + [1790] = 1790, [1791] = 1791, - [1792] = 317, + [1792] = 1792, [1793] = 1793, [1794] = 1794, - [1795] = 318, - [1796] = 322, + [1795] = 1761, + [1796] = 1796, [1797] = 1797, - [1798] = 1563, - [1799] = 1559, - [1800] = 1560, + [1798] = 1776, + [1799] = 371, + [1800] = 1776, [1801] = 1801, - [1802] = 328, - [1803] = 330, - [1804] = 331, + [1802] = 1802, + [1803] = 1776, + [1804] = 339, [1805] = 1805, [1806] = 1806, - [1807] = 333, + [1807] = 1776, [1808] = 1808, - [1809] = 334, - [1810] = 335, - [1811] = 336, - [1812] = 337, + [1809] = 1809, + [1810] = 1810, + [1811] = 1811, + [1812] = 1776, [1813] = 1813, [1814] = 1814, [1815] = 1815, [1816] = 1816, - [1817] = 338, - [1818] = 339, + [1817] = 1817, + [1818] = 1575, [1819] = 1819, [1820] = 1820, - [1821] = 1821, + [1821] = 1572, [1822] = 1822, - [1823] = 1823, - [1824] = 340, - [1825] = 1825, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, + [1823] = 1573, + [1824] = 1824, + [1825] = 1569, + [1826] = 1568, + [1827] = 340, + [1828] = 341, [1829] = 1829, - [1830] = 353, + [1830] = 438, [1831] = 1831, - [1832] = 354, - [1833] = 1814, - [1834] = 1834, - [1835] = 1759, - [1836] = 357, - [1837] = 1814, - [1838] = 1759, - [1839] = 1839, - [1840] = 1840, - [1841] = 358, + [1832] = 1832, + [1833] = 367, + [1834] = 368, + [1835] = 1835, + [1836] = 355, + [1837] = 356, + [1838] = 1838, + [1839] = 314, + [1840] = 358, + [1841] = 359, [1842] = 1842, - [1843] = 1843, - [1844] = 1814, - [1845] = 1759, - [1846] = 1846, - [1847] = 1759, - [1848] = 1759, - [1849] = 359, - [1850] = 360, - [1851] = 1851, - [1852] = 1852, - [1853] = 363, + [1843] = 361, + [1844] = 1844, + [1845] = 362, + [1846] = 289, + [1847] = 1570, + [1848] = 365, + [1849] = 1849, + [1850] = 315, + [1851] = 290, + [1852] = 291, + [1853] = 316, [1854] = 1854, [1855] = 1855, [1856] = 1856, - [1857] = 287, - [1858] = 1858, - [1859] = 1611, - [1860] = 1612, - [1861] = 1861, - [1862] = 226, - [1863] = 1623, - [1864] = 1864, - [1865] = 1865, - [1866] = 1610, - [1867] = 1613, - [1868] = 226, - [1869] = 230, - [1870] = 224, - [1871] = 229, - [1872] = 1872, - [1873] = 1873, + [1857] = 292, + [1858] = 293, + [1859] = 1859, + [1860] = 317, + [1861] = 295, + [1862] = 297, + [1863] = 257, + [1864] = 299, + [1865] = 267, + [1866] = 1866, + [1867] = 1761, + [1868] = 1868, + [1869] = 324, + [1870] = 1870, + [1871] = 1871, + [1872] = 1624, + [1873] = 227, [1874] = 1874, [1875] = 1875, [1876] = 1876, [1877] = 1877, - [1878] = 1878, - [1879] = 224, + [1878] = 1622, + [1879] = 1256, [1880] = 1880, [1881] = 1881, [1882] = 1882, [1883] = 1883, [1884] = 1884, [1885] = 1885, - [1886] = 1886, - [1887] = 1612, + [1886] = 231, + [1887] = 1887, [1888] = 1888, [1889] = 1889, [1890] = 1890, - [1891] = 1685, - [1892] = 1892, - [1893] = 1561, - [1894] = 1314, + [1891] = 1698, + [1892] = 225, + [1893] = 1893, + [1894] = 1894, [1895] = 1895, [1896] = 1896, - [1897] = 1897, + [1897] = 1626, [1898] = 1898, - [1899] = 1899, + [1899] = 1624, [1900] = 1900, - [1901] = 1901, + [1901] = 1626, [1902] = 1902, - [1903] = 230, + [1903] = 1571, [1904] = 1904, [1905] = 1905, - [1906] = 1906, + [1906] = 225, [1907] = 1907, - [1908] = 1908, + [1908] = 230, [1909] = 1909, - [1910] = 229, + [1910] = 1623, [1911] = 1911, [1912] = 1912, [1913] = 1913, - [1914] = 1613, + [1914] = 1914, [1915] = 1915, - [1916] = 1916, + [1916] = 227, [1917] = 1917, - [1918] = 1314, - [1919] = 1805, - [1920] = 1920, + [1918] = 1918, + [1919] = 1919, + [1920] = 1635, [1921] = 1921, - [1922] = 1784, - [1923] = 1808, - [1924] = 1924, - [1925] = 1904, - [1926] = 843, + [1922] = 1922, + [1923] = 1923, + [1924] = 230, + [1925] = 1925, + [1926] = 231, [1927] = 1927, - [1928] = 1928, - [1929] = 1929, - [1930] = 1806, - [1931] = 846, - [1932] = 1865, - [1933] = 136, - [1934] = 1561, - [1935] = 135, - [1936] = 135, - [1937] = 1937, - [1938] = 1938, + [1928] = 854, + [1929] = 1256, + [1930] = 1930, + [1931] = 1749, + [1932] = 1932, + [1933] = 1933, + [1934] = 853, + [1935] = 1935, + [1936] = 1882, + [1937] = 1765, + [1938] = 1905, [1939] = 136, - [1940] = 1598, + [1940] = 135, [1941] = 1941, [1942] = 1942, - [1943] = 1784, - [1944] = 1805, - [1945] = 237, - [1946] = 1946, - [1947] = 1947, - [1948] = 1948, - [1949] = 135, - [1950] = 269, + [1943] = 1571, + [1944] = 1944, + [1945] = 1945, + [1946] = 1835, + [1947] = 1788, + [1948] = 135, + [1949] = 266, + [1950] = 1950, [1951] = 1951, - [1952] = 269, - [1953] = 1953, - [1954] = 1954, - [1955] = 1806, - [1956] = 1954, - [1957] = 269, - [1958] = 269, + [1952] = 136, + [1953] = 135, + [1954] = 1571, + [1955] = 1955, + [1956] = 1956, + [1957] = 1957, + [1958] = 1958, [1959] = 1959, [1960] = 1960, [1961] = 1961, - [1962] = 1962, - [1963] = 1954, - [1964] = 237, - [1965] = 1954, - [1966] = 1808, - [1967] = 1954, - [1968] = 1954, - [1969] = 1954, + [1962] = 266, + [1963] = 1963, + [1964] = 1964, + [1965] = 1965, + [1966] = 1835, + [1967] = 1967, + [1968] = 1620, + [1969] = 237, [1970] = 1970, [1971] = 1971, - [1972] = 1623, - [1973] = 1973, - [1974] = 1608, - [1975] = 1561, + [1972] = 1972, + [1973] = 1765, + [1974] = 1788, + [1975] = 1635, [1976] = 1976, - [1977] = 1977, + [1977] = 266, [1978] = 1978, [1979] = 1979, [1980] = 1980, - [1981] = 1981, - [1982] = 136, + [1981] = 136, + [1982] = 1982, [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, + [1984] = 1965, + [1985] = 1965, + [1986] = 237, + [1987] = 1965, + [1988] = 1965, + [1989] = 1965, + [1990] = 1965, + [1991] = 1991, + [1992] = 1992, + [1993] = 1609, + [1994] = 1994, + [1995] = 266, + [1996] = 1996, + [1997] = 1997, + [1998] = 1749, + [1999] = 1927, + [2000] = 1842, + [2001] = 1844, + [2002] = 1945, + [2003] = 1815, + [2004] = 371, + [2005] = 1855, + [2006] = 1745, + [2007] = 1780, + [2008] = 1787, + [2009] = 1790, + [2010] = 1932, + [2011] = 1791, + [2012] = 1792, + [2013] = 1868, + [2014] = 1794, + [2015] = 311, + [2016] = 312, + [2017] = 1796, + [2018] = 1797, + [2019] = 1801, + [2020] = 1810, + [2021] = 367, + [2022] = 1811, + [2023] = 1817, + [2024] = 1698, + [2025] = 1822, + [2026] = 368, + [2027] = 1819, + [2028] = 1824, + [2029] = 1820, + [2030] = 1816, + [2031] = 2031, + [2032] = 438, + [2033] = 1805, + [2034] = 355, + [2035] = 1832, + [2036] = 1809, + [2037] = 331, + [2038] = 332, + [2039] = 334, + [2040] = 335, + [2041] = 372, + [2042] = 361, + [2043] = 362, + [2044] = 356, + [2045] = 1854, + [2046] = 358, + [2047] = 359, + [2048] = 1859, + [2049] = 1748, + [2050] = 1750, + [2051] = 253, + [2052] = 289, + [2053] = 290, + [2054] = 2031, + [2055] = 1945, + [2056] = 364, + [2057] = 2057, + [2058] = 292, + [2059] = 293, + [2060] = 2031, + [2061] = 280, + [2062] = 365, + [2063] = 1905, + [2064] = 283, + [2065] = 295, + [2066] = 297, + [2067] = 1813, + [2068] = 1698, + [2069] = 299, + [2070] = 1822, + [2071] = 1829, + [2072] = 1842, + [2073] = 257, + [2074] = 267, + [2075] = 274, + [2076] = 275, + [2077] = 2077, + [2078] = 1802, + [2079] = 1844, + [2080] = 373, + [2081] = 249, + [2082] = 250, + [2083] = 251, + [2084] = 2084, + [2085] = 1855, + [2086] = 1745, + [2087] = 1780, + [2088] = 255, + [2089] = 1787, + [2090] = 306, + [2091] = 1790, + [2092] = 1791, + [2093] = 1972, + [2094] = 1792, + [2095] = 438, + [2096] = 1698, + [2097] = 1794, + [2098] = 279, + [2099] = 2099, + [2100] = 1796, + [2101] = 1797, + [2102] = 289, + [2103] = 290, + [2104] = 291, + [2105] = 1801, + [2106] = 292, + [2107] = 293, + [2108] = 1810, + [2109] = 1811, + [2110] = 313, + [2111] = 295, + [2112] = 297, + [2113] = 314, + [2114] = 315, + [2115] = 316, + [2116] = 317, + [2117] = 299, + [2118] = 318, + [2119] = 319, + [2120] = 1817, + [2121] = 281, + [2122] = 1819, + [2123] = 1820, + [2124] = 285, + [2125] = 2031, + [2126] = 311, + [2127] = 312, + [2128] = 313, + [2129] = 324, + [2130] = 1932, + [2131] = 314, + [2132] = 315, + [2133] = 316, + [2134] = 317, + [2135] = 318, + [2136] = 319, + [2137] = 324, + [2138] = 1814, + [2139] = 1935, + [2140] = 367, + [2141] = 368, + [2142] = 370, + [2143] = 2143, + [2144] = 329, + [2145] = 331, + [2146] = 332, + [2147] = 2147, + [2148] = 334, + [2149] = 335, + [2150] = 336, + [2151] = 337, + [2152] = 338, + [2153] = 339, + [2154] = 340, + [2155] = 341, + [2156] = 370, + [2157] = 371, + [2158] = 355, + [2159] = 356, + [2160] = 358, + [2161] = 359, + [2162] = 361, + [2163] = 362, + [2164] = 2164, + [2165] = 372, + [2166] = 2099, + [2167] = 373, + [2168] = 365, + [2169] = 1824, + [2170] = 1808, + [2171] = 1806, + [2172] = 280, + [2173] = 283, + [2174] = 329, + [2175] = 1802, + [2176] = 1815, + [2177] = 1866, + [2178] = 2099, + [2179] = 257, + [2180] = 267, + [2181] = 274, + [2182] = 275, + [2183] = 2183, + [2184] = 2184, + [2185] = 1866, + [2186] = 1868, + [2187] = 1805, + [2188] = 249, + [2189] = 250, + [2190] = 291, + [2191] = 251, + [2192] = 1816, + [2193] = 2183, + [2194] = 345, + [2195] = 255, + [2196] = 1806, [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] = 2216, - [2217] = 1685, - [2218] = 2218, - [2219] = 2219, - [2220] = 1608, - [2221] = 1797, - [2222] = 2215, - [2223] = 1612, - [2224] = 2124, + [2198] = 1726, + [2199] = 1859, + [2200] = 1748, + [2201] = 1750, + [2202] = 336, + [2203] = 1722, + [2204] = 285, + [2205] = 1638, + [2206] = 337, + [2207] = 338, + [2208] = 1808, + [2209] = 1809, + [2210] = 339, + [2211] = 1716, + [2212] = 279, + [2213] = 281, + [2214] = 345, + [2215] = 340, + [2216] = 341, + [2217] = 253, + [2218] = 364, + [2219] = 1638, + [2220] = 1813, + [2221] = 1829, + [2222] = 1814, + [2223] = 306, + [2224] = 1753, [2225] = 2225, [2226] = 2226, [2227] = 2227, - [2228] = 2228, + [2228] = 2164, [2229] = 2229, [2230] = 2230, - [2231] = 2231, + [2231] = 1626, [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, + [2233] = 2233, + [2234] = 2229, + [2235] = 1624, + [2236] = 2229, + [2237] = 1793, + [2238] = 1716, + [2239] = 2239, + [2240] = 1698, + [2241] = 2241, + [2242] = 2242, + [2243] = 1698, + [2244] = 2229, + [2245] = 1722, [2246] = 2246, - [2247] = 2247, - [2248] = 2215, - [2249] = 1613, - [2250] = 1913, - [2251] = 1611, - [2252] = 1886, - [2253] = 2244, + [2247] = 1726, + [2248] = 2229, + [2249] = 2229, + [2250] = 2250, + [2251] = 2251, + [2252] = 1620, + [2253] = 2253, [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] = 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] = 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] = 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, + [2255] = 2255, + [2256] = 2256, + [2257] = 2257, + [2258] = 2258, + [2259] = 1856, + [2260] = 2260, + [2261] = 2261, + [2262] = 1983, + [2263] = 1620, + [2264] = 1911, + [2265] = 1764, + [2266] = 1912, + [2267] = 2267, + [2268] = 1622, + [2269] = 1835, + [2270] = 1838, + [2271] = 1883, + [2272] = 1905, + [2273] = 2273, + [2274] = 2225, + [2275] = 1992, + [2276] = 1951, + [2277] = 1698, + [2278] = 1874, + [2279] = 1960, + [2280] = 1882, + [2281] = 1961, + [2282] = 2147, + [2283] = 1876, + [2284] = 1885, + [2285] = 1881, + [2286] = 1898, + [2287] = 1909, + [2288] = 1914, + [2289] = 1917, + [2290] = 1918, + [2291] = 1925, + [2292] = 2292, + [2293] = 1889, + [2294] = 1923, + [2295] = 1978, + [2296] = 1979, + [2297] = 1980, + [2298] = 2298, + [2299] = 1991, + [2300] = 1958, + [2301] = 1749, + [2302] = 1765, + [2303] = 1768, + [2304] = 1884, + [2305] = 2305, + [2306] = 1788, + [2307] = 1726, + [2308] = 1963, + [2309] = 2309, + [2310] = 1964, + [2311] = 1880, + [2312] = 1888, + [2313] = 1722, + [2314] = 1256, + [2315] = 1849, + [2316] = 1716, + [2317] = 1919, + [2318] = 1921, + [2319] = 1922, + [2320] = 1913, + [2321] = 1915, + [2322] = 1875, + [2323] = 1570, + [2324] = 1567, + [2325] = 1870, + [2326] = 1871, + [2327] = 1877, + [2328] = 1904, + [2329] = 1900, + [2330] = 1902, + [2331] = 1907, + [2332] = 1569, + [2333] = 1568, + [2334] = 1575, + [2335] = 1572, + [2336] = 2336, + [2337] = 2337, + [2338] = 1890, + [2339] = 1573, + [2340] = 1698, + [2341] = 1698, [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, + [2343] = 1623, + [2344] = 1941, + [2345] = 2345, + [2346] = 1972, + [2347] = 1893, + [2348] = 1894, + [2349] = 2077, + [2350] = 1698, + [2351] = 1895, + [2352] = 1896, + [2353] = 1887, + [2354] = 1978, + [2355] = 1960, + [2356] = 1961, + [2357] = 2357, + [2358] = 2253, + [2359] = 1960, + [2360] = 1961, + [2361] = 1978, + [2362] = 1979, [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, + [2364] = 1983, + [2365] = 1991, + [2366] = 1958, + [2367] = 2367, + [2368] = 2368, + [2369] = 1626, + [2370] = 1963, + [2371] = 1964, + [2372] = 1967, + [2373] = 1963, + [2374] = 1964, + [2375] = 1972, + [2376] = 1992, + [2377] = 2233, + [2378] = 2232, + [2379] = 1980, + [2380] = 1983, + [2381] = 1991, + [2382] = 2382, + [2383] = 2250, + [2384] = 2384, + [2385] = 1624, + [2386] = 1838, + [2387] = 1849, + [2388] = 1967, + [2389] = 1764, + [2390] = 1992, + [2391] = 2257, + [2392] = 1768, [2393] = 2393, - [2394] = 2226, - [2395] = 2229, - [2396] = 1937, - [2397] = 1793, - [2398] = 1633, - [2399] = 2399, - [2400] = 1951, - [2401] = 2401, - [2402] = 2402, - [2403] = 2403, - [2404] = 1834, - [2405] = 1856, - [2406] = 1748, - [2407] = 1750, - [2408] = 2408, - [2409] = 2409, - [2410] = 1750, + [2394] = 1832, + [2395] = 1571, + [2396] = 2256, + [2397] = 2258, + [2398] = 2241, + [2399] = 1951, + [2400] = 1958, + [2401] = 2226, + [2402] = 1951, + [2403] = 1945, + [2404] = 2230, + [2405] = 2239, + [2406] = 1932, + [2407] = 2261, + [2408] = 1979, + [2409] = 1856, + [2410] = 2410, [2411] = 2411, [2412] = 2412, - [2413] = 2413, - [2414] = 2124, - [2415] = 1714, - [2416] = 846, - [2417] = 2417, - [2418] = 2418, - [2419] = 1705, - [2420] = 1834, - [2421] = 1797, + [2413] = 1726, + [2414] = 1967, + [2415] = 2415, + [2416] = 1764, + [2417] = 853, + [2418] = 854, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, [2422] = 2422, - [2423] = 2423, + [2423] = 1768, [2424] = 2424, - [2425] = 1708, - [2426] = 1748, + [2425] = 2425, + [2426] = 2426, [2427] = 2427, [2428] = 2428, - [2429] = 1856, - [2430] = 2430, - [2431] = 2431, + [2429] = 1793, + [2430] = 1768, + [2431] = 1638, [2432] = 2432, - [2433] = 1947, + [2433] = 2433, [2434] = 2434, - [2435] = 2435, - [2436] = 843, - [2437] = 1816, - [2438] = 2438, - [2439] = 1782, - [2440] = 1816, - [2441] = 2441, + [2435] = 1722, + [2436] = 2436, + [2437] = 1753, + [2438] = 1838, + [2439] = 2439, + [2440] = 1716, + [2441] = 1832, [2442] = 2442, - [2443] = 2443, + [2443] = 1849, [2444] = 2444, [2445] = 2445, - [2446] = 2446, - [2447] = 2447, - [2448] = 2448, - [2449] = 1896, - [2450] = 2450, - [2451] = 2451, - [2452] = 2452, - [2453] = 1888, - [2454] = 2454, - [2455] = 1897, - [2456] = 1885, - [2457] = 1898, - [2458] = 1880, - [2459] = 1895, + [2446] = 2164, + [2447] = 1838, + [2448] = 1972, + [2449] = 2449, + [2450] = 1849, + [2451] = 1764, + [2452] = 1907, + [2453] = 2453, + [2454] = 1923, + [2455] = 1838, + [2456] = 1849, + [2457] = 2164, + [2458] = 1911, + [2459] = 2459, [2460] = 2460, - [2461] = 1902, - [2462] = 2462, - [2463] = 2124, - [2464] = 1899, - [2465] = 2124, - [2466] = 1900, - [2467] = 1816, + [2461] = 1650, + [2462] = 1645, + [2463] = 2463, + [2464] = 1885, + [2465] = 2465, + [2466] = 2466, + [2467] = 1898, [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, + [2469] = 2469, + [2470] = 2470, + [2471] = 2471, + [2472] = 1909, + [2473] = 1764, + [2474] = 2474, + [2475] = 136, + [2476] = 2476, + [2477] = 2477, + [2478] = 1768, + [2479] = 1890, + [2480] = 135, [2481] = 2481, - [2482] = 1876, - [2483] = 1864, - [2484] = 2484, + [2482] = 1913, + [2483] = 1915, + [2484] = 1875, [2485] = 2485, - [2486] = 1638, - [2487] = 2487, + [2486] = 2486, + [2487] = 1874, [2488] = 2488, - [2489] = 2325, - [2490] = 2490, + [2489] = 1896, + [2490] = 1849, [2491] = 2491, - [2492] = 2492, + [2492] = 1644, [2493] = 2493, [2494] = 2494, - [2495] = 1884, + [2495] = 2495, [2496] = 2496, - [2497] = 1639, + [2497] = 2497, [2498] = 2498, - [2499] = 2499, - [2500] = 1889, - [2501] = 1905, - [2502] = 2502, - [2503] = 1886, - [2504] = 2504, - [2505] = 1858, - [2506] = 2506, - [2507] = 2507, - [2508] = 2508, - [2509] = 1875, - [2510] = 2510, - [2511] = 2511, - [2512] = 1906, + [2499] = 1641, + [2500] = 2500, + [2501] = 1639, + [2502] = 1914, + [2503] = 1653, + [2504] = 1876, + [2505] = 2505, + [2506] = 1881, + [2507] = 1655, + [2508] = 1870, + [2509] = 2509, + [2510] = 1880, + [2511] = 2164, + [2512] = 2512, [2513] = 2513, - [2514] = 2514, - [2515] = 1907, - [2516] = 1908, - [2517] = 1641, - [2518] = 1642, - [2519] = 1643, - [2520] = 1909, - [2521] = 1636, - [2522] = 1913, - [2523] = 1628, - [2524] = 1834, - [2525] = 2525, - [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] = 2538, - [2539] = 2539, + [2514] = 1887, + [2515] = 1888, + [2516] = 1925, + [2517] = 1889, + [2518] = 2518, + [2519] = 2519, + [2520] = 2520, + [2521] = 1871, + [2522] = 2522, + [2523] = 2523, + [2524] = 2524, + [2525] = 1884, + [2526] = 1877, + [2527] = 1900, + [2528] = 2528, + [2529] = 2529, + [2530] = 2530, + [2531] = 2531, + [2532] = 1902, + [2533] = 2533, + [2534] = 1656, + [2535] = 1912, + [2536] = 2536, + [2537] = 1893, + [2538] = 1894, + [2539] = 1832, [2540] = 2540, - [2541] = 1856, - [2542] = 2542, - [2543] = 1881, - [2544] = 1882, + [2541] = 1832, + [2542] = 1917, + [2543] = 1647, + [2544] = 2544, [2545] = 2545, - [2546] = 1644, + [2546] = 2546, [2547] = 2547, - [2548] = 1627, - [2549] = 2549, - [2550] = 1892, - [2551] = 2551, + [2548] = 2548, + [2549] = 1883, + [2550] = 2550, + [2551] = 1642, [2552] = 2552, - [2553] = 2553, - [2554] = 2391, + [2553] = 1838, + [2554] = 2554, [2555] = 2555, - [2556] = 2556, - [2557] = 1629, - [2558] = 1890, - [2559] = 1630, - [2560] = 1631, - [2561] = 1632, + [2556] = 1895, + [2557] = 1646, + [2558] = 2558, + [2559] = 2367, + [2560] = 2368, + [2561] = 1768, [2562] = 2562, - [2563] = 2342, + [2563] = 1904, [2564] = 2564, - [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, + [2565] = 1643, + [2566] = 1764, + [2567] = 1919, + [2568] = 1921, + [2569] = 1922, + [2570] = 1654, + [2571] = 1652, + [2572] = 2342, + [2573] = 2573, + [2574] = 1651, + [2575] = 2292, + [2576] = 2576, + [2577] = 1918, + [2578] = 1568, + [2579] = 1960, + [2580] = 1992, + [2581] = 1978, + [2582] = 1961, + [2583] = 1570, + [2584] = 1972, + [2585] = 1979, + [2586] = 2225, + [2587] = 1638, + [2588] = 1963, [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, + [2590] = 1765, + [2591] = 1964, + [2592] = 1567, + [2593] = 1849, + [2594] = 1635, + [2595] = 2595, + [2596] = 1569, + [2597] = 1951, + [2598] = 2598, + [2599] = 1983, + [2600] = 1991, + [2601] = 1927, + [2602] = 1788, [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, + [2604] = 2147, + [2605] = 2605, + [2606] = 1838, + [2607] = 2607, + [2608] = 1749, + [2609] = 1768, + [2610] = 2610, + [2611] = 1835, + [2612] = 1575, + [2613] = 1764, + [2614] = 1935, + [2615] = 1572, + [2616] = 1573, + [2617] = 1958, + [2618] = 2077, + [2619] = 2253, + [2620] = 2470, + [2621] = 1765, + [2622] = 1935, + [2623] = 2465, + [2624] = 1983, + [2625] = 1768, + [2626] = 2164, + [2627] = 1978, + [2628] = 1980, + [2629] = 1568, + [2630] = 1979, + [2631] = 1963, + [2632] = 1983, + [2633] = 1927, + [2634] = 2256, + [2635] = 2230, + [2636] = 1963, + [2637] = 1992, + [2638] = 1856, + [2639] = 1991, + [2640] = 1764, + [2641] = 1980, + [2642] = 1788, + [2643] = 2463, + [2644] = 1935, + [2645] = 1958, + [2646] = 1964, + [2647] = 2258, + [2648] = 2226, + [2649] = 1570, + [2650] = 1964, + [2651] = 2471, + [2652] = 2232, + [2653] = 2233, + [2654] = 2495, + [2655] = 1838, + [2656] = 1753, + [2657] = 1960, + [2658] = 1991, + [2659] = 2485, + [2660] = 2261, + [2661] = 1961, + [2662] = 2250, + [2663] = 2257, + [2664] = 2239, + [2665] = 2367, + [2666] = 1749, + [2667] = 2481, + [2668] = 1960, + [2669] = 1979, + [2670] = 1726, + [2671] = 1835, + [2672] = 1832, + [2673] = 2241, + [2674] = 1951, + [2675] = 1575, + [2676] = 1567, + [2677] = 1849, + [2678] = 1978, + [2679] = 1572, + [2680] = 1573, + [2681] = 1569, + [2682] = 1905, + [2683] = 1958, + [2684] = 1793, + [2685] = 1722, + [2686] = 1620, + [2687] = 1635, + [2688] = 2225, + [2689] = 1992, + [2690] = 1927, + [2691] = 2368, + [2692] = 1951, + [2693] = 1961, + [2694] = 1716, + [2695] = 1918, + [2696] = 1626, + [2697] = 1571, + [2698] = 1624, + [2699] = 2699, + [2700] = 1967, + [2701] = 2605, + [2702] = 1635, + [2703] = 2607, + [2704] = 1635, + [2705] = 1941, + [2706] = 1749, + [2707] = 1765, + [2708] = 1788, + [2709] = 1838, + [2710] = 1849, + [2711] = 1904, + [2712] = 1907, + [2713] = 1835, + [2714] = 2367, + [2715] = 1893, + [2716] = 1894, + [2717] = 1895, + [2718] = 1896, + [2719] = 1883, + [2720] = 1885, + [2721] = 2368, + [2722] = 1898, + [2723] = 1909, + [2724] = 1914, + [2725] = 1917, + [2726] = 1925, + [2727] = 1889, + [2728] = 1923, + [2729] = 1882, + [2730] = 1919, + [2731] = 1905, + [2732] = 1922, + [2733] = 1913, + [2734] = 1915, + [2735] = 1875, + [2736] = 1870, + [2737] = 1871, + [2738] = 1877, + [2739] = 1900, + [2740] = 1967, + [2741] = 1902, + [2742] = 1890, [2743] = 1874, - [2744] = 1858, - [2745] = 1623, - [2746] = 1877, - [2747] = 1890, - [2748] = 1906, - [2749] = 2749, - [2750] = 1973, - [2751] = 1917, - [2752] = 2752, - [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] = 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] = 1924, - [2814] = 2227, - [2815] = 2815, - [2816] = 2816, - [2817] = 2817, - [2818] = 2818, - [2819] = 2819, - [2820] = 2820, - [2821] = 2821, - [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, + [2744] = 1876, + [2745] = 1881, + [2746] = 1884, + [2747] = 1880, + [2748] = 1887, + [2749] = 1888, + [2750] = 1911, + [2751] = 1912, + [2752] = 1764, + [2753] = 1768, + [2754] = 2605, + [2755] = 2607, + [2756] = 1882, + [2757] = 2699, + [2758] = 2699, + [2759] = 2699, + [2760] = 1921, + [2761] = 263, + [2762] = 1958, + [2763] = 1963, + [2764] = 1964, + [2765] = 2225, + [2766] = 252, + [2767] = 1905, + [2768] = 1635, + [2769] = 2769, + [2770] = 2770, + [2771] = 1749, + [2772] = 1765, + [2773] = 1788, + [2774] = 1935, + [2775] = 2775, + [2776] = 1835, + [2777] = 2147, + [2778] = 1992, + [2779] = 1927, + [2780] = 1951, + [2781] = 1905, + [2782] = 1967, + [2783] = 1960, + [2784] = 1961, + [2785] = 1930, + [2786] = 1570, + [2787] = 1567, + [2788] = 1569, + [2789] = 1568, + [2790] = 1575, + [2791] = 1572, + [2792] = 1573, + [2793] = 2793, + [2794] = 1927, + [2795] = 1635, + [2796] = 1933, + [2797] = 1935, + [2798] = 2793, + [2799] = 1944, + [2800] = 2800, + [2801] = 2801, + [2802] = 2793, + [2803] = 1978, + [2804] = 1942, + [2805] = 2805, + [2806] = 2793, + [2807] = 2793, + [2808] = 2793, + [2809] = 2793, + [2810] = 1979, + [2811] = 1980, + [2812] = 1983, + [2813] = 1991, + [2814] = 2077, + [2815] = 1622, + [2816] = 2077, + [2817] = 1569, + [2818] = 1568, + [2819] = 1575, + [2820] = 1572, + [2821] = 1573, + [2822] = 1768, + [2823] = 2550, + [2824] = 1944, + [2825] = 1942, + [2826] = 1849, + [2827] = 2164, + [2828] = 1835, + [2829] = 2367, + [2830] = 2239, + [2831] = 2147, + [2832] = 2241, + [2833] = 2261, + [2834] = 2253, + [2835] = 2835, + [2836] = 2558, + [2837] = 2368, [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] = 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] = 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, + [2839] = 2077, + [2840] = 2147, + [2841] = 2841, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, + [2847] = 2847, + [2848] = 2848, + [2849] = 2849, + [2850] = 2850, + [2851] = 2851, + [2852] = 2852, + [2853] = 2853, + [2854] = 1941, + [2855] = 1570, + [2856] = 1567, + [2857] = 2835, + [2858] = 2835, + [2859] = 2838, + [2860] = 2860, + [2861] = 2861, + [2862] = 1930, + [2863] = 2835, + [2864] = 2838, + [2865] = 1749, + [2866] = 2835, + [2867] = 2838, + [2868] = 2250, + [2869] = 2835, + [2870] = 2838, + [2871] = 2257, + [2872] = 2835, + [2873] = 2838, + [2874] = 1765, + [2875] = 2875, + [2876] = 2876, + [2877] = 2877, + [2878] = 1788, + [2879] = 2838, + [2880] = 2256, + [2881] = 2230, + [2882] = 2500, + [2883] = 1838, + [2884] = 2258, + [2885] = 2226, + [2886] = 1933, + [2887] = 2232, + [2888] = 2233, + [2889] = 1764, + [2890] = 2890, + [2891] = 1919, + [2892] = 1913, + [2893] = 1905, + [2894] = 1870, + [2895] = 2225, + [2896] = 2896, + [2897] = 2897, + [2898] = 1874, + [2899] = 2899, + [2900] = 2256, + [2901] = 2230, + [2902] = 1905, + [2903] = 2258, + [2904] = 2226, + [2905] = 2232, + [2906] = 2233, + [2907] = 2605, + [2908] = 2261, + [2909] = 2607, + [2910] = 2250, + [2911] = 2257, + [2912] = 2239, + [2913] = 2241, + [2914] = 2253, + [2915] = 1967, + [2916] = 2916, + [2917] = 2899, + [2918] = 1885, + [2919] = 1638, + [2920] = 1914, + [2921] = 2921, + [2922] = 2846, + [2923] = 1930, + [2924] = 2899, + [2925] = 2925, + [2926] = 1933, + [2927] = 2077, + [2928] = 1944, + [2929] = 1942, + [2930] = 2147, + [2931] = 2847, + [2932] = 2232, + [2933] = 2233, + [2934] = 2899, + [2935] = 2848, + [2936] = 1753, + [2937] = 2850, + [2938] = 2851, + [2939] = 2939, + [2940] = 2852, + [2941] = 1927, + [2942] = 2256, + [2943] = 2849, + [2944] = 1571, + [2945] = 2899, + [2946] = 2258, + [2947] = 2899, + [2948] = 2939, + [2949] = 2921, + [2950] = 2225, + [2951] = 1935, + [2952] = 2952, + [2953] = 1256, + [2954] = 2954, + [2955] = 2876, + [2956] = 2853, + [2957] = 1885, + [2958] = 2921, + [2959] = 1914, + [2960] = 2251, + [2961] = 2939, + [2962] = 2921, + [2963] = 2954, + [2964] = 2952, + [2965] = 2254, + [2966] = 2954, + [2967] = 1919, + [2968] = 2529, + [2969] = 2877, + [2970] = 1913, + [2971] = 2226, + [2972] = 2875, + [2973] = 2842, + [2974] = 2954, + [2975] = 1870, + [2976] = 2241, + [2977] = 2242, + [2978] = 2844, + [2979] = 2921, + [2980] = 2952, + [2981] = 2954, + [2982] = 2257, + [2983] = 2921, + [2984] = 2952, + [2985] = 2954, + [2986] = 1874, + [2987] = 2921, + [2988] = 2952, + [2989] = 2954, + [2990] = 2230, + [2991] = 2952, + [2992] = 2255, + [2993] = 2954, + [2994] = 2952, + [2995] = 2954, + [2996] = 2246, + [2997] = 2925, + [2998] = 2921, + [2999] = 1793, + [3000] = 2896, + [3001] = 2239, + [3002] = 2925, + [3003] = 2921, + [3004] = 2860, + [3005] = 2925, + [3006] = 1256, + [3007] = 2925, + [3008] = 2925, + [3009] = 1856, + [3010] = 2861, + [3011] = 2925, + [3012] = 2925, + [3013] = 2925, + [3014] = 2899, + [3015] = 2952, + [3016] = 2899, + [3017] = 2841, + [3018] = 2845, + [3019] = 2843, + [3020] = 2253, + [3021] = 2897, + [3022] = 2250, + [3023] = 2261, + [3024] = 2952, + [3025] = 3025, + [3026] = 853, + [3027] = 2842, + [3028] = 2843, + [3029] = 2844, + [3030] = 2845, + [3031] = 2230, + [3032] = 2846, + [3033] = 3025, + [3034] = 1900, + [3035] = 1871, + [3036] = 2258, + [3037] = 2899, + [3038] = 1571, + [3039] = 2309, + [3040] = 2847, + [3041] = 2337, + [3042] = 2848, + [3043] = 2849, + [3044] = 1980, + [3045] = 2899, + [3046] = 1958, + [3047] = 876, + [3048] = 1922, + [3049] = 1902, + [3050] = 1890, + [3051] = 2226, + [3052] = 1875, + [3053] = 3053, + [3054] = 2232, + [3055] = 2273, + [3056] = 2233, + [3057] = 1915, + [3058] = 2899, + [3059] = 1882, + [3060] = 1983, + [3061] = 1978, + [3062] = 3025, + [3063] = 1753, + [3064] = 1876, + [3065] = 1881, + [3066] = 2850, + [3067] = 1941, + [3068] = 2336, + [3069] = 3069, + [3070] = 2851, + [3071] = 3025, + [3072] = 3072, + [3073] = 2899, + [3074] = 3074, + [3075] = 2852, + [3076] = 2261, + [3077] = 2242, + [3078] = 2256, + [3079] = 2899, + [3080] = 2598, + [3081] = 1963, + [3082] = 1991, + [3083] = 3025, + [3084] = 2250, + [3085] = 2257, + [3086] = 2239, + [3087] = 1884, + [3088] = 2368, + [3089] = 2853, + [3090] = 3090, + [3091] = 2241, + [3092] = 1856, + [3093] = 1623, + [3094] = 1904, + [3095] = 3072, + [3096] = 1907, + [3097] = 2253, + [3098] = 2899, + [3099] = 3090, + [3100] = 2899, + [3101] = 2246, + [3102] = 2899, + [3103] = 1972, + [3104] = 1992, + [3105] = 1964, + [3106] = 1793, + [3107] = 3090, + [3108] = 1877, + [3109] = 1880, + [3110] = 1979, + [3111] = 1967, + [3112] = 3072, + [3113] = 1941, + [3114] = 1951, + [3115] = 3090, + [3116] = 2899, + [3117] = 3117, + [3118] = 2298, + [3119] = 1893, + [3120] = 3072, + [3121] = 1894, + [3122] = 1832, + [3123] = 1895, + [3124] = 1896, + [3125] = 2367, + [3126] = 3072, + [3127] = 1887, + [3128] = 1888, + [3129] = 1571, + [3130] = 3072, + [3131] = 2225, + [3132] = 3025, + [3133] = 3072, + [3134] = 2899, + [3135] = 2860, + [3136] = 1883, + [3137] = 2861, + [3138] = 3138, + [3139] = 2875, + [3140] = 1960, + [3141] = 2876, + [3142] = 3074, + [3143] = 2877, + [3144] = 2841, + [3145] = 1256, + [3146] = 1961, + [3147] = 1898, + [3148] = 1909, + [3149] = 1921, + [3150] = 1911, + [3151] = 2899, + [3152] = 1917, + [3153] = 1918, + [3154] = 1925, + [3155] = 854, + [3156] = 2255, + [3157] = 1889, + [3158] = 1923, + [3159] = 3074, + [3160] = 1912, + [3161] = 2251, + [3162] = 2345, + [3163] = 2254, + [3164] = 2899, + [3165] = 2899, + [3166] = 1832, + [3167] = 1726, + [3168] = 1571, + [3169] = 1885, + [3170] = 3170, + [3171] = 1722, + [3172] = 2384, + [3173] = 1914, + [3174] = 1882, + [3175] = 1716, + [3176] = 2345, + [3177] = 2896, + [3178] = 1919, + [3179] = 2422, + [3180] = 1913, + [3181] = 2426, + [3182] = 1870, + [3183] = 2860, + [3184] = 1874, + [3185] = 2419, + [3186] = 2428, + [3187] = 2861, + [3188] = 2415, + [3189] = 2897, + [3190] = 3117, + [3191] = 2164, + [3192] = 1941, + [3193] = 2425, + [3194] = 2309, + [3195] = 1256, + [3196] = 3196, + [3197] = 2890, + [3198] = 2841, + [3199] = 2432, + [3200] = 2842, + [3201] = 1935, + [3202] = 2432, + [3203] = 2875, + [3204] = 2433, + [3205] = 2843, + [3206] = 2844, + [3207] = 2845, + [3208] = 2846, + [3209] = 2298, + [3210] = 2847, + [3211] = 2848, + [3212] = 2849, + [3213] = 2876, + [3214] = 2877, + [3215] = 2393, + [3216] = 2432, + [3217] = 1912, + [3218] = 2337, + [3219] = 2411, + [3220] = 2273, + [3221] = 2432, + [3222] = 2336, + [3223] = 2850, + [3224] = 2851, + [3225] = 2432, + [3226] = 2852, + [3227] = 1904, + [3228] = 1907, + [3229] = 1893, + [3230] = 1894, + [3231] = 1895, + [3232] = 1896, + [3233] = 2382, + [3234] = 1883, + [3235] = 2853, + [3236] = 1927, + [3237] = 1898, + [3238] = 1909, + [3239] = 2899, + [3240] = 1917, + [3241] = 1918, + [3242] = 1925, + [3243] = 1889, + [3244] = 1923, + [3245] = 1921, + [3246] = 1922, [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] = 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, + [3248] = 1875, + [3249] = 1871, + [3250] = 1877, + [3251] = 1900, + [3252] = 1902, + [3253] = 1890, + [3254] = 2425, + [3255] = 2805, + [3256] = 1876, + [3257] = 1881, + [3258] = 1884, + [3259] = 1880, + [3260] = 1887, + [3261] = 1888, + [3262] = 1911, + [3263] = 1972, + [3264] = 2876, + [3265] = 2545, + [3266] = 2442, + [3267] = 2463, + [3268] = 2465, + [3269] = 2470, + [3270] = 2471, + [3271] = 2422, + [3272] = 2860, + [3273] = 2419, + [3274] = 2481, + [3275] = 2485, + [3276] = 2428, + [3277] = 2544, + [3278] = 3278, + [3279] = 2861, + [3280] = 2415, + [3281] = 2899, + [3282] = 2899, + [3283] = 2899, + [3284] = 1571, + [3285] = 1652, + [3286] = 3286, + [3287] = 1970, + [3288] = 1971, + [3289] = 1982, + [3290] = 1950, + [3291] = 1650, + [3292] = 2545, + [3293] = 3293, [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, + [3295] = 2841, + [3296] = 3293, + [3297] = 1641, + [3298] = 2896, + [3299] = 2842, + [3300] = 2564, + [3301] = 2529, + [3302] = 1644, + [3303] = 1768, + [3304] = 2564, + [3305] = 2384, + [3306] = 2875, + [3307] = 2432, + [3308] = 2433, + [3309] = 2843, + [3310] = 2844, + [3311] = 2845, + [3312] = 2846, + [3313] = 2847, + [3314] = 2848, + [3315] = 2849, + [3316] = 2877, + [3317] = 2495, + [3318] = 2411, + [3319] = 1994, + [3320] = 2850, + [3321] = 3293, + [3322] = 2851, + [3323] = 2852, + [3324] = 2432, + [3325] = 1642, + [3326] = 3293, + [3327] = 2357, + [3328] = 2382, + [3329] = 1646, + [3330] = 2853, + [3331] = 1996, + [3332] = 1997, + [3333] = 3293, + [3334] = 2529, + [3335] = 2432, + [3336] = 3336, + [3337] = 3293, + [3338] = 3338, + [3339] = 3338, + [3340] = 3340, + [3341] = 3293, + [3342] = 3342, + [3343] = 2899, + [3344] = 2897, + [3345] = 1656, + [3346] = 3293, + [3347] = 3293, + [3348] = 1955, + [3349] = 1956, + [3350] = 1957, + [3351] = 2420, + [3352] = 1654, + [3353] = 1976, + [3354] = 2393, + [3355] = 854, + [3356] = 1793, + [3357] = 2899, + [3358] = 2610, + [3359] = 2899, + [3360] = 2410, + [3361] = 2164, + [3362] = 3340, + [3363] = 1645, + [3364] = 2426, + [3365] = 2444, + [3366] = 2225, + [3367] = 1639, + [3368] = 136, + [3369] = 853, + [3370] = 1653, + [3371] = 1655, + [3372] = 1764, + [3373] = 1856, + [3374] = 2425, + [3375] = 2544, + [3376] = 1643, + [3377] = 1647, + [3378] = 1651, + [3379] = 2367, + [3380] = 2368, + [3381] = 2422, + [3382] = 2860, + [3383] = 2419, + [3384] = 2428, + [3385] = 2861, + [3386] = 2415, + [3387] = 2841, + [3388] = 2842, + [3389] = 2875, + [3390] = 2433, + [3391] = 2843, + [3392] = 2844, + [3393] = 2845, + [3394] = 2846, + [3395] = 2847, + [3396] = 2848, + [3397] = 2849, + [3398] = 2876, + [3399] = 2877, + [3400] = 2411, + [3401] = 2850, + [3402] = 2851, + [3403] = 2852, + [3404] = 2853, + [3405] = 2426, + [3406] = 135, + [3407] = 1753, + [3408] = 3340, + [3409] = 1654, + [3410] = 2471, + [3411] = 1958, + [3412] = 1641, + [3413] = 2292, + [3414] = 2444, + [3415] = 1644, + [3416] = 3416, + [3417] = 1838, + [3418] = 3418, + [3419] = 2512, + [3420] = 135, + [3421] = 1722, + [3422] = 1963, + [3423] = 2298, + [3424] = 2367, + [3425] = 1964, + [3426] = 3416, + [3427] = 2368, + [3428] = 3418, + [3429] = 2432, + [3430] = 1912, + [3431] = 2547, + [3432] = 2899, + [3433] = 2453, + [3434] = 2481, + [3435] = 2523, + [3436] = 2432, + [3437] = 2554, + [3438] = 1642, + [3439] = 1646, + [3440] = 2460, + [3441] = 853, + [3442] = 2500, + [3443] = 2576, + [3444] = 2488, + [3445] = 2529, + [3446] = 2486, + [3447] = 2558, + [3448] = 2493, + [3449] = 1645, + [3450] = 2491, + [3451] = 1876, + [3452] = 3416, + [3453] = 3418, + [3454] = 1881, + [3455] = 2533, + [3456] = 2546, + [3457] = 2536, + [3458] = 2555, + [3459] = 1643, + [3460] = 1652, + [3461] = 2342, + [3462] = 1996, + [3463] = 1650, + [3464] = 1256, + [3465] = 2421, + [3466] = 2424, + [3467] = 2427, + [3468] = 2896, + [3469] = 2449, + [3470] = 2494, + [3471] = 2412, + [3472] = 1656, + [3473] = 1971, + [3474] = 2432, + [3475] = 1884, + [3476] = 1880, + [3477] = 1925, + [3478] = 2420, + [3479] = 2336, + [3480] = 2518, + [3481] = 2519, + [3482] = 1887, + [3483] = 2528, + [3484] = 2495, + [3485] = 1972, + [3486] = 1888, + [3487] = 1997, + [3488] = 1620, + [3489] = 2425, + [3490] = 2469, + [3491] = 2476, + [3492] = 1994, + [3493] = 2477, + [3494] = 2357, + [3495] = 2442, + [3496] = 2337, + [3497] = 2513, + [3498] = 1950, + [3499] = 2573, + [3500] = 2548, + [3501] = 2410, + [3502] = 2485, + [3503] = 1647, + [3504] = 1955, + [3505] = 1956, + [3506] = 1957, + [3507] = 2459, + [3508] = 2474, + [3509] = 2522, + [3510] = 2524, + [3511] = 2531, + [3512] = 1976, + [3513] = 1904, + [3514] = 2466, + [3515] = 2468, + [3516] = 1921, + [3517] = 2496, + [3518] = 2497, + [3519] = 2498, + [3520] = 2505, + [3521] = 2509, + [3522] = 1907, + [3523] = 2529, + [3524] = 1982, + [3525] = 1922, + [3526] = 1927, + [3527] = 1935, + [3528] = 2899, + [3529] = 1768, + [3530] = 2564, + [3531] = 2434, + [3532] = 1898, + [3533] = 1941, + [3534] = 1915, + [3535] = 1875, + [3536] = 136, + [3537] = 2225, + [3538] = 1893, + [3539] = 1894, + [3540] = 1992, + [3541] = 1895, + [3542] = 1896, + [3543] = 1882, + [3544] = 2899, + [3545] = 1909, + [3546] = 1951, + [3547] = 854, + [3548] = 1871, + [3549] = 1726, + [3550] = 1877, + [3551] = 2897, + [3552] = 2544, + [3553] = 1639, + [3554] = 1900, + [3555] = 1849, + [3556] = 1902, + [3557] = 1653, + [3558] = 1655, + [3559] = 2899, + [3560] = 2445, + [3561] = 2077, + [3562] = 2147, + [3563] = 1960, + [3564] = 1961, + [3565] = 1917, + [3566] = 1918, + [3567] = 1889, + [3568] = 2540, + [3569] = 1978, + [3570] = 1764, + [3571] = 1979, + [3572] = 1980, + [3573] = 1983, + [3574] = 1923, + [3575] = 2562, + [3576] = 1991, + [3577] = 1970, + [3578] = 1911, + [3579] = 1716, + [3580] = 1890, + [3581] = 2545, + [3582] = 1883, + [3583] = 2550, + [3584] = 1651, + [3585] = 2520, + [3586] = 2463, + [3587] = 2273, + [3588] = 2465, + [3589] = 2470, + [3590] = 2552, + [3591] = 2530, + [3592] = 2899, + [3593] = 2849, + [3594] = 1572, + [3595] = 2844, + [3596] = 1573, + [3597] = 1646, + [3598] = 2530, + [3599] = 3599, + [3600] = 2412, + [3601] = 1568, + [3602] = 2469, + [3603] = 1835, + [3604] = 1641, + [3605] = 1644, + [3606] = 1838, + [3607] = 2495, + [3608] = 2845, + [3609] = 1575, + [3610] = 2529, + [3611] = 2513, + [3612] = 1849, + [3613] = 2529, + [3614] = 2460, + [3615] = 2422, + [3616] = 2860, + [3617] = 2554, + [3618] = 2432, + [3619] = 1788, + [3620] = 2576, + [3621] = 2449, + [3622] = 1764, + [3623] = 3416, + [3624] = 2846, + [3625] = 2486, + [3626] = 2547, + [3627] = 3418, + [3628] = 2847, + [3629] = 1647, + [3630] = 2292, + [3631] = 2459, + [3632] = 1768, + [3633] = 2474, + [3634] = 1645, + [3635] = 2877, + [3636] = 2522, + [3637] = 2842, + [3638] = 3638, + [3639] = 2463, + [3640] = 2520, + [3641] = 2848, + [3642] = 2552, + [3643] = 1572, + [3644] = 1571, + [3645] = 2491, + [3646] = 2548, [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] = 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, + [3648] = 2496, + [3649] = 2419, + [3650] = 2428, + [3651] = 2505, + [3652] = 2533, + [3653] = 2465, + [3654] = 2573, + [3655] = 1571, + [3656] = 2875, + [3657] = 2433, + [3658] = 2843, + [3659] = 2470, + [3660] = 1573, + [3661] = 2471, + [3662] = 2427, + [3663] = 2367, + [3664] = 2536, + [3665] = 2546, + [3666] = 2500, + [3667] = 2558, + [3668] = 2555, + [3669] = 3669, + [3670] = 2481, + [3671] = 2861, + [3672] = 2368, + [3673] = 2415, + [3674] = 2488, + [3675] = 2256, + [3676] = 2529, + [3677] = 1642, + [3678] = 2493, + [3679] = 1652, + [3680] = 2258, + [3681] = 136, + [3682] = 2226, + [3683] = 2411, + [3684] = 2232, + [3685] = 2233, + [3686] = 2261, + [3687] = 2544, + [3688] = 2250, + [3689] = 2257, + [3690] = 2239, + [3691] = 2241, + [3692] = 2253, + [3693] = 2485, + [3694] = 2853, + [3695] = 3695, + [3696] = 2382, + [3697] = 1656, + [3698] = 2512, + [3699] = 1569, + [3700] = 1639, + [3701] = 2421, + [3702] = 2424, + [3703] = 1654, + [3704] = 1653, + [3705] = 1655, + [3706] = 2382, + [3707] = 1570, + [3708] = 1749, + [3709] = 1643, + [3710] = 1651, + [3711] = 2494, + [3712] = 2550, + [3713] = 2518, + [3714] = 135, + [3715] = 2523, + [3716] = 2342, + [3717] = 2545, + [3718] = 2434, + [3719] = 2852, + [3720] = 2519, + [3721] = 1765, + [3722] = 2445, + [3723] = 1650, + [3724] = 2453, + [3725] = 3725, + [3726] = 2890, + [3727] = 1570, + [3728] = 1567, + [3729] = 2876, + [3730] = 2540, + [3731] = 2564, + [3732] = 2850, + [3733] = 1567, + [3734] = 2476, + [3735] = 2477, + [3736] = 2528, + [3737] = 2841, + [3738] = 1569, + [3739] = 2851, + [3740] = 2524, + [3741] = 2531, + [3742] = 2529, + [3743] = 2466, + [3744] = 2468, + [3745] = 2497, + [3746] = 1568, + [3747] = 2498, + [3748] = 2509, + [3749] = 1575, + [3750] = 2230, + [3751] = 3751, + [3752] = 2474, + [3753] = 2420, + [3754] = 1927, + [3755] = 1905, + [3756] = 3756, + [3757] = 1967, + [3758] = 2422, + [3759] = 1972, [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, + [3761] = 1838, + [3762] = 1849, + [3763] = 1764, + [3764] = 1571, + [3765] = 1768, + [3766] = 2419, + [3767] = 2428, + [3768] = 3768, + [3769] = 3769, + [3770] = 3760, + [3771] = 3771, + [3772] = 2420, + [3773] = 2896, + [3774] = 3774, + [3775] = 3760, + [3776] = 1609, + [3777] = 2433, + [3778] = 3416, + [3779] = 3418, + [3780] = 2897, + [3781] = 3760, + [3782] = 2540, + [3783] = 3760, + [3784] = 3751, + [3785] = 3760, + [3786] = 3760, + [3787] = 3787, + [3788] = 3760, + [3789] = 3789, + [3790] = 3760, + [3791] = 3760, + [3792] = 3760, + [3793] = 3768, + [3794] = 3794, [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] = 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] = 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] = 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, + [3796] = 3069, + [3797] = 3138, + [3798] = 3760, + [3799] = 3760, + [3800] = 3760, + [3801] = 3760, + [3802] = 2411, + [3803] = 3768, + [3804] = 3794, + [3805] = 3805, + [3806] = 3795, + [3807] = 3751, + [3808] = 3768, + [3809] = 3794, + [3810] = 3795, + [3811] = 3760, + [3812] = 3768, + [3813] = 3794, + [3814] = 3795, + [3815] = 3760, + [3816] = 3768, + [3817] = 3794, + [3818] = 3795, + [3819] = 2415, + [3820] = 3795, + [3821] = 3794, + [3822] = 3795, + [3823] = 3794, + [3824] = 3795, + [3825] = 3794, + [3826] = 3795, + [3827] = 3774, + [3828] = 3828, + [3829] = 3828, + [3830] = 3774, + [3831] = 3828, + [3832] = 3774, + [3833] = 3828, + [3834] = 3774, + [3835] = 3828, + [3836] = 3774, + [3837] = 3828, + [3838] = 3774, + [3839] = 3828, + [3840] = 3774, + [3841] = 3828, + [3842] = 3774, + [3843] = 3828, + [3844] = 2491, + [3845] = 3769, + [3846] = 3751, + [3847] = 3794, + [3848] = 1935, + [3849] = 2528, + [3850] = 3769, + [3851] = 3769, + [3852] = 3751, + [3853] = 3853, + [3854] = 3769, + [3855] = 3751, + [3856] = 3769, + [3857] = 3760, + [3858] = 2496, + [3859] = 1651, + [3860] = 1933, + [3861] = 2453, + [3862] = 2460, + [3863] = 1944, + [3864] = 1645, + [3865] = 1942, + [3866] = 2522, + [3867] = 136, + [3868] = 135, + [3869] = 3869, + [3870] = 3286, + [3871] = 3871, + [3872] = 1639, + [3873] = 1653, + [3874] = 1655, + [3875] = 2292, + [3876] = 2550, + [3877] = 2540, + [3878] = 2460, + [3879] = 2533, + [3880] = 2524, + [3881] = 3871, + [3882] = 3871, + [3883] = 2466, + [3884] = 1838, + [3885] = 2468, + [3886] = 2513, + [3887] = 2518, + [3888] = 2562, + [3889] = 2530, + [3890] = 3871, + [3891] = 1641, + [3892] = 1849, + [3893] = 1644, + [3894] = 2519, + [3895] = 2546, + [3896] = 3871, + [3897] = 2531, + [3898] = 3871, + [3899] = 1764, + [3900] = 1642, + [3901] = 1646, + [3902] = 2513, + [3903] = 1768, + [3904] = 2576, + [3905] = 3871, + [3906] = 2497, + [3907] = 2486, + [3908] = 2466, + [3909] = 2500, + [3910] = 2491, + [3911] = 2498, + [3912] = 2468, + [3913] = 2496, + [3914] = 2497, + [3915] = 2498, + [3916] = 3871, + [3917] = 2367, + [3918] = 2552, + [3919] = 2368, + [3920] = 3871, + [3921] = 2512, + [3922] = 3418, + [3923] = 3871, + [3924] = 3871, + [3925] = 3416, + [3926] = 2505, + [3927] = 3416, + [3928] = 3418, + [3929] = 2562, + [3930] = 3871, + [3931] = 2576, + [3932] = 2509, + [3933] = 3871, + [3934] = 3871, + [3935] = 1647, + [3936] = 3871, + [3937] = 2536, + [3938] = 2505, + [3939] = 3871, + [3940] = 2147, + [3941] = 2453, + [3942] = 3871, + [3943] = 3871, + [3944] = 2522, + [3945] = 2530, + [3946] = 2533, + [3947] = 2546, + [3948] = 2486, + [3949] = 2509, + [3950] = 1643, + [3951] = 2342, + [3952] = 1650, + [3953] = 2524, + [3954] = 2531, + [3955] = 2555, + [3956] = 2536, + [3957] = 2555, + [3958] = 1652, + [3959] = 1656, + [3960] = 1654, + [3961] = 2518, + [3962] = 2519, + [3963] = 2558, + [3964] = 2528, + [3965] = 2512, + [3966] = 2459, + [3967] = 2469, + [3968] = 2523, + [3969] = 2474, + [3970] = 2890, + [3971] = 2476, + [3972] = 1256, + [3973] = 2477, + [3974] = 2552, + [3975] = 3871, + [3976] = 2459, + [3977] = 2469, + [3978] = 2476, + [3979] = 3871, + [3980] = 2477, + [3981] = 2164, + [3982] = 2523, + [3983] = 1930, + [3984] = 2077, + [3985] = 1768, + [3986] = 1626, + [3987] = 3987, + [3988] = 3988, + [3989] = 3988, + [3990] = 1838, + [3991] = 2232, + [3992] = 2233, + [3993] = 3993, + [3994] = 3987, + [3995] = 1933, + [3996] = 3988, + [3997] = 3993, + [3998] = 1849, + [3999] = 3993, + [4000] = 4000, + [4001] = 2261, + [4002] = 3987, + [4003] = 3987, + [4004] = 3987, + [4005] = 3993, + [4006] = 4000, + [4007] = 2250, + [4008] = 3993, + [4009] = 3988, + [4010] = 2257, + [4011] = 2239, + [4012] = 3988, + [4013] = 3993, + [4014] = 1930, + [4015] = 3987, + [4016] = 1944, + [4017] = 3987, + [4018] = 3988, + [4019] = 3993, + [4020] = 1624, + [4021] = 2256, + [4022] = 3993, + [4023] = 2230, + [4024] = 3993, + [4025] = 2241, + [4026] = 2253, + [4027] = 1832, + [4028] = 3987, + [4029] = 3988, + [4030] = 1764, + [4031] = 3988, + [4032] = 3416, + [4033] = 3987, + [4034] = 3988, + [4035] = 3418, + [4036] = 2258, + [4037] = 1571, + [4038] = 2226, + [4039] = 1942, + [4040] = 3418, + [4041] = 1623, + [4042] = 2273, + [4043] = 1622, + [4044] = 3418, + [4045] = 1914, + [4046] = 2336, + [4047] = 2225, + [4048] = 1919, + [4049] = 3418, + [4050] = 1927, + [4051] = 1874, + [4052] = 4052, + [4053] = 4052, + [4054] = 3416, + [4055] = 1935, + [4056] = 1913, + [4057] = 4057, + [4058] = 3418, + [4059] = 4059, + [4060] = 4057, + [4061] = 4052, + [4062] = 4057, + [4063] = 3416, + [4064] = 3416, + [4065] = 2298, + [4066] = 1885, + [4067] = 2337, + [4068] = 1870, + [4069] = 2225, + [4070] = 3416, + [4071] = 2439, + [4072] = 1856, + [4073] = 3789, + [4074] = 3416, + [4075] = 4075, + [4076] = 2436, + [4077] = 4075, + [4078] = 1753, + [4079] = 4075, + [4080] = 4080, + [4081] = 4081, + [4082] = 3418, + [4083] = 4083, + [4084] = 4080, + [4085] = 4052, + [4086] = 4080, + [4087] = 4081, + [4088] = 4057, + [4089] = 3418, + [4090] = 4075, + [4091] = 4080, + [4092] = 4081, + [4093] = 4083, + [4094] = 4080, + [4095] = 1935, + [4096] = 4081, + [4097] = 1256, + [4098] = 3416, + [4099] = 1793, + [4100] = 4075, + [4101] = 4081, + [4102] = 4080, + [4103] = 4083, + [4104] = 3853, + [4105] = 4081, + [4106] = 4083, + [4107] = 4080, + [4108] = 4083, + [4109] = 2367, + [4110] = 2368, + [4111] = 2225, + [4112] = 4112, + [4113] = 4075, + [4114] = 1927, + [4115] = 4081, + [4116] = 4075, + [4117] = 4083, + [4118] = 2164, + [4119] = 4083, + [4120] = 1904, + [4121] = 1942, + [4122] = 1944, + [4123] = 2368, + [4124] = 1907, + [4125] = 279, [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, + [4127] = 345, + [4128] = 1893, + [4129] = 1894, + [4130] = 1895, + [4131] = 1896, + [4132] = 1883, + [4133] = 1626, + [4134] = 253, + [4135] = 364, + [4136] = 1620, + [4137] = 1624, + [4138] = 1898, + [4139] = 1909, + [4140] = 1917, + [4141] = 1918, + [4142] = 1925, + [4143] = 1588, + [4144] = 1933, + [4145] = 1923, + [4146] = 1921, + [4147] = 1922, + [4148] = 1638, + [4149] = 1915, + [4150] = 1875, + [4151] = 1871, + [4152] = 1877, + [4153] = 1900, + [4154] = 1902, + [4155] = 4059, + [4156] = 1890, + [4157] = 1876, + [4158] = 1881, + [4159] = 1884, + [4160] = 1880, + [4161] = 4052, + [4162] = 1887, + [4163] = 1888, + [4164] = 1911, + [4165] = 1912, + [4166] = 4057, + [4167] = 3416, + [4168] = 3418, + [4169] = 285, + [4170] = 1930, + [4171] = 2367, + [4172] = 1889, [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, + [4175] = 4175, + [4176] = 4176, + [4177] = 4177, + [4178] = 3416, + [4179] = 3418, + [4180] = 2550, + [4181] = 2298, + [4182] = 2336, + [4183] = 1930, + [4184] = 4184, + [4185] = 4185, + [4186] = 4173, [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, + [4188] = 4188, + [4189] = 4187, + [4190] = 3418, + [4191] = 1256, + [4192] = 4185, + [4193] = 2860, + [4194] = 2861, + [4195] = 2841, + [4196] = 2842, + [4197] = 2875, + [4198] = 2843, + [4199] = 2844, + [4200] = 2845, + [4201] = 4201, + [4202] = 2847, + [4203] = 2848, + [4204] = 2849, + [4205] = 2876, + [4206] = 2877, + [4207] = 4057, + [4208] = 2850, + [4209] = 2851, + [4210] = 4201, + [4211] = 2852, + [4212] = 4175, + [4213] = 2853, + [4214] = 2337, + [4215] = 4201, + [4216] = 4174, + [4217] = 4176, + [4218] = 4177, + [4219] = 4052, + [4220] = 1944, + [4221] = 4174, + [4222] = 2273, + [4223] = 4176, + [4224] = 3418, + [4225] = 2558, + [4226] = 4177, + [4227] = 1942, + [4228] = 1609, + [4229] = 2500, + [4230] = 1933, + [4231] = 4057, + [4232] = 1609, + [4233] = 4052, + [4234] = 3416, + [4235] = 3416, + [4236] = 2846, + [4237] = 4237, + [4238] = 1958, + [4239] = 4201, + [4240] = 4240, + [4241] = 4241, + [4242] = 4174, + [4243] = 2225, + [4244] = 4176, + [4245] = 4177, + [4246] = 4246, + [4247] = 2896, + [4248] = 2595, + [4249] = 1624, + [4250] = 2410, + [4251] = 2164, + [4252] = 2292, + [4253] = 2603, + [4254] = 3416, + [4255] = 2442, + [4256] = 2367, + [4257] = 2368, + [4258] = 1964, + [4259] = 1967, + [4260] = 1992, + [4261] = 2342, + [4262] = 1951, + [4263] = 4237, + [4264] = 4052, + [4265] = 1963, + [4266] = 1960, + [4267] = 4237, + [4268] = 2444, + [4269] = 1961, + [4270] = 1626, + [4271] = 4271, + [4272] = 4057, + [4273] = 2897, + [4274] = 4274, + [4275] = 2610, + [4276] = 1978, + [4277] = 1979, + [4278] = 1980, + [4279] = 1983, + [4280] = 1991, + [4281] = 3418, + [4282] = 2292, + [4283] = 4174, + [4284] = 4052, + [4285] = 1642, + [4286] = 3418, + [4287] = 4057, + [4288] = 4176, + [4289] = 4188, + [4290] = 4177, + [4291] = 1653, + [4292] = 4052, + [4293] = 136, + [4294] = 4057, + [4295] = 4052, + [4296] = 4188, + [4297] = 1638, + [4298] = 1656, + [4299] = 2897, + [4300] = 1624, + [4301] = 1646, [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] = 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] = 4471, - [4472] = 4472, - [4473] = 2821, - [4474] = 4474, - [4475] = 2823, - [4476] = 2402, - [4477] = 4477, - [4478] = 4187, - [4479] = 1865, + [4303] = 1654, + [4304] = 1832, + [4305] = 1652, + [4306] = 4057, + [4307] = 135, + [4308] = 1645, + [4309] = 3416, + [4310] = 1639, + [4311] = 2896, + [4312] = 2342, + [4313] = 1647, + [4314] = 1620, + [4315] = 1571, + [4316] = 1927, + [4317] = 1626, + [4318] = 1641, + [4319] = 1644, + [4320] = 1650, + [4321] = 1651, + [4322] = 4052, + [4323] = 4201, + [4324] = 1935, + [4325] = 4325, + [4326] = 1655, + [4327] = 4057, + [4328] = 4176, + [4329] = 4177, + [4330] = 2845, + [4331] = 2846, + [4332] = 2850, + [4333] = 2853, + [4334] = 2847, + [4335] = 1622, + [4336] = 2861, + [4337] = 2843, + [4338] = 2848, + [4339] = 4201, + [4340] = 2853, + [4341] = 3418, + [4342] = 2849, + [4343] = 4246, + [4344] = 2164, + [4345] = 2225, + [4346] = 2368, + [4347] = 2875, + [4348] = 4274, + [4349] = 2843, + [4350] = 4350, + [4351] = 2850, + [4352] = 2844, + [4353] = 2845, + [4354] = 2876, + [4355] = 4057, + [4356] = 2877, + [4357] = 4357, + [4358] = 2842, + [4359] = 1623, + [4360] = 2851, + [4361] = 4052, + [4362] = 2844, + [4363] = 4057, + [4364] = 2875, + [4365] = 2846, + [4366] = 2847, + [4367] = 2848, + [4368] = 2849, + [4369] = 2876, + [4370] = 4201, + [4371] = 4174, + [4372] = 2367, + [4373] = 4177, + [4374] = 2877, + [4375] = 1882, + [4376] = 4174, + [4377] = 3416, + [4378] = 2852, + [4379] = 4176, + [4380] = 4380, + [4381] = 2841, + [4382] = 2852, + [4383] = 2841, + [4384] = 2860, + [4385] = 2851, + [4386] = 2842, + [4387] = 1623, + [4388] = 2861, + [4389] = 4052, + [4390] = 2860, + [4391] = 1622, + [4392] = 1638, + [4393] = 4393, + [4394] = 1788, + [4395] = 1963, + [4396] = 1832, + [4397] = 4393, + [4398] = 1835, + [4399] = 4399, + [4400] = 4400, + [4401] = 4401, + [4402] = 4400, + [4403] = 4400, + [4404] = 4052, + [4405] = 4400, + [4406] = 4057, + [4407] = 1980, + [4408] = 1964, + [4409] = 4409, + [4410] = 4410, + [4411] = 4176, + [4412] = 4400, + [4413] = 4400, + [4414] = 4400, + [4415] = 1570, + [4416] = 4325, + [4417] = 1951, + [4418] = 2337, + [4419] = 2077, + [4420] = 2896, + [4421] = 4177, + [4422] = 4410, + [4423] = 1967, + [4424] = 1567, + [4425] = 4425, + [4426] = 4426, + [4427] = 4426, + [4428] = 1635, + [4429] = 1992, + [4430] = 1569, + [4431] = 1991, + [4432] = 4400, + [4433] = 1568, + [4434] = 1575, + [4435] = 4393, + [4436] = 4399, + [4437] = 2147, + [4438] = 4201, + [4439] = 4400, + [4440] = 1960, + [4441] = 4400, + [4442] = 4400, + [4443] = 4400, + [4444] = 4393, + [4445] = 2336, + [4446] = 4399, + [4447] = 1573, + [4448] = 4410, + [4449] = 4400, + [4450] = 1749, + [4451] = 4426, + [4452] = 4400, + [4453] = 1978, + [4454] = 1765, + [4455] = 4399, + [4456] = 4410, + [4457] = 1961, + [4458] = 4410, + [4459] = 4393, + [4460] = 4460, + [4461] = 4461, + [4462] = 2897, + [4463] = 4410, + [4464] = 4174, + [4465] = 4393, + [4466] = 4399, + [4467] = 4399, + [4468] = 4468, + [4469] = 2164, + [4470] = 1979, + [4471] = 4400, + [4472] = 2298, + [4473] = 2273, + [4474] = 4400, + [4475] = 1983, + [4476] = 4400, + [4477] = 4393, + [4478] = 1958, + [4479] = 1572, [4480] = 4480, - [4481] = 4481, + [4481] = 4177, [4482] = 4482, - [4483] = 2825, - [4484] = 4471, - [4485] = 4485, - [4486] = 2867, + [4483] = 2257, + [4484] = 2368, + [4485] = 2842, + [4486] = 4486, [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, + [4488] = 4488, + [4489] = 2239, + [4490] = 4490, + [4491] = 4201, + [4492] = 4184, + [4493] = 2851, + [4494] = 4494, + [4495] = 2256, + [4496] = 4480, + [4497] = 4174, + [4498] = 4176, + [4499] = 4177, + [4500] = 4480, [4501] = 4501, - [4502] = 4167, - [4503] = 4028, - [4504] = 2214, - [4505] = 2401, - [4506] = 2434, - [4507] = 4507, - [4508] = 4508, + [4502] = 4487, + [4503] = 4201, + [4504] = 4174, + [4505] = 4176, + [4506] = 4177, + [4507] = 2852, + [4508] = 1905, [4509] = 4509, - [4510] = 2824, - [4511] = 4493, - [4512] = 2827, - [4513] = 4174, - [4514] = 2838, - [4515] = 4172, - [4516] = 2216, - [4517] = 4499, - [4518] = 2839, - [4519] = 1797, - [4520] = 1561, + [4510] = 4201, + [4511] = 2419, + [4512] = 2875, + [4513] = 2433, + [4514] = 4480, + [4515] = 4174, + [4516] = 4176, + [4517] = 4490, + [4518] = 4177, + [4519] = 2843, + [4520] = 2844, [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] = 4584, + [4522] = 2845, + [4523] = 2846, + [4524] = 4480, + [4525] = 2258, + [4526] = 2847, + [4527] = 2848, + [4528] = 4528, + [4529] = 2849, + [4530] = 4052, + [4531] = 4531, + [4532] = 2876, + [4533] = 4528, + [4534] = 4531, + [4535] = 2226, + [4536] = 2428, + [4537] = 2230, + [4538] = 4538, + [4539] = 2877, + [4540] = 2241, + [4541] = 2841, + [4542] = 2253, + [4543] = 2842, + [4544] = 4501, + [4545] = 2875, + [4546] = 2843, + [4547] = 2844, + [4548] = 2845, + [4549] = 2846, + [4550] = 2847, + [4551] = 2848, + [4552] = 2849, + [4553] = 2876, + [4554] = 4480, + [4555] = 2877, + [4556] = 4401, + [4557] = 2232, + [4558] = 2850, + [4559] = 2851, + [4560] = 2852, + [4561] = 2853, + [4562] = 4057, + [4563] = 1638, + [4564] = 2233, + [4565] = 2861, + [4566] = 2415, + [4567] = 4567, + [4568] = 4052, + [4569] = 2225, + [4570] = 1935, + [4571] = 3338, + [4572] = 4176, + [4573] = 4487, + [4574] = 4490, + [4575] = 4501, + [4576] = 4480, + [4577] = 4577, + [4578] = 4578, + [4579] = 4501, + [4580] = 2382, + [4581] = 4501, + [4582] = 2422, + [4583] = 2853, + [4584] = 2860, [4585] = 4585, - [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, + [4586] = 4501, + [4587] = 4480, + [4588] = 4487, + [4589] = 4501, + [4590] = 1571, + [4591] = 4591, + [4592] = 2411, + [4593] = 2860, + [4594] = 4188, + [4595] = 2861, + [4596] = 2850, + [4597] = 4597, + [4598] = 2433, + [4599] = 4480, + [4600] = 2411, + [4601] = 4601, + [4602] = 4602, + [4603] = 1832, [4604] = 4604, - [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, + [4605] = 1927, + [4606] = 2367, + [4607] = 4607, + [4608] = 4509, + [4609] = 1856, + [4610] = 4610, + [4611] = 2841, + [4612] = 2842, + [4613] = 2875, + [4614] = 2843, + [4615] = 2844, + [4616] = 2845, + [4617] = 2846, + [4618] = 2847, + [4619] = 2848, + [4620] = 2849, + [4621] = 2876, + [4622] = 2877, + [4623] = 2850, + [4624] = 2851, + [4625] = 2852, + [4626] = 2853, + [4627] = 2860, + [4628] = 2861, + [4629] = 4487, + [4630] = 4480, + [4631] = 4487, + [4632] = 2261, + [4633] = 2422, + [4634] = 2419, + [4635] = 2428, + [4636] = 4490, + [4637] = 2415, + [4638] = 2841, + [4639] = 4490, + [4640] = 4640, [4641] = 4641, - [4642] = 4642, + [4642] = 4480, [4643] = 4643, - [4644] = 4644, - [4645] = 4645, + [4644] = 2250, + [4645] = 4201, [4646] = 4646, - [4647] = 4647, + [4647] = 4480, [4648] = 4648, - [4649] = 4646, - [4650] = 1884, - [4651] = 4651, - [4652] = 4652, + [4649] = 4649, + [4650] = 4480, + [4651] = 4174, + [4652] = 4057, [4653] = 4653, [4654] = 4654, [4655] = 4655, [4656] = 4656, [4657] = 4657, - [4658] = 4647, - [4659] = 4647, - [4660] = 4648, + [4658] = 4658, + [4659] = 4659, + [4660] = 4660, [4661] = 4661, - [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] = 4675, - [4676] = 4676, - [4677] = 4677, - [4678] = 1902, - [4679] = 4657, - [4680] = 4677, - [4681] = 4681, - [4682] = 4681, - [4683] = 4681, - [4684] = 4673, - [4685] = 4652, - [4686] = 4686, - [4687] = 4648, + [4662] = 1885, + [4663] = 4663, + [4664] = 4664, + [4665] = 4657, + [4666] = 4659, + [4667] = 4667, + [4668] = 4668, + [4669] = 1898, + [4670] = 4670, + [4671] = 4667, + [4672] = 4657, + [4673] = 4657, + [4674] = 4657, + [4675] = 1909, + [4676] = 1883, + [4677] = 4659, + [4678] = 4678, + [4679] = 4658, + [4680] = 4657, + [4681] = 1902, + [4682] = 4661, + [4683] = 1914, + [4684] = 1917, + [4685] = 4685, + [4686] = 1874, + [4687] = 1876, [4688] = 4688, - [4689] = 4677, - [4690] = 1885, - [4691] = 4691, - [4692] = 4692, - [4693] = 4187, - [4694] = 4174, - [4695] = 4675, - [4696] = 4172, - [4697] = 4167, - [4698] = 4645, - [4699] = 4651, - [4700] = 1886, + [4689] = 1881, + [4690] = 1927, + [4691] = 4664, + [4692] = 1884, + [4693] = 1893, + [4694] = 1894, + [4695] = 1895, + [4696] = 1880, + [4697] = 4659, + [4698] = 1887, + [4699] = 1904, + [4700] = 4700, [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] = 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] = 1907, + [4702] = 1907, + [4703] = 4685, + [4704] = 4678, + [4705] = 4705, + [4706] = 4706, + [4707] = 4705, + [4708] = 1888, + [4709] = 4709, + [4710] = 1918, + [4711] = 1925, + [4712] = 4712, + [4713] = 2345, + [4714] = 4685, + [4715] = 4660, + [4716] = 4716, + [4717] = 4705, + [4718] = 4706, + [4719] = 4685, + [4720] = 4660, + [4721] = 4678, + [4722] = 4705, + [4723] = 1889, + [4724] = 1923, + [4725] = 4700, + [4726] = 2897, + [4727] = 1911, + [4728] = 1912, + [4729] = 4729, + [4730] = 4730, + [4731] = 4654, + [4732] = 4705, + [4733] = 4201, + [4734] = 4174, + [4735] = 4176, + [4736] = 4177, + [4737] = 4685, + [4738] = 4738, + [4739] = 4739, + [4740] = 4661, + [4741] = 2896, + [4742] = 4653, + [4743] = 4743, + [4744] = 4744, + [4745] = 4729, + [4746] = 4668, + [4747] = 4706, + [4748] = 4670, + [4749] = 4663, + [4750] = 4705, + [4751] = 4685, + [4752] = 4660, + [4753] = 1896, + [4754] = 4660, + [4755] = 4709, + [4756] = 4661, + [4757] = 4757, + [4758] = 4657, + [4759] = 4664, + [4760] = 4668, + [4761] = 4661, + [4762] = 4659, + [4763] = 4670, + [4764] = 4764, + [4765] = 4661, + [4766] = 4709, + [4767] = 4660, + [4768] = 4653, + [4769] = 1890, + [4770] = 4770, + [4771] = 4700, + [4772] = 4661, + [4773] = 4657, + [4774] = 4743, + [4775] = 4678, + [4776] = 4706, + [4777] = 4678, + [4778] = 4659, + [4779] = 4709, + [4780] = 4706, + [4781] = 4781, + [4782] = 4667, + [4783] = 4658, + [4784] = 4700, + [4785] = 4057, [4786] = 4786, - [4787] = 1908, - [4788] = 4676, + [4787] = 4678, + [4788] = 4706, [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, + [4790] = 4659, + [4791] = 4709, + [4792] = 4792, + [4793] = 1935, + [4794] = 4685, + [4795] = 4660, + [4796] = 4201, + [4797] = 4709, + [4798] = 4052, + [4799] = 4656, + [4800] = 4664, + [4801] = 4174, + [4802] = 4176, + [4803] = 4177, [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, + [4806] = 4712, + [4807] = 4667, + [4808] = 4808, + [4809] = 4809, + [4810] = 2420, + [4811] = 4657, + [4812] = 4705, + [4813] = 1877, + [4814] = 4814, + [4815] = 4815, + [4816] = 1919, + [4817] = 1921, + [4818] = 4653, + [4819] = 1922, + [4820] = 4659, + [4821] = 4653, + [4822] = 4700, + [4823] = 1900, + [4824] = 4700, + [4825] = 4825, + [4826] = 4729, + [4827] = 1913, + [4828] = 4668, + [4829] = 4670, + [4830] = 4830, + [4831] = 4678, + [4832] = 4657, + [4833] = 4709, + [4834] = 4658, + [4835] = 1915, + [4836] = 4836, + [4837] = 4657, + [4838] = 1875, + [4839] = 4839, + [4840] = 4729, + [4841] = 4668, + [4842] = 4670, + [4843] = 4657, + [4844] = 4844, + [4845] = 1870, + [4846] = 4664, + [4847] = 1871, + [4848] = 4659, + [4849] = 4700, + [4850] = 4654, + [4851] = 4654, + [4852] = 4654, + [4853] = 4654, + [4854] = 4729, + [4855] = 2540, + [4856] = 2533, + [4857] = 2469, + [4858] = 2576, + [4859] = 2476, + [4860] = 2477, + [4861] = 4052, + [4862] = 2459, + [4863] = 2512, + [4864] = 2562, + [4865] = 4743, + [4866] = 4866, + [4867] = 2558, + [4868] = 4868, + [4869] = 4201, + [4870] = 4174, + [4871] = 4176, + [4872] = 4177, + [4873] = 2474, + [4874] = 2497, + [4875] = 4875, + [4876] = 2498, + [4877] = 2522, + [4878] = 2505, + [4879] = 2486, + [4880] = 2524, + [4881] = 2531, + [4882] = 2342, + [4883] = 2509, + [4884] = 2466, + [4885] = 2555, + [4886] = 2518, + [4887] = 2519, + [4888] = 2468, + [4889] = 4743, + [4890] = 4057, + [4891] = 4868, + [4892] = 4743, + [4893] = 4893, + [4894] = 4868, + [4895] = 2550, + [4896] = 4868, + [4897] = 2147, + [4898] = 2513, + [4899] = 4899, + [4900] = 2552, + [4901] = 2491, + [4902] = 4743, + [4903] = 2523, + [4904] = 2292, + [4905] = 4868, + [4906] = 2453, + [4907] = 4907, + [4908] = 2500, + [4909] = 4743, + [4910] = 2460, + [4911] = 2528, + [4912] = 2536, + [4913] = 4868, + [4914] = 4743, + [4915] = 2546, + [4916] = 2077, + [4917] = 2530, + [4918] = 2496, + [4919] = 4868, + [4920] = 1753, + [4921] = 2367, + [4922] = 4743, + [4923] = 4174, + [4924] = 2226, + [4925] = 4743, + [4926] = 2225, + [4927] = 4743, + [4928] = 4928, + [4929] = 2241, + [4930] = 2233, + [4931] = 2258, + [4932] = 4177, + [4933] = 2261, + [4934] = 4743, + [4935] = 4743, + [4936] = 4052, + [4937] = 4174, + [4938] = 2257, + [4939] = 4201, + [4940] = 4743, + [4941] = 2256, + [4942] = 4743, + [4943] = 1935, + [4944] = 4944, + [4945] = 4176, + [4946] = 2367, + [4947] = 4177, + [4948] = 4948, + [4949] = 2368, + [4950] = 2253, + [4951] = 2368, + [4952] = 4743, + [4953] = 4953, + [4954] = 4948, + [4955] = 2368, + [4956] = 2239, + [4957] = 2232, + [4958] = 4174, + [4959] = 4928, + [4960] = 4743, + [4961] = 4743, + [4962] = 1626, + [4963] = 2367, + [4964] = 4176, + [4965] = 2250, + [4966] = 1793, + [4967] = 4743, + [4968] = 1624, + [4969] = 4969, + [4970] = 4953, + [4971] = 1856, + [4972] = 4057, + [4973] = 2164, + [4974] = 2230, + [4975] = 4177, + [4976] = 4201, + [4977] = 1927, + [4978] = 4743, + [4979] = 1895, + [4980] = 1884, + [4981] = 4743, + [4982] = 1887, + [4983] = 1918, + [4984] = 1888, + [4985] = 4743, + [4986] = 4986, + [4987] = 1914, + [4988] = 4988, + [4989] = 4988, + [4990] = 4174, + [4991] = 1911, + [4992] = 1912, + [4993] = 1913, + [4994] = 4177, + [4995] = 1915, + [4996] = 1925, + [4997] = 1885, + [4998] = 1875, + [4999] = 1883, + [5000] = 1893, + [5001] = 1889, + [5002] = 1941, + [5003] = 1870, + [5004] = 1871, + [5005] = 1877, + [5006] = 1882, + [5007] = 1894, + [5008] = 1919, + [5009] = 4986, + [5010] = 1898, + [5011] = 1909, + [5012] = 1923, + [5013] = 1917, + [5014] = 4176, + [5015] = 1900, + [5016] = 1896, + [5017] = 1902, + [5018] = 1890, + [5019] = 1921, + [5020] = 1904, + [5021] = 1907, + [5022] = 1922, + [5023] = 1874, + [5024] = 1876, + [5025] = 1881, + [5026] = 4201, + [5027] = 5027, + [5028] = 1880, + [5029] = 4743, + [5030] = 4988, + [5031] = 2367, + [5032] = 4986, + [5033] = 4988, + [5034] = 4743, + [5035] = 4177, + [5036] = 4743, + [5037] = 2077, + [5038] = 2147, + [5039] = 4988, + [5040] = 4986, + [5041] = 4988, + [5042] = 2598, + [5043] = 4201, + [5044] = 4988, + [5045] = 4743, + [5046] = 4174, + [5047] = 4743, + [5048] = 2368, + [5049] = 4176, + [5050] = 4986, + [5051] = 4986, + [5052] = 4986, + [5053] = 4743, + [5054] = 4986, + [5055] = 4988, + [5056] = 1958, + [5057] = 4986, + [5058] = 4986, + [5059] = 4988, + [5060] = 4743, + [5061] = 4743, + [5062] = 5062, + [5063] = 4986, + [5064] = 5064, + [5065] = 1980, + [5066] = 4988, + [5067] = 5064, + [5068] = 5068, + [5069] = 1951, + [5070] = 5064, + [5071] = 1978, + [5072] = 4988, + [5073] = 4986, + [5074] = 5062, + [5075] = 4988, + [5076] = 5062, + [5077] = 5062, + [5078] = 1979, + [5079] = 1991, + [5080] = 5062, + [5081] = 5064, + [5082] = 4988, + [5083] = 4986, + [5084] = 5062, + [5085] = 1960, + [5086] = 2225, + [5087] = 1961, + [5088] = 4988, + [5089] = 1638, + [5090] = 1983, + [5091] = 4986, + [5092] = 5092, + [5093] = 4988, + [5094] = 4986, + [5095] = 4988, + [5096] = 5062, + [5097] = 1624, + [5098] = 1626, + [5099] = 5064, + [5100] = 4988, + [5101] = 4201, + [5102] = 4743, + [5103] = 4988, + [5104] = 3286, + [5105] = 5062, + [5106] = 1992, + [5107] = 5064, + [5108] = 4986, + [5109] = 4988, + [5110] = 4743, + [5111] = 4176, + [5112] = 1963, + [5113] = 5062, + [5114] = 4743, + [5115] = 4986, + [5116] = 4174, + [5117] = 4986, + [5118] = 4988, + [5119] = 1964, + [5120] = 4986, + [5121] = 4177, + [5122] = 5064, + [5123] = 4986, + [5124] = 5064, + [5125] = 5064, + [5126] = 5126, [5127] = 5127, - [5128] = 5117, - [5129] = 5115, - [5130] = 5127, - [5131] = 4967, - [5132] = 4972, - [5133] = 5115, - [5134] = 5117, - [5135] = 5115, - [5136] = 5127, + [5128] = 5128, + [5129] = 5126, + [5130] = 5130, + [5131] = 5127, + [5132] = 5126, + [5133] = 5133, + [5134] = 4986, + [5135] = 2256, + [5136] = 5128, [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, + [5138] = 5128, + [5139] = 2230, + [5140] = 5127, + [5141] = 5141, + [5142] = 5142, + [5143] = 5128, + [5144] = 5128, + [5145] = 5130, + [5146] = 5133, + [5147] = 5142, + [5148] = 5128, + [5149] = 5133, + [5150] = 5150, + [5151] = 5151, + [5152] = 5130, + [5153] = 2258, + [5154] = 5126, + [5155] = 2226, + [5156] = 5128, + [5157] = 5127, + [5158] = 5128, + [5159] = 2232, + [5160] = 2233, + [5161] = 5128, + [5162] = 5150, + [5163] = 5150, + [5164] = 2598, + [5165] = 2261, + [5166] = 5127, + [5167] = 5151, + [5168] = 5141, + [5169] = 5142, + [5170] = 5133, + [5171] = 2250, + [5172] = 5130, + [5173] = 2257, + [5174] = 2239, + [5175] = 5150, + [5176] = 5151, + [5177] = 5130, + [5178] = 5126, + [5179] = 5142, + [5180] = 5133, + [5181] = 5126, + [5182] = 5126, + [5183] = 2241, + [5184] = 2253, + [5185] = 5150, + [5186] = 5142, + [5187] = 5127, + [5188] = 4988, + [5189] = 5127, + [5190] = 5127, + [5191] = 5128, + [5192] = 5151, + [5193] = 5126, + [5194] = 5128, + [5195] = 5127, + [5196] = 5126, + [5197] = 5126, + [5198] = 5141, + [5199] = 5151, + [5200] = 5130, + [5201] = 5126, + [5202] = 5126, [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, + [5204] = 5128, + [5205] = 5127, + [5206] = 5128, + [5207] = 5151, + [5208] = 5127, + [5209] = 5126, + [5210] = 5127, + [5211] = 5128, + [5212] = 5128, + [5213] = 2598, + [5214] = 5150, + [5215] = 5126, + [5216] = 5141, + [5217] = 5142, + [5218] = 5128, + [5219] = 5133, [5220] = 5127, - [5221] = 5117, - [5222] = 5115, - [5223] = 5127, - [5224] = 5120, - [5225] = 5121, - [5226] = 5117, - [5227] = 5115, - [5228] = 5228, - [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, + [5221] = 5150, + [5222] = 5151, + [5223] = 5130, + [5224] = 5126, + [5225] = 5141, + [5226] = 5126, + [5227] = 5127, + [5228] = 5142, + [5229] = 5128, + [5230] = 5127, + [5231] = 5141, + [5232] = 5127, + [5233] = 5126, + [5234] = 5133, + [5235] = 4986, + [5236] = 5141, + [5237] = 4988, + [5238] = 5128, + [5239] = 5126, + [5240] = 5240, + [5241] = 5241, + [5242] = 5242, + [5243] = 4986, + [5244] = 5244, + [5245] = 5240, + [5246] = 5240, + [5247] = 5244, + [5248] = 5244, + [5249] = 4988, + [5250] = 5244, + [5251] = 5240, + [5252] = 5241, + [5253] = 5253, + [5254] = 5244, [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, + [5256] = 5240, + [5257] = 5244, + [5258] = 5244, + [5259] = 5240, + [5260] = 5241, + [5261] = 5253, + [5262] = 5240, + [5263] = 5244, + [5264] = 5244, + [5265] = 5244, + [5266] = 5240, + [5267] = 5241, + [5268] = 5253, + [5269] = 5240, + [5270] = 5240, + [5271] = 5241, + [5272] = 5253, + [5273] = 5240, + [5274] = 5241, + [5275] = 5253, + [5276] = 5244, + [5277] = 5240, + [5278] = 5241, + [5279] = 5240, + [5280] = 5253, + [5281] = 5240, + [5282] = 5240, + [5283] = 5253, + [5284] = 5240, + [5285] = 5244, + [5286] = 5244, + [5287] = 5240, + [5288] = 5241, + [5289] = 5253, + [5290] = 5244, + [5291] = 5244, + [5292] = 4986, + [5293] = 4986, + [5294] = 4988, + [5295] = 5244, + [5296] = 4986, + [5297] = 4988, + [5298] = 5244, + [5299] = 4988, + [5300] = 4986, + [5301] = 5244, + [5302] = 4988, + [5303] = 4986, + [5304] = 4988, + [5305] = 5241, + [5306] = 5244, + [5307] = 5240, + [5308] = 5244, + [5309] = 5253, + [5310] = 5310, + [5311] = 4988, + [5312] = 1967, + [5313] = 5313, [5314] = 5314, - [5315] = 5303, + [5315] = 5315, [5316] = 5316, - [5317] = 5307, + [5317] = 5316, [5318] = 5318, - [5319] = 5304, - [5320] = 5304, - [5321] = 5306, - [5322] = 5306, + [5319] = 5310, + [5320] = 5320, + [5321] = 5314, + [5322] = 5322, [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, + [5324] = 5324, + [5325] = 4986, + [5326] = 4986, + [5327] = 4988, + [5328] = 5328, + [5329] = 4986, + [5330] = 5330, + [5331] = 4988, + [5332] = 1638, + [5333] = 5316, + [5334] = 3853, + [5335] = 3789, + [5336] = 5310, + [5337] = 5320, + [5338] = 5314, + [5339] = 5323, + [5340] = 5324, + [5341] = 5324, + [5342] = 5316, + [5343] = 5343, + [5344] = 5320, + [5345] = 5314, + [5346] = 5323, + [5347] = 5324, + [5348] = 5316, + [5349] = 5320, + [5350] = 5323, + [5351] = 5351, + [5352] = 4988, + [5353] = 5316, + [5354] = 5320, + [5355] = 5323, + [5356] = 5356, + [5357] = 5316, + [5358] = 5320, + [5359] = 5330, + [5360] = 5343, + [5361] = 5313, + [5362] = 4986, + [5363] = 5323, + [5364] = 5316, + [5365] = 5316, + [5366] = 4986, + [5367] = 5320, + [5368] = 4988, + [5369] = 5324, + [5370] = 5310, + [5371] = 5323, + [5372] = 5343, + [5373] = 5330, + [5374] = 5313, + [5375] = 5343, + [5376] = 5313, + [5377] = 5313, + [5378] = 5330, + [5379] = 5330, + [5380] = 5343, + [5381] = 5313, + [5382] = 5343, + [5383] = 5313, + [5384] = 5330, + [5385] = 5313, + [5386] = 5343, + [5387] = 5330, + [5388] = 5330, + [5389] = 3069, + [5390] = 5343, + [5391] = 5313, + [5392] = 5343, + [5393] = 5313, + [5394] = 5343, + [5395] = 5313, + [5396] = 5313, + [5397] = 5330, + [5398] = 5343, + [5399] = 5313, + [5400] = 5330, + [5401] = 5343, + [5402] = 5313, + [5403] = 5343, + [5404] = 3138, + [5405] = 5343, + [5406] = 5330, + [5407] = 5330, + [5408] = 5313, + [5409] = 5343, + [5410] = 5343, + [5411] = 5330, + [5412] = 5313, + [5413] = 5343, + [5414] = 5313, + [5415] = 5330, + [5416] = 5343, + [5417] = 5313, + [5418] = 5330, + [5419] = 5330, + [5420] = 5343, + [5421] = 5343, + [5422] = 5313, + [5423] = 5330, + [5424] = 5330, + [5425] = 5313, + [5426] = 5330, + [5427] = 5330, + [5428] = 5330, + [5429] = 5343, + [5430] = 5313, + [5431] = 5343, + [5432] = 5313, + [5433] = 5433, + [5434] = 5433, + [5435] = 5433, + [5436] = 5330, + [5437] = 5433, + [5438] = 5343, + [5439] = 5439, + [5440] = 5330, + [5441] = 5343, + [5442] = 5313, + [5443] = 5439, + [5444] = 5439, + [5445] = 5439, + [5446] = 5446, + [5447] = 5446, + [5448] = 5446, + [5449] = 5343, + [5450] = 5330, + [5451] = 5439, + [5452] = 5313, + [5453] = 5330, + [5454] = 5343, + [5455] = 5313, + [5456] = 5343, + [5457] = 5330, + [5458] = 5313, + [5459] = 5330, + [5460] = 5343, + [5461] = 5313, + [5462] = 5330, + [5463] = 5439, + [5464] = 5313, + [5465] = 5439, + [5466] = 5343, + [5467] = 5467, + [5468] = 5313, + [5469] = 5313, + [5470] = 5343, + [5471] = 5471, [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] = 5473, - [5488] = 5430, - [5489] = 5472, - [5490] = 5473, - [5491] = 5473, - [5492] = 5472, - [5493] = 5473, - [5494] = 5472, - [5495] = 5472, - [5496] = 5496, - [5497] = 5497, - [5498] = 5497, - [5499] = 5499, - [5500] = 5496, - [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, + [5473] = 5330, + [5474] = 5343, + [5475] = 5313, + [5476] = 5330, + [5477] = 5313, + [5478] = 5330, + [5479] = 5471, + [5480] = 5480, + [5481] = 5330, + [5482] = 5343, + [5483] = 5343, + [5484] = 5313, + [5485] = 5471, + [5486] = 5446, + [5487] = 5330, + [5488] = 5488, + [5489] = 5489, + [5490] = 5489, + [5491] = 5488, + [5492] = 5489, + [5493] = 5489, + [5494] = 5489, + [5495] = 5488, + [5496] = 5488, + [5497] = 5489, + [5498] = 5488, + [5499] = 5489, + [5500] = 5446, + [5501] = 5489, + [5502] = 5488, + [5503] = 5503, + [5504] = 5488, + [5505] = 5488, + [5506] = 5488, + [5507] = 5489, + [5508] = 5488, + [5509] = 5488, + [5510] = 5489, + [5511] = 5489, + [5512] = 5512, + [5513] = 5513, + [5514] = 5514, + [5515] = 5515, + [5516] = 5515, + [5517] = 5512, + [5518] = 5514, + [5519] = 5515, + [5520] = 5515, + [5521] = 5512, + [5522] = 5515, + [5523] = 5512, + [5524] = 5472, [5525] = 5525, [5526] = 5526, - [5527] = 5524, - [5528] = 5526, + [5527] = 5527, + [5528] = 5528, [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, + [5530] = 5515, + [5531] = 5512, + [5532] = 5512, + [5533] = 5515, + [5534] = 5514, + [5535] = 5446, + [5536] = 5515, + [5537] = 5446, + [5538] = 5512, + [5539] = 5515, + [5540] = 5515, + [5541] = 5512, + [5542] = 5514, + [5543] = 5512, + [5544] = 5515, + [5545] = 5512, + [5546] = 5512, + [5547] = 5515, + [5548] = 5512, + [5549] = 5515, + [5550] = 5515, + [5551] = 5551, + [5552] = 5514, + [5553] = 5467, + [5554] = 5512, + [5555] = 5515, + [5556] = 5515, + [5557] = 5514, + [5558] = 5558, + [5559] = 5514, + [5560] = 5514, + [5561] = 5525, + [5562] = 5562, + [5563] = 5514, [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, + [5565] = 5526, + [5566] = 5512, + [5567] = 5527, + [5568] = 5528, + [5569] = 5529, + [5570] = 5513, + [5571] = 5512, + [5572] = 5512, + [5573] = 5515, + [5574] = 2342, + [5575] = 5514, + [5576] = 2292, + [5577] = 5513, + [5578] = 5512, + [5579] = 5579, [5580] = 5580, - [5581] = 5578, + [5581] = 5581, [5582] = 5582, [5583] = 5583, - [5584] = 5524, + [5584] = 5584, [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, + [5586] = 5579, + [5587] = 5580, + [5588] = 5581, + [5589] = 5583, + [5590] = 5584, + [5591] = 5579, + [5592] = 5581, + [5593] = 5582, + [5594] = 5594, + [5595] = 5582, + [5596] = 5585, + [5597] = 5580, + [5598] = 5581, + [5599] = 5583, + [5600] = 5584, + [5601] = 5579, + [5602] = 5580, + [5603] = 5581, + [5604] = 5583, + [5605] = 5605, + [5606] = 5583, + [5607] = 5581, + [5608] = 5584, + [5609] = 5585, + [5610] = 5580, + [5611] = 5581, + [5612] = 5583, + [5613] = 5584, + [5614] = 5579, + [5615] = 5583, + [5616] = 5594, + [5617] = 5583, + [5618] = 5584, + [5619] = 5585, + [5620] = 5580, + [5621] = 5581, + [5622] = 5584, + [5623] = 5583, + [5624] = 5584, + [5625] = 5579, + [5626] = 5585, + [5627] = 5585, + [5628] = 5628, + [5629] = 5579, + [5630] = 5584, + [5631] = 5585, + [5632] = 5632, + [5633] = 5580, + [5634] = 1651, + [5635] = 5526, + [5636] = 5581, [5637] = 5580, - [5638] = 2271, - [5639] = 1637, - [5640] = 5587, - [5641] = 5585, - [5642] = 5582, - [5643] = 5564, - [5644] = 1638, - [5645] = 5645, - [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, + [5638] = 5581, + [5639] = 5579, + [5640] = 1645, + [5641] = 5641, + [5642] = 5525, + [5643] = 5583, + [5644] = 5584, + [5645] = 5605, + [5646] = 5527, + [5647] = 5583, + [5648] = 1639, + [5649] = 1653, + [5650] = 1655, + [5651] = 5651, + [5652] = 5580, + [5653] = 5581, + [5654] = 5579, + [5655] = 5583, + [5656] = 5584, + [5657] = 5583, + [5658] = 5584, + [5659] = 5579, + [5660] = 1641, + [5661] = 5579, + [5662] = 1644, + [5663] = 5584, + [5664] = 1642, + [5665] = 5632, + [5666] = 1643, + [5667] = 1646, + [5668] = 2342, + [5669] = 5669, + [5670] = 1650, + [5671] = 5525, + [5672] = 5672, + [5673] = 5580, + [5674] = 5581, + [5675] = 5558, + [5676] = 5529, + [5677] = 5582, + [5678] = 1652, + [5679] = 5526, + [5680] = 5527, + [5681] = 5681, + [5682] = 5583, + [5683] = 5584, + [5684] = 1656, + [5685] = 1654, + [5686] = 5585, + [5687] = 136, + [5688] = 5585, + [5689] = 135, + [5690] = 5579, + [5691] = 5594, + [5692] = 1647, + [5693] = 5580, + [5694] = 5581, + [5695] = 5583, + [5696] = 5584, + [5697] = 5579, + [5698] = 5579, + [5699] = 5528, + [5700] = 5580, + [5701] = 5579, + [5702] = 5581, + [5703] = 5580, + [5704] = 5529, + [5705] = 5581, + [5706] = 5584, + [5707] = 5582, + [5708] = 5583, + [5709] = 5584, + [5710] = 5580, + [5711] = 5528, + [5712] = 5585, + [5713] = 5579, + [5714] = 5714, + [5715] = 5579, [5716] = 5580, - [5717] = 5564, - [5718] = 135, - [5719] = 5578, - [5720] = 5720, - [5721] = 5721, - [5722] = 5722, - [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, + [5717] = 5581, + [5718] = 2292, + [5719] = 5719, + [5720] = 5583, + [5721] = 5584, + [5722] = 5579, + [5723] = 5632, + [5724] = 5580, + [5725] = 5581, + [5726] = 5580, + [5727] = 5727, + [5728] = 5581, + [5729] = 5582, + [5730] = 5446, + [5731] = 5580, + [5732] = 5582, + [5733] = 5605, + [5734] = 5583, + [5735] = 5585, + [5736] = 5736, + [5737] = 5737, + [5738] = 5738, + [5739] = 5739, + [5740] = 5740, + [5741] = 5741, + [5742] = 5742, + [5743] = 5551, + [5744] = 5744, + [5745] = 5745, + [5746] = 5746, + [5747] = 5562, + [5748] = 5564, + [5749] = 5749, [5750] = 5750, - [5751] = 2903, - [5752] = 5752, - [5753] = 5753, - [5754] = 5754, - [5755] = 5755, - [5756] = 5756, - [5757] = 5757, - [5758] = 5720, - [5759] = 5759, + [5751] = 5751, + [5752] = 5751, + [5753] = 5740, + [5754] = 5744, + [5755] = 5746, + [5756] = 5749, + [5757] = 5738, + [5758] = 5750, + [5759] = 5738, [5760] = 5760, - [5761] = 5761, - [5762] = 5762, - [5763] = 5763, - [5764] = 5764, - [5765] = 5765, + [5761] = 5744, + [5762] = 5746, + [5763] = 5749, + [5764] = 5750, + [5765] = 5742, [5766] = 5766, - [5767] = 5767, - [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, + [5767] = 5742, + [5768] = 5768, + [5769] = 5744, + [5770] = 5746, + [5771] = 5749, + [5772] = 5750, + [5773] = 5773, + [5774] = 5738, + [5775] = 5775, + [5776] = 5751, + [5777] = 5777, + [5778] = 5778, + [5779] = 5738, + [5780] = 5751, + [5781] = 5446, + [5782] = 5742, + [5783] = 5783, + [5784] = 5784, + [5785] = 5738, + [5786] = 5740, + [5787] = 5742, + [5788] = 5788, [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, + [5790] = 5744, + [5791] = 5751, + [5792] = 5746, + [5793] = 5749, + [5794] = 5794, + [5795] = 5750, + [5796] = 5796, + [5797] = 5744, + [5798] = 5746, + [5799] = 5749, + [5800] = 5750, + [5801] = 5784, + [5802] = 5784, + [5803] = 5803, + [5804] = 5804, [5805] = 5805, - [5806] = 5548, - [5807] = 5726, - [5808] = 5770, - [5809] = 5767, + [5806] = 5751, + [5807] = 5807, + [5808] = 5751, + [5809] = 5809, [5810] = 5810, - [5811] = 5430, + [5811] = 5811, [5812] = 5812, - [5813] = 5734, - [5814] = 5729, - [5815] = 5770, - [5816] = 5721, - [5817] = 5767, + [5813] = 5810, + [5814] = 5814, + [5815] = 5814, + [5816] = 5816, + [5817] = 5816, [5818] = 5818, - [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] = 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, + [5819] = 5819, + [5820] = 5820, + [5821] = 5784, + [5822] = 5740, + [5823] = 5823, + [5824] = 2345, + [5825] = 5819, + [5826] = 5823, + [5827] = 5827, + [5828] = 5736, + [5829] = 5818, + [5830] = 5796, + [5831] = 5738, + [5832] = 5751, + [5833] = 5804, + [5834] = 5784, + [5835] = 2897, + [5836] = 5740, + [5837] = 5446, + [5838] = 5751, + [5839] = 5742, + [5840] = 5784, + [5841] = 5738, + [5842] = 5842, + [5843] = 5740, + [5844] = 5751, + [5845] = 5845, + [5846] = 5446, + [5847] = 5827, + [5848] = 5784, + [5849] = 5742, + [5850] = 5740, + [5851] = 5751, + [5852] = 5751, + [5853] = 5784, + [5854] = 5740, + [5855] = 5760, [5856] = 5856, - [5857] = 5857, - [5858] = 5858, + [5857] = 5738, + [5858] = 5742, [5859] = 5859, [5860] = 5860, - [5861] = 5861, - [5862] = 5726, - [5863] = 5734, - [5864] = 5725, - [5865] = 5830, + [5861] = 5738, + [5862] = 5859, + [5863] = 5775, + [5864] = 5751, + [5865] = 5865, [5866] = 5866, - [5867] = 5726, - [5868] = 5734, - [5869] = 5721, - [5870] = 5770, - [5871] = 2903, - [5872] = 5872, - [5873] = 5873, - [5874] = 5874, - [5875] = 5858, - [5876] = 5876, - [5877] = 5877, - [5878] = 5878, - [5879] = 5866, - [5880] = 5872, - [5881] = 5881, - [5882] = 5728, - [5883] = 5729, - [5884] = 5722, - [5885] = 5724, - [5886] = 5728, - [5887] = 5729, - [5888] = 5722, - [5889] = 5724, + [5867] = 5811, + [5868] = 5760, + [5869] = 5859, + [5870] = 5760, + [5871] = 5871, + [5872] = 5738, + [5873] = 5446, + [5874] = 5742, + [5875] = 5875, + [5876] = 5738, + [5877] = 5742, + [5878] = 5742, + [5879] = 5784, + [5880] = 5880, + [5881] = 5738, + [5882] = 5742, + [5883] = 5742, + [5884] = 5751, + [5885] = 5885, + [5886] = 5740, + [5887] = 5887, + [5888] = 5888, + [5889] = 5889, [5890] = 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, + [5892] = 2345, + [5893] = 5807, + [5894] = 5809, + [5895] = 5889, + [5896] = 5896, + [5897] = 5777, + [5898] = 5898, + [5899] = 5744, + [5900] = 5746, + [5901] = 5749, + [5902] = 5750, [5903] = 5903, - [5904] = 5755, - [5905] = 5905, - [5906] = 5906, - [5907] = 5907, - [5908] = 5894, + [5904] = 5744, + [5905] = 5746, + [5906] = 5749, + [5907] = 5750, + [5908] = 5908, [5909] = 5909, - [5910] = 5861, - [5911] = 5911, + [5910] = 5871, + [5911] = 1927, [5912] = 5912, [5913] = 5913, - [5914] = 5877, - [5915] = 5915, - [5916] = 5872, - [5917] = 5917, - [5918] = 5872, - [5919] = 5919, - [5920] = 5756, - [5921] = 5894, + [5914] = 5903, + [5915] = 5805, + [5916] = 5889, + [5917] = 5890, + [5918] = 5918, + [5919] = 5788, + [5920] = 5875, + [5921] = 5889, [5922] = 5922, - [5923] = 5895, - [5924] = 5924, - [5925] = 5789, - [5926] = 5895, + [5923] = 5923, + [5924] = 5768, + [5925] = 5794, + [5926] = 5918, [5927] = 5927, [5928] = 5928, [5929] = 5929, - [5930] = 5856, - [5931] = 5895, - [5932] = 5855, - [5933] = 1917, + [5930] = 5930, + [5931] = 5931, + [5932] = 5885, + [5933] = 1935, [5934] = 5934, - [5935] = 5748, - [5936] = 5936, - [5937] = 5859, - [5938] = 5938, - [5939] = 5872, - [5940] = 5940, - [5941] = 5857, - [5942] = 5872, - [5943] = 2301, - [5944] = 5430, + [5935] = 5935, + [5936] = 5880, + [5937] = 5937, + [5938] = 2897, + [5939] = 5939, + [5940] = 5890, + [5941] = 5941, + [5942] = 5745, + [5943] = 5918, + [5944] = 5845, [5945] = 5945, [5946] = 5946, - [5947] = 5430, - [5948] = 5948, - [5949] = 5851, - [5950] = 5872, - [5951] = 5754, + [5947] = 5947, + [5948] = 5778, + [5949] = 5903, + [5950] = 5950, + [5951] = 5951, [5952] = 5952, - [5953] = 5953, - [5954] = 5894, - [5955] = 5878, - [5956] = 5895, - [5957] = 5877, + [5953] = 5903, + [5954] = 5954, + [5955] = 5955, + [5956] = 2425, + [5957] = 5957, [5958] = 5958, [5959] = 5959, - [5960] = 5854, - [5961] = 5829, - [5962] = 5852, - [5963] = 5878, - [5964] = 5853, - [5965] = 5965, - [5966] = 5903, - [5967] = 5895, - [5968] = 2243, - [5969] = 5531, - [5970] = 2271, - [5971] = 5531, - [5972] = 5972, - [5973] = 2513, - [5974] = 2240, - [5975] = 5526, + [5960] = 5446, + [5961] = 5918, + [5962] = 5962, + [5963] = 5446, + [5964] = 5964, + [5965] = 5903, + [5966] = 5966, + [5967] = 5912, + [5968] = 5918, + [5969] = 5969, + [5970] = 5912, + [5971] = 5912, + [5972] = 5903, + [5973] = 5903, + [5974] = 5842, + [5975] = 5975, [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, + [5977] = 5866, + [5978] = 5891, + [5979] = 5737, + [5980] = 5812, + [5981] = 5918, + [5982] = 5982, + [5983] = 5918, + [5984] = 5984, + [5985] = 5528, + [5986] = 1646, + [5987] = 5525, + [5988] = 5527, + [5989] = 5528, + [5990] = 5990, + [5991] = 5651, + [5992] = 5529, + [5993] = 1651, + [5994] = 5990, + [5995] = 5995, + [5996] = 2292, + [5997] = 2255, + [5998] = 1647, + [5999] = 5995, + [6000] = 1645, + [6001] = 5528, + [6002] = 1642, + [6003] = 1650, + [6004] = 5990, + [6005] = 2254, + [6006] = 1643, + [6007] = 6007, + [6008] = 5681, + [6009] = 5995, + [6010] = 1639, + [6011] = 1653, + [6012] = 5995, + [6013] = 1655, + [6014] = 136, + [6015] = 5995, [6016] = 5529, - [6017] = 5593, - [6018] = 1639, - [6019] = 5972, - [6020] = 2271, - [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, + [6017] = 5527, + [6018] = 2544, + [6019] = 2251, + [6020] = 5990, + [6021] = 6021, + [6022] = 853, + [6023] = 5527, + [6024] = 6024, + [6025] = 5526, + [6026] = 5528, + [6027] = 2292, + [6028] = 135, + [6029] = 6029, + [6030] = 2246, + [6031] = 5744, + [6032] = 5529, + [6033] = 854, + [6034] = 2432, + [6035] = 5749, + [6036] = 1641, + [6037] = 5446, + [6038] = 5750, + [6039] = 5744, + [6040] = 5746, + [6041] = 5749, + [6042] = 5750, + [6043] = 1656, + [6044] = 1654, + [6045] = 5995, + [6046] = 5526, + [6047] = 5529, + [6048] = 2242, + [6049] = 5990, + [6050] = 5525, + [6051] = 5526, + [6052] = 1644, + [6053] = 5525, + [6054] = 1652, + [6055] = 2342, + [6056] = 5525, + [6057] = 2564, + [6058] = 2342, + [6059] = 5995, + [6060] = 5526, + [6061] = 5527, + [6062] = 5746, + [6063] = 5749, + [6064] = 5750, + [6065] = 5744, + [6066] = 5746, + [6067] = 5749, + [6068] = 5750, + [6069] = 5749, + [6070] = 6070, + [6071] = 1722, [6072] = 6072, - [6073] = 5430, - [6074] = 2243, - [6075] = 5724, - [6076] = 5728, - [6077] = 5724, + [6073] = 6073, + [6074] = 2254, + [6075] = 2545, + [6076] = 2251, + [6077] = 6077, [6078] = 6078, - [6079] = 2532, + [6079] = 5750, [6080] = 6080, - [6081] = 6081, - [6082] = 5728, - [6083] = 5729, - [6084] = 5722, - [6085] = 6064, + [6081] = 2309, + [6082] = 1716, + [6083] = 5749, + [6084] = 6084, + [6085] = 5750, [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] = 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] = 1985, - [6137] = 5901, - [6138] = 6138, - [6139] = 6139, - [6140] = 6140, - [6141] = 5907, - [6142] = 6134, - [6143] = 6135, + [6087] = 6087, + [6088] = 6088, + [6089] = 5446, + [6090] = 5446, + [6091] = 5744, + [6092] = 6077, + [6093] = 2242, + [6094] = 2255, + [6095] = 5446, + [6096] = 5746, + [6097] = 1571, + [6098] = 6098, + [6099] = 5746, + [6100] = 5744, + [6101] = 1726, + [6102] = 5744, + [6103] = 5746, + [6104] = 2246, + [6105] = 5528, + [6106] = 6106, + [6107] = 6107, + [6108] = 6108, + [6109] = 5746, + [6110] = 6110, + [6111] = 6110, + [6112] = 5922, + [6113] = 5947, + [6114] = 5744, + [6115] = 5939, + [6116] = 1976, + [6117] = 5937, + [6118] = 6110, + [6119] = 5946, + [6120] = 5528, + [6121] = 5750, + [6122] = 5945, + [6123] = 5529, + [6124] = 2292, + [6125] = 5887, + [6126] = 2465, + [6127] = 6110, + [6128] = 6110, + [6129] = 5746, + [6130] = 6130, + [6131] = 6131, + [6132] = 6132, + [6133] = 5951, + [6134] = 5941, + [6135] = 5526, + [6136] = 5749, + [6137] = 6137, + [6138] = 5525, + [6139] = 2470, + [6140] = 6110, + [6141] = 5929, + [6142] = 6142, + [6143] = 6143, [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] = 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, + [6146] = 6146, + [6147] = 5744, + [6148] = 6106, + [6149] = 6107, + [6150] = 6108, + [6151] = 5928, + [6152] = 6110, + [6153] = 5952, + [6154] = 5525, + [6155] = 5955, + [6156] = 5966, + [6157] = 5975, + [6158] = 6110, + [6159] = 2495, + [6160] = 5446, + [6161] = 1994, + [6162] = 6110, + [6163] = 5750, + [6164] = 5931, + [6165] = 6146, + [6166] = 5934, + [6167] = 6110, + [6168] = 6110, + [6169] = 6169, + [6170] = 6145, + [6171] = 6171, + [6172] = 1996, + [6173] = 1955, + [6174] = 1956, + [6175] = 1957, + [6176] = 6142, + [6177] = 1997, + [6178] = 6143, + [6179] = 6144, + [6180] = 6145, + [6181] = 6146, + [6182] = 6106, + [6183] = 6107, + [6184] = 5526, + [6185] = 6108, + [6186] = 6110, + [6187] = 5935, + [6188] = 6188, + [6189] = 2481, + [6190] = 2342, + [6191] = 6110, + [6192] = 2309, + [6193] = 6193, + [6194] = 6194, + [6195] = 2485, + [6196] = 6110, + [6197] = 6110, + [6198] = 5527, [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, + [6201] = 5958, + [6202] = 5529, + [6203] = 2463, + [6204] = 5913, + [6205] = 6142, + [6206] = 6110, + [6207] = 1970, + [6208] = 1971, + [6209] = 1982, + [6210] = 1950, + [6211] = 6110, [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, + [6213] = 6110, + [6214] = 6110, + [6215] = 5749, + [6216] = 6143, + [6217] = 5898, + [6218] = 6144, + [6219] = 5527, + [6220] = 2471, + [6221] = 6221, + [6222] = 5749, + [6223] = 6223, + [6224] = 6224, + [6225] = 5744, + [6226] = 5746, + [6227] = 5749, + [6228] = 5750, + [6229] = 5750, + [6230] = 6230, + [6231] = 5744, + [6232] = 5746, + [6233] = 5749, + [6234] = 5750, + [6235] = 5749, + [6236] = 6236, + [6237] = 5446, + [6238] = 6142, + [6239] = 6143, + [6240] = 6144, + [6241] = 6145, + [6242] = 6146, + [6243] = 6106, + [6244] = 6107, + [6245] = 6108, + [6246] = 6246, + [6247] = 5749, [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] = 6219, - [6279] = 6279, - [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, + [6250] = 6250, + [6251] = 6251, + [6252] = 5744, + [6253] = 5746, + [6254] = 5744, + [6255] = 5746, + [6256] = 5749, + [6257] = 5750, + [6258] = 5744, + [6259] = 6259, + [6260] = 5746, + [6261] = 5749, + [6262] = 5750, + [6263] = 6263, + [6264] = 6221, + [6265] = 6246, + [6266] = 6266, + [6267] = 5746, + [6268] = 6248, + [6269] = 5750, + [6270] = 6236, + [6271] = 6221, + [6272] = 5744, + [6273] = 6230, + [6274] = 6248, + [6275] = 5746, + [6276] = 6221, + [6277] = 5750, + [6278] = 6278, + [6279] = 6248, + [6280] = 6221, + [6281] = 6248, + [6282] = 6221, + [6283] = 6221, + [6284] = 6284, + [6285] = 6263, + [6286] = 6236, + [6287] = 6224, + [6288] = 5746, + [6289] = 1972, + [6290] = 6251, + [6291] = 6259, + [6292] = 6292, [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, + [6294] = 6224, + [6295] = 5749, + [6296] = 6224, + [6297] = 6224, + [6298] = 6224, + [6299] = 6224, + [6300] = 6248, + [6301] = 6301, + [6302] = 5744, + [6303] = 5744, + [6304] = 6236, + [6305] = 5750, + [6306] = 6306, + [6307] = 6248, + [6308] = 5529, + [6309] = 5525, + [6310] = 6310, + [6311] = 6311, + [6312] = 6312, + [6313] = 6310, + [6314] = 6310, + [6315] = 6310, + [6316] = 6316, + [6317] = 6310, + [6318] = 6310, + [6319] = 6316, + [6320] = 6310, + [6321] = 6312, + [6322] = 6322, + [6323] = 6310, + [6324] = 5525, [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, + [6326] = 5526, + [6327] = 5527, + [6328] = 5528, + [6329] = 5529, + [6330] = 5526, + [6331] = 5527, + [6332] = 6312, + [6333] = 6310, + [6334] = 5528, + [6335] = 6310, + [6336] = 5744, + [6337] = 5746, + [6338] = 5749, + [6339] = 6310, + [6340] = 5750, + [6341] = 6325, + [6342] = 6342, + [6343] = 6310, + [6344] = 6316, + [6345] = 6316, + [6346] = 6312, + [6347] = 2251, + [6348] = 5744, + [6349] = 5746, + [6350] = 5749, + [6351] = 5750, + [6352] = 5744, + [6353] = 5746, + [6354] = 5750, + [6355] = 2254, + [6356] = 6312, + [6357] = 6357, + [6358] = 6142, + [6359] = 6143, + [6360] = 6144, + [6361] = 6145, + [6362] = 6146, + [6363] = 6106, + [6364] = 6107, + [6365] = 6108, + [6366] = 6310, + [6367] = 6310, + [6368] = 2242, + [6369] = 1764, + [6370] = 2255, + [6371] = 2342, + [6372] = 6342, + [6373] = 2246, + [6374] = 6310, + [6375] = 6316, + [6376] = 2292, + [6377] = 6342, + [6378] = 6316, + [6379] = 6251, + [6380] = 6310, + [6381] = 6316, + [6382] = 6259, + [6383] = 2342, + [6384] = 6310, + [6385] = 6312, + [6386] = 1838, + [6387] = 6310, + [6388] = 6246, + [6389] = 6230, + [6390] = 6263, + [6391] = 6310, + [6392] = 1768, [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] = 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, + [6394] = 6342, + [6395] = 6342, + [6396] = 5744, + [6397] = 2292, + [6398] = 6312, + [6399] = 6310, + [6400] = 5746, + [6401] = 1849, + [6402] = 5749, + [6403] = 5446, + [6404] = 5750, + [6405] = 5749, + [6406] = 6406, + [6407] = 5746, + [6408] = 5749, + [6409] = 5750, + [6410] = 6406, + [6411] = 6143, + [6412] = 6412, + [6413] = 6259, + [6414] = 6414, + [6415] = 6415, + [6416] = 6416, + [6417] = 6415, + [6418] = 6415, + [6419] = 6142, + [6420] = 6263, + [6421] = 6421, + [6422] = 6144, + [6423] = 5964, + [6424] = 2309, + [6425] = 6142, + [6426] = 6145, + [6427] = 6427, + [6428] = 6145, + [6429] = 6146, [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, + [6431] = 6107, + [6432] = 5964, + [6433] = 6246, + [6434] = 6415, + [6435] = 6146, + [6436] = 6415, + [6437] = 5744, + [6438] = 6414, + [6439] = 6415, + [6440] = 5746, + [6441] = 6427, + [6442] = 5749, + [6443] = 5750, + [6444] = 6427, + [6445] = 6421, + [6446] = 5744, + [6447] = 6143, + [6448] = 6406, + [6449] = 6449, + [6450] = 6144, + [6451] = 6415, + [6452] = 6106, + [6453] = 6449, + [6454] = 6406, + [6455] = 6108, + [6456] = 6414, + [6457] = 6108, + [6458] = 6414, + [6459] = 6427, + [6460] = 6421, + [6461] = 6461, + [6462] = 6414, + [6463] = 6106, + [6464] = 6464, + [6465] = 6406, + [6466] = 6087, + [6467] = 5957, + [6468] = 6230, + [6469] = 6406, + [6470] = 6406, + [6471] = 5957, [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] = 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, + [6473] = 6251, + [6474] = 6421, + [6475] = 6406, + [6476] = 6406, + [6477] = 6477, + [6478] = 6107, + [6479] = 6406, + [6480] = 6415, + [6481] = 6415, + [6482] = 6415, + [6483] = 6483, + [6484] = 6484, + [6485] = 5750, + [6486] = 6484, + [6487] = 2432, + [6488] = 6484, + [6489] = 6484, + [6490] = 6145, + [6491] = 6484, + [6492] = 6108, + [6493] = 6484, + [6494] = 6484, + [6495] = 6495, + [6496] = 6484, + [6497] = 6484, + [6498] = 6498, + [6499] = 5749, + [6500] = 6484, + [6501] = 6501, + [6502] = 6502, + [6503] = 6503, + [6504] = 5746, + [6505] = 6146, + [6506] = 5744, + [6507] = 5746, + [6508] = 6144, + [6509] = 6484, + [6510] = 6484, + [6511] = 6484, + [6512] = 6512, + [6513] = 2449, + [6514] = 6143, [6515] = 6515, - [6516] = 6472, - [6517] = 6472, - [6518] = 6096, - [6519] = 6472, - [6520] = 6092, - [6521] = 6472, - [6522] = 6522, - [6523] = 6523, - [6524] = 6524, + [6516] = 6484, + [6517] = 6484, + [6518] = 6518, + [6519] = 5750, + [6520] = 6520, + [6521] = 2432, + [6522] = 6484, + [6523] = 6106, + [6524] = 6107, [6525] = 6525, - [6526] = 6526, - [6527] = 6092, - [6528] = 6528, + [6526] = 6484, + [6527] = 5744, + [6528] = 5746, [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, + [6530] = 5749, + [6531] = 6142, + [6532] = 6484, + [6533] = 3756, + [6534] = 5744, + [6535] = 6484, + [6536] = 5750, + [6537] = 6484, + [6538] = 5749, + [6539] = 6539, + [6540] = 6144, + [6541] = 6246, + [6542] = 6106, + [6543] = 6108, [6544] = 6544, - [6545] = 6523, - [6546] = 6096, - [6547] = 6092, + [6545] = 6545, + [6546] = 6546, + [6547] = 6251, [6548] = 6548, [6549] = 6549, - [6550] = 6151, - [6551] = 6523, - [6552] = 6213, - [6553] = 6529, - [6554] = 6139, - [6555] = 6534, - [6556] = 6556, - [6557] = 6532, + [6550] = 6550, + [6551] = 6551, + [6552] = 6145, + [6553] = 6146, + [6554] = 6548, + [6555] = 6548, + [6556] = 6230, + [6557] = 6557, [6558] = 6558, [6559] = 6559, - [6560] = 6560, - [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] = 6534, - [6579] = 6532, - [6580] = 5529, - [6581] = 6581, - [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, + [6560] = 6263, + [6561] = 6557, + [6562] = 6107, + [6563] = 6563, + [6564] = 6564, + [6565] = 6143, + [6566] = 1570, + [6567] = 6144, + [6568] = 6568, + [6569] = 6145, + [6570] = 6548, + [6571] = 6571, + [6572] = 6544, + [6573] = 6146, + [6574] = 6574, + [6575] = 6575, + [6576] = 5525, + [6577] = 6549, + [6578] = 5526, + [6579] = 5527, + [6580] = 5528, + [6581] = 6106, + [6582] = 5529, + [6583] = 6143, + [6584] = 6144, + [6585] = 6544, + [6586] = 6544, + [6587] = 6142, + [6588] = 6557, + [6589] = 6259, + [6590] = 6590, + [6591] = 6549, + [6592] = 6592, + [6593] = 6107, + [6594] = 6549, + [6595] = 6106, + [6596] = 6548, + [6597] = 6143, + [6598] = 2342, + [6599] = 6143, + [6600] = 6544, + [6601] = 6544, + [6602] = 6144, + [6603] = 6145, + [6604] = 6146, + [6605] = 6557, + [6606] = 6549, + [6607] = 6557, + [6608] = 1567, + [6609] = 6609, + [6610] = 6106, + [6611] = 1569, + [6612] = 6107, + [6613] = 6108, + [6614] = 1568, + [6615] = 6544, + [6616] = 6548, + [6617] = 6108, + [6618] = 6549, + [6619] = 6108, + [6620] = 6620, + [6621] = 6142, + [6622] = 6622, + [6623] = 5525, + [6624] = 6142, + [6625] = 5526, + [6626] = 5527, + [6627] = 5528, + [6628] = 5529, + [6629] = 6142, + [6630] = 6630, + [6631] = 1575, + [6632] = 1572, + [6633] = 1573, + [6634] = 2292, + [6635] = 6548, [6636] = 6636, - [6637] = 6140, - [6638] = 6139, - [6639] = 6092, - [6640] = 6151, - [6641] = 6641, - [6642] = 6642, - [6643] = 6643, - [6644] = 6644, - [6645] = 6644, + [6637] = 6637, + [6638] = 6145, + [6639] = 6146, + [6640] = 6557, + [6641] = 2367, + [6642] = 6107, + [6643] = 2368, + [6644] = 6549, + [6645] = 6645, [6646] = 6646, - [6647] = 5530, - [6648] = 6644, + [6647] = 6647, + [6648] = 6557, [6649] = 6649, - [6650] = 6644, - [6651] = 5526, + [6650] = 6650, + [6651] = 6651, [6652] = 6652, - [6653] = 5531, - [6654] = 6134, - [6655] = 6096, - [6656] = 6644, - [6657] = 6151, + [6653] = 6653, + [6654] = 6146, + [6655] = 6655, + [6656] = 6656, + [6657] = 6108, [6658] = 6658, - [6659] = 6644, - [6660] = 6660, - [6661] = 6658, - [6662] = 6662, + [6659] = 5528, + [6660] = 6143, + [6661] = 5526, + [6662] = 6144, [6663] = 6663, - [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] = 6134, - [6677] = 6135, - [6678] = 6096, - [6679] = 6644, - [6680] = 6151, - [6681] = 6644, - [6682] = 6134, - [6683] = 6644, - [6684] = 6135, - [6685] = 6644, - [6686] = 6096, + [6664] = 6658, + [6665] = 6658, + [6666] = 6144, + [6667] = 5529, + [6668] = 5527, + [6669] = 6658, + [6670] = 6658, + [6671] = 6658, + [6672] = 6672, + [6673] = 6106, + [6674] = 6655, + [6675] = 6658, + [6676] = 6142, + [6677] = 6143, + [6678] = 6144, + [6679] = 6679, + [6680] = 6145, + [6681] = 6146, + [6682] = 6106, + [6683] = 6107, + [6684] = 6684, + [6685] = 6108, + [6686] = 6686, [6687] = 6687, - [6688] = 6688, - [6689] = 6689, - [6690] = 6689, - [6691] = 6688, + [6688] = 6143, + [6689] = 6106, + [6690] = 6108, + [6691] = 5525, [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] = 6151, - [6761] = 6135, - [6762] = 6096, - [6763] = 6206, + [6693] = 6658, + [6694] = 6658, + [6695] = 6107, + [6696] = 6658, + [6697] = 6697, + [6698] = 6142, + [6699] = 6658, + [6700] = 6658, + [6701] = 6145, + [6702] = 6658, + [6703] = 6703, + [6704] = 6143, + [6705] = 6144, + [6706] = 6145, + [6707] = 6146, + [6708] = 6106, + [6709] = 6107, + [6710] = 6108, + [6711] = 6711, + [6712] = 6711, + [6713] = 6703, + [6714] = 6714, + [6715] = 6711, + [6716] = 6703, + [6717] = 6717, + [6718] = 6717, + [6719] = 6719, + [6720] = 6717, + [6721] = 6703, + [6722] = 6717, + [6723] = 6723, + [6724] = 6703, + [6725] = 6723, + [6726] = 6703, + [6727] = 6717, + [6728] = 6723, + [6729] = 6703, + [6730] = 6723, + [6731] = 6703, + [6732] = 6723, + [6733] = 6703, + [6734] = 6251, + [6735] = 6259, + [6736] = 6703, + [6737] = 6703, + [6738] = 6703, + [6739] = 6703, + [6740] = 6246, + [6741] = 6703, + [6742] = 6703, + [6743] = 6719, + [6744] = 6703, + [6745] = 6703, + [6746] = 6230, + [6747] = 6711, + [6748] = 6714, + [6749] = 6717, + [6750] = 6714, + [6751] = 6717, + [6752] = 6263, + [6753] = 6723, + [6754] = 6714, + [6755] = 6723, + [6756] = 6719, + [6757] = 6703, + [6758] = 6703, + [6759] = 6703, + [6760] = 6719, + [6761] = 6142, + [6762] = 6703, + [6763] = 6223, [6764] = 6764, - [6765] = 6765, - [6766] = 6120, - [6767] = 6767, - [6768] = 6139, + [6765] = 6106, + [6766] = 6106, + [6767] = 6143, + [6768] = 6246, [6769] = 6769, - [6770] = 6769, - [6771] = 6771, - [6772] = 6092, - [6773] = 6244, - [6774] = 6229, - [6775] = 6775, + [6770] = 6144, + [6771] = 6108, + [6772] = 6772, + [6773] = 6773, + [6774] = 6774, + [6775] = 6106, [6776] = 6776, - [6777] = 6151, - [6778] = 6769, - [6779] = 6779, - [6780] = 6277, - [6781] = 6781, + [6777] = 6143, + [6778] = 6251, + [6779] = 6773, + [6780] = 6774, + [6781] = 6259, [6782] = 6782, - [6783] = 6134, - [6784] = 6784, - [6785] = 6135, - [6786] = 6216, - [6787] = 6134, - [6788] = 6134, - [6789] = 6135, - [6790] = 6096, - [6791] = 6151, - [6792] = 6134, - [6793] = 6750, - [6794] = 6794, - [6795] = 6151, - [6796] = 6135, + [6783] = 6783, + [6784] = 6774, + [6785] = 6143, + [6786] = 6786, + [6787] = 6108, + [6788] = 6266, + [6789] = 6789, + [6790] = 6790, + [6791] = 6791, + [6792] = 6792, + [6793] = 6769, + [6794] = 6108, + [6795] = 6144, + [6796] = 6773, [6797] = 6797, - [6798] = 6798, - [6799] = 6799, - [6800] = 6120, - [6801] = 6769, - [6802] = 6261, - [6803] = 6151, - [6804] = 6779, - [6805] = 6805, - [6806] = 6806, - [6807] = 6769, - [6808] = 6205, + [6798] = 6774, + [6799] = 6144, + [6800] = 6800, + [6801] = 6774, + [6802] = 6792, + [6803] = 6145, + [6804] = 6804, + [6805] = 6146, + [6806] = 6774, + [6807] = 6142, + [6808] = 6230, [6809] = 6809, - [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] = 2225, - [6826] = 6826, - [6827] = 6827, + [6810] = 6143, + [6811] = 6769, + [6812] = 6106, + [6813] = 6773, + [6814] = 6142, + [6815] = 6108, + [6816] = 6816, + [6817] = 6817, + [6818] = 6818, + [6819] = 6284, + [6820] = 6144, + [6821] = 6769, + [6822] = 6249, + [6823] = 6145, + [6824] = 6774, + [6825] = 6825, + [6826] = 6108, + [6827] = 6143, [6828] = 6828, - [6829] = 6140, + [6829] = 6829, [6830] = 6830, - [6831] = 6826, + [6831] = 6293, [6832] = 6832, - [6833] = 6833, - [6834] = 6096, + [6833] = 6790, + [6834] = 6107, [6835] = 6835, - [6836] = 6826, - [6837] = 6120, - [6838] = 2212, - [6839] = 6828, + [6836] = 6144, + [6837] = 6792, + [6838] = 6263, + [6839] = 6839, [6840] = 6840, - [6841] = 6833, - [6842] = 2218, - [6843] = 6824, - [6844] = 6828, - [6845] = 6845, - [6846] = 6846, - [6847] = 6828, + [6841] = 6841, + [6842] = 6790, + [6843] = 6146, + [6844] = 6792, + [6845] = 6790, + [6846] = 6107, + [6847] = 6106, [6848] = 6848, [6849] = 6849, - [6850] = 6850, - [6851] = 6151, - [6852] = 6833, - [6853] = 6139, - [6854] = 6854, - [6855] = 6824, - [6856] = 6845, - [6857] = 6824, - [6858] = 6845, + [6850] = 6107, + [6851] = 6851, + [6852] = 6143, + [6853] = 6851, + [6854] = 6144, + [6855] = 6855, + [6856] = 6106, + [6857] = 6857, + [6858] = 6108, [6859] = 6859, - [6860] = 6824, - [6861] = 6845, - [6862] = 6824, - [6863] = 6863, - [6864] = 6845, - [6865] = 6865, - [6866] = 6824, - [6867] = 6833, - [6868] = 6845, - [6869] = 6835, - [6870] = 6850, - [6871] = 6845, - [6872] = 2243, - [6873] = 6826, - [6874] = 6835, - [6875] = 6092, + [6860] = 6859, + [6861] = 6861, + [6862] = 6862, + [6863] = 6861, + [6864] = 6857, + [6865] = 6859, + [6866] = 6866, + [6867] = 6861, + [6868] = 6857, + [6869] = 6869, + [6870] = 6145, + [6871] = 6848, + [6872] = 6869, + [6873] = 6857, + [6874] = 6874, + [6875] = 2246, [6876] = 6876, - [6877] = 6835, - [6878] = 6135, - [6879] = 2240, - [6880] = 6134, - [6881] = 6846, - [6882] = 6882, - [6883] = 6883, - [6884] = 6884, - [6885] = 6885, - [6886] = 6886, + [6877] = 6857, + [6878] = 6848, + [6879] = 6851, + [6880] = 6857, + [6881] = 6861, + [6882] = 6848, + [6883] = 6869, + [6884] = 6857, + [6885] = 6848, + [6886] = 6866, [6887] = 6887, - [6888] = 6888, - [6889] = 6889, - [6890] = 6888, - [6891] = 6884, - [6892] = 6883, - [6893] = 6893, - [6894] = 6894, - [6895] = 6139, - [6896] = 6888, + [6888] = 6859, + [6889] = 6848, + [6890] = 6890, + [6891] = 2255, + [6892] = 2251, + [6893] = 6146, + [6894] = 2254, + [6895] = 6895, + [6896] = 6896, [6897] = 6897, - [6898] = 6898, - [6899] = 6140, - [6900] = 6096, + [6898] = 6869, + [6899] = 6899, + [6900] = 6142, [6901] = 6901, - [6902] = 6902, - [6903] = 6884, - [6904] = 6904, - [6905] = 6883, + [6902] = 6851, + [6903] = 2242, + [6904] = 6897, + [6905] = 6848, [6906] = 6906, - [6907] = 6907, - [6908] = 6884, - [6909] = 6898, - [6910] = 6430, + [6907] = 6483, + [6908] = 6906, + [6909] = 6909, + [6910] = 6910, [6911] = 6911, [6912] = 6912, - [6913] = 6092, - [6914] = 6914, - [6915] = 6901, - [6916] = 6898, + [6913] = 6913, + [6914] = 6145, + [6915] = 6915, + [6916] = 6916, [6917] = 6917, - [6918] = 6904, - [6919] = 2403, - [6920] = 2270, - [6921] = 6914, - [6922] = 6907, - [6923] = 6884, - [6924] = 6134, - [6925] = 6925, - [6926] = 6884, - [6927] = 6888, - [6928] = 6882, - [6929] = 6151, - [6930] = 6441, - [6931] = 6931, + [6918] = 6144, + [6919] = 6916, + [6920] = 6920, + [6921] = 6146, + [6922] = 6107, + [6923] = 6923, + [6924] = 6924, + [6925] = 6142, + [6926] = 6906, + [6927] = 6927, + [6928] = 6928, + [6929] = 6929, + [6930] = 6930, + [6931] = 6911, [6932] = 6932, - [6933] = 6888, - [6934] = 6884, - [6935] = 2403, - [6936] = 6135, - [6937] = 6937, + [6933] = 6932, + [6934] = 6477, + [6935] = 6935, + [6936] = 6932, + [6937] = 6935, [6938] = 6938, - [6939] = 6882, - [6940] = 6907, - [6941] = 6938, - [6942] = 6888, - [6943] = 6445, + [6939] = 6909, + [6940] = 6106, + [6941] = 2432, + [6942] = 6935, + [6943] = 6143, [6944] = 6944, - [6945] = 6914, - [6946] = 6938, - [6947] = 6901, - [6948] = 6904, - [6949] = 6120, - [6950] = 6888, - [6951] = 6951, - [6952] = 6952, - [6953] = 6953, + [6945] = 6945, + [6946] = 6946, + [6947] = 6909, + [6948] = 6416, + [6949] = 6949, + [6950] = 6911, + [6951] = 6916, + [6952] = 6938, + [6953] = 6946, [6954] = 6954, - [6955] = 6955, - [6956] = 6956, - [6957] = 6957, - [6958] = 6958, - [6959] = 6959, - [6960] = 6957, + [6955] = 6946, + [6956] = 2309, + [6957] = 6938, + [6958] = 6932, + [6959] = 6108, + [6960] = 6916, [6961] = 6961, - [6962] = 6955, - [6963] = 6958, - [6964] = 6964, + [6962] = 6930, + [6963] = 6930, + [6964] = 2432, [6965] = 6965, - [6966] = 6958, - [6967] = 6955, - [6968] = 6968, - [6969] = 6955, - [6970] = 6970, + [6966] = 6966, + [6967] = 6916, + [6968] = 6913, + [6969] = 6916, + [6970] = 6932, [6971] = 6971, - [6972] = 6972, - [6973] = 2325, + [6972] = 6932, + [6973] = 6916, [6974] = 6974, - [6975] = 6957, - [6976] = 6974, - [6977] = 6965, - [6978] = 6965, - [6979] = 6957, - [6980] = 6965, - [6981] = 6981, - [6982] = 6957, - [6983] = 6983, - [6984] = 5917, + [6975] = 6975, + [6976] = 6932, + [6977] = 6913, + [6978] = 6978, + [6979] = 6978, + [6980] = 6980, + [6981] = 6143, + [6982] = 6982, + [6983] = 6144, + [6984] = 6984, [6985] = 6985, - [6986] = 6958, - [6987] = 6974, - [6988] = 6096, - [6989] = 6958, - [6990] = 6134, - [6991] = 6955, - [6992] = 6992, - [6993] = 6972, - [6994] = 6955, - [6995] = 6995, - [6996] = 6151, - [6997] = 6957, - [6998] = 6965, - [6999] = 6092, + [6986] = 6986, + [6987] = 6106, + [6988] = 6988, + [6989] = 6108, + [6990] = 2432, + [6991] = 6980, + [6992] = 6988, + [6993] = 6985, + [6994] = 6986, + [6995] = 6988, + [6996] = 6996, + [6997] = 6978, + [6998] = 6985, + [6999] = 6986, [7000] = 7000, - [7001] = 6955, - [7002] = 6955, - [7003] = 6957, - [7004] = 6120, + [7001] = 6988, + [7002] = 7002, + [7003] = 6985, + [7004] = 2342, [7005] = 7005, - [7006] = 6965, - [7007] = 6139, - [7008] = 6972, - [7009] = 6958, - [7010] = 2403, - [7011] = 6955, - [7012] = 7012, + [7006] = 6978, + [7007] = 6986, + [7008] = 7008, + [7009] = 7000, + [7010] = 7002, + [7011] = 6985, + [7012] = 6986, [7013] = 7013, - [7014] = 6957, - [7015] = 6965, - [7016] = 6965, - [7017] = 6965, - [7018] = 6958, + [7014] = 6988, + [7015] = 7015, + [7016] = 5957, + [7017] = 6978, + [7018] = 7018, [7019] = 7019, - [7020] = 7020, - [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, + [7020] = 6142, + [7021] = 6978, + [7022] = 7002, + [7023] = 6978, + [7024] = 7000, + [7025] = 6985, + [7026] = 7026, + [7027] = 6145, + [7028] = 6146, + [7029] = 6985, + [7030] = 6986, + [7031] = 6107, + [7032] = 7032, + [7033] = 6988, + [7034] = 7000, + [7035] = 6988, + [7036] = 7002, [7037] = 7037, - [7038] = 7037, + [7038] = 6986, [7039] = 7039, [7040] = 7040, - [7041] = 7041, - [7042] = 7042, - [7043] = 7036, + [7041] = 6985, + [7042] = 6986, + [7043] = 7043, [7044] = 7044, - [7045] = 7045, - [7046] = 7046, + [7045] = 6978, + [7046] = 7002, [7047] = 7047, [7048] = 7048, - [7049] = 7046, - [7050] = 7040, - [7051] = 7042, - [7052] = 7044, - [7053] = 7053, - [7054] = 7046, - [7055] = 7047, - [7056] = 7047, - [7057] = 7057, - [7058] = 7058, - [7059] = 7040, + [7049] = 7049, + [7050] = 6985, + [7051] = 6986, + [7052] = 6988, + [7053] = 6988, + [7054] = 2292, + [7055] = 7013, + [7056] = 7056, + [7057] = 2432, + [7058] = 6978, + [7059] = 2384, [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] = 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] = 7053, - [7106] = 7036, - [7107] = 7107, - [7108] = 7108, - [7109] = 7109, - [7110] = 7110, - [7111] = 7036, - [7112] = 7044, - [7113] = 7113, + [7061] = 7061, + [7062] = 7062, + [7063] = 7063, + [7064] = 7064, + [7065] = 7065, + [7066] = 7066, + [7067] = 7062, + [7068] = 7068, + [7069] = 7064, + [7070] = 7070, + [7071] = 7065, + [7072] = 7062, + [7073] = 7065, + [7074] = 7064, + [7075] = 7065, + [7076] = 7062, + [7077] = 7064, + [7078] = 7065, + [7079] = 7062, + [7080] = 7064, + [7081] = 7065, + [7082] = 7062, + [7083] = 7064, + [7084] = 7065, + [7085] = 7064, + [7086] = 7065, + [7087] = 7066, + [7088] = 7088, + [7089] = 7089, + [7090] = 7090, + [7091] = 7091, + [7092] = 7092, + [7093] = 7093, + [7094] = 7089, + [7095] = 7095, + [7096] = 7062, + [7097] = 7065, + [7098] = 7092, + [7099] = 7068, + [7100] = 7065, + [7101] = 7101, + [7102] = 7062, + [7103] = 7103, + [7104] = 7089, + [7105] = 2432, + [7106] = 7106, + [7107] = 7090, + [7108] = 7061, + [7109] = 7089, + [7110] = 7091, + [7111] = 7066, + [7112] = 7112, + [7113] = 7064, [7114] = 7114, - [7115] = 7044, - [7116] = 7045, - [7117] = 7114, - [7118] = 7118, - [7119] = 7119, - [7120] = 7120, - [7121] = 7046, - [7122] = 7122, - [7123] = 7047, + [7115] = 7092, + [7116] = 7116, + [7117] = 7064, + [7118] = 7064, + [7119] = 7064, + [7120] = 7092, + [7121] = 7090, + [7122] = 7060, + [7123] = 7090, [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] = 7078, - [7139] = 7042, - [7140] = 7085, - [7141] = 7042, - [7142] = 7036, - [7143] = 7044, - [7144] = 7036, - [7145] = 7044, - [7146] = 7053, - [7147] = 7104, + [7125] = 7092, + [7126] = 7064, + [7127] = 7093, + [7128] = 7068, + [7129] = 7065, + [7130] = 7093, + [7131] = 7089, + [7132] = 7066, + [7133] = 7133, + [7134] = 7066, + [7135] = 7068, + [7136] = 7062, + [7137] = 7065, + [7138] = 7090, + [7139] = 7092, + [7140] = 7095, + [7141] = 7141, + [7142] = 7142, + [7143] = 7066, + [7144] = 7101, + [7145] = 7089, + [7146] = 7089, + [7147] = 7062, [7148] = 7148, - [7149] = 7085, - [7150] = 7078, - [7151] = 7053, - [7152] = 7107, - [7153] = 7113, - [7154] = 7114, - [7155] = 7045, - [7156] = 7046, - [7157] = 7047, - [7158] = 7158, + [7149] = 7149, + [7150] = 7150, + [7151] = 7151, + [7152] = 7060, + [7153] = 7153, + [7154] = 7089, + [7155] = 7062, + [7156] = 7062, + [7157] = 7064, + [7158] = 7091, [7159] = 7159, - [7160] = 7113, - [7161] = 7037, - [7162] = 7078, - [7163] = 7163, - [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, + [7160] = 7062, + [7161] = 7095, + [7162] = 7124, + [7163] = 7101, + [7164] = 7060, + [7165] = 7165, + [7166] = 7064, + [7167] = 7093, + [7168] = 7068, + [7169] = 7169, + [7170] = 7065, + [7171] = 7171, + [7172] = 7065, + [7173] = 7173, + [7174] = 7174, + [7175] = 7101, + [7176] = 7093, + [7177] = 7089, + [7178] = 7178, + [7179] = 7064, [7180] = 7180, - [7181] = 7047, - [7182] = 7042, - [7183] = 7183, - [7184] = 7036, - [7185] = 7044, - [7186] = 7186, - [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, + [7181] = 7060, + [7182] = 7062, + [7183] = 7124, + [7184] = 7184, + [7185] = 7095, + [7186] = 7093, + [7187] = 7187, + [7188] = 7101, + [7189] = 7093, + [7190] = 7068, + [7191] = 7065, + [7192] = 7192, + [7193] = 7193, + [7194] = 7095, + [7195] = 7061, + [7196] = 7066, + [7197] = 7101, + [7198] = 7090, + [7199] = 7199, + [7200] = 7062, + [7201] = 7066, + [7202] = 7148, + [7203] = 7089, + [7204] = 7159, + [7205] = 7064, [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] = 7244, - [7245] = 7245, - [7246] = 7246, - [7247] = 7247, - [7248] = 7248, + [7207] = 7062, + [7208] = 7064, + [7209] = 7209, + [7210] = 7106, + [7211] = 7211, + [7212] = 7068, + [7213] = 7060, + [7214] = 7068, + [7215] = 7106, + [7216] = 7065, + [7217] = 7062, + [7218] = 7124, + [7219] = 7091, + [7220] = 7093, + [7221] = 7089, + [7222] = 7091, + [7223] = 7093, + [7224] = 7224, + [7225] = 7091, + [7226] = 7068, + [7227] = 7065, + [7228] = 7091, + [7229] = 7148, + [7230] = 7159, + [7231] = 7106, + [7232] = 7068, + [7233] = 7148, + [7234] = 7106, + [7235] = 7148, + [7236] = 7106, + [7237] = 7061, + [7238] = 7148, + [7239] = 7106, + [7240] = 7148, + [7241] = 7106, + [7242] = 7148, + [7243] = 7106, + [7244] = 7066, + [7245] = 7148, + [7246] = 7065, + [7247] = 7093, + [7248] = 7124, [7249] = 7249, - [7250] = 7250, - [7251] = 7251, - [7252] = 7252, - [7253] = 7247, - [7254] = 7254, - [7255] = 7255, - [7256] = 7256, - [7257] = 7256, - [7258] = 7258, - [7259] = 7259, - [7260] = 7260, - [7261] = 7261, - [7262] = 7262, - [7263] = 7263, - [7264] = 7247, - [7265] = 7265, + [7250] = 7089, + [7251] = 7124, + [7252] = 7064, + [7253] = 7101, + [7254] = 7093, + [7255] = 7064, + [7256] = 7060, + [7257] = 7257, + [7258] = 7095, + [7259] = 5957, + [7260] = 7068, + [7261] = 7093, + [7262] = 7090, + [7263] = 7068, + [7264] = 7065, + [7265] = 7095, [7266] = 7266, [7267] = 7267, [7268] = 7268, [7269] = 7269, - [7270] = 236, + [7270] = 7270, [7271] = 7271, [7272] = 7272, - [7273] = 7247, - [7274] = 7274, - [7275] = 2551, + [7273] = 7273, + [7274] = 7268, + [7275] = 7275, [7276] = 7276, - [7277] = 2552, - [7278] = 7243, - [7279] = 7279, - [7280] = 7280, - [7281] = 7281, - [7282] = 7282, + [7277] = 7277, + [7278] = 7278, + [7279] = 7268, + [7280] = 7269, + [7281] = 7270, + [7282] = 7271, [7283] = 7283, [7284] = 7284, - [7285] = 7285, - [7286] = 7286, - [7287] = 7287, - [7288] = 7245, - [7289] = 7289, - [7290] = 7290, - [7291] = 2441, - [7292] = 7287, - [7293] = 7282, - [7294] = 2442, - [7295] = 7283, - [7296] = 7282, - [7297] = 7297, - [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, + [7285] = 7277, + [7286] = 7277, + [7287] = 7277, + [7288] = 7268, + [7289] = 7269, + [7290] = 7270, + [7291] = 7271, + [7292] = 7292, + [7293] = 7273, + [7294] = 7294, + [7295] = 7277, + [7296] = 7277, + [7297] = 7268, + [7298] = 7269, + [7299] = 7270, + [7300] = 7271, + [7301] = 7301, + [7302] = 7302, + [7303] = 7277, + [7304] = 7304, + [7305] = 7276, + [7306] = 7268, + [7307] = 7269, + [7308] = 7270, + [7309] = 7271, + [7310] = 7310, [7311] = 7311, - [7312] = 7271, - [7313] = 7313, - [7314] = 7314, - [7315] = 7315, - [7316] = 7316, - [7317] = 7317, - [7318] = 7272, - [7319] = 7289, + [7312] = 7277, + [7313] = 6830, + [7314] = 7277, + [7315] = 7304, + [7316] = 7277, + [7317] = 7277, + [7318] = 7311, + [7319] = 7266, [7320] = 7320, - [7321] = 7314, - [7322] = 7272, - [7323] = 7289, + [7321] = 7321, + [7322] = 7311, + [7323] = 7310, [7324] = 7324, - [7325] = 7280, - [7326] = 7242, - [7327] = 7316, - [7328] = 7320, - [7329] = 7329, + [7325] = 7325, + [7326] = 7326, + [7327] = 7268, + [7328] = 7328, + [7329] = 7266, [7330] = 7330, - [7331] = 7331, - [7332] = 7313, + [7331] = 7268, + [7332] = 7276, [7333] = 7333, - [7334] = 7334, - [7335] = 7249, + [7334] = 7304, + [7335] = 7335, [7336] = 7336, - [7337] = 7314, - [7338] = 7244, + [7337] = 7268, + [7338] = 7277, [7339] = 7339, - [7340] = 7340, - [7341] = 7249, - [7342] = 7255, - [7343] = 7265, + [7340] = 7272, + [7341] = 7341, + [7342] = 7324, + [7343] = 7276, [7344] = 7344, - [7345] = 7265, - [7346] = 7269, - [7347] = 7271, - [7348] = 7243, - [7349] = 7245, + [7345] = 7304, + [7346] = 7266, + [7347] = 7347, + [7348] = 7348, + [7349] = 7336, [7350] = 7350, [7351] = 7351, [7352] = 7352, - [7353] = 7353, - [7354] = 7255, + [7353] = 7283, + [7354] = 7269, [7355] = 7355, - [7356] = 7282, - [7357] = 238, - [7358] = 7242, + [7356] = 7270, + [7357] = 7271, + [7358] = 7355, [7359] = 7359, - [7360] = 7313, + [7360] = 7360, [7361] = 7361, [7362] = 7362, - [7363] = 7324, + [7363] = 7310, [7364] = 7364, - [7365] = 7280, - [7366] = 7247, - [7367] = 7242, - [7368] = 7316, - [7369] = 7320, - [7370] = 7265, - [7371] = 7250, - [7372] = 7313, - [7373] = 7340, - [7374] = 7282, - [7375] = 7375, - [7376] = 7249, - [7377] = 7313, - [7378] = 7378, - [7379] = 7316, - [7380] = 7242, - [7381] = 7316, - [7382] = 7382, + [7365] = 7365, + [7366] = 7269, + [7367] = 7270, + [7368] = 7271, + [7369] = 7369, + [7370] = 7362, + [7371] = 7284, + [7372] = 7341, + [7373] = 7373, + [7374] = 7359, + [7375] = 7351, + [7376] = 7376, + [7377] = 7284, + [7378] = 7364, + [7379] = 7379, + [7380] = 7341, + [7381] = 7275, + [7382] = 7273, [7383] = 7383, [7384] = 7384, - [7385] = 7320, + [7385] = 7385, [7386] = 7386, - [7387] = 7246, - [7388] = 7246, - [7389] = 7389, - [7390] = 7250, - [7391] = 7255, - [7392] = 7315, + [7387] = 7387, + [7388] = 7292, + [7389] = 7321, + [7390] = 7321, + [7391] = 7339, + [7392] = 7272, [7393] = 7393, - [7394] = 7311, - [7395] = 7244, - [7396] = 7311, - [7397] = 7397, + [7394] = 7275, + [7395] = 7321, + [7396] = 7396, + [7397] = 7361, [7398] = 7398, - [7399] = 7399, - [7400] = 7247, - [7401] = 2468, - [7402] = 7402, - [7403] = 7403, - [7404] = 7329, - [7405] = 7405, + [7399] = 7387, + [7400] = 7276, + [7401] = 7277, + [7402] = 7387, + [7403] = 7304, + [7404] = 7365, + [7405] = 7348, [7406] = 7406, - [7407] = 7330, - [7408] = 7331, - [7409] = 7254, - [7410] = 7256, + [7407] = 7277, + [7408] = 7266, + [7409] = 7385, + [7410] = 7386, [7411] = 7411, - [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] = 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] = 7320, - [7441] = 7247, - [7442] = 7297, - [7443] = 7272, + [7412] = 7412, + [7413] = 7348, + [7414] = 7330, + [7415] = 7320, + [7416] = 7311, + [7417] = 7310, + [7418] = 7418, + [7419] = 7328, + [7420] = 7292, + [7421] = 241, + [7422] = 7325, + [7423] = 7273, + [7424] = 236, + [7425] = 7425, + [7426] = 7330, + [7427] = 7427, + [7428] = 7428, + [7429] = 7429, + [7430] = 7283, + [7431] = 7269, + [7432] = 7270, + [7433] = 7433, + [7434] = 7273, + [7435] = 7355, + [7436] = 7277, + [7437] = 7437, + [7438] = 7271, + [7439] = 7335, + [7440] = 7364, + [7441] = 7320, + [7442] = 7324, + [7443] = 7325, [7444] = 7444, - [7445] = 7314, + [7445] = 7268, [7446] = 7446, - [7447] = 7324, - [7448] = 7280, - [7449] = 7242, - [7450] = 7315, - [7451] = 7316, - [7452] = 7311, - [7453] = 7320, - [7454] = 7244, + [7447] = 7311, + [7448] = 7448, + [7449] = 7310, + [7450] = 2546, + [7451] = 7387, + [7452] = 7452, + [7453] = 7365, + [7454] = 7333, [7455] = 7330, - [7456] = 7329, - [7457] = 7330, - [7458] = 7331, - [7459] = 7334, - [7460] = 7460, - [7461] = 7256, + [7456] = 7277, + [7457] = 7269, + [7458] = 7364, + [7459] = 7270, + [7460] = 7335, + [7461] = 7271, [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, + [7463] = 7268, + [7464] = 7365, + [7465] = 7276, + [7466] = 7269, + [7467] = 7276, + [7468] = 7304, + [7469] = 7266, + [7470] = 7304, + [7471] = 7266, + [7472] = 7335, + [7473] = 7336, + [7474] = 7336, + [7475] = 7475, + [7476] = 7348, + [7477] = 7270, + [7478] = 7268, + [7479] = 7479, + [7480] = 7355, + [7481] = 7361, + [7482] = 7336, + [7483] = 7339, + [7484] = 7364, + [7485] = 7365, + [7486] = 7269, + [7487] = 7270, + [7488] = 7320, + [7489] = 7271, + [7490] = 7324, + [7491] = 7325, + [7492] = 7362, + [7493] = 7284, + [7494] = 7341, + [7495] = 7495, + [7496] = 7496, + [7497] = 7376, + [7498] = 7272, + [7499] = 7271, + [7500] = 7333, [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, + [7502] = 7269, + [7503] = 7385, + [7504] = 7270, + [7505] = 7386, + [7506] = 7387, + [7507] = 7507, + [7508] = 7339, + [7509] = 7272, + [7510] = 7271, + [7511] = 7275, + [7512] = 7321, + [7513] = 7376, + [7514] = 7514, + [7515] = 7283, + [7516] = 7362, + [7517] = 7284, + [7518] = 7462, + [7519] = 7320, + [7520] = 7325, + [7521] = 7462, + [7522] = 7522, + [7523] = 7514, + [7524] = 7524, + [7525] = 7341, + [7526] = 7333, + [7527] = 7376, [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] = 7316, - [7561] = 7254, - [7562] = 7266, - [7563] = 7268, - [7564] = 7320, - [7565] = 7279, - [7566] = 7308, - [7567] = 7308, - [7568] = 7324, - [7569] = 7569, - [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] = 7329, - [7583] = 7330, - [7584] = 7331, - [7585] = 7334, - [7586] = 7586, - [7587] = 7587, - [7588] = 7249, - [7589] = 7255, - [7590] = 7265, + [7529] = 7529, + [7530] = 7362, + [7531] = 7284, + [7532] = 7532, + [7533] = 7533, + [7534] = 7534, + [7535] = 7292, + [7536] = 7341, + [7537] = 7537, + [7538] = 7538, + [7539] = 7351, + [7540] = 7540, + [7541] = 7320, + [7542] = 7325, + [7543] = 7543, + [7544] = 7355, + [7545] = 7359, + [7546] = 7333, + [7547] = 7547, + [7548] = 7292, + [7549] = 7311, + [7550] = 7336, + [7551] = 7361, + [7552] = 7552, + [7553] = 7553, + [7554] = 7554, + [7555] = 7320, + [7556] = 7325, + [7557] = 7277, + [7558] = 7283, + [7559] = 2476, + [7560] = 2477, + [7561] = 7333, + [7562] = 7562, + [7563] = 7563, + [7564] = 7273, + [7565] = 7565, + [7566] = 7277, + [7567] = 7320, + [7568] = 7325, + [7569] = 7364, + [7570] = 7365, + [7571] = 7269, + [7572] = 7572, + [7573] = 7325, + [7574] = 7574, + [7575] = 7310, + [7576] = 7576, + [7577] = 7325, + [7578] = 7270, + [7579] = 7325, + [7580] = 7580, + [7581] = 7325, + [7582] = 7271, + [7583] = 7268, + [7584] = 7311, + [7585] = 7385, + [7586] = 7275, + [7587] = 7310, + [7588] = 7355, + [7589] = 7330, + [7590] = 7590, [7591] = 7591, - [7592] = 7269, - [7593] = 7271, - [7594] = 7594, - [7595] = 7243, - [7596] = 7245, - [7597] = 7247, - [7598] = 7598, - [7599] = 7274, - [7600] = 7600, - [7601] = 7444, + [7592] = 7324, + [7593] = 7376, + [7594] = 7386, + [7595] = 7268, + [7596] = 7524, + [7597] = 7387, + [7598] = 7335, + [7599] = 7269, + [7600] = 7268, + [7601] = 7601, [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, + [7603] = 7603, + [7604] = 7385, + [7605] = 7270, + [7606] = 7271, + [7607] = 7362, + [7608] = 7284, + [7609] = 7341, + [7610] = 7276, + [7611] = 7304, + [7612] = 7266, + [7613] = 7336, + [7614] = 7351, + [7615] = 7462, + [7616] = 7616, + [7617] = 7376, + [7618] = 7618, + [7619] = 7524, + [7620] = 2524, + [7621] = 7621, + [7622] = 2531, [7623] = 7623, - [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] = 7333, - [7664] = 7664, - [7665] = 7334, - [7666] = 7432, - [7667] = 7329, - [7668] = 7668, - [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, + [7624] = 7339, + [7625] = 7355, + [7626] = 7626, + [7627] = 7361, + [7628] = 7628, + [7629] = 2466, + [7630] = 7292, + [7631] = 2468, + [7632] = 7632, + [7633] = 7364, + [7634] = 7386, + [7635] = 7365, + [7636] = 7269, + [7637] = 2497, + [7638] = 7270, + [7639] = 7271, + [7640] = 7362, + [7641] = 7284, + [7642] = 7642, + [7643] = 7272, + [7644] = 7341, + [7645] = 7645, + [7646] = 2498, + [7647] = 7376, + [7648] = 7648, + [7649] = 7275, + [7650] = 7540, + [7651] = 2509, + [7652] = 7652, + [7653] = 7653, + [7654] = 7277, + [7655] = 7655, + [7656] = 7656, + [7657] = 7657, + [7658] = 7268, + [7659] = 7339, + [7660] = 7385, + [7661] = 7386, + [7662] = 7283, + [7663] = 7387, + [7664] = 7359, + [7665] = 7339, + [7666] = 7272, + [7667] = 7273, + [7668] = 7269, + [7669] = 7270, + [7670] = 7271, + [7671] = 7275, + [7672] = 7321, + [7673] = 7330, + [7674] = 7540, + [7675] = 7675, + [7676] = 7676, + [7677] = 7328, + [7678] = 7283, + [7679] = 7328, + [7680] = 7273, + [7681] = 7335, + [7682] = 7277, + [7683] = 7335, [7684] = 7684, - [7685] = 7308, - [7686] = 7287, - [7687] = 7315, - [7688] = 7333, - [7689] = 7265, - [7690] = 7690, - [7691] = 7691, + [7685] = 2432, + [7686] = 7268, + [7687] = 7687, + [7688] = 7514, + [7689] = 7689, + [7690] = 7385, + [7691] = 7269, [7692] = 7692, - [7693] = 7693, - [7694] = 7694, - [7695] = 7695, - [7696] = 7696, + [7693] = 7270, + [7694] = 7386, + [7695] = 7361, + [7696] = 7271, [7697] = 7697, - [7698] = 7698, + [7698] = 7333, [7699] = 7699, - [7700] = 7700, - [7701] = 7701, + [7700] = 7387, + [7701] = 7277, [7702] = 7702, [7703] = 7703, - [7704] = 7704, - [7705] = 7705, - [7706] = 7706, + [7704] = 7283, + [7705] = 7292, + [7706] = 7324, [7707] = 7707, [7708] = 7708, - [7709] = 7709, - [7710] = 7696, + [7709] = 7292, + [7710] = 7362, [7711] = 7711, - [7712] = 7712, - [7713] = 7713, + [7712] = 7277, + [7713] = 7311, [7714] = 7714, - [7715] = 7714, - [7716] = 7709, - [7717] = 7712, - [7718] = 7718, + [7715] = 7715, + [7716] = 7716, + [7717] = 7717, + [7718] = 7715, [7719] = 7719, [7720] = 7720, - [7721] = 7696, - [7722] = 7722, - [7723] = 7691, - [7724] = 7722, - [7725] = 7701, - [7726] = 7695, + [7721] = 7721, + [7722] = 7720, + [7723] = 7717, + [7724] = 7724, + [7725] = 7725, + [7726] = 7726, [7727] = 7727, - [7728] = 7707, - [7729] = 7711, + [7728] = 7724, + [7729] = 7727, [7730] = 7730, - [7731] = 7692, - [7732] = 7693, + [7731] = 7731, + [7732] = 7732, [7733] = 7733, - [7734] = 7706, - [7735] = 7711, - [7736] = 7691, - [7737] = 7703, + [7734] = 7734, + [7735] = 7734, + [7736] = 7736, + [7737] = 7737, [7738] = 7738, [7739] = 7739, - [7740] = 7711, + [7740] = 7740, [7741] = 7741, - [7742] = 7718, + [7742] = 7742, [7743] = 7743, - [7744] = 7714, - [7745] = 7707, - [7746] = 7714, - [7747] = 7706, - [7748] = 7722, - [7749] = 7730, - [7750] = 7750, - [7751] = 7722, - [7752] = 7695, - [7753] = 7702, - [7754] = 7708, - [7755] = 7718, - [7756] = 7707, - [7757] = 7706, - [7758] = 7708, - [7759] = 7706, - [7760] = 7760, + [7744] = 7737, + [7745] = 7719, + [7746] = 7738, + [7747] = 7747, + [7748] = 7748, + [7749] = 7749, + [7750] = 7724, + [7751] = 7751, + [7752] = 7724, + [7753] = 7753, + [7754] = 7754, + [7755] = 7755, + [7756] = 7756, + [7757] = 7757, + [7758] = 7758, + [7759] = 7759, + [7760] = 7734, [7761] = 7761, - [7762] = 7712, + [7762] = 7762, [7763] = 7763, [7764] = 7764, - [7765] = 7692, - [7766] = 7766, + [7765] = 7765, + [7766] = 7742, [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] = 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, + [7768] = 7768, + [7769] = 7743, + [7770] = 7734, + [7771] = 7757, + [7772] = 7772, + [7773] = 7732, + [7774] = 7768, + [7775] = 7775, + [7776] = 7736, + [7777] = 7777, + [7778] = 7719, + [7779] = 7739, + [7780] = 7734, + [7781] = 7742, + [7782] = 7768, + [7783] = 7783, + [7784] = 7761, + [7785] = 7755, + [7786] = 7775, + [7787] = 7761, + [7788] = 7759, + [7789] = 7761, + [7790] = 7743, + [7791] = 7791, + [7792] = 7792, + [7793] = 7793, + [7794] = 7762, + [7795] = 7736, + [7796] = 7737, + [7797] = 7727, + [7798] = 7757, + [7799] = 7765, [7800] = 7800, - [7801] = 7766, - [7802] = 7704, - [7803] = 7730, - [7804] = 7719, - [7805] = 7718, - [7806] = 7702, - [7807] = 7722, + [7801] = 7732, + [7802] = 7726, + [7803] = 7803, + [7804] = 7757, + [7805] = 7736, + [7806] = 7806, + [7807] = 7807, [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, + [7809] = 7768, + [7810] = 7763, + [7811] = 7783, + [7812] = 7767, + [7813] = 7755, + [7814] = 7755, + [7815] = 7761, + [7816] = 7749, + [7817] = 7783, + [7818] = 7759, + [7819] = 7819, + [7820] = 7724, + [7821] = 7732, + [7822] = 7765, + [7823] = 7768, + [7824] = 7719, [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] = 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] = 7719, - [7956] = 7703, - [7957] = 7798, - [7958] = 7695, - [7959] = 7704, + [7826] = 7759, + [7827] = 7742, + [7828] = 7828, + [7829] = 7759, + [7830] = 7759, + [7831] = 7831, + [7832] = 7832, + [7833] = 7717, + [7834] = 7720, + [7835] = 7720, + [7836] = 7743, + [7837] = 7837, + [7838] = 7749, + [7839] = 7726, + [7840] = 7765, + [7841] = 7768, + [7842] = 7808, + [7843] = 7763, + [7844] = 7753, + [7845] = 7768, + [7846] = 7762, + [7847] = 7837, + [7848] = 7717, + [7849] = 7737, + [7850] = 7850, + [7851] = 7739, + [7852] = 7737, + [7853] = 7853, + [7854] = 7715, + [7855] = 7765, + [7856] = 7731, + [7857] = 7761, + [7858] = 7764, + [7859] = 7763, + [7860] = 7742, + [7861] = 7743, + [7862] = 7731, + [7863] = 7863, + [7864] = 7727, + [7865] = 7730, + [7866] = 7734, + [7867] = 7775, + [7868] = 7727, + [7869] = 7761, + [7870] = 7732, + [7871] = 7757, + [7872] = 7737, + [7873] = 7742, + [7874] = 7743, + [7875] = 7761, + [7876] = 7736, + [7877] = 7783, + [7878] = 7765, + [7879] = 7763, + [7880] = 7739, + [7881] = 7783, + [7882] = 7731, + [7883] = 7768, + [7884] = 7884, + [7885] = 7749, + [7886] = 7740, + [7887] = 7719, + [7888] = 7730, + [7889] = 7731, + [7890] = 7890, + [7891] = 7755, + [7892] = 7732, + [7893] = 7748, + [7894] = 7742, + [7895] = 7890, + [7896] = 7896, + [7897] = 7767, + [7898] = 7749, + [7899] = 7767, + [7900] = 7724, + [7901] = 7749, + [7902] = 7738, + [7903] = 7775, + [7904] = 7736, + [7905] = 7737, + [7906] = 7742, + [7907] = 7743, + [7908] = 7908, + [7909] = 7909, + [7910] = 7758, + [7911] = 7715, + [7912] = 7742, + [7913] = 7913, + [7914] = 7738, + [7915] = 7890, + [7916] = 7731, + [7917] = 7724, + [7918] = 7727, + [7919] = 7890, + [7920] = 7731, + [7921] = 7775, + [7922] = 7740, + [7923] = 7923, + [7924] = 7768, + [7925] = 7743, + [7926] = 7724, + [7927] = 7927, + [7928] = 7715, + [7929] = 7890, + [7930] = 7753, + [7931] = 7775, + [7932] = 7727, + [7933] = 7734, + [7934] = 7734, + [7935] = 7724, + [7936] = 7742, + [7937] = 7743, + [7938] = 7761, + [7939] = 7727, + [7940] = 7940, + [7941] = 7727, + [7942] = 7758, + [7943] = 7726, + [7944] = 7944, + [7945] = 7749, + [7946] = 7730, + [7947] = 7783, + [7948] = 7734, + [7949] = 7739, + [7950] = 7720, + [7951] = 7738, + [7952] = 7952, + [7953] = 7953, + [7954] = 7761, + [7955] = 7768, + [7956] = 7808, + [7957] = 7753, + [7958] = 7958, + [7959] = 7761, [7960] = 7960, - [7961] = 7730, - [7962] = 7718, - [7963] = 7800, - [7964] = 7780, - [7965] = 7693, - [7966] = 7708, - [7967] = 7766, - [7968] = 7691, - [7969] = 7969, - [7970] = 7708, - [7971] = 7709, - [7972] = 7798, - [7973] = 7696, - [7974] = 7796, - [7975] = 7712, - [7976] = 7692, - [7977] = 7693, - [7978] = 7767, - [7979] = 7714, - [7980] = 7980, - [7981] = 7711, - [7982] = 7727, - [7983] = 7796, - [7984] = 7706, - [7985] = 7714, - [7986] = 7739, - [7987] = 7722, - [7988] = 7719, + [7961] = 7763, + [7962] = 7962, + [7963] = 7724, + [7964] = 7837, + [7965] = 7755, + [7966] = 7966, + [7967] = 7726, + [7968] = 7724, + [7969] = 7726, + [7970] = 7970, + [7971] = 7765, + [7972] = 7761, + [7973] = 7731, + [7974] = 7974, + [7975] = 7837, + [7976] = 7742, + [7977] = 7761, + [7978] = 7759, + [7979] = 7749, + [7980] = 7764, + [7981] = 7717, + [7982] = 7731, + [7983] = 7720, + [7984] = 7984, + [7985] = 7753, + [7986] = 7986, + [7987] = 7749, + [7988] = 7759, [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] = 7709, - [8018] = 7809, - [8019] = 7727, - [8020] = 8020, - [8021] = 7692, - [8022] = 7693, - [8023] = 8023, - [8024] = 8024, - [8025] = 7867, - [8026] = 7812, - [8027] = 7867, - [8028] = 7711, - [8029] = 7701, - [8030] = 7727, - [8031] = 7714, - [8032] = 7875, + [7990] = 7753, + [7991] = 7743, + [7992] = 7775, + [7993] = 7837, + [7994] = 7731, + [7995] = 7727, + [7996] = 7837, + [7997] = 7997, + [7998] = 7743, + [7999] = 7765, + [8000] = 7923, + [8001] = 7753, + [8002] = 7755, + [8003] = 7734, + [8004] = 7730, + [8005] = 7757, + [8006] = 7761, + [8007] = 7724, + [8008] = 7742, + [8009] = 7743, + [8010] = 7727, + [8011] = 7719, + [8012] = 8012, + [8013] = 7732, + [8014] = 7724, + [8015] = 7749, + [8016] = 7737, + [8017] = 7726, + [8018] = 8018, + [8019] = 7762, + [8020] = 7736, + [8021] = 7724, + [8022] = 7761, + [8023] = 7715, + [8024] = 7739, + [8025] = 7740, + [8026] = 7727, + [8027] = 7768, + [8028] = 7717, + [8029] = 7737, + [8030] = 7749, + [8031] = 7765, + [8032] = 8032, [8033] = 8033, - [8034] = 8034, - [8035] = 8035, - [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] = 8057, - [8058] = 8058, - [8059] = 8059, - [8060] = 8060, - [8061] = 8061, - [8062] = 8062, - [8063] = 8063, - [8064] = 5754, - [8065] = 8065, - [8066] = 8066, - [8067] = 8067, - [8068] = 8068, - [8069] = 8069, - [8070] = 8070, - [8071] = 8071, - [8072] = 8072, - [8073] = 8073, - [8074] = 8074, - [8075] = 8075, - [8076] = 8076, - [8077] = 8060, + [8034] = 7737, + [8035] = 7986, + [8036] = 7724, + [8037] = 7783, + [8038] = 7761, + [8039] = 7890, + [8040] = 7764, + [8041] = 8041, + [8042] = 7986, + [8043] = 7775, + [8044] = 7724, + [8045] = 7923, + [8046] = 7757, + [8047] = 7732, + [8048] = 7740, + [8049] = 8049, + [8050] = 7734, + [8051] = 7808, + [8052] = 7923, + [8053] = 7753, + [8054] = 7731, + [8055] = 7923, + [8056] = 7775, + [8057] = 7808, + [8058] = 7923, + [8059] = 7734, + [8060] = 7923, + [8061] = 7923, + [8062] = 7923, + [8063] = 7923, + [8064] = 7923, + [8065] = 7923, + [8066] = 7923, + [8067] = 7923, + [8068] = 7923, + [8069] = 7923, + [8070] = 7923, + [8071] = 7755, + [8072] = 7759, + [8073] = 7890, + [8074] = 7758, + [8075] = 7759, + [8076] = 7986, + [8077] = 7775, [8078] = 8078, - [8079] = 8065, - [8080] = 8066, + [8079] = 8079, + [8080] = 8080, [8081] = 8081, [8082] = 8082, [8083] = 8083, [8084] = 8084, [8085] = 8085, [8086] = 8086, - [8087] = 8070, + [8087] = 8087, [8088] = 8088, [8089] = 8089, - [8090] = 8056, + [8090] = 8090, [8091] = 8091, - [8092] = 8091, + [8092] = 8092, [8093] = 8093, - [8094] = 8055, + [8094] = 8094, [8095] = 8095, [8096] = 8096, - [8097] = 8097, - [8098] = 8055, + [8097] = 8082, + [8098] = 8083, [8099] = 8099, [8100] = 8100, - [8101] = 8100, - [8102] = 8102, + [8101] = 8101, + [8102] = 8094, [8103] = 8103, [8104] = 8104, [8105] = 8105, - [8106] = 8104, + [8106] = 8106, [8107] = 8107, [8108] = 8108, [8109] = 8109, [8110] = 8110, [8111] = 8111, - [8112] = 8112, - [8113] = 8061, - [8114] = 8082, + [8112] = 8094, + [8113] = 8113, + [8114] = 8114, [8115] = 8115, [8116] = 8116, - [8117] = 8117, + [8117] = 8096, [8118] = 8118, - [8119] = 8054, - [8120] = 8056, - [8121] = 8075, - [8122] = 8110, - [8123] = 8056, - [8124] = 8082, - [8125] = 8125, - [8126] = 8126, + [8119] = 8119, + [8120] = 8084, + [8121] = 8121, + [8122] = 8085, + [8123] = 8082, + [8124] = 8124, + [8125] = 8096, + [8126] = 8085, [8127] = 8127, - [8128] = 8060, - [8129] = 8129, + [8128] = 8128, + [8129] = 8083, [8130] = 8130, - [8131] = 8065, - [8132] = 8066, + [8131] = 8131, + [8132] = 8132, [8133] = 8133, - [8134] = 8127, + [8134] = 8134, [8135] = 8135, [8136] = 8136, - [8137] = 8111, - [8138] = 8138, + [8137] = 8137, + [8138] = 8089, [8139] = 8139, - [8140] = 8140, + [8140] = 8124, [8141] = 8141, - [8142] = 8142, + [8142] = 8130, [8143] = 8143, [8144] = 8144, [8145] = 8145, - [8146] = 8082, + [8146] = 8146, [8147] = 8147, - [8148] = 8130, + [8148] = 8148, [8149] = 8149, [8150] = 8150, - [8151] = 8133, + [8151] = 8135, [8152] = 8152, [8153] = 8153, - [8154] = 8136, - [8155] = 8155, - [8156] = 8156, + [8154] = 8154, + [8155] = 8146, + [8156] = 8130, [8157] = 8157, - [8158] = 8142, - [8159] = 8095, - [8160] = 8111, + [8158] = 8094, + [8159] = 8159, + [8160] = 8160, [8161] = 8161, - [8162] = 8110, - [8163] = 8163, + [8162] = 8162, + [8163] = 8090, [8164] = 8164, [8165] = 8165, [8166] = 8166, [8167] = 8167, - [8168] = 8168, + [8168] = 8108, [8169] = 8169, - [8170] = 8143, - [8171] = 8108, + [8170] = 8150, + [8171] = 8096, [8172] = 8172, - [8173] = 8059, - [8174] = 8150, - [8175] = 8175, - [8176] = 8116, - [8177] = 8110, - [8178] = 8084, - [8179] = 8086, - [8180] = 8104, - [8181] = 8091, - [8182] = 8111, + [8173] = 8082, + [8174] = 8174, + [8175] = 8083, + [8176] = 8176, + [8177] = 8177, + [8178] = 8178, + [8179] = 8179, + [8180] = 8113, + [8181] = 8107, + [8182] = 8166, [8183] = 8183, - [8184] = 8056, + [8184] = 8184, [8185] = 8185, - [8186] = 8186, - [8187] = 8107, - [8188] = 8058, - [8189] = 8097, + [8186] = 8147, + [8187] = 8187, + [8188] = 8188, + [8189] = 8189, [8190] = 8190, - [8191] = 8191, - [8192] = 8075, - [8193] = 8068, - [8194] = 8069, - [8195] = 8056, + [8191] = 8177, + [8192] = 8178, + [8193] = 8179, + [8194] = 8094, + [8195] = 8195, [8196] = 8196, - [8197] = 8126, - [8198] = 8149, - [8199] = 8199, - [8200] = 8136, - [8201] = 8201, + [8197] = 8197, + [8198] = 8189, + [8199] = 8196, + [8200] = 8200, + [8201] = 8104, [8202] = 8202, - [8203] = 8063, + [8203] = 8149, [8204] = 8204, - [8205] = 8089, - [8206] = 8206, - [8207] = 8072, - [8208] = 8140, - [8209] = 8059, - [8210] = 8118, + [8205] = 8205, + [8206] = 8205, + [8207] = 8207, + [8208] = 8150, + [8209] = 8209, + [8210] = 8185, [8211] = 8211, - [8212] = 8212, - [8213] = 8213, - [8214] = 8104, - [8215] = 8215, - [8216] = 8129, - [8217] = 8217, - [8218] = 8218, - [8219] = 8213, - [8220] = 8220, - [8221] = 8135, - [8222] = 8115, + [8212] = 8080, + [8213] = 5871, + [8214] = 8091, + [8215] = 8150, + [8216] = 8101, + [8217] = 8090, + [8218] = 8091, + [8219] = 8205, + [8220] = 8150, + [8221] = 8221, + [8222] = 8162, [8223] = 8223, - [8224] = 8061, + [8224] = 8224, [8225] = 8225, - [8226] = 8059, - [8227] = 8089, - [8228] = 8228, + [8226] = 8153, + [8227] = 8227, + [8228] = 8104, [8229] = 8229, - [8230] = 5866, - [8231] = 8231, - [8232] = 8091, - [8233] = 7005, - [8234] = 8206, - [8235] = 8056, - [8236] = 8157, - [8237] = 8215, - [8238] = 8074, - [8239] = 8220, - [8240] = 8086, - [8241] = 8111, - [8242] = 8056, + [8230] = 5805, + [8231] = 8104, + [8232] = 8232, + [8233] = 8109, + [8234] = 8124, + [8235] = 8080, + [8236] = 8130, + [8237] = 8237, + [8238] = 8238, + [8239] = 8239, + [8240] = 8135, + [8241] = 8241, + [8242] = 8160, [8243] = 8243, [8244] = 8244, - [8245] = 8169, - [8246] = 8088, - [8247] = 8247, - [8248] = 8248, + [8245] = 8157, + [8246] = 8246, + [8247] = 8109, + [8248] = 8237, [8249] = 8249, - [8250] = 8175, + [8250] = 8227, [8251] = 8251, - [8252] = 8153, - [8253] = 8111, - [8254] = 8251, - [8255] = 8070, - [8256] = 8116, - [8257] = 8059, - [8258] = 8067, - [8259] = 8259, - [8260] = 8260, - [8261] = 8058, - [8262] = 8262, - [8263] = 8167, - [8264] = 8083, - [8265] = 8125, - [8266] = 8068, - [8267] = 8069, - [8268] = 8268, - [8269] = 8126, + [8252] = 8252, + [8253] = 8146, + [8254] = 8241, + [8255] = 8223, + [8256] = 8166, + [8257] = 8257, + [8258] = 8258, + [8259] = 8084, + [8260] = 8113, + [8261] = 8161, + [8262] = 8107, + [8263] = 8263, + [8264] = 8080, + [8265] = 8265, + [8266] = 8084, + [8267] = 8267, + [8268] = 8130, + [8269] = 8179, [8270] = 8270, - [8271] = 8196, - [8272] = 8272, + [8271] = 8271, + [8272] = 5778, [8273] = 8273, - [8274] = 8086, - [8275] = 8111, - [8276] = 8251, - [8277] = 8110, - [8278] = 8117, - [8279] = 8118, - [8280] = 8083, - [8281] = 8153, + [8274] = 8196, + [8275] = 8150, + [8276] = 8276, + [8277] = 8092, + [8278] = 8278, + [8279] = 8085, + [8280] = 8227, + [8281] = 8085, [8282] = 8282, - [8283] = 8283, - [8284] = 8284, - [8285] = 8130, - [8286] = 8135, - [8287] = 8133, - [8288] = 8142, - [8289] = 8143, - [8290] = 8273, - [8291] = 8150, + [8283] = 8090, + [8284] = 8091, + [8285] = 8080, + [8286] = 8128, + [8287] = 8100, + [8288] = 8144, + [8289] = 8289, + [8290] = 8090, + [8291] = 8091, [8292] = 8292, [8293] = 8293, [8294] = 8294, - [8295] = 8213, - [8296] = 8109, - [8297] = 8117, - [8298] = 8298, - [8299] = 8136, - [8300] = 8157, - [8301] = 8167, - [8302] = 8168, - [8303] = 8251, + [8295] = 8243, + [8296] = 8136, + [8297] = 8084, + [8298] = 5845, + [8299] = 8299, + [8300] = 8282, + [8301] = 8100, + [8302] = 8144, + [8303] = 8124, [8304] = 8304, [8305] = 8305, - [8306] = 8306, + [8306] = 8137, [8307] = 8307, - [8308] = 8169, - [8309] = 8309, - [8310] = 8217, - [8311] = 8083, - [8312] = 8055, - [8313] = 8175, - [8314] = 8058, + [8308] = 8299, + [8309] = 8223, + [8310] = 8157, + [8311] = 8311, + [8312] = 8282, + [8313] = 8313, + [8314] = 8314, [8315] = 8315, - [8316] = 8056, - [8317] = 8111, - [8318] = 8318, - [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] = 8153, + [8316] = 8162, + [8317] = 8153, + [8318] = 8078, + [8319] = 8232, + [8320] = 8130, + [8321] = 8189, + [8322] = 8100, + [8323] = 8144, + [8324] = 8113, + [8325] = 8185, + [8326] = 8326, + [8327] = 8307, + [8328] = 8211, + [8329] = 8329, + [8330] = 8130, + [8331] = 8078, + [8332] = 8179, + [8333] = 8109, + [8334] = 8150, + [8335] = 8313, + [8336] = 8128, + [8337] = 8196, [8338] = 8338, - [8339] = 8135, - [8340] = 8340, - [8341] = 8341, + [8339] = 8085, + [8340] = 8107, + [8341] = 8177, [8342] = 8342, - [8343] = 8217, - [8344] = 8344, - [8345] = 8228, - [8346] = 8100, - [8347] = 8130, - [8348] = 8206, - [8349] = 8074, - [8350] = 8110, + [8343] = 8343, + [8344] = 8172, + [8345] = 8232, + [8346] = 8346, + [8347] = 8128, + [8348] = 8080, + [8349] = 8349, + [8350] = 8350, [8351] = 8351, - [8352] = 8157, - [8353] = 8353, - [8354] = 8133, - [8355] = 8355, - [8356] = 8142, - [8357] = 1750, - [8358] = 8143, + [8352] = 8352, + [8353] = 8090, + [8354] = 8091, + [8355] = 8211, + [8356] = 8124, + [8357] = 8357, + [8358] = 8237, [8359] = 8359, - [8360] = 8126, - [8361] = 8130, - [8362] = 8175, - [8363] = 8133, - [8364] = 8133, - [8365] = 8142, - [8366] = 8111, - [8367] = 8056, - [8368] = 8143, - [8369] = 8369, - [8370] = 8142, - [8371] = 8058, - [8372] = 8115, + [8360] = 8360, + [8361] = 8089, + [8362] = 8161, + [8363] = 8157, + [8364] = 8364, + [8365] = 8365, + [8366] = 8227, + [8367] = 8367, + [8368] = 8241, + [8369] = 8089, + [8370] = 8370, + [8371] = 8084, + [8372] = 8166, [8373] = 8373, - [8374] = 8374, - [8375] = 8068, - [8376] = 8069, - [8377] = 8100, - [8378] = 8097, - [8379] = 8379, - [8380] = 8380, - [8381] = 8135, - [8382] = 8143, - [8383] = 8213, - [8384] = 8091, + [8374] = 8205, + [8375] = 8375, + [8376] = 8113, + [8377] = 8185, + [8378] = 8378, + [8379] = 8265, + [8380] = 8189, + [8381] = 8381, + [8382] = 8382, + [8383] = 8343, + [8384] = 8384, [8385] = 8385, - [8386] = 8130, + [8386] = 8196, [8387] = 8387, - [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, + [8388] = 8130, + [8389] = 8136, + [8390] = 8390, + [8391] = 8373, + [8392] = 8105, + [8393] = 8211, + [8394] = 8150, + [8395] = 8101, + [8396] = 1764, + [8397] = 8137, + [8398] = 8398, + [8399] = 8090, + [8400] = 8091, + [8401] = 8401, + [8402] = 8232, + [8403] = 8153, + [8404] = 8205, [8405] = 8157, - [8406] = 8088, - [8407] = 8084, - [8408] = 8175, - [8409] = 8118, - [8410] = 8069, - [8411] = 8168, - [8412] = 8196, - [8413] = 8129, + [8406] = 8150, + [8407] = 8407, + [8408] = 8307, + [8409] = 8211, + [8410] = 8410, + [8411] = 8109, + [8412] = 8113, + [8413] = 8413, [8414] = 8414, - [8415] = 8157, - [8416] = 8175, - [8417] = 8069, + [8415] = 8101, + [8416] = 8196, + [8417] = 8167, [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, + [8419] = 8091, + [8420] = 8343, + [8421] = 8166, + [8422] = 8157, + [8423] = 8149, + [8424] = 8424, + [8425] = 8130, + [8426] = 8265, + [8427] = 8427, + [8428] = 8428, + [8429] = 8113, + [8430] = 8370, + [8431] = 8431, + [8432] = 8196, + [8433] = 8105, + [8434] = 8091, + [8435] = 1768, [8436] = 8436, - [8437] = 8109, - [8438] = 8088, - [8439] = 8439, - [8440] = 8248, - [8441] = 8441, - [8442] = 8442, - [8443] = 8443, - [8444] = 8083, - [8445] = 8445, - [8446] = 8282, - [8447] = 8447, - [8448] = 8102, - [8449] = 8260, - [8450] = 8060, - [8451] = 8065, - [8452] = 8130, - [8453] = 8066, - [8454] = 8454, - [8455] = 8082, - [8456] = 8298, - [8457] = 8457, - [8458] = 8056, - [8459] = 8060, - [8460] = 8454, - [8461] = 8304, - [8462] = 8055, - [8463] = 8104, - [8464] = 8464, + [8437] = 8437, + [8438] = 8107, + [8439] = 8113, + [8440] = 8196, + [8441] = 8091, + [8442] = 8398, + [8443] = 8293, + [8444] = 8196, + [8445] = 8091, + [8446] = 8446, + [8447] = 8153, + [8448] = 8196, + [8449] = 8091, + [8450] = 8196, + [8451] = 8091, + [8452] = 8196, + [8453] = 8091, + [8454] = 8196, + [8455] = 8091, + [8456] = 8196, + [8457] = 8091, + [8458] = 8196, + [8459] = 8091, + [8460] = 8460, + [8461] = 8085, + [8462] = 8462, + [8463] = 8463, + [8464] = 8089, [8465] = 8465, - [8466] = 8466, + [8466] = 8174, [8467] = 8467, [8468] = 8468, - [8469] = 8298, - [8470] = 8470, - [8471] = 8061, - [8472] = 8472, - [8473] = 8473, + [8469] = 8469, + [8470] = 8200, + [8471] = 8351, + [8472] = 8437, + [8473] = 8243, [8474] = 8474, - [8475] = 8260, - [8476] = 8054, - [8477] = 8097, - [8478] = 8065, - [8479] = 8129, - [8480] = 8066, - [8481] = 8108, - [8482] = 8061, - [8483] = 8483, + [8475] = 8475, + [8476] = 8299, + [8477] = 8232, + [8478] = 8100, + [8479] = 8232, + [8480] = 8480, + [8481] = 8480, + [8482] = 8089, + [8483] = 8398, [8484] = 8484, - [8485] = 8485, - [8486] = 8486, - [8487] = 8487, - [8488] = 8488, - [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] = 8336, - [8504] = 8135, - [8505] = 8454, - [8506] = 8089, - [8507] = 8507, - [8508] = 8228, - [8509] = 8082, - [8510] = 8510, - [8511] = 8511, - [8512] = 8126, - [8513] = 8169, - [8514] = 8514, + [8485] = 8130, + [8486] = 8307, + [8487] = 8150, + [8488] = 8407, + [8489] = 8162, + [8490] = 8475, + [8491] = 8491, + [8492] = 8153, + [8493] = 8493, + [8494] = 8094, + [8495] = 8273, + [8496] = 8263, + [8497] = 8349, + [8498] = 8249, + [8499] = 8499, + [8500] = 8130, + [8501] = 8469, + [8502] = 8082, + [8503] = 8159, + [8504] = 8294, + [8505] = 8299, + [8506] = 8282, + [8507] = 8146, + [8508] = 8161, + [8509] = 8469, + [8510] = 8078, + [8511] = 8128, + [8512] = 8512, + [8513] = 8513, + [8514] = 8107, [8515] = 8515, - [8516] = 8248, - [8517] = 5789, - [8518] = 8298, - [8519] = 8355, - [8520] = 8100, - [8521] = 8521, - [8522] = 8088, - [8523] = 8523, - [8524] = 8130, - [8525] = 8153, - [8526] = 8104, - [8527] = 8084, - [8528] = 8108, - [8529] = 8172, - [8530] = 8116, - [8531] = 8531, - [8532] = 8117, - [8533] = 8466, + [8516] = 8107, + [8517] = 8517, + [8518] = 8108, + [8519] = 8100, + [8520] = 8520, + [8521] = 8249, + [8522] = 8522, + [8523] = 8104, + [8524] = 8524, + [8525] = 8146, + [8526] = 8161, + [8527] = 8079, + [8528] = 8089, + [8529] = 8177, + [8530] = 8083, + [8531] = 8350, + [8532] = 8237, + [8533] = 8513, [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] = 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, + [8535] = 8517, + [8536] = 8536, + [8537] = 8084, + [8538] = 8092, + [8539] = 8343, + [8540] = 8343, + [8541] = 8079, + [8542] = 8085, + [8543] = 8338, + [8544] = 8544, + [8545] = 8293, + [8546] = 8160, + [8547] = 8370, + [8548] = 8096, + [8549] = 8082, + [8550] = 8083, + [8551] = 8101, + [8552] = 8094, + [8553] = 8465, + [8554] = 8104, + [8555] = 8130, + [8556] = 8556, + [8557] = 8150, + [8558] = 8243, + [8559] = 8559, + [8560] = 8373, + [8561] = 8109, + [8562] = 8562, + [8563] = 8385, + [8564] = 8178, + [8565] = 8398, + [8566] = 8343, + [8567] = 8567, + [8568] = 8299, + [8569] = 8282, + [8570] = 8243, + [8571] = 8571, [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] = 8063, - [8585] = 8165, - [8586] = 8273, - [8587] = 8587, - [8588] = 8588, - [8589] = 8589, + [8573] = 8100, + [8574] = 8144, + [8575] = 8147, + [8576] = 8342, + [8577] = 8116, + [8578] = 8130, + [8579] = 8273, + [8580] = 8299, + [8581] = 8581, + [8582] = 8282, + [8583] = 8360, + [8584] = 8100, + [8585] = 8144, + [8586] = 8586, + [8587] = 8084, + [8588] = 8159, + [8589] = 8144, [8590] = 8590, - [8591] = 8244, - [8592] = 8088, - [8593] = 8248, - [8594] = 8594, - [8595] = 8100, - [8596] = 8249, - [8597] = 8097, - [8598] = 8298, - [8599] = 8217, - [8600] = 8600, - [8601] = 8601, + [8591] = 8313, + [8592] = 8592, + [8593] = 8141, + [8594] = 8145, + [8595] = 8385, + [8596] = 8078, + [8597] = 8313, + [8598] = 8598, + [8599] = 8599, + [8600] = 8166, + [8601] = 8085, [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, + [8603] = 8128, + [8604] = 8096, + [8605] = 8329, + [8606] = 8078, + [8607] = 8607, + [8608] = 8150, + [8609] = 8469, + [8610] = 8232, + [8611] = 8602, + [8612] = 8172, + [8613] = 8613, + [8614] = 8329, + [8615] = 8137, + [8616] = 8232, + [8617] = 8480, + [8618] = 8618, + [8619] = 8130, + [8620] = 8150, + [8621] = 8082, [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, + [8623] = 8623, + [8624] = 8624, + [8625] = 8153, + [8626] = 8626, + [8627] = 8130, + [8628] = 8628, + [8629] = 8307, + [8630] = 8602, + [8631] = 8631, + [8632] = 8469, + [8633] = 8313, + [8634] = 8307, + [8635] = 8241, + [8636] = 8370, + [8637] = 8637, + [8638] = 8130, + [8639] = 8147, + [8640] = 8149, + [8641] = 8107, + [8642] = 8642, + [8643] = 8467, + [8644] = 8243, + [8645] = 8645, + [8646] = 8136, + [8647] = 8096, + [8648] = 8227, + [8649] = 8172, + [8650] = 8602, [8651] = 8651, - [8652] = 8464, - [8653] = 8653, - [8654] = 8466, - [8655] = 8655, + [8652] = 8652, + [8653] = 8083, + [8654] = 8352, + [8655] = 8150, [8656] = 8656, - [8657] = 8056, - [8658] = 8472, - [8659] = 8473, - [8660] = 8097, + [8657] = 8136, + [8658] = 8078, + [8659] = 8147, + [8660] = 8149, [8661] = 8661, - [8662] = 8662, + [8662] = 8094, [8663] = 8663, - [8664] = 8304, - [8665] = 8320, - [8666] = 8666, - [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, + [8664] = 8116, + [8665] = 8463, + [8666] = 8174, + [8667] = 8467, + [8668] = 8200, + [8669] = 8137, + [8670] = 8437, + [8671] = 8107, + [8672] = 8299, + [8673] = 8130, + [8674] = 8166, + [8675] = 8150, + [8676] = 8407, + [8677] = 8166, + [8678] = 8475, + [8679] = 8172, + [8680] = 8680, + [8681] = 8463, + [8682] = 8263, + [8683] = 8349, + [8684] = 8469, + [8685] = 8172, + [8686] = 8185, + [8687] = 8185, + [8688] = 8107, + [8689] = 8515, + [8690] = 8094, + [8691] = 8691, + [8692] = 8517, + [8693] = 8338, + [8694] = 8189, + [8695] = 8227, + [8696] = 8463, + [8697] = 8174, + [8698] = 8200, + [8699] = 8602, + [8700] = 8437, + [8701] = 8196, + [8702] = 8702, + [8703] = 8407, + [8704] = 8329, + [8705] = 8475, + [8706] = 8089, + [8707] = 8104, + [8708] = 8263, + [8709] = 8349, + [8710] = 8177, + [8711] = 8515, + [8712] = 8398, + [8713] = 8713, + [8714] = 8517, + [8715] = 8338, + [8716] = 8716, + [8717] = 8463, + [8718] = 8174, + [8719] = 8200, + [8720] = 8329, + [8721] = 8437, + [8722] = 8178, + [8723] = 8205, + [8724] = 8407, + [8725] = 8475, + [8726] = 8150, + [8727] = 8107, + [8728] = 8263, + [8729] = 8349, + [8730] = 8730, + [8731] = 8515, + [8732] = 8663, + [8733] = 8733, + [8734] = 8517, + [8735] = 8338, + [8736] = 8736, + [8737] = 8463, + [8738] = 8174, + [8739] = 8200, + [8740] = 8211, + [8741] = 8437, + [8742] = 8124, + [8743] = 8141, + [8744] = 8475, + [8745] = 8745, + [8746] = 8108, + [8747] = 8263, + [8748] = 8349, + [8749] = 8749, + [8750] = 8515, + [8751] = 8124, + [8752] = 8101, + [8753] = 8517, + [8754] = 8338, + [8755] = 8141, + [8756] = 8463, + [8757] = 8174, + [8758] = 8758, + [8759] = 8437, + [8760] = 8350, + [8761] = 8761, + [8762] = 8352, + [8763] = 8166, + [8764] = 8263, + [8765] = 8349, + [8766] = 8343, + [8767] = 8767, + [8768] = 8768, + [8769] = 8517, + [8770] = 8104, + [8771] = 8463, + [8772] = 8174, + [8773] = 8437, + [8774] = 8101, + [8775] = 8349, + [8776] = 8179, + [8777] = 8370, + [8778] = 8517, + [8779] = 8299, + [8780] = 8463, + [8781] = 8174, + [8782] = 8437, + [8783] = 8135, + [8784] = 8349, + [8785] = 8785, + [8786] = 8517, + [8787] = 8463, + [8788] = 8174, + [8789] = 8437, + [8790] = 8349, + [8791] = 8517, + [8792] = 8174, + [8793] = 8349, + [8794] = 8517, + [8795] = 8174, + [8796] = 8349, + [8797] = 8517, + [8798] = 8349, + [8799] = 8517, + [8800] = 8349, + [8801] = 8517, + [8802] = 8349, + [8803] = 8517, + [8804] = 8349, + [8805] = 8517, + [8806] = 8349, + [8807] = 8517, + [8808] = 8808, + [8809] = 8232, + [8810] = 8467, + [8811] = 8365, + [8812] = 8375, + [8813] = 8663, + [8814] = 8229, + [8815] = 8398, + [8816] = 8816, + [8817] = 8157, + [8818] = 8818, [8819] = 8819, - [8820] = 8439, + [8820] = 8282, [8821] = 8821, - [8822] = 8088, + [8822] = 8822, [8823] = 8823, - [8824] = 8143, + [8824] = 8299, [8825] = 8825, - [8826] = 8473, - [8827] = 8109, - [8828] = 8260, - [8829] = 8251, - [8830] = 8130, - [8831] = 8095, - [8832] = 8832, - [8833] = 8833, + [8826] = 8343, + [8827] = 8094, + [8828] = 8513, + [8829] = 8656, + [8830] = 8299, + [8831] = 8831, + [8832] = 8185, + [8833] = 8370, [8834] = 8834, - [8835] = 8175, - [8836] = 8836, - [8837] = 8084, - [8838] = 8838, - [8839] = 8839, - [8840] = 8840, + [8835] = 8342, + [8836] = 8089, + [8837] = 8837, + [8838] = 8135, + [8839] = 8104, + [8840] = 8258, [8841] = 8841, - [8842] = 8842, - [8843] = 8190, - [8844] = 8844, + [8842] = 8128, + [8843] = 8189, + [8844] = 8343, [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, + [8846] = 8307, + [8847] = 8282, + [8848] = 8157, + [8849] = 8313, + [8850] = 8157, + [8851] = 8232, + [8852] = 8480, + [8853] = 8107, + [8854] = 8299, + [8855] = 8855, + [8856] = 8856, + [8857] = 8857, + [8858] = 8493, + [8859] = 8113, + [8860] = 8860, + [8861] = 8104, + [8862] = 8862, + [8863] = 8232, + [8864] = 8469, + [8865] = 8865, + [8866] = 8866, + [8867] = 8243, + [8868] = 8109, + [8869] = 8869, + [8870] = 8398, + [8871] = 8299, + [8872] = 8299, + [8873] = 8282, + [8874] = 8100, + [8875] = 8273, + [8876] = 7026, + [8877] = 8307, + [8878] = 8878, + [8879] = 8144, + [8880] = 8104, + [8881] = 8307, + [8882] = 8882, + [8883] = 8883, + [8884] = 8884, + [8885] = 8360, + [8886] = 8886, + [8887] = 8249, + [8888] = 8108, + [8889] = 8424, + [8890] = 8890, + [8891] = 8104, + [8892] = 8085, + [8893] = 8144, + [8894] = 8467, + [8895] = 8365, + [8896] = 8375, + [8897] = 8167, + [8898] = 8424, + [8899] = 8232, + [8900] = 8900, + [8901] = 8513, + [8902] = 8656, + [8903] = 8515, + [8904] = 8249, + [8905] = 8177, + [8906] = 8178, + [8907] = 8467, + [8908] = 8365, + [8909] = 8375, + [8910] = 8179, + [8911] = 8178, + [8912] = 8513, + [8913] = 8656, + [8914] = 8480, + [8915] = 8493, + [8916] = 8480, + [8917] = 8365, + [8918] = 8375, + [8919] = 8205, + [8920] = 8343, + [8921] = 8513, + [8922] = 8656, + [8923] = 8137, + [8924] = 8924, + [8925] = 8365, + [8926] = 8375, + [8927] = 8196, + [8928] = 8370, + [8929] = 8513, + [8930] = 8656, + [8931] = 8352, + [8932] = 8365, + [8933] = 8375, + [8934] = 8150, + [8935] = 8513, + [8936] = 8656, + [8937] = 8937, + [8938] = 8513, + [8939] = 8656, + [8940] = 8940, + [8941] = 8656, + [8942] = 8942, + [8943] = 8656, + [8944] = 8401, + [8945] = 8656, + [8946] = 8104, + [8947] = 8656, [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, + [8949] = 8656, + [8950] = 8107, + [8951] = 8656, + [8952] = 8952, + [8953] = 8656, + [8954] = 8108, + [8955] = 8656, + [8956] = 8211, + [8957] = 8656, + [8958] = 8093, + [8959] = 8267, + [8960] = 8229, + [8961] = 8093, + [8962] = 8267, + [8963] = 8329, + [8964] = 8093, + [8965] = 8267, + [8966] = 8307, + [8967] = 8093, + [8968] = 8267, + [8969] = 8084, + [8970] = 8093, + [8971] = 8267, + [8972] = 8937, + [8973] = 8267, + [8974] = 8267, + [8975] = 8267, + [8976] = 8267, + [8977] = 8267, + [8978] = 8267, + [8979] = 8267, + [8980] = 8267, + [8981] = 8267, + [8982] = 8267, + [8983] = 8267, + [8984] = 8385, + [8985] = 8113, + [8986] = 8986, + [8987] = 8294, + [8988] = 8089, + [8989] = 8204, + [8990] = 8204, + [8991] = 8204, + [8992] = 8204, + [8993] = 8204, + [8994] = 8172, }; static const TSCharacterRange sym_identifier_character_set_1[] = { @@ -14436,19 +14464,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(327); END_STATE(); case 39: - if (lookahead == '\n') SKIP(185); + if (lookahead == '\n') SKIP(199); END_STATE(); case 40: - if (lookahead == '\n') SKIP(185); + if (lookahead == '\n') SKIP(199); if (lookahead == '\r') SKIP(39); if (lookahead == 'U') ADVANCE(335); if (lookahead == 'u') ADVANCE(327); END_STATE(); case 41: - if (lookahead == '\n') SKIP(199); + if (lookahead == '\n') SKIP(185); END_STATE(); case 42: - if (lookahead == '\n') SKIP(199); + if (lookahead == '\n') SKIP(185); if (lookahead == '\r') SKIP(41); if (lookahead == 'U') ADVANCE(335); if (lookahead == 'u') ADVANCE(327); @@ -14616,19 +14644,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(327); END_STATE(); case 79: - if (lookahead == '\n') SKIP(220); + if (lookahead == '\n') SKIP(170); END_STATE(); case 80: - if (lookahead == '\n') SKIP(220); + if (lookahead == '\n') SKIP(170); if (lookahead == '\r') SKIP(79); if (lookahead == 'U') ADVANCE(335); if (lookahead == 'u') ADVANCE(327); END_STATE(); case 81: - if (lookahead == '\n') SKIP(170); + if (lookahead == '\n') SKIP(220); END_STATE(); case 82: - if (lookahead == '\n') SKIP(170); + if (lookahead == '\n') SKIP(220); if (lookahead == '\r') SKIP(81); if (lookahead == 'U') ADVANCE(335); if (lookahead == 'u') ADVANCE(327); @@ -14661,19 +14689,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(327); END_STATE(); case 89: - if (lookahead == '\n') SKIP(225); + if (lookahead == '\n') SKIP(244); END_STATE(); case 90: - if (lookahead == '\n') SKIP(225); + if (lookahead == '\n') SKIP(244); if (lookahead == '\r') SKIP(89); if (lookahead == 'U') ADVANCE(335); if (lookahead == 'u') ADVANCE(327); END_STATE(); case 91: - if (lookahead == '\n') SKIP(244); + if (lookahead == '\n') SKIP(225); END_STATE(); case 92: - if (lookahead == '\n') SKIP(244); + if (lookahead == '\n') SKIP(225); if (lookahead == '\r') SKIP(91); if (lookahead == 'U') ADVANCE(335); if (lookahead == 'u') ADVANCE(327); @@ -14688,13 +14716,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(327); END_STATE(); case 95: - if (lookahead == '\n') SKIP(97); + if (lookahead == '\n') SKIP(178); END_STATE(); case 96: - if (lookahead == '\n') SKIP(97); + if (lookahead == '\n') SKIP(178); 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, @@ -14709,20 +14746,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 274, '>', 445, ); - if (lookahead == '\\') SKIP(96); + if (lookahead == '\\') SKIP(98); if (lookahead == '^') ADVANCE(437); if (lookahead == '|') ADVANCE(436); if (('\t' <= lookahead && lookahead <= '\r') || - 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); + lookahead == ' ') SKIP(99); END_STATE(); case 100: if (lookahead == '\n') SKIP(246); @@ -14761,35 +14789,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(327); END_STATE(); case 108: - if (lookahead == '\n') SKIP(247); - if (lookahead == '\'') ADVANCE(516); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '\\') ADVANCE(518); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(520); - if (lookahead != 0) ADVANCE(517); - END_STATE(); - case 109: - if (lookahead == '\n') ADVANCE(532); - if (lookahead == '\r') ADVANCE(531); - if (lookahead == 'U') ADVANCE(336); - if (lookahead == 'u') ADVANCE(328); - if (lookahead == 'x') ADVANCE(322); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); - if (lookahead != 0) ADVANCE(531); - END_STATE(); - case 110: - if (lookahead == '\n') SKIP(236); - if (lookahead == '"') ADVANCE(525); - if (lookahead == '/') ADVANCE(526); - if (lookahead == '\\') ADVANCE(109); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(529); - if (lookahead != 0) ADVANCE(530); - END_STATE(); - case 111: if (lookahead == '\n') ADVANCE(342); - if (lookahead == '\r') ADVANCE(115); + if (lookahead == '\r') ADVANCE(112); if (lookahead == '(') ADVANCE(344); if (lookahead == '/') ADVANCE(370); if (lookahead == '\\') ADVANCE(365); @@ -14797,25 +14798,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(264); if (lookahead != 0) ADVANCE(372); END_STATE(); - case 112: + case 109: if (lookahead == '\n') ADVANCE(342); - if (lookahead == '\r') ADVANCE(115); + if (lookahead == '\r') ADVANCE(112); if (lookahead == '/') ADVANCE(370); if (lookahead == '\\') ADVANCE(365); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(264); if (lookahead != 0) ADVANCE(372); END_STATE(); - case 113: + case 110: if (lookahead == '\n') ADVANCE(342); - if (lookahead == '\r') ADVANCE(114); + if (lookahead == '\r') ADVANCE(111); if (lookahead == '(') ADVANCE(405); if (lookahead == '/') ADVANCE(255); if (lookahead == '\\') SKIP(117); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(252); END_STATE(); - case 114: + case 111: if (lookahead == '\n') ADVANCE(342); if (lookahead == '(') ADVANCE(405); if (lookahead == '/') ADVANCE(255); @@ -14823,7 +14824,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(252); END_STATE(); - case 115: + case 112: if (lookahead == '\n') ADVANCE(342); if (lookahead == '/') ADVANCE(370); if (lookahead == '\\') ADVANCE(365); @@ -14831,6 +14832,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(264); if (lookahead != 0) ADVANCE(372); END_STATE(); + case 113: + if (lookahead == '\n') SKIP(236); + if (lookahead == '"') ADVANCE(525); + if (lookahead == '/') ADVANCE(526); + if (lookahead == '\\') ADVANCE(114); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(529); + if (lookahead != 0) ADVANCE(530); + END_STATE(); + case 114: + if (lookahead == '\n') ADVANCE(532); + if (lookahead == '\r') ADVANCE(531); + if (lookahead == 'U') ADVANCE(336); + if (lookahead == 'u') ADVANCE(328); + if (lookahead == 'x') ADVANCE(322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(534); + if (lookahead != 0) ADVANCE(531); + END_STATE(); + case 115: + if (lookahead == '\n') SKIP(247); + if (lookahead == '\'') ADVANCE(516); + if (lookahead == '/') ADVANCE(519); + if (lookahead == '\\') ADVANCE(518); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(520); + if (lookahead != 0) ADVANCE(517); + END_STATE(); case 116: if (lookahead == '\n') SKIP(252); END_STATE(); @@ -15404,7 +15432,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 473, '>', 446, '[', 284, - '\\', 82, + '\\', 80, '^', 438, '|', 435, '~', 408, @@ -15531,7 +15559,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 498, ':', 271, ';', 459, - '>', 444, + '>', 277, 'F', 568, 'L', 542, 'R', 545, @@ -15576,7 +15604,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 498, ':', 271, ';', 459, - '>', 277, + '>', 444, 'F', 568, 'L', 542, 'R', 545, @@ -15754,7 +15782,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 498, 'L', 560, 'U', 561, - '\\', 99, + '\\', 96, 'u', 562, '~', 408, ); @@ -16005,7 +16033,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 545, 'U', 547, '[', 467, - '\\', 40, + '\\', 42, '^', 438, 'u', 550, '{', 465, @@ -16466,7 +16494,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 446, '?', 476, '[', 467, - '\\', 42, + '\\', 40, ']', 471, '^', 438, 'b', 614, @@ -17118,7 +17146,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 641, '?', 476, '[', 468, - '\\', 80, + '\\', 82, '^', 438, '|', 435, ); @@ -17255,7 +17283,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '<', 452, '=', 473, '>', 446, - '\\', 90, + '\\', 92, '^', 438, '|', 435, ); @@ -17555,7 +17583,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 236: if (lookahead == '"') ADVANCE(525); if (lookahead == '/') ADVANCE(255); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(114); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(236); END_STATE(); @@ -17752,7 +17780,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 472, '>', 641, '[', 467, - '\\', 92, + '\\', 90, '{', 465, '|', 309, ); @@ -17808,7 +17836,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 247: if (lookahead == '\'') ADVANCE(516); if (lookahead == '/') ADVANCE(255); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(114); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(247); END_STATE(); @@ -17954,13 +17982,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 275: if (lookahead == '=') ADVANCE(447); - if (lookahead == '>') ADVANCE(457); + if (lookahead == '>') ADVANCE(276); END_STATE(); case 276: if (lookahead == '=') ADVANCE(483); END_STATE(); case 277: - if (lookahead == '>') ADVANCE(276); + if (lookahead == '>') ADVANCE(457); END_STATE(); case 278: if (lookahead == '>') ADVANCE(494); @@ -19390,7 +19418,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 520: ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(114); END_STATE(); case 521: ACCEPT_TOKEN(anon_sym_L_DQUOTE); @@ -19456,7 +19484,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 532: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\\') ADVANCE(114); END_STATE(); case 533: ACCEPT_TOKEN(sym_escape_sequence); @@ -22264,12 +22292,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [34] = {.lex_state = 339}, [35] = {.lex_state = 339}, [36] = {.lex_state = 339}, - [37] = {.lex_state = 174}, + [37] = {.lex_state = 339}, [38] = {.lex_state = 174}, [39] = {.lex_state = 339}, [40] = {.lex_state = 339}, - [41] = {.lex_state = 339}, - [42] = {.lex_state = 174}, + [41] = {.lex_state = 174}, + [42] = {.lex_state = 339}, [43] = {.lex_state = 339}, [44] = {.lex_state = 339}, [45] = {.lex_state = 339}, @@ -22282,7 +22310,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [52] = {.lex_state = 339}, [53] = {.lex_state = 339}, [54] = {.lex_state = 339}, - [55] = {.lex_state = 339}, + [55] = {.lex_state = 174}, [56] = {.lex_state = 339}, [57] = {.lex_state = 339}, [58] = {.lex_state = 339}, @@ -22324,13 +22352,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [94] = {.lex_state = 339}, [95] = {.lex_state = 339}, [96] = {.lex_state = 339}, - [97] = {.lex_state = 174}, + [97] = {.lex_state = 339}, [98] = {.lex_state = 174}, [99] = {.lex_state = 174}, [100] = {.lex_state = 174}, [101] = {.lex_state = 174}, [102] = {.lex_state = 339}, - [103] = {.lex_state = 339}, + [103] = {.lex_state = 174}, [104] = {.lex_state = 339}, [105] = {.lex_state = 173}, [106] = {.lex_state = 173}, @@ -22367,8 +22395,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [137] = {.lex_state = 164}, [138] = {.lex_state = 164}, [139] = {.lex_state = 176}, - [140] = {.lex_state = 173}, - [141] = {.lex_state = 176}, + [140] = {.lex_state = 176}, + [141] = {.lex_state = 173}, [142] = {.lex_state = 176}, [143] = {.lex_state = 176}, [144] = {.lex_state = 173}, @@ -22378,7 +22406,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [148] = {.lex_state = 176}, [149] = {.lex_state = 173}, [150] = {.lex_state = 173}, - [151] = {.lex_state = 176}, + [151] = {.lex_state = 173}, [152] = {.lex_state = 176}, [153] = {.lex_state = 176}, [154] = {.lex_state = 176}, @@ -22397,7 +22425,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [167] = {.lex_state = 176}, [168] = {.lex_state = 176}, [169] = {.lex_state = 176}, - [170] = {.lex_state = 173}, + [170] = {.lex_state = 176}, [171] = {.lex_state = 176}, [172] = {.lex_state = 176}, [173] = {.lex_state = 176}, @@ -22451,22 +22479,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [221] = {.lex_state = 173}, [222] = {.lex_state = 173}, [223] = {.lex_state = 173}, - [224] = {.lex_state = 171}, - [225] = {.lex_state = 167}, - [226] = {.lex_state = 171}, - [227] = {.lex_state = 164}, + [224] = {.lex_state = 164}, + [225] = {.lex_state = 171}, + [226] = {.lex_state = 167}, + [227] = {.lex_state = 171}, [228] = {.lex_state = 339}, - [229] = {.lex_state = 171}, + [229] = {.lex_state = 339}, [230] = {.lex_state = 171}, - [231] = {.lex_state = 339}, + [231] = {.lex_state = 171}, [232] = {.lex_state = 339}, [233] = {.lex_state = 339}, [234] = {.lex_state = 339}, [235] = {.lex_state = 339}, [236] = {.lex_state = 171}, [237] = {.lex_state = 171}, - [238] = {.lex_state = 171}, - [239] = {.lex_state = 166}, + [238] = {.lex_state = 166}, + [239] = {.lex_state = 171}, [240] = {.lex_state = 171}, [241] = {.lex_state = 171}, [242] = {.lex_state = 171}, @@ -22497,11 +22525,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [267] = {.lex_state = 171}, [268] = {.lex_state = 171}, [269] = {.lex_state = 171}, - [270] = {.lex_state = 171}, + [270] = {.lex_state = 339}, [271] = {.lex_state = 171}, [272] = {.lex_state = 171}, [273] = {.lex_state = 171}, - [274] = {.lex_state = 339}, + [274] = {.lex_state = 171}, [275] = {.lex_state = 171}, [276] = {.lex_state = 171}, [277] = {.lex_state = 339}, @@ -22553,14 +22581,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [323] = {.lex_state = 171}, [324] = {.lex_state = 171}, [325] = {.lex_state = 171}, - [326] = {.lex_state = 339}, + [326] = {.lex_state = 171}, [327] = {.lex_state = 171}, [328] = {.lex_state = 171}, [329] = {.lex_state = 171}, [330] = {.lex_state = 171}, [331] = {.lex_state = 171}, - [332] = {.lex_state = 339}, - [333] = {.lex_state = 171}, + [332] = {.lex_state = 171}, + [333] = {.lex_state = 339}, [334] = {.lex_state = 171}, [335] = {.lex_state = 171}, [336] = {.lex_state = 171}, @@ -22574,122 +22602,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 171}, [345] = {.lex_state = 171}, [346] = {.lex_state = 171}, - [347] = {.lex_state = 239}, - [348] = {.lex_state = 339}, + [347] = {.lex_state = 171}, + [348] = {.lex_state = 239}, [349] = {.lex_state = 339}, [350] = {.lex_state = 339}, - [351] = {.lex_state = 171}, - [352] = {.lex_state = 171}, + [351] = {.lex_state = 339}, + [352] = {.lex_state = 339}, [353] = {.lex_state = 171}, [354] = {.lex_state = 171}, - [355] = {.lex_state = 339}, - [356] = {.lex_state = 173}, - [357] = {.lex_state = 171}, + [355] = {.lex_state = 171}, + [356] = {.lex_state = 171}, + [357] = {.lex_state = 173}, [358] = {.lex_state = 171}, [359] = {.lex_state = 171}, - [360] = {.lex_state = 171}, + [360] = {.lex_state = 339}, [361] = {.lex_state = 171}, [362] = {.lex_state = 171}, [363] = {.lex_state = 171}, - [364] = {.lex_state = 174}, + [364] = {.lex_state = 171}, [365] = {.lex_state = 171}, - [366] = {.lex_state = 171}, - [367] = {.lex_state = 174}, + [366] = {.lex_state = 174}, + [367] = {.lex_state = 171}, [368] = {.lex_state = 171}, - [369] = {.lex_state = 171}, + [369] = {.lex_state = 174}, [370] = {.lex_state = 171}, [371] = {.lex_state = 171}, - [372] = {.lex_state = 339}, - [373] = {.lex_state = 339}, + [372] = {.lex_state = 171}, + [373] = {.lex_state = 171}, [374] = {.lex_state = 339}, [375] = {.lex_state = 339}, [376] = {.lex_state = 339}, - [377] = {.lex_state = 176}, + [377] = {.lex_state = 339}, [378] = {.lex_state = 339}, - [379] = {.lex_state = 339}, - [380] = {.lex_state = 239}, + [379] = {.lex_state = 176}, + [380] = {.lex_state = 339}, [381] = {.lex_state = 239}, [382] = {.lex_state = 239}, [383] = {.lex_state = 239}, [384] = {.lex_state = 239}, - [385] = {.lex_state = 339}, - [386] = {.lex_state = 339}, + [385] = {.lex_state = 239}, + [386] = {.lex_state = 239}, [387] = {.lex_state = 339}, [388] = {.lex_state = 339}, [389] = {.lex_state = 339}, [390] = {.lex_state = 339}, - [391] = {.lex_state = 176}, - [392] = {.lex_state = 339}, + [391] = {.lex_state = 339}, + [392] = {.lex_state = 176}, [393] = {.lex_state = 339}, [394] = {.lex_state = 339}, - [395] = {.lex_state = 176}, + [395] = {.lex_state = 339}, [396] = {.lex_state = 339}, [397] = {.lex_state = 239}, - [398] = {.lex_state = 239}, + [398] = {.lex_state = 339}, [399] = {.lex_state = 239}, [400] = {.lex_state = 239}, [401] = {.lex_state = 239}, [402] = {.lex_state = 239}, - [403] = {.lex_state = 339}, - [404] = {.lex_state = 239}, + [403] = {.lex_state = 239}, + [404] = {.lex_state = 339}, [405] = {.lex_state = 239}, [406] = {.lex_state = 239}, - [407] = {.lex_state = 176}, - [408] = {.lex_state = 339}, + [407] = {.lex_state = 239}, + [408] = {.lex_state = 176}, [409] = {.lex_state = 339}, [410] = {.lex_state = 339}, [411] = {.lex_state = 176}, - [412] = {.lex_state = 339}, + [412] = {.lex_state = 176}, [413] = {.lex_state = 339}, - [414] = {.lex_state = 176}, - [415] = {.lex_state = 339}, - [416] = {.lex_state = 176}, + [414] = {.lex_state = 339}, + [415] = {.lex_state = 176}, + [416] = {.lex_state = 339}, [417] = {.lex_state = 339}, [418] = {.lex_state = 176}, - [419] = {.lex_state = 176}, - [420] = {.lex_state = 339}, + [419] = {.lex_state = 339}, + [420] = {.lex_state = 176}, [421] = {.lex_state = 176}, [422] = {.lex_state = 176}, - [423] = {.lex_state = 176}, - [424] = {.lex_state = 339}, - [425] = {.lex_state = 173}, + [423] = {.lex_state = 339}, + [424] = {.lex_state = 176}, + [425] = {.lex_state = 176}, [426] = {.lex_state = 176}, - [427] = {.lex_state = 173}, - [428] = {.lex_state = 339}, + [427] = {.lex_state = 339}, + [428] = {.lex_state = 173}, [429] = {.lex_state = 176}, - [430] = {.lex_state = 339}, + [430] = {.lex_state = 173}, [431] = {.lex_state = 339}, [432] = {.lex_state = 176}, - [433] = {.lex_state = 176}, + [433] = {.lex_state = 339}, [434] = {.lex_state = 176}, - [435] = {.lex_state = 339}, + [435] = {.lex_state = 176}, [436] = {.lex_state = 339}, - [437] = {.lex_state = 171}, - [438] = {.lex_state = 339}, - [439] = {.lex_state = 171}, + [437] = {.lex_state = 339}, + [438] = {.lex_state = 171}, + [439] = {.lex_state = 339}, [440] = {.lex_state = 339}, - [441] = {.lex_state = 239}, - [442] = {.lex_state = 175}, + [441] = {.lex_state = 171}, + [442] = {.lex_state = 339}, [443] = {.lex_state = 339}, - [444] = {.lex_state = 173}, - [445] = {.lex_state = 339}, - [446] = {.lex_state = 339}, - [447] = {.lex_state = 173}, - [448] = {.lex_state = 176}, - [449] = {.lex_state = 174}, - [450] = {.lex_state = 339}, + [444] = {.lex_state = 175}, + [445] = {.lex_state = 175}, + [446] = {.lex_state = 173}, + [447] = {.lex_state = 339}, + [448] = {.lex_state = 173}, + [449] = {.lex_state = 339}, + [450] = {.lex_state = 174}, [451] = {.lex_state = 174}, - [452] = {.lex_state = 173}, - [453] = {.lex_state = 339}, - [454] = {.lex_state = 173}, - [455] = {.lex_state = 175}, + [452] = {.lex_state = 339}, + [453] = {.lex_state = 173}, + [454] = {.lex_state = 339}, + [455] = {.lex_state = 176}, [456] = {.lex_state = 173}, - [457] = {.lex_state = 173}, - [458] = {.lex_state = 176}, - [459] = {.lex_state = 176}, - [460] = {.lex_state = 339}, - [461] = {.lex_state = 176}, - [462] = {.lex_state = 174}, + [457] = {.lex_state = 339}, + [458] = {.lex_state = 173}, + [459] = {.lex_state = 173}, + [460] = {.lex_state = 173}, + [461] = {.lex_state = 339}, + [462] = {.lex_state = 176}, [463] = {.lex_state = 176}, [464] = {.lex_state = 176}, [465] = {.lex_state = 176}, @@ -22698,19 +22726,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [468] = {.lex_state = 176}, [469] = {.lex_state = 176}, [470] = {.lex_state = 176}, - [471] = {.lex_state = 339}, - [472] = {.lex_state = 174}, - [473] = {.lex_state = 339}, - [474] = {.lex_state = 176}, + [471] = {.lex_state = 176}, + [472] = {.lex_state = 339}, + [473] = {.lex_state = 174}, + [474] = {.lex_state = 173}, [475] = {.lex_state = 339}, - [476] = {.lex_state = 173}, - [477] = {.lex_state = 339}, + [476] = {.lex_state = 339}, + [477] = {.lex_state = 174}, [478] = {.lex_state = 174}, - [479] = {.lex_state = 173}, - [480] = {.lex_state = 174}, + [479] = {.lex_state = 176}, + [480] = {.lex_state = 339}, [481] = {.lex_state = 174}, - [482] = {.lex_state = 339}, - [483] = {.lex_state = 339}, + [482] = {.lex_state = 176}, + [483] = {.lex_state = 174}, [484] = {.lex_state = 339}, [485] = {.lex_state = 339}, [486] = {.lex_state = 339}, @@ -22740,13 +22768,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [510] = {.lex_state = 339}, [511] = {.lex_state = 339}, [512] = {.lex_state = 339}, - [513] = {.lex_state = 174}, + [513] = {.lex_state = 339}, [514] = {.lex_state = 339}, [515] = {.lex_state = 339}, [516] = {.lex_state = 339}, [517] = {.lex_state = 339}, [518] = {.lex_state = 339}, - [519] = {.lex_state = 339}, + [519] = {.lex_state = 174}, [520] = {.lex_state = 339}, [521] = {.lex_state = 339}, [522] = {.lex_state = 339}, @@ -22754,303 +22782,303 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [524] = {.lex_state = 339}, [525] = {.lex_state = 339}, [526] = {.lex_state = 339}, - [527] = {.lex_state = 174}, - [528] = {.lex_state = 174}, - [529] = {.lex_state = 174}, + [527] = {.lex_state = 339}, + [528] = {.lex_state = 339}, + [529] = {.lex_state = 339}, [530] = {.lex_state = 339}, [531] = {.lex_state = 339}, - [532] = {.lex_state = 174}, - [533] = {.lex_state = 339}, - [534] = {.lex_state = 339}, + [532] = {.lex_state = 339}, + [533] = {.lex_state = 174}, + [534] = {.lex_state = 174}, [535] = {.lex_state = 339}, - [536] = {.lex_state = 174}, + [536] = {.lex_state = 339}, [537] = {.lex_state = 174}, - [538] = {.lex_state = 174}, + [538] = {.lex_state = 339}, [539] = {.lex_state = 339}, [540] = {.lex_state = 339}, [541] = {.lex_state = 339}, - [542] = {.lex_state = 339}, + [542] = {.lex_state = 174}, [543] = {.lex_state = 174}, [544] = {.lex_state = 339}, [545] = {.lex_state = 339}, - [546] = {.lex_state = 339}, + [546] = {.lex_state = 174}, [547] = {.lex_state = 174}, - [548] = {.lex_state = 174}, - [549] = {.lex_state = 174}, - [550] = {.lex_state = 339}, - [551] = {.lex_state = 174}, + [548] = {.lex_state = 339}, + [549] = {.lex_state = 339}, + [550] = {.lex_state = 174}, + [551] = {.lex_state = 339}, [552] = {.lex_state = 339}, - [553] = {.lex_state = 174}, + [553] = {.lex_state = 339}, [554] = {.lex_state = 174}, - [555] = {.lex_state = 174}, - [556] = {.lex_state = 339}, - [557] = {.lex_state = 339}, - [558] = {.lex_state = 339}, + [555] = {.lex_state = 339}, + [556] = {.lex_state = 174}, + [557] = {.lex_state = 174}, + [558] = {.lex_state = 174}, [559] = {.lex_state = 339}, - [560] = {.lex_state = 339}, - [561] = {.lex_state = 339}, + [560] = {.lex_state = 174}, + [561] = {.lex_state = 174}, [562] = {.lex_state = 339}, - [563] = {.lex_state = 339}, + [563] = {.lex_state = 174}, [564] = {.lex_state = 339}, [565] = {.lex_state = 339}, [566] = {.lex_state = 339}, [567] = {.lex_state = 339}, [568] = {.lex_state = 339}, [569] = {.lex_state = 339}, - [570] = {.lex_state = 174}, + [570] = {.lex_state = 339}, [571] = {.lex_state = 339}, [572] = {.lex_state = 339}, [573] = {.lex_state = 339}, [574] = {.lex_state = 339}, - [575] = {.lex_state = 174}, - [576] = {.lex_state = 339}, + [575] = {.lex_state = 339}, + [576] = {.lex_state = 174}, [577] = {.lex_state = 339}, [578] = {.lex_state = 339}, [579] = {.lex_state = 339}, - [580] = {.lex_state = 174}, + [580] = {.lex_state = 339}, [581] = {.lex_state = 339}, - [582] = {.lex_state = 339}, + [582] = {.lex_state = 174}, [583] = {.lex_state = 339}, [584] = {.lex_state = 339}, [585] = {.lex_state = 339}, [586] = {.lex_state = 339}, [587] = {.lex_state = 339}, [588] = {.lex_state = 339}, - [589] = {.lex_state = 174}, + [589] = {.lex_state = 339}, [590] = {.lex_state = 339}, - [591] = {.lex_state = 339}, + [591] = {.lex_state = 174}, [592] = {.lex_state = 339}, - [593] = {.lex_state = 174}, + [593] = {.lex_state = 339}, [594] = {.lex_state = 339}, [595] = {.lex_state = 339}, - [596] = {.lex_state = 174}, - [597] = {.lex_state = 174}, + [596] = {.lex_state = 339}, + [597] = {.lex_state = 339}, [598] = {.lex_state = 339}, [599] = {.lex_state = 339}, - [600] = {.lex_state = 239}, + [600] = {.lex_state = 339}, [601] = {.lex_state = 174}, - [602] = {.lex_state = 339}, + [602] = {.lex_state = 174}, [603] = {.lex_state = 339}, [604] = {.lex_state = 339}, [605] = {.lex_state = 174}, - [606] = {.lex_state = 339}, - [607] = {.lex_state = 339}, - [608] = {.lex_state = 339}, + [606] = {.lex_state = 239}, + [607] = {.lex_state = 174}, + [608] = {.lex_state = 174}, [609] = {.lex_state = 339}, [610] = {.lex_state = 339}, [611] = {.lex_state = 339}, [612] = {.lex_state = 339}, [613] = {.lex_state = 174}, - [614] = {.lex_state = 174}, + [614] = {.lex_state = 339}, [615] = {.lex_state = 339}, [616] = {.lex_state = 339}, [617] = {.lex_state = 339}, [618] = {.lex_state = 339}, [619] = {.lex_state = 339}, [620] = {.lex_state = 339}, - [621] = {.lex_state = 339}, + [621] = {.lex_state = 174}, [622] = {.lex_state = 339}, - [623] = {.lex_state = 174}, - [624] = {.lex_state = 339}, - [625] = {.lex_state = 174}, + [623] = {.lex_state = 339}, + [624] = {.lex_state = 174}, + [625] = {.lex_state = 339}, [626] = {.lex_state = 339}, [627] = {.lex_state = 339}, [628] = {.lex_state = 339}, - [629] = {.lex_state = 174}, + [629] = {.lex_state = 339}, [630] = {.lex_state = 339}, [631] = {.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 = 339}, + [632] = {.lex_state = 339}, + [633] = {.lex_state = 174}, + [634] = {.lex_state = 339}, + [635] = {.lex_state = 339}, + [636] = {.lex_state = 339}, + [637] = {.lex_state = 174}, [638] = {.lex_state = 174}, - [639] = {.lex_state = 339}, - [640] = {.lex_state = 174}, - [641] = {.lex_state = 339}, - [642] = {.lex_state = 339}, + [639] = {.lex_state = 174}, + [640] = {.lex_state = 339}, + [641] = {.lex_state = 174}, + [642] = {.lex_state = 174}, [643] = {.lex_state = 174}, - [644] = {.lex_state = 174}, - [645] = {.lex_state = 339}, + [644] = {.lex_state = 339}, + [645] = {.lex_state = 174}, [646] = {.lex_state = 339}, [647] = {.lex_state = 339}, [648] = {.lex_state = 339}, - [649] = {.lex_state = 339}, + [649] = {.lex_state = 174}, [650] = {.lex_state = 339}, [651] = {.lex_state = 339}, [652] = {.lex_state = 339}, - [653] = {.lex_state = 339}, + [653] = {.lex_state = 174}, [654] = {.lex_state = 339}, [655] = {.lex_state = 174}, - [656] = {.lex_state = 174}, + [656] = {.lex_state = 339}, [657] = {.lex_state = 339}, - [658] = {.lex_state = 174}, - [659] = {.lex_state = 174}, + [658] = {.lex_state = 339}, + [659] = {.lex_state = 339}, [660] = {.lex_state = 339}, [661] = {.lex_state = 339}, - [662] = {.lex_state = 339}, - [663] = {.lex_state = 339}, - [664] = {.lex_state = 339}, + [662] = {.lex_state = 174}, + [663] = {.lex_state = 174}, + [664] = {.lex_state = 174}, [665] = {.lex_state = 339}, [666] = {.lex_state = 174}, [667] = {.lex_state = 339}, - [668] = {.lex_state = 174}, + [668] = {.lex_state = 339}, [669] = {.lex_state = 339}, [670] = {.lex_state = 174}, [671] = {.lex_state = 174}, [672] = {.lex_state = 174}, [673] = {.lex_state = 174}, - [674] = {.lex_state = 339}, + [674] = {.lex_state = 174}, [675] = {.lex_state = 174}, [676] = {.lex_state = 174}, - [677] = {.lex_state = 174}, + [677] = {.lex_state = 339}, [678] = {.lex_state = 339}, [679] = {.lex_state = 174}, - [680] = {.lex_state = 174}, + [680] = {.lex_state = 339}, [681] = {.lex_state = 174}, - [682] = {.lex_state = 339}, - [683] = {.lex_state = 339}, + [682] = {.lex_state = 174}, + [683] = {.lex_state = 174}, [684] = {.lex_state = 174}, [685] = {.lex_state = 174}, [686] = {.lex_state = 174}, [687] = {.lex_state = 174}, - [688] = {.lex_state = 174}, - [689] = {.lex_state = 174}, + [688] = {.lex_state = 339}, + [689] = {.lex_state = 339}, [690] = {.lex_state = 174}, [691] = {.lex_state = 174}, - [692] = {.lex_state = 174}, + [692] = {.lex_state = 339}, [693] = {.lex_state = 174}, - [694] = {.lex_state = 174}, + [694] = {.lex_state = 339}, [695] = {.lex_state = 339}, - [696] = {.lex_state = 339}, + [696] = {.lex_state = 174}, [697] = {.lex_state = 174}, - [698] = {.lex_state = 174}, + [698] = {.lex_state = 339}, [699] = {.lex_state = 174}, [700] = {.lex_state = 174}, [701] = {.lex_state = 174}, [702] = {.lex_state = 174}, [703] = {.lex_state = 339}, [704] = {.lex_state = 339}, - [705] = {.lex_state = 174}, + [705] = {.lex_state = 339}, [706] = {.lex_state = 339}, [707] = {.lex_state = 174}, - [708] = {.lex_state = 174}, + [708] = {.lex_state = 339}, [709] = {.lex_state = 174}, - [710] = {.lex_state = 174}, - [711] = {.lex_state = 174}, - [712] = {.lex_state = 174}, + [710] = {.lex_state = 339}, + [711] = {.lex_state = 339}, + [712] = {.lex_state = 339}, [713] = {.lex_state = 339}, - [714] = {.lex_state = 174}, + [714] = {.lex_state = 339}, [715] = {.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 = 174}, - [723] = {.lex_state = 174}, - [724] = {.lex_state = 174}, + [717] = {.lex_state = 339}, + [718] = {.lex_state = 339}, + [719] = {.lex_state = 339}, + [720] = {.lex_state = 339}, + [721] = {.lex_state = 339}, + [722] = {.lex_state = 339}, + [723] = {.lex_state = 339}, + [724] = {.lex_state = 339}, [725] = {.lex_state = 339}, [726] = {.lex_state = 339}, - [727] = {.lex_state = 174}, + [727] = {.lex_state = 339}, [728] = {.lex_state = 339}, [729] = {.lex_state = 339}, [730] = {.lex_state = 339}, [731] = {.lex_state = 339}, - [732] = {.lex_state = 174}, - [733] = {.lex_state = 174}, - [734] = {.lex_state = 174}, + [732] = {.lex_state = 339}, + [733] = {.lex_state = 339}, + [734] = {.lex_state = 339}, [735] = {.lex_state = 339}, - [736] = {.lex_state = 174}, - [737] = {.lex_state = 174}, - [738] = {.lex_state = 174}, - [739] = {.lex_state = 174}, + [736] = {.lex_state = 339}, + [737] = {.lex_state = 339}, + [738] = {.lex_state = 339}, + [739] = {.lex_state = 339}, [740] = {.lex_state = 339}, [741] = {.lex_state = 339}, - [742] = {.lex_state = 174}, - [743] = {.lex_state = 174}, - [744] = {.lex_state = 174}, + [742] = {.lex_state = 339}, + [743] = {.lex_state = 339}, + [744] = {.lex_state = 339}, [745] = {.lex_state = 339}, [746] = {.lex_state = 339}, [747] = {.lex_state = 174}, - [748] = {.lex_state = 174}, - [749] = {.lex_state = 174}, + [748] = {.lex_state = 339}, + [749] = {.lex_state = 339}, [750] = {.lex_state = 174}, [751] = {.lex_state = 174}, [752] = {.lex_state = 174}, [753] = {.lex_state = 174}, - [754] = {.lex_state = 339}, - [755] = {.lex_state = 174}, - [756] = {.lex_state = 339}, + [754] = {.lex_state = 174}, + [755] = {.lex_state = 339}, + [756] = {.lex_state = 174}, [757] = {.lex_state = 339}, [758] = {.lex_state = 339}, [759] = {.lex_state = 339}, - [760] = {.lex_state = 339}, + [760] = {.lex_state = 174}, [761] = {.lex_state = 339}, - [762] = {.lex_state = 339}, - [763] = {.lex_state = 339}, - [764] = {.lex_state = 339}, + [762] = {.lex_state = 174}, + [763] = {.lex_state = 174}, + [764] = {.lex_state = 174}, [765] = {.lex_state = 339}, [766] = {.lex_state = 339}, - [767] = {.lex_state = 339}, - [768] = {.lex_state = 339}, - [769] = {.lex_state = 339}, - [770] = {.lex_state = 339}, - [771] = {.lex_state = 339}, - [772] = {.lex_state = 339}, + [767] = {.lex_state = 174}, + [768] = {.lex_state = 174}, + [769] = {.lex_state = 174}, + [770] = {.lex_state = 174}, + [771] = {.lex_state = 174}, + [772] = {.lex_state = 174}, [773] = {.lex_state = 339}, [774] = {.lex_state = 339}, - [775] = {.lex_state = 339}, - [776] = {.lex_state = 339}, - [777] = {.lex_state = 339}, + [775] = {.lex_state = 174}, + [776] = {.lex_state = 174}, + [777] = {.lex_state = 174}, [778] = {.lex_state = 339}, [779] = {.lex_state = 339}, [780] = {.lex_state = 339}, [781] = {.lex_state = 339}, [782] = {.lex_state = 339}, [783] = {.lex_state = 339}, - [784] = {.lex_state = 339}, - [785] = {.lex_state = 339}, - [786] = {.lex_state = 339}, - [787] = {.lex_state = 339}, - [788] = {.lex_state = 339}, - [789] = {.lex_state = 339}, - [790] = {.lex_state = 339}, - [791] = {.lex_state = 339}, + [784] = {.lex_state = 174}, + [785] = {.lex_state = 174}, + [786] = {.lex_state = 174}, + [787] = {.lex_state = 174}, + [788] = {.lex_state = 174}, + [789] = {.lex_state = 174}, + [790] = {.lex_state = 174}, + [791] = {.lex_state = 174}, [792] = {.lex_state = 174}, - [793] = {.lex_state = 339}, - [794] = {.lex_state = 339}, - [795] = {.lex_state = 339}, - [796] = {.lex_state = 174}, + [793] = {.lex_state = 174}, + [794] = {.lex_state = 174}, + [795] = {.lex_state = 174}, + [796] = {.lex_state = 339}, [797] = {.lex_state = 339}, - [798] = {.lex_state = 174}, - [799] = {.lex_state = 174}, - [800] = {.lex_state = 174}, + [798] = {.lex_state = 339}, + [799] = {.lex_state = 339}, + [800] = {.lex_state = 339}, [801] = {.lex_state = 174}, - [802] = {.lex_state = 339}, - [803] = {.lex_state = 339}, + [802] = {.lex_state = 174}, + [803] = {.lex_state = 174}, [804] = {.lex_state = 174}, - [805] = {.lex_state = 339}, - [806] = {.lex_state = 339}, - [807] = {.lex_state = 339}, - [808] = {.lex_state = 339}, + [805] = {.lex_state = 174}, + [806] = {.lex_state = 174}, + [807] = {.lex_state = 174}, + [808] = {.lex_state = 174}, [809] = {.lex_state = 174}, - [810] = {.lex_state = 165}, - [811] = {.lex_state = 195}, - [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}, + [810] = {.lex_state = 174}, + [811] = {.lex_state = 174}, + [812] = {.lex_state = 174}, + [813] = {.lex_state = 174}, + [814] = {.lex_state = 174}, + [815] = {.lex_state = 339}, + [816] = {.lex_state = 174}, + [817] = {.lex_state = 174}, + [818] = {.lex_state = 165}, [819] = {.lex_state = 195}, [820] = {.lex_state = 195}, - [821] = {.lex_state = 240}, + [821] = {.lex_state = 195}, [822] = {.lex_state = 195}, - [823] = {.lex_state = 240}, + [823] = {.lex_state = 195}, [824] = {.lex_state = 195}, [825] = {.lex_state = 195}, [826] = {.lex_state = 195}, @@ -23058,108 +23086,108 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [828] = {.lex_state = 195}, [829] = {.lex_state = 195}, [830] = {.lex_state = 195}, - [831] = {.lex_state = 240}, + [831] = {.lex_state = 195}, [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 = 339}, - [847] = {.lex_state = 176}, - [848] = {.lex_state = 239}, - [849] = {.lex_state = 239}, - [850] = {.lex_state = 239}, - [851] = {.lex_state = 239}, - [852] = {.lex_state = 239}, - [853] = {.lex_state = 239}, - [854] = {.lex_state = 239}, - [855] = {.lex_state = 239}, - [856] = {.lex_state = 176}, - [857] = {.lex_state = 176}, - [858] = {.lex_state = 176}, - [859] = {.lex_state = 339}, + [835] = {.lex_state = 195}, + [836] = {.lex_state = 195}, + [837] = {.lex_state = 195}, + [838] = {.lex_state = 240}, + [839] = {.lex_state = 195}, + [840] = {.lex_state = 240}, + [841] = {.lex_state = 240}, + [842] = {.lex_state = 195}, + [843] = {.lex_state = 165}, + [844] = {.lex_state = 165}, + [845] = {.lex_state = 168}, + [846] = {.lex_state = 165}, + [847] = {.lex_state = 165}, + [848] = {.lex_state = 165}, + [849] = {.lex_state = 169}, + [850] = {.lex_state = 169}, + [851] = {.lex_state = 176}, + [852] = {.lex_state = 176}, + [853] = {.lex_state = 339}, + [854] = {.lex_state = 339}, + [855] = {.lex_state = 176}, + [856] = {.lex_state = 239}, + [857] = {.lex_state = 239}, + [858] = {.lex_state = 239}, + [859] = {.lex_state = 239}, [860] = {.lex_state = 239}, - [861] = {.lex_state = 176}, - [862] = {.lex_state = 176}, - [863] = {.lex_state = 176}, + [861] = {.lex_state = 239}, + [862] = {.lex_state = 239}, + [863] = {.lex_state = 239}, [864] = {.lex_state = 176}, [865] = {.lex_state = 176}, [866] = {.lex_state = 239}, - [867] = {.lex_state = 176}, + [867] = {.lex_state = 239}, [868] = {.lex_state = 176}, [869] = {.lex_state = 176}, [870] = {.lex_state = 176}, - [871] = {.lex_state = 239}, + [871] = {.lex_state = 176}, [872] = {.lex_state = 176}, - [873] = {.lex_state = 239}, + [873] = {.lex_state = 176}, [874] = {.lex_state = 176}, - [875] = {.lex_state = 176}, - [876] = {.lex_state = 239}, + [875] = {.lex_state = 239}, + [876] = {.lex_state = 339}, [877] = {.lex_state = 176}, - [878] = {.lex_state = 176}, + [878] = {.lex_state = 239}, [879] = {.lex_state = 176}, - [880] = {.lex_state = 176}, + [880] = {.lex_state = 239}, [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 = 175}, - [888] = {.lex_state = 173}, - [889] = {.lex_state = 188}, - [890] = {.lex_state = 188}, - [891] = {.lex_state = 188}, - [892] = {.lex_state = 188}, + [882] = {.lex_state = 176}, + [883] = {.lex_state = 239}, + [884] = {.lex_state = 176}, + [885] = {.lex_state = 176}, + [886] = {.lex_state = 176}, + [887] = {.lex_state = 176}, + [888] = {.lex_state = 176}, + [889] = {.lex_state = 176}, + [890] = {.lex_state = 176}, + [891] = {.lex_state = 176}, + [892] = {.lex_state = 173}, [893] = {.lex_state = 188}, - [894] = {.lex_state = 176}, - [895] = {.lex_state = 188}, - [896] = {.lex_state = 188}, - [897] = {.lex_state = 188}, + [894] = {.lex_state = 188}, + [895] = {.lex_state = 175}, + [896] = {.lex_state = 173}, + [897] = {.lex_state = 175}, [898] = {.lex_state = 188}, [899] = {.lex_state = 188}, [900] = {.lex_state = 188}, - [901] = {.lex_state = 173}, - [902] = {.lex_state = 173}, + [901] = {.lex_state = 188}, + [902] = {.lex_state = 188}, [903] = {.lex_state = 188}, - [904] = {.lex_state = 173}, - [905] = {.lex_state = 173}, - [906] = {.lex_state = 173}, - [907] = {.lex_state = 173}, - [908] = {.lex_state = 173}, - [909] = {.lex_state = 175}, + [904] = {.lex_state = 188}, + [905] = {.lex_state = 188}, + [906] = {.lex_state = 188}, + [907] = {.lex_state = 188}, + [908] = {.lex_state = 176}, + [909] = {.lex_state = 173}, [910] = {.lex_state = 173}, [911] = {.lex_state = 173}, [912] = {.lex_state = 173}, [913] = {.lex_state = 173}, [914] = {.lex_state = 173}, [915] = {.lex_state = 173}, - [916] = {.lex_state = 173}, + [916] = {.lex_state = 188}, [917] = {.lex_state = 173}, [918] = {.lex_state = 173}, [919] = {.lex_state = 173}, - [920] = {.lex_state = 173}, + [920] = {.lex_state = 175}, [921] = {.lex_state = 173}, [922] = {.lex_state = 173}, [923] = {.lex_state = 173}, [924] = {.lex_state = 173}, [925] = {.lex_state = 173}, [926] = {.lex_state = 173}, - [927] = {.lex_state = 175}, + [927] = {.lex_state = 173}, [928] = {.lex_state = 173}, [929] = {.lex_state = 173}, [930] = {.lex_state = 173}, [931] = {.lex_state = 173}, - [932] = {.lex_state = 173}, + [932] = {.lex_state = 175}, [933] = {.lex_state = 173}, [934] = {.lex_state = 173}, [935] = {.lex_state = 173}, @@ -23180,71 +23208,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 177}, - [958] = {.lex_state = 177}, - [959] = {.lex_state = 176}, - [960] = {.lex_state = 177}, - [961] = {.lex_state = 176}, - [962] = {.lex_state = 176}, + [953] = {.lex_state = 173}, + [954] = {.lex_state = 173}, + [955] = {.lex_state = 173}, + [956] = {.lex_state = 173}, + [957] = {.lex_state = 173}, + [958] = {.lex_state = 173}, + [959] = {.lex_state = 173}, + [960] = {.lex_state = 173}, + [961] = {.lex_state = 239}, + [962] = {.lex_state = 177}, [963] = {.lex_state = 177}, [964] = {.lex_state = 176}, - [965] = {.lex_state = 177}, + [965] = {.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 = 177}, + [967] = {.lex_state = 177}, + [968] = {.lex_state = 176}, + [969] = {.lex_state = 176}, + [970] = {.lex_state = 176}, + [971] = {.lex_state = 176}, [972] = {.lex_state = 176}, - [973] = {.lex_state = 176}, + [973] = {.lex_state = 177}, [974] = {.lex_state = 176}, [975] = {.lex_state = 177}, [976] = {.lex_state = 177}, [977] = {.lex_state = 176}, - [978] = {.lex_state = 176}, - [979] = {.lex_state = 176}, + [978] = {.lex_state = 177}, + [979] = {.lex_state = 177}, [980] = {.lex_state = 177}, [981] = {.lex_state = 176}, - [982] = {.lex_state = 176}, + [982] = {.lex_state = 177}, [983] = {.lex_state = 177}, - [984] = {.lex_state = 176}, + [984] = {.lex_state = 177}, [985] = {.lex_state = 177}, [986] = {.lex_state = 176}, - [987] = {.lex_state = 177}, - [988] = {.lex_state = 176}, - [989] = {.lex_state = 176}, - [990] = {.lex_state = 177}, + [987] = {.lex_state = 176}, + [988] = {.lex_state = 177}, + [989] = {.lex_state = 177}, + [990] = {.lex_state = 176}, [991] = {.lex_state = 176}, [992] = {.lex_state = 176}, [993] = {.lex_state = 176}, - [994] = {.lex_state = 177}, - [995] = {.lex_state = 177}, - [996] = {.lex_state = 177}, + [994] = {.lex_state = 176}, + [995] = {.lex_state = 176}, + [996] = {.lex_state = 184}, [997] = {.lex_state = 177}, - [998] = {.lex_state = 177}, - [999] = {.lex_state = 176}, - [1000] = {.lex_state = 177}, - [1001] = {.lex_state = 176}, - [1002] = {.lex_state = 184}, + [998] = {.lex_state = 176}, + [999] = {.lex_state = 177}, + [1000] = {.lex_state = 176}, + [1001] = {.lex_state = 177}, + [1002] = {.lex_state = 177}, [1003] = {.lex_state = 177}, - [1004] = {.lex_state = 177}, - [1005] = {.lex_state = 176}, - [1006] = {.lex_state = 176}, - [1007] = {.lex_state = 188}, + [1004] = {.lex_state = 176}, + [1005] = {.lex_state = 177}, + [1006] = {.lex_state = 177}, + [1007] = {.lex_state = 176}, [1008] = {.lex_state = 176}, [1009] = {.lex_state = 176}, - [1010] = {.lex_state = 176}, + [1010] = {.lex_state = 177}, [1011] = {.lex_state = 176}, - [1012] = {.lex_state = 176}, + [1012] = {.lex_state = 177}, [1013] = {.lex_state = 176}, - [1014] = {.lex_state = 176}, + [1014] = {.lex_state = 177}, [1015] = {.lex_state = 176}, [1016] = {.lex_state = 176}, - [1017] = {.lex_state = 176}, + [1017] = {.lex_state = 188}, [1018] = {.lex_state = 176}, [1019] = {.lex_state = 176}, [1020] = {.lex_state = 176}, @@ -23483,7 +23511,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1253] = {.lex_state = 176}, [1254] = {.lex_state = 176}, [1255] = {.lex_state = 176}, - [1256] = {.lex_state = 176}, + [1256] = {.lex_state = 196}, [1257] = {.lex_state = 176}, [1258] = {.lex_state = 176}, [1259] = {.lex_state = 176}, @@ -23541,7 +23569,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1311] = {.lex_state = 176}, [1312] = {.lex_state = 176}, [1313] = {.lex_state = 176}, - [1314] = {.lex_state = 196}, + [1314] = {.lex_state = 176}, [1315] = {.lex_state = 176}, [1316] = {.lex_state = 176}, [1317] = {.lex_state = 176}, @@ -23786,188 +23814,188 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 196}, + [1559] = {.lex_state = 176}, + [1560] = {.lex_state = 176}, + [1561] = {.lex_state = 176}, + [1562] = {.lex_state = 176}, + [1563] = {.lex_state = 176}, + [1564] = {.lex_state = 176}, + [1565] = {.lex_state = 176}, + [1566] = {.lex_state = 176}, [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}, + [1569] = {.lex_state = 196}, + [1570] = {.lex_state = 196}, + [1571] = {.lex_state = 196}, + [1572] = {.lex_state = 196}, + [1573] = {.lex_state = 196}, + [1574] = {.lex_state = 196}, + [1575] = {.lex_state = 196}, + [1576] = {.lex_state = 196}, + [1577] = {.lex_state = 194}, + [1578] = {.lex_state = 194}, + [1579] = {.lex_state = 194}, + [1580] = {.lex_state = 194}, + [1581] = {.lex_state = 194}, + [1582] = {.lex_state = 194}, + [1583] = {.lex_state = 194}, [1584] = {.lex_state = 239}, - [1585] = {.lex_state = 210}, - [1586] = {.lex_state = 210}, - [1587] = {.lex_state = 210}, - [1588] = {.lex_state = 210}, - [1589] = {.lex_state = 210}, - [1590] = {.lex_state = 210}, - [1591] = {.lex_state = 210}, - [1592] = {.lex_state = 210}, - [1593] = {.lex_state = 196}, + [1585] = {.lex_state = 239}, + [1586] = {.lex_state = 173}, + [1587] = {.lex_state = 173}, + [1588] = {.lex_state = 173}, + [1589] = {.lex_state = 239}, + [1590] = {.lex_state = 239}, + [1591] = {.lex_state = 239}, + [1592] = {.lex_state = 239}, + [1593] = {.lex_state = 210}, [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}, + [1595] = {.lex_state = 196}, + [1596] = {.lex_state = 210}, + [1597] = {.lex_state = 210}, + [1598] = {.lex_state = 210}, + [1599] = {.lex_state = 210}, + [1600] = {.lex_state = 239}, + [1601] = {.lex_state = 239}, [1602] = {.lex_state = 210}, - [1603] = {.lex_state = 210}, + [1603] = {.lex_state = 184}, [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 = 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 = 194}, - [1625] = {.lex_state = 194}, - [1626] = {.lex_state = 213}, - [1627] = {.lex_state = 239}, - [1628] = {.lex_state = 239}, - [1629] = {.lex_state = 239}, - [1630] = {.lex_state = 239}, - [1631] = {.lex_state = 239}, - [1632] = {.lex_state = 239}, - [1633] = {.lex_state = 199}, - [1634] = {.lex_state = 239}, - [1635] = {.lex_state = 213}, - [1636] = {.lex_state = 239}, - [1637] = {.lex_state = 239}, - [1638] = {.lex_state = 239}, + [1606] = {.lex_state = 239}, + [1607] = {.lex_state = 239}, + [1608] = {.lex_state = 196}, + [1609] = {.lex_state = 199}, + [1610] = {.lex_state = 185}, + [1611] = {.lex_state = 189}, + [1612] = {.lex_state = 210}, + [1613] = {.lex_state = 210}, + [1614] = {.lex_state = 210}, + [1615] = {.lex_state = 210}, + [1616] = {.lex_state = 210}, + [1617] = {.lex_state = 210}, + [1618] = {.lex_state = 210}, + [1619] = {.lex_state = 179}, + [1620] = {.lex_state = 199}, + [1621] = {.lex_state = 210}, + [1622] = {.lex_state = 199}, + [1623] = {.lex_state = 199}, + [1624] = {.lex_state = 199}, + [1625] = {.lex_state = 199}, + [1626] = {.lex_state = 199}, + [1627] = {.lex_state = 199}, + [1628] = {.lex_state = 197}, + [1629] = {.lex_state = 197}, + [1630] = {.lex_state = 197}, + [1631] = {.lex_state = 197}, + [1632] = {.lex_state = 197}, + [1633] = {.lex_state = 197}, + [1634] = {.lex_state = 197}, + [1635] = {.lex_state = 239}, + [1636] = {.lex_state = 194}, + [1637] = {.lex_state = 194}, + [1638] = {.lex_state = 199}, [1639] = {.lex_state = 239}, - [1640] = {.lex_state = 199}, + [1640] = {.lex_state = 213}, [1641] = {.lex_state = 239}, [1642] = {.lex_state = 239}, [1643] = {.lex_state = 239}, [1644] = {.lex_state = 239}, - [1645] = {.lex_state = 221}, - [1646] = {.lex_state = 221}, - [1647] = {.lex_state = 213}, - [1648] = {.lex_state = 239}, - [1649] = {.lex_state = 239}, + [1645] = {.lex_state = 239}, + [1646] = {.lex_state = 239}, + [1647] = {.lex_state = 239}, + [1648] = {.lex_state = 213}, + [1649] = {.lex_state = 199}, [1650] = {.lex_state = 239}, [1651] = {.lex_state = 239}, - [1652] = {.lex_state = 221}, - [1653] = {.lex_state = 213}, + [1652] = {.lex_state = 239}, + [1653] = {.lex_state = 239}, [1654] = {.lex_state = 239}, [1655] = {.lex_state = 239}, [1656] = {.lex_state = 239}, - [1657] = {.lex_state = 239}, - [1658] = {.lex_state = 239}, - [1659] = {.lex_state = 213}, + [1657] = {.lex_state = 213}, + [1658] = {.lex_state = 221}, + [1659] = {.lex_state = 221}, [1660] = {.lex_state = 239}, [1661] = {.lex_state = 239}, - [1662] = {.lex_state = 239}, + [1662] = {.lex_state = 221}, [1663] = {.lex_state = 239}, [1664] = {.lex_state = 239}, [1665] = {.lex_state = 239}, [1666] = {.lex_state = 239}, - [1667] = {.lex_state = 213}, + [1667] = {.lex_state = 239}, [1668] = {.lex_state = 239}, [1669] = {.lex_state = 239}, [1670] = {.lex_state = 239}, - [1671] = {.lex_state = 213}, - [1672] = {.lex_state = 213}, - [1673] = {.lex_state = 221}, + [1671] = {.lex_state = 239}, + [1672] = {.lex_state = 239}, + [1673] = {.lex_state = 239}, [1674] = {.lex_state = 213}, - [1675] = {.lex_state = 221}, - [1676] = {.lex_state = 205}, + [1675] = {.lex_state = 239}, + [1676] = {.lex_state = 239}, [1677] = {.lex_state = 213}, - [1678] = {.lex_state = 221}, - [1679] = {.lex_state = 221}, + [1678] = {.lex_state = 213}, + [1679] = {.lex_state = 239}, [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}, + [1683] = {.lex_state = 213}, + [1684] = {.lex_state = 205}, + [1685] = {.lex_state = 221}, + [1686] = {.lex_state = 213}, + [1687] = {.lex_state = 213}, + [1688] = {.lex_state = 221}, [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}, + [1690] = {.lex_state = 239}, + [1691] = {.lex_state = 221}, + [1692] = {.lex_state = 221}, + [1693] = {.lex_state = 239}, + [1694] = {.lex_state = 239}, + [1695] = {.lex_state = 209}, + [1696] = {.lex_state = 209}, + [1697] = {.lex_state = 209}, + [1698] = {.lex_state = 179}, + [1699] = {.lex_state = 213}, + [1700] = {.lex_state = 213}, + [1701] = {.lex_state = 209}, [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}, + [1703] = {.lex_state = 209}, + [1704] = {.lex_state = 209}, + [1705] = {.lex_state = 209}, + [1706] = {.lex_state = 194}, + [1707] = {.lex_state = 239}, + [1708] = {.lex_state = 217}, [1709] = {.lex_state = 239}, - [1710] = {.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 = 239}, - [1721] = {.lex_state = 210}, - [1722] = {.lex_state = 239}, - [1723] = {.lex_state = 239}, - [1724] = {.lex_state = 210}, + [1710] = {.lex_state = 217}, + [1711] = {.lex_state = 217}, + [1712] = {.lex_state = 217}, + [1713] = {.lex_state = 217}, + [1714] = {.lex_state = 217}, + [1715] = {.lex_state = 217}, + [1716] = {.lex_state = 181}, + [1717] = {.lex_state = 213}, + [1718] = {.lex_state = 205}, + [1719] = {.lex_state = 205}, + [1720] = {.lex_state = 173}, + [1721] = {.lex_state = 239}, + [1722] = {.lex_state = 181}, + [1723] = {.lex_state = 173}, + [1724] = {.lex_state = 239}, [1725] = {.lex_state = 239}, - [1726] = {.lex_state = 239}, - [1727] = {.lex_state = 239}, + [1726] = {.lex_state = 181}, + [1727] = {.lex_state = 213}, [1728] = {.lex_state = 239}, - [1729] = {.lex_state = 239}, + [1729] = {.lex_state = 176}, [1730] = {.lex_state = 239}, [1731] = {.lex_state = 239}, [1732] = {.lex_state = 239}, [1733] = {.lex_state = 239}, [1734] = {.lex_state = 239}, [1735] = {.lex_state = 239}, - [1736] = {.lex_state = 239}, + [1736] = {.lex_state = 210}, [1737] = {.lex_state = 239}, [1738] = {.lex_state = 239}, [1739] = {.lex_state = 239}, - [1740] = {.lex_state = 239}, + [1740] = {.lex_state = 210}, [1741] = {.lex_state = 239}, [1742] = {.lex_state = 239}, [1743] = {.lex_state = 239}, @@ -23975,27 +24003,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1745] = {.lex_state = 239}, [1746] = {.lex_state = 239}, [1747] = {.lex_state = 239}, - [1748] = {.lex_state = 181}, - [1749] = {.lex_state = 209}, - [1750] = {.lex_state = 181}, + [1748] = {.lex_state = 239}, + [1749] = {.lex_state = 226}, + [1750] = {.lex_state = 239}, [1751] = {.lex_state = 239}, [1752] = {.lex_state = 239}, - [1753] = {.lex_state = 239}, + [1753] = {.lex_state = 226}, [1754] = {.lex_state = 239}, [1755] = {.lex_state = 239}, [1756] = {.lex_state = 239}, [1757] = {.lex_state = 239}, [1758] = {.lex_state = 239}, - [1759] = {.lex_state = 194}, + [1759] = {.lex_state = 239}, [1760] = {.lex_state = 239}, - [1761] = {.lex_state = 239}, + [1761] = {.lex_state = 194}, [1762] = {.lex_state = 239}, [1763] = {.lex_state = 239}, - [1764] = {.lex_state = 239}, - [1765] = {.lex_state = 239}, - [1766] = {.lex_state = 239}, + [1764] = {.lex_state = 181}, + [1765] = {.lex_state = 226}, + [1766] = {.lex_state = 209}, [1767] = {.lex_state = 239}, - [1768] = {.lex_state = 239}, + [1768] = {.lex_state = 181}, [1769] = {.lex_state = 239}, [1770] = {.lex_state = 239}, [1771] = {.lex_state = 239}, @@ -24003,125 +24031,125 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1773] = {.lex_state = 239}, [1774] = {.lex_state = 239}, [1775] = {.lex_state = 239}, - [1776] = {.lex_state = 239}, - [1777] = {.lex_state = 226}, - [1778] = {.lex_state = 239}, - [1779] = {.lex_state = 194}, + [1776] = {.lex_state = 194}, + [1777] = {.lex_state = 239}, + [1778] = {.lex_state = 226}, + [1779] = {.lex_state = 239}, [1780] = {.lex_state = 239}, [1781] = {.lex_state = 239}, - [1782] = {.lex_state = 226}, + [1782] = {.lex_state = 239}, [1783] = {.lex_state = 239}, - [1784] = {.lex_state = 226}, - [1785] = {.lex_state = 239}, + [1784] = {.lex_state = 239}, + [1785] = {.lex_state = 194}, [1786] = {.lex_state = 239}, - [1787] = {.lex_state = 226}, + [1787] = {.lex_state = 239}, [1788] = {.lex_state = 226}, - [1789] = {.lex_state = 226}, + [1789] = {.lex_state = 194}, [1790] = {.lex_state = 239}, [1791] = {.lex_state = 239}, [1792] = {.lex_state = 239}, [1793] = {.lex_state = 226}, [1794] = {.lex_state = 239}, - [1795] = {.lex_state = 239}, + [1795] = {.lex_state = 194}, [1796] = {.lex_state = 239}, - [1797] = {.lex_state = 205}, - [1798] = {.lex_state = 226}, - [1799] = {.lex_state = 226}, - [1800] = {.lex_state = 226}, + [1797] = {.lex_state = 239}, + [1798] = {.lex_state = 194}, + [1799] = {.lex_state = 239}, + [1800] = {.lex_state = 194}, [1801] = {.lex_state = 239}, [1802] = {.lex_state = 239}, - [1803] = {.lex_state = 239}, + [1803] = {.lex_state = 194}, [1804] = {.lex_state = 239}, - [1805] = {.lex_state = 226}, - [1806] = {.lex_state = 226}, - [1807] = {.lex_state = 239}, - [1808] = {.lex_state = 226}, + [1805] = {.lex_state = 239}, + [1806] = {.lex_state = 239}, + [1807] = {.lex_state = 194}, + [1808] = {.lex_state = 239}, [1809] = {.lex_state = 239}, [1810] = {.lex_state = 239}, [1811] = {.lex_state = 239}, - [1812] = {.lex_state = 239}, + [1812] = {.lex_state = 194}, [1813] = {.lex_state = 239}, - [1814] = {.lex_state = 194}, + [1814] = {.lex_state = 239}, [1815] = {.lex_state = 239}, - [1816] = {.lex_state = 200}, + [1816] = {.lex_state = 239}, [1817] = {.lex_state = 239}, - [1818] = {.lex_state = 239}, + [1818] = {.lex_state = 226}, [1819] = {.lex_state = 239}, [1820] = {.lex_state = 239}, - [1821] = {.lex_state = 239}, + [1821] = {.lex_state = 226}, [1822] = {.lex_state = 239}, - [1823] = {.lex_state = 239}, + [1823] = {.lex_state = 226}, [1824] = {.lex_state = 239}, - [1825] = {.lex_state = 239}, - [1826] = {.lex_state = 239}, + [1825] = {.lex_state = 226}, + [1826] = {.lex_state = 226}, [1827] = {.lex_state = 239}, [1828] = {.lex_state = 239}, [1829] = {.lex_state = 239}, [1830] = {.lex_state = 239}, [1831] = {.lex_state = 239}, - [1832] = {.lex_state = 239}, - [1833] = {.lex_state = 194}, - [1834] = {.lex_state = 181}, - [1835] = {.lex_state = 194}, + [1832] = {.lex_state = 200}, + [1833] = {.lex_state = 239}, + [1834] = {.lex_state = 239}, + [1835] = {.lex_state = 226}, [1836] = {.lex_state = 239}, - [1837] = {.lex_state = 194}, - [1838] = {.lex_state = 194}, + [1837] = {.lex_state = 239}, + [1838] = {.lex_state = 181}, [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}, + [1844] = {.lex_state = 239}, + [1845] = {.lex_state = 239}, [1846] = {.lex_state = 239}, - [1847] = {.lex_state = 194}, - [1848] = {.lex_state = 194}, - [1849] = {.lex_state = 239}, + [1847] = {.lex_state = 226}, + [1848] = {.lex_state = 239}, + [1849] = {.lex_state = 181}, [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}, + [1856] = {.lex_state = 205}, [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 = 204}, - [1864] = {.lex_state = 205}, - [1865] = {.lex_state = 205}, - [1866] = {.lex_state = 176}, - [1867] = {.lex_state = 205}, - [1868] = {.lex_state = 240}, - [1869] = {.lex_state = 195}, - [1870] = {.lex_state = 240}, - [1871] = {.lex_state = 240}, + [1858] = {.lex_state = 239}, + [1859] = {.lex_state = 239}, + [1860] = {.lex_state = 239}, + [1861] = {.lex_state = 239}, + [1862] = {.lex_state = 239}, + [1863] = {.lex_state = 239}, + [1864] = {.lex_state = 239}, + [1865] = {.lex_state = 239}, + [1866] = {.lex_state = 239}, + [1867] = {.lex_state = 194}, + [1868] = {.lex_state = 239}, + [1869] = {.lex_state = 239}, + [1870] = {.lex_state = 205}, + [1871] = {.lex_state = 205}, [1872] = {.lex_state = 205}, - [1873] = {.lex_state = 205}, + [1873] = {.lex_state = 240}, [1874] = {.lex_state = 205}, [1875] = {.lex_state = 205}, [1876] = {.lex_state = 205}, [1877] = {.lex_state = 205}, - [1878] = {.lex_state = 205}, - [1879] = {.lex_state = 195}, + [1878] = {.lex_state = 176}, + [1879] = {.lex_state = 217}, [1880] = {.lex_state = 205}, [1881] = {.lex_state = 205}, - [1882] = {.lex_state = 205}, + [1882] = {.lex_state = 239}, [1883] = {.lex_state = 205}, [1884] = {.lex_state = 205}, [1885] = {.lex_state = 205}, - [1886] = {.lex_state = 205}, + [1886] = {.lex_state = 195}, [1887] = {.lex_state = 205}, [1888] = {.lex_state = 205}, [1889] = {.lex_state = 205}, [1890] = {.lex_state = 205}, [1891] = {.lex_state = 179}, - [1892] = {.lex_state = 205}, - [1893] = {.lex_state = 209}, - [1894] = {.lex_state = 217}, + [1892] = {.lex_state = 240}, + [1893] = {.lex_state = 205}, + [1894] = {.lex_state = 205}, [1895] = {.lex_state = 205}, [1896] = {.lex_state = 205}, [1897] = {.lex_state = 205}, @@ -24130,1285 +24158,1285 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1900] = {.lex_state = 205}, [1901] = {.lex_state = 205}, [1902] = {.lex_state = 205}, - [1903] = {.lex_state = 240}, - [1904] = {.lex_state = 239}, + [1903] = {.lex_state = 209}, + [1904] = {.lex_state = 205}, [1905] = {.lex_state = 205}, - [1906] = {.lex_state = 205}, + [1906] = {.lex_state = 195}, [1907] = {.lex_state = 205}, - [1908] = {.lex_state = 205}, + [1908] = {.lex_state = 240}, [1909] = {.lex_state = 205}, - [1910] = {.lex_state = 195}, + [1910] = {.lex_state = 176}, [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}, + [1915] = {.lex_state = 205}, + [1916] = {.lex_state = 195}, + [1917] = {.lex_state = 205}, + [1918] = {.lex_state = 205}, + [1919] = {.lex_state = 205}, + [1920] = {.lex_state = 204}, + [1921] = {.lex_state = 205}, + [1922] = {.lex_state = 205}, + [1923] = {.lex_state = 205}, + [1924] = {.lex_state = 195}, + [1925] = {.lex_state = 205}, + [1926] = {.lex_state = 240}, + [1927] = {.lex_state = 197}, + [1928] = {.lex_state = 238}, + [1929] = {.lex_state = 197}, + [1930] = {.lex_state = 200}, [1931] = {.lex_state = 238}, - [1932] = {.lex_state = 238}, - [1933] = {.lex_state = 239}, - [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 = 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 = 181}, - [1948] = {.lex_state = 206}, - [1949] = {.lex_state = 195}, - [1950] = {.lex_state = 195}, + [1932] = {.lex_state = 241}, + [1933] = {.lex_state = 200}, + [1934] = {.lex_state = 238}, + [1935] = {.lex_state = 197}, + [1936] = {.lex_state = 206}, + [1937] = {.lex_state = 238}, + [1938] = {.lex_state = 238}, + [1939] = {.lex_state = 239}, + [1940] = {.lex_state = 239}, + [1941] = {.lex_state = 206}, + [1942] = {.lex_state = 200}, + [1943] = {.lex_state = 217}, + [1944] = {.lex_state = 200}, + [1945] = {.lex_state = 241}, + [1946] = {.lex_state = 238}, + [1947] = {.lex_state = 238}, + [1948] = {.lex_state = 195}, + [1949] = {.lex_state = 240}, + [1950] = {.lex_state = 198}, [1951] = {.lex_state = 206}, [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 = 206}, + [1953] = {.lex_state = 240}, + [1954] = {.lex_state = 197}, + [1955] = {.lex_state = 198}, + [1956] = {.lex_state = 198}, + [1957] = {.lex_state = 198}, + [1958] = {.lex_state = 206}, + [1959] = {.lex_state = 239}, [1960] = {.lex_state = 206}, - [1961] = {.lex_state = 198}, - [1962] = {.lex_state = 206}, - [1963] = {.lex_state = 239}, - [1964] = {.lex_state = 240}, + [1961] = {.lex_state = 206}, + [1962] = {.lex_state = 195}, + [1963] = {.lex_state = 206}, + [1964] = {.lex_state = 206}, [1965] = {.lex_state = 239}, [1966] = {.lex_state = 197}, - [1967] = {.lex_state = 239}, + [1967] = {.lex_state = 206}, [1968] = {.lex_state = 239}, - [1969] = {.lex_state = 239}, + [1969] = {.lex_state = 195}, [1970] = {.lex_state = 198}, [1971] = {.lex_state = 198}, - [1972] = {.lex_state = 197}, - [1973] = {.lex_state = 206}, - [1974] = {.lex_state = 239}, + [1972] = {.lex_state = 181}, + [1973] = {.lex_state = 197}, + [1974] = {.lex_state = 197}, [1975] = {.lex_state = 197}, [1976] = {.lex_state = 198}, - [1977] = {.lex_state = 198}, + [1977] = {.lex_state = 195}, [1978] = {.lex_state = 206}, [1979] = {.lex_state = 206}, [1980] = {.lex_state = 206}, - [1981] = {.lex_state = 239}, - [1982] = {.lex_state = 195}, - [1983] = {.lex_state = 198}, - [1984] = {.lex_state = 206}, - [1985] = {.lex_state = 198}, - [1986] = {.lex_state = 198}, - [1987] = {.lex_state = 240}, - [1988] = {.lex_state = 195}, - [1989] = {.lex_state = 240}, - [1990] = {.lex_state = 240}, - [1991] = {.lex_state = 195}, - [1992] = {.lex_state = 195}, - [1993] = {.lex_state = 195}, - [1994] = {.lex_state = 240}, + [1981] = {.lex_state = 195}, + [1982] = {.lex_state = 198}, + [1983] = {.lex_state = 206}, + [1984] = {.lex_state = 239}, + [1985] = {.lex_state = 239}, + [1986] = {.lex_state = 240}, + [1987] = {.lex_state = 239}, + [1988] = {.lex_state = 239}, + [1989] = {.lex_state = 239}, + [1990] = {.lex_state = 239}, + [1991] = {.lex_state = 206}, + [1992] = {.lex_state = 206}, + [1993] = {.lex_state = 230}, + [1994] = {.lex_state = 198}, [1995] = {.lex_state = 240}, - [1996] = {.lex_state = 240}, - [1997] = {.lex_state = 240}, - [1998] = {.lex_state = 195}, - [1999] = {.lex_state = 240}, - [2000] = {.lex_state = 195}, + [1996] = {.lex_state = 198}, + [1997] = {.lex_state = 198}, + [1998] = {.lex_state = 197}, + [1999] = {.lex_state = 239}, + [2000] = {.lex_state = 240}, [2001] = {.lex_state = 240}, - [2002] = {.lex_state = 240}, - [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}, + [2002] = {.lex_state = 204}, + [2003] = {.lex_state = 240}, + [2004] = {.lex_state = 195}, + [2005] = {.lex_state = 240}, + [2006] = {.lex_state = 240}, + [2007] = {.lex_state = 240}, + [2008] = {.lex_state = 240}, + [2009] = {.lex_state = 240}, + [2010] = {.lex_state = 204}, [2011] = {.lex_state = 240}, [2012] = {.lex_state = 240}, - [2013] = {.lex_state = 241}, + [2013] = {.lex_state = 195}, [2014] = {.lex_state = 240}, - [2015] = {.lex_state = 240}, - [2016] = {.lex_state = 240}, - [2017] = {.lex_state = 239}, + [2015] = {.lex_state = 195}, + [2016] = {.lex_state = 195}, + [2017] = {.lex_state = 240}, [2018] = {.lex_state = 240}, - [2019] = {.lex_state = 188}, - [2020] = {.lex_state = 195}, + [2019] = {.lex_state = 240}, + [2020] = {.lex_state = 240}, [2021] = {.lex_state = 195}, - [2022] = {.lex_state = 195}, - [2023] = {.lex_state = 179}, - [2024] = {.lex_state = 240}, - [2025] = {.lex_state = 240}, - [2026] = {.lex_state = 240}, + [2022] = {.lex_state = 240}, + [2023] = {.lex_state = 240}, + [2024] = {.lex_state = 179}, + [2025] = {.lex_state = 195}, + [2026] = {.lex_state = 195}, [2027] = {.lex_state = 240}, - [2028] = {.lex_state = 240}, + [2028] = {.lex_state = 195}, [2029] = {.lex_state = 240}, [2030] = {.lex_state = 240}, - [2031] = {.lex_state = 206}, + [2031] = {.lex_state = 239}, [2032] = {.lex_state = 195}, - [2033] = {.lex_state = 240}, - [2034] = {.lex_state = 240}, - [2035] = {.lex_state = 240}, - [2036] = {.lex_state = 239}, - [2037] = {.lex_state = 240}, - [2038] = {.lex_state = 240}, - [2039] = {.lex_state = 240}, + [2033] = {.lex_state = 195}, + [2034] = {.lex_state = 195}, + [2035] = {.lex_state = 206}, + [2036] = {.lex_state = 195}, + [2037] = {.lex_state = 195}, + [2038] = {.lex_state = 195}, + [2039] = {.lex_state = 195}, [2040] = {.lex_state = 195}, - [2041] = {.lex_state = 240}, + [2041] = {.lex_state = 195}, [2042] = {.lex_state = 195}, - [2043] = {.lex_state = 240}, - [2044] = {.lex_state = 240}, - [2045] = {.lex_state = 240}, - [2046] = {.lex_state = 240}, - [2047] = {.lex_state = 240}, - [2048] = {.lex_state = 240}, - [2049] = {.lex_state = 181}, - [2050] = {.lex_state = 240}, + [2043] = {.lex_state = 195}, + [2044] = {.lex_state = 195}, + [2045] = {.lex_state = 195}, + [2046] = {.lex_state = 195}, + [2047] = {.lex_state = 195}, + [2048] = {.lex_state = 195}, + [2049] = {.lex_state = 195}, + [2050] = {.lex_state = 195}, [2051] = {.lex_state = 195}, [2052] = {.lex_state = 195}, - [2053] = {.lex_state = 240}, - [2054] = {.lex_state = 181}, - [2055] = {.lex_state = 240}, - [2056] = {.lex_state = 240}, - [2057] = {.lex_state = 240}, + [2053] = {.lex_state = 195}, + [2054] = {.lex_state = 239}, + [2055] = {.lex_state = 241}, + [2056] = {.lex_state = 195}, + [2057] = {.lex_state = 239}, [2058] = {.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 = 240}, - [2069] = {.lex_state = 240}, + [2059] = {.lex_state = 195}, + [2060] = {.lex_state = 239}, + [2061] = {.lex_state = 195}, + [2062] = {.lex_state = 195}, + [2063] = {.lex_state = 200}, + [2064] = {.lex_state = 195}, + [2065] = {.lex_state = 195}, + [2066] = {.lex_state = 195}, + [2067] = {.lex_state = 195}, + [2068] = {.lex_state = 179}, + [2069] = {.lex_state = 195}, [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 = 240}, - [2078] = {.lex_state = 240}, - [2079] = {.lex_state = 240}, + [2071] = {.lex_state = 195}, + [2072] = {.lex_state = 195}, + [2073] = {.lex_state = 195}, + [2074] = {.lex_state = 195}, + [2075] = {.lex_state = 195}, + [2076] = {.lex_state = 195}, + [2077] = {.lex_state = 200}, + [2078] = {.lex_state = 195}, + [2079] = {.lex_state = 195}, [2080] = {.lex_state = 195}, [2081] = {.lex_state = 195}, - [2082] = {.lex_state = 240}, + [2082] = {.lex_state = 195}, [2083] = {.lex_state = 195}, - [2084] = {.lex_state = 195}, + [2084] = {.lex_state = 179}, [2085] = {.lex_state = 195}, [2086] = {.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 = 240}, - [2093] = {.lex_state = 239}, - [2094] = {.lex_state = 240}, - [2095] = {.lex_state = 239}, - [2096] = {.lex_state = 240}, + [2087] = {.lex_state = 195}, + [2088] = {.lex_state = 195}, + [2089] = {.lex_state = 195}, + [2090] = {.lex_state = 195}, + [2091] = {.lex_state = 195}, + [2092] = {.lex_state = 195}, + [2093] = {.lex_state = 181}, + [2094] = {.lex_state = 195}, + [2095] = {.lex_state = 240}, + [2096] = {.lex_state = 179}, [2097] = {.lex_state = 195}, [2098] = {.lex_state = 195}, - [2099] = {.lex_state = 240}, - [2100] = {.lex_state = 240}, - [2101] = {.lex_state = 240}, - [2102] = {.lex_state = 195}, - [2103] = {.lex_state = 195}, - [2104] = {.lex_state = 195}, + [2099] = {.lex_state = 188}, + [2100] = {.lex_state = 195}, + [2101] = {.lex_state = 195}, + [2102] = {.lex_state = 240}, + [2103] = {.lex_state = 240}, + [2104] = {.lex_state = 240}, [2105] = {.lex_state = 195}, - [2106] = {.lex_state = 195}, - [2107] = {.lex_state = 195}, + [2106] = {.lex_state = 240}, + [2107] = {.lex_state = 240}, [2108] = {.lex_state = 195}, [2109] = {.lex_state = 195}, [2110] = {.lex_state = 195}, - [2111] = {.lex_state = 205}, - [2112] = {.lex_state = 195}, - [2113] = {.lex_state = 240}, - [2114] = {.lex_state = 181}, - [2115] = {.lex_state = 240}, - [2116] = {.lex_state = 241}, - [2117] = {.lex_state = 195}, + [2111] = {.lex_state = 240}, + [2112] = {.lex_state = 240}, + [2113] = {.lex_state = 195}, + [2114] = {.lex_state = 195}, + [2115] = {.lex_state = 195}, + [2116] = {.lex_state = 195}, + [2117] = {.lex_state = 240}, [2118] = {.lex_state = 195}, - [2119] = {.lex_state = 240}, - [2120] = {.lex_state = 240}, - [2121] = {.lex_state = 239}, - [2122] = {.lex_state = 240}, - [2123] = {.lex_state = 200}, - [2124] = {.lex_state = 197}, - [2125] = {.lex_state = 195}, - [2126] = {.lex_state = 195}, - [2127] = {.lex_state = 205}, + [2119] = {.lex_state = 195}, + [2120] = {.lex_state = 195}, + [2121] = {.lex_state = 195}, + [2122] = {.lex_state = 195}, + [2123] = {.lex_state = 195}, + [2124] = {.lex_state = 195}, + [2125] = {.lex_state = 239}, + [2126] = {.lex_state = 240}, + [2127] = {.lex_state = 240}, [2128] = {.lex_state = 240}, [2129] = {.lex_state = 195}, - [2130] = {.lex_state = 195}, - [2131] = {.lex_state = 195}, - [2132] = {.lex_state = 239}, - [2133] = {.lex_state = 200}, + [2130] = {.lex_state = 241}, + [2131] = {.lex_state = 240}, + [2132] = {.lex_state = 240}, + [2133] = {.lex_state = 240}, [2134] = {.lex_state = 240}, [2135] = {.lex_state = 240}, - [2136] = {.lex_state = 195}, - [2137] = {.lex_state = 195}, + [2136] = {.lex_state = 240}, + [2137] = {.lex_state = 240}, [2138] = {.lex_state = 195}, - [2139] = {.lex_state = 188}, + [2139] = {.lex_state = 239}, [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 = 195}, - [2149] = {.lex_state = 195}, + [2142] = {.lex_state = 195}, + [2143] = {.lex_state = 239}, + [2144] = {.lex_state = 240}, + [2145] = {.lex_state = 240}, + [2146] = {.lex_state = 240}, + [2147] = {.lex_state = 200}, + [2148] = {.lex_state = 240}, + [2149] = {.lex_state = 240}, [2150] = {.lex_state = 240}, - [2151] = {.lex_state = 195}, - [2152] = {.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}, + [2151] = {.lex_state = 240}, + [2152] = {.lex_state = 240}, + [2153] = {.lex_state = 240}, + [2154] = {.lex_state = 240}, + [2155] = {.lex_state = 240}, + [2156] = {.lex_state = 240}, + [2157] = {.lex_state = 240}, + [2158] = {.lex_state = 240}, + [2159] = {.lex_state = 240}, + [2160] = {.lex_state = 240}, [2161] = {.lex_state = 240}, [2162] = {.lex_state = 240}, [2163] = {.lex_state = 240}, - [2164] = {.lex_state = 195}, + [2164] = {.lex_state = 197}, [2165] = {.lex_state = 240}, - [2166] = {.lex_state = 195}, - [2167] = {.lex_state = 239}, - [2168] = {.lex_state = 195}, - [2169] = {.lex_state = 195}, - [2170] = {.lex_state = 240}, + [2166] = {.lex_state = 188}, + [2167] = {.lex_state = 240}, + [2168] = {.lex_state = 240}, + [2169] = {.lex_state = 240}, + [2170] = {.lex_state = 195}, [2171] = {.lex_state = 195}, - [2172] = {.lex_state = 179}, + [2172] = {.lex_state = 240}, [2173] = {.lex_state = 240}, [2174] = {.lex_state = 195}, - [2175] = {.lex_state = 195}, + [2175] = {.lex_state = 240}, [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}, + [2178] = {.lex_state = 184}, + [2179] = {.lex_state = 240}, + [2180] = {.lex_state = 240}, + [2181] = {.lex_state = 240}, + [2182] = {.lex_state = 240}, + [2183] = {.lex_state = 184}, + [2184] = {.lex_state = 239}, + [2185] = {.lex_state = 240}, + [2186] = {.lex_state = 240}, + [2187] = {.lex_state = 240}, + [2188] = {.lex_state = 240}, + [2189] = {.lex_state = 240}, [2190] = {.lex_state = 195}, - [2191] = {.lex_state = 195}, + [2191] = {.lex_state = 240}, [2192] = {.lex_state = 195}, - [2193] = {.lex_state = 195}, + [2193] = {.lex_state = 188}, [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}, + [2195] = {.lex_state = 240}, + [2196] = {.lex_state = 240}, + [2197] = {.lex_state = 240}, + [2198] = {.lex_state = 181}, + [2199] = {.lex_state = 240}, + [2200] = {.lex_state = 240}, + [2201] = {.lex_state = 240}, + [2202] = {.lex_state = 195}, + [2203] = {.lex_state = 181}, + [2204] = {.lex_state = 240}, + [2205] = {.lex_state = 205}, + [2206] = {.lex_state = 195}, + [2207] = {.lex_state = 195}, + [2208] = {.lex_state = 240}, [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 = 179}, - [2220] = {.lex_state = 230}, - [2221] = {.lex_state = 200}, - [2222] = {.lex_state = 179}, - [2223] = {.lex_state = 230}, + [2210] = {.lex_state = 195}, + [2211] = {.lex_state = 181}, + [2212] = {.lex_state = 240}, + [2213] = {.lex_state = 240}, + [2214] = {.lex_state = 240}, + [2215] = {.lex_state = 195}, + [2216] = {.lex_state = 195}, + [2217] = {.lex_state = 240}, + [2218] = {.lex_state = 240}, + [2219] = {.lex_state = 205}, + [2220] = {.lex_state = 240}, + [2221] = {.lex_state = 240}, + [2222] = {.lex_state = 240}, + [2223] = {.lex_state = 240}, [2224] = {.lex_state = 197}, - [2225] = {.lex_state = 198}, + [2225] = {.lex_state = 197}, [2226] = {.lex_state = 200}, - [2227] = {.lex_state = 200}, - [2228] = {.lex_state = 200}, - [2229] = {.lex_state = 200}, + [2227] = {.lex_state = 179}, + [2228] = {.lex_state = 197}, + [2229] = {.lex_state = 179}, [2230] = {.lex_state = 200}, - [2231] = {.lex_state = 200}, - [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 = 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 = 200}, + [2231] = {.lex_state = 230}, + [2232] = {.lex_state = 200}, + [2233] = {.lex_state = 200}, + [2234] = {.lex_state = 179}, + [2235] = {.lex_state = 230}, + [2236] = {.lex_state = 179}, + [2237] = {.lex_state = 197}, + [2238] = {.lex_state = 187}, + [2239] = {.lex_state = 200}, + [2240] = {.lex_state = 185}, + [2241] = {.lex_state = 200}, + [2242] = {.lex_state = 198}, + [2243] = {.lex_state = 185}, + [2244] = {.lex_state = 179}, + [2245] = {.lex_state = 187}, + [2246] = {.lex_state = 198}, + [2247] = {.lex_state = 187}, [2248] = {.lex_state = 179}, - [2249] = {.lex_state = 230}, + [2249] = {.lex_state = 179}, [2250] = {.lex_state = 200}, - [2251] = {.lex_state = 230}, - [2252] = {.lex_state = 200}, - [2253] = {.lex_state = 197}, - [2254] = {.lex_state = 200}, - [2255] = {.lex_state = 200}, + [2251] = {.lex_state = 198}, + [2252] = {.lex_state = 230}, + [2253] = {.lex_state = 200}, + [2254] = {.lex_state = 198}, + [2255] = {.lex_state = 198}, [2256] = {.lex_state = 200}, [2257] = {.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}, + [2258] = {.lex_state = 200}, + [2259] = {.lex_state = 200}, + [2260] = {.lex_state = 179}, + [2261] = {.lex_state = 200}, + [2262] = {.lex_state = 197}, + [2263] = {.lex_state = 197}, [2264] = {.lex_state = 200}, - [2265] = {.lex_state = 239}, - [2266] = {.lex_state = 179}, - [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 = 206}, - [2274] = {.lex_state = 200}, - [2275] = {.lex_state = 200}, - [2276] = {.lex_state = 206}, - [2277] = {.lex_state = 239}, - [2278] = {.lex_state = 197}, + [2265] = {.lex_state = 181}, + [2266] = {.lex_state = 200}, + [2267] = {.lex_state = 179}, + [2268] = {.lex_state = 230}, + [2269] = {.lex_state = 239}, + [2270] = {.lex_state = 181}, + [2271] = {.lex_state = 200}, + [2272] = {.lex_state = 239}, + [2273] = {.lex_state = 200}, + [2274] = {.lex_state = 197}, + [2275] = {.lex_state = 197}, + [2276] = {.lex_state = 197}, + [2277] = {.lex_state = 189}, + [2278] = {.lex_state = 200}, [2279] = {.lex_state = 197}, [2280] = {.lex_state = 200}, [2281] = {.lex_state = 197}, - [2282] = {.lex_state = 197}, - [2283] = {.lex_state = 239}, + [2282] = {.lex_state = 206}, + [2283] = {.lex_state = 200}, [2284] = {.lex_state = 200}, [2285] = {.lex_state = 200}, - [2286] = {.lex_state = 197}, - [2287] = {.lex_state = 239}, - [2288] = {.lex_state = 197}, + [2286] = {.lex_state = 200}, + [2287] = {.lex_state = 200}, + [2288] = {.lex_state = 200}, [2289] = {.lex_state = 200}, - [2290] = {.lex_state = 239}, - [2291] = {.lex_state = 197}, - [2292] = {.lex_state = 200}, - [2293] = {.lex_state = 239}, - [2294] = {.lex_state = 239}, + [2290] = {.lex_state = 200}, + [2291] = {.lex_state = 200}, + [2292] = {.lex_state = 239}, + [2293] = {.lex_state = 200}, + [2294] = {.lex_state = 200}, [2295] = {.lex_state = 197}, - [2296] = {.lex_state = 179}, + [2296] = {.lex_state = 197}, [2297] = {.lex_state = 197}, [2298] = {.lex_state = 200}, - [2299] = {.lex_state = 239}, - [2300] = {.lex_state = 200}, - [2301] = {.lex_state = 198}, - [2302] = {.lex_state = 181}, + [2299] = {.lex_state = 197}, + [2300] = {.lex_state = 197}, + [2301] = {.lex_state = 239}, + [2302] = {.lex_state = 239}, [2303] = {.lex_state = 181}, [2304] = {.lex_state = 200}, - [2305] = {.lex_state = 239}, - [2306] = {.lex_state = 200}, - [2307] = {.lex_state = 200}, - [2308] = {.lex_state = 179}, - [2309] = {.lex_state = 181}, - [2310] = {.lex_state = 200}, - [2311] = {.lex_state = 239}, + [2305] = {.lex_state = 179}, + [2306] = {.lex_state = 239}, + [2307] = {.lex_state = 191}, + [2308] = {.lex_state = 197}, + [2309] = {.lex_state = 198}, + [2310] = {.lex_state = 197}, + [2311] = {.lex_state = 200}, [2312] = {.lex_state = 200}, - [2313] = {.lex_state = 230}, - [2314] = {.lex_state = 200}, - [2315] = {.lex_state = 200}, - [2316] = {.lex_state = 239}, - [2317] = {.lex_state = 181}, - [2318] = {.lex_state = 189}, - [2319] = {.lex_state = 191}, + [2313] = {.lex_state = 191}, + [2314] = {.lex_state = 197}, + [2315] = {.lex_state = 181}, + [2316] = {.lex_state = 191}, + [2317] = {.lex_state = 200}, + [2318] = {.lex_state = 200}, + [2319] = {.lex_state = 200}, [2320] = {.lex_state = 200}, [2321] = {.lex_state = 200}, [2322] = {.lex_state = 200}, - [2323] = {.lex_state = 200}, - [2324] = {.lex_state = 191}, - [2325] = {.lex_state = 239}, - [2326] = {.lex_state = 189}, + [2323] = {.lex_state = 239}, + [2324] = {.lex_state = 239}, + [2325] = {.lex_state = 200}, + [2326] = {.lex_state = 200}, [2327] = {.lex_state = 200}, [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}, + [2331] = {.lex_state = 200}, + [2332] = {.lex_state = 239}, + [2333] = {.lex_state = 239}, + [2334] = {.lex_state = 239}, + [2335] = {.lex_state = 239}, [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}, + [2339] = {.lex_state = 239}, + [2340] = {.lex_state = 189}, + [2341] = {.lex_state = 179}, + [2342] = {.lex_state = 239}, + [2343] = {.lex_state = 230}, [2344] = {.lex_state = 200}, - [2345] = {.lex_state = 200}, - [2346] = {.lex_state = 200}, + [2345] = {.lex_state = 198}, + [2346] = {.lex_state = 181}, [2347] = {.lex_state = 200}, [2348] = {.lex_state = 200}, - [2349] = {.lex_state = 200}, - [2350] = {.lex_state = 200}, + [2349] = {.lex_state = 206}, + [2350] = {.lex_state = 179}, [2351] = {.lex_state = 200}, [2352] = {.lex_state = 200}, [2353] = {.lex_state = 200}, [2354] = {.lex_state = 200}, - [2355] = {.lex_state = 200}, + [2355] = {.lex_state = 229}, [2356] = {.lex_state = 229}, - [2357] = {.lex_state = 229}, - [2358] = {.lex_state = 229}, - [2359] = {.lex_state = 229}, - [2360] = {.lex_state = 229}, - [2361] = {.lex_state = 197}, - [2362] = {.lex_state = 200}, + [2357] = {.lex_state = 197}, + [2358] = {.lex_state = 206}, + [2359] = {.lex_state = 200}, + [2360] = {.lex_state = 200}, + [2361] = {.lex_state = 229}, + [2362] = {.lex_state = 229}, [2363] = {.lex_state = 229}, [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}, + [2366] = {.lex_state = 229}, + [2367] = {.lex_state = 200}, + [2368] = {.lex_state = 200}, + [2369] = {.lex_state = 239}, + [2370] = {.lex_state = 200}, + [2371] = {.lex_state = 200}, + [2372] = {.lex_state = 200}, + [2373] = {.lex_state = 229}, [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}, + [2375] = {.lex_state = 187}, + [2376] = {.lex_state = 200}, + [2377] = {.lex_state = 206}, + [2378] = {.lex_state = 206}, + [2379] = {.lex_state = 200}, + [2380] = {.lex_state = 200}, + [2381] = {.lex_state = 200}, + [2382] = {.lex_state = 200}, + [2383] = {.lex_state = 206}, + [2384] = {.lex_state = 197}, [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}, + [2386] = {.lex_state = 181}, + [2387] = {.lex_state = 181}, + [2388] = {.lex_state = 229}, + [2389] = {.lex_state = 181}, + [2390] = {.lex_state = 229}, + [2391] = {.lex_state = 206}, + [2392] = {.lex_state = 181}, [2393] = {.lex_state = 197}, - [2394] = {.lex_state = 206}, - [2395] = {.lex_state = 206}, - [2396] = {.lex_state = 229}, - [2397] = {.lex_state = 238}, - [2398] = {.lex_state = 230}, + [2394] = {.lex_state = 229}, + [2395] = {.lex_state = 197}, + [2396] = {.lex_state = 206}, + [2397] = {.lex_state = 206}, + [2398] = {.lex_state = 206}, [2399] = {.lex_state = 200}, - [2400] = {.lex_state = 197}, - [2401] = {.lex_state = 197}, - [2402] = {.lex_state = 197}, - [2403] = {.lex_state = 200}, - [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}, + [2400] = {.lex_state = 200}, + [2401] = {.lex_state = 206}, + [2402] = {.lex_state = 229}, + [2403] = {.lex_state = 204}, + [2404] = {.lex_state = 206}, + [2405] = {.lex_state = 206}, + [2406] = {.lex_state = 204}, + [2407] = {.lex_state = 206}, + [2408] = {.lex_state = 200}, + [2409] = {.lex_state = 238}, + [2410] = {.lex_state = 198}, + [2411] = {.lex_state = 197}, [2412] = {.lex_state = 200}, - [2413] = {.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 = 238}, - [2425] = {.lex_state = 187}, - [2426] = {.lex_state = 187}, - [2427] = {.lex_state = 198}, - [2428] = {.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}, + [2413] = {.lex_state = 187}, + [2414] = {.lex_state = 197}, + [2415] = {.lex_state = 197}, + [2416] = {.lex_state = 181}, + [2417] = {.lex_state = 198}, + [2418] = {.lex_state = 198}, + [2419] = {.lex_state = 197}, + [2420] = {.lex_state = 200}, + [2421] = {.lex_state = 200}, + [2422] = {.lex_state = 197}, + [2423] = {.lex_state = 181}, + [2424] = {.lex_state = 200}, + [2425] = {.lex_state = 203}, + [2426] = {.lex_state = 197}, + [2427] = {.lex_state = 200}, + [2428] = {.lex_state = 197}, + [2429] = {.lex_state = 238}, + [2430] = {.lex_state = 187}, + [2431] = {.lex_state = 230}, + [2432] = {.lex_state = 200}, + [2433] = {.lex_state = 197}, + [2434] = {.lex_state = 200}, + [2435] = {.lex_state = 187}, + [2436] = {.lex_state = 238}, + [2437] = {.lex_state = 238}, + [2438] = {.lex_state = 181}, [2439] = {.lex_state = 238}, - [2440] = {.lex_state = 238}, - [2441] = {.lex_state = 200}, - [2442] = {.lex_state = 200}, - [2443] = {.lex_state = 200}, - [2444] = {.lex_state = 200}, + [2440] = {.lex_state = 187}, + [2441] = {.lex_state = 211}, + [2442] = {.lex_state = 198}, + [2443] = {.lex_state = 181}, + [2444] = {.lex_state = 198}, [2445] = {.lex_state = 200}, - [2446] = {.lex_state = 200}, - [2447] = {.lex_state = 200}, - [2448] = {.lex_state = 200}, - [2449] = {.lex_state = 238}, - [2450] = {.lex_state = 200}, - [2451] = {.lex_state = 200}, - [2452] = {.lex_state = 200}, - [2453] = {.lex_state = 238}, - [2454] = {.lex_state = 200}, - [2455] = {.lex_state = 238}, - [2456] = {.lex_state = 238}, + [2446] = {.lex_state = 209}, + [2447] = {.lex_state = 187}, + [2448] = {.lex_state = 191}, + [2449] = {.lex_state = 200}, + [2450] = {.lex_state = 187}, + [2451] = {.lex_state = 187}, + [2452] = {.lex_state = 238}, + [2453] = {.lex_state = 200}, + [2454] = {.lex_state = 238}, + [2455] = {.lex_state = 191}, + [2456] = {.lex_state = 191}, [2457] = {.lex_state = 238}, [2458] = {.lex_state = 238}, - [2459] = {.lex_state = 238}, + [2459] = {.lex_state = 200}, [2460] = {.lex_state = 200}, - [2461] = {.lex_state = 238}, + [2461] = {.lex_state = 200}, [2462] = {.lex_state = 200}, - [2463] = {.lex_state = 238}, + [2463] = {.lex_state = 200}, [2464] = {.lex_state = 238}, - [2465] = {.lex_state = 217}, - [2466] = {.lex_state = 238}, - [2467] = {.lex_state = 218}, + [2465] = {.lex_state = 200}, + [2466] = {.lex_state = 200}, + [2467] = {.lex_state = 238}, [2468] = {.lex_state = 200}, - [2469] = {.lex_state = 238}, - [2470] = {.lex_state = 187}, + [2469] = {.lex_state = 200}, + [2470] = {.lex_state = 200}, [2471] = {.lex_state = 200}, [2472] = {.lex_state = 238}, [2473] = {.lex_state = 191}, - [2474] = {.lex_state = 191}, - [2475] = {.lex_state = 238}, - [2476] = {.lex_state = 191}, - [2477] = {.lex_state = 191}, - [2478] = {.lex_state = 238}, - [2479] = {.lex_state = 200}, - [2480] = {.lex_state = 238}, + [2474] = {.lex_state = 200}, + [2475] = {.lex_state = 200}, + [2476] = {.lex_state = 200}, + [2477] = {.lex_state = 200}, + [2478] = {.lex_state = 191}, + [2479] = {.lex_state = 238}, + [2480] = {.lex_state = 200}, [2481] = {.lex_state = 200}, [2482] = {.lex_state = 238}, [2483] = {.lex_state = 238}, - [2484] = {.lex_state = 200}, + [2484] = {.lex_state = 238}, [2485] = {.lex_state = 200}, [2486] = {.lex_state = 200}, - [2487] = {.lex_state = 200}, + [2487] = {.lex_state = 238}, [2488] = {.lex_state = 200}, - [2489] = {.lex_state = 200}, - [2490] = {.lex_state = 200}, + [2489] = {.lex_state = 238}, + [2490] = {.lex_state = 187}, [2491] = {.lex_state = 200}, [2492] = {.lex_state = 200}, [2493] = {.lex_state = 200}, [2494] = {.lex_state = 200}, - [2495] = {.lex_state = 238}, + [2495] = {.lex_state = 200}, [2496] = {.lex_state = 200}, [2497] = {.lex_state = 200}, [2498] = {.lex_state = 200}, [2499] = {.lex_state = 200}, - [2500] = {.lex_state = 238}, - [2501] = {.lex_state = 238}, - [2502] = {.lex_state = 200}, - [2503] = {.lex_state = 238}, - [2504] = {.lex_state = 200}, - [2505] = {.lex_state = 238}, - [2506] = {.lex_state = 200}, + [2500] = {.lex_state = 200}, + [2501] = {.lex_state = 200}, + [2502] = {.lex_state = 238}, + [2503] = {.lex_state = 200}, + [2504] = {.lex_state = 238}, + [2505] = {.lex_state = 200}, + [2506] = {.lex_state = 238}, [2507] = {.lex_state = 200}, - [2508] = {.lex_state = 200}, - [2509] = {.lex_state = 238}, - [2510] = {.lex_state = 200}, - [2511] = {.lex_state = 200}, - [2512] = {.lex_state = 238}, + [2508] = {.lex_state = 238}, + [2509] = {.lex_state = 200}, + [2510] = {.lex_state = 238}, + [2511] = {.lex_state = 217}, + [2512] = {.lex_state = 200}, [2513] = {.lex_state = 200}, - [2514] = {.lex_state = 200}, + [2514] = {.lex_state = 238}, [2515] = {.lex_state = 238}, [2516] = {.lex_state = 238}, - [2517] = {.lex_state = 200}, + [2517] = {.lex_state = 238}, [2518] = {.lex_state = 200}, [2519] = {.lex_state = 200}, - [2520] = {.lex_state = 238}, - [2521] = {.lex_state = 200}, - [2522] = {.lex_state = 238}, + [2520] = {.lex_state = 200}, + [2521] = {.lex_state = 238}, + [2522] = {.lex_state = 200}, [2523] = {.lex_state = 200}, - [2524] = {.lex_state = 187}, - [2525] = {.lex_state = 200}, + [2524] = {.lex_state = 200}, + [2525] = {.lex_state = 238}, [2526] = {.lex_state = 238}, [2527] = {.lex_state = 238}, [2528] = {.lex_state = 200}, [2529] = {.lex_state = 200}, [2530] = {.lex_state = 200}, - [2531] = {.lex_state = 238}, - [2532] = {.lex_state = 200}, - [2533] = {.lex_state = 238}, - [2534] = {.lex_state = 187}, - [2535] = {.lex_state = 200}, + [2531] = {.lex_state = 200}, + [2532] = {.lex_state = 238}, + [2533] = {.lex_state = 200}, + [2534] = {.lex_state = 200}, + [2535] = {.lex_state = 238}, [2536] = {.lex_state = 200}, - [2537] = {.lex_state = 200}, - [2538] = {.lex_state = 200}, - [2539] = {.lex_state = 200}, + [2537] = {.lex_state = 238}, + [2538] = {.lex_state = 238}, + [2539] = {.lex_state = 238}, [2540] = {.lex_state = 200}, - [2541] = {.lex_state = 187}, - [2542] = {.lex_state = 200}, - [2543] = {.lex_state = 238}, - [2544] = {.lex_state = 238}, + [2541] = {.lex_state = 218}, + [2542] = {.lex_state = 238}, + [2543] = {.lex_state = 200}, + [2544] = {.lex_state = 200}, [2545] = {.lex_state = 200}, [2546] = {.lex_state = 200}, [2547] = {.lex_state = 200}, [2548] = {.lex_state = 200}, - [2549] = {.lex_state = 200}, - [2550] = {.lex_state = 238}, + [2549] = {.lex_state = 238}, + [2550] = {.lex_state = 200}, [2551] = {.lex_state = 200}, [2552] = {.lex_state = 200}, - [2553] = {.lex_state = 200}, + [2553] = {.lex_state = 187}, [2554] = {.lex_state = 200}, [2555] = {.lex_state = 200}, - [2556] = {.lex_state = 200}, + [2556] = {.lex_state = 238}, [2557] = {.lex_state = 200}, - [2558] = {.lex_state = 238}, + [2558] = {.lex_state = 200}, [2559] = {.lex_state = 200}, [2560] = {.lex_state = 200}, - [2561] = {.lex_state = 200}, + [2561] = {.lex_state = 187}, [2562] = {.lex_state = 200}, - [2563] = {.lex_state = 200}, + [2563] = {.lex_state = 238}, [2564] = {.lex_state = 200}, - [2565] = {.lex_state = 238}, - [2566] = {.lex_state = 209}, - [2567] = {.lex_state = 209}, - [2568] = {.lex_state = 209}, - [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}, + [2565] = {.lex_state = 200}, + [2566] = {.lex_state = 187}, + [2567] = {.lex_state = 238}, + [2568] = {.lex_state = 238}, + [2569] = {.lex_state = 238}, + [2570] = {.lex_state = 200}, + [2571] = {.lex_state = 200}, + [2572] = {.lex_state = 200}, + [2573] = {.lex_state = 200}, + [2574] = {.lex_state = 200}, + [2575] = {.lex_state = 200}, + [2576] = {.lex_state = 200}, [2577] = {.lex_state = 238}, [2578] = {.lex_state = 228}, - [2579] = {.lex_state = 229}, - [2580] = {.lex_state = 229}, - [2581] = {.lex_state = 228}, - [2582] = {.lex_state = 228}, + [2579] = {.lex_state = 209}, + [2580] = {.lex_state = 209}, + [2581] = {.lex_state = 209}, + [2582] = {.lex_state = 209}, [2583] = {.lex_state = 228}, - [2584] = {.lex_state = 191}, - [2585] = {.lex_state = 191}, - [2586] = {.lex_state = 238}, - [2587] = {.lex_state = 191}, + [2584] = {.lex_state = 187}, + [2585] = {.lex_state = 209}, + [2586] = {.lex_state = 209}, + [2587] = {.lex_state = 239}, [2588] = {.lex_state = 209}, [2589] = {.lex_state = 209}, - [2590] = {.lex_state = 209}, + [2590] = {.lex_state = 228}, [2591] = {.lex_state = 209}, - [2592] = {.lex_state = 238}, - [2593] = {.lex_state = 209}, - [2594] = {.lex_state = 238}, - [2595] = {.lex_state = 239}, - [2596] = {.lex_state = 187}, + [2592] = {.lex_state = 228}, + [2593] = {.lex_state = 191}, + [2594] = {.lex_state = 228}, + [2595] = {.lex_state = 238}, + [2596] = {.lex_state = 228}, [2597] = {.lex_state = 209}, - [2598] = {.lex_state = 228}, + [2598] = {.lex_state = 238}, [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}, + [2602] = {.lex_state = 228}, + [2603] = {.lex_state = 238}, + [2604] = {.lex_state = 229}, + [2605] = {.lex_state = 241}, [2606] = {.lex_state = 191}, - [2607] = {.lex_state = 217}, - [2608] = {.lex_state = 211}, - [2609] = {.lex_state = 238}, + [2607] = {.lex_state = 241}, + [2608] = {.lex_state = 228}, + [2609] = {.lex_state = 191}, [2610] = {.lex_state = 238}, - [2611] = {.lex_state = 211}, - [2612] = {.lex_state = 176}, - [2613] = {.lex_state = 229}, - [2614] = {.lex_state = 229}, - [2615] = {.lex_state = 238}, - [2616] = {.lex_state = 229}, - [2617] = {.lex_state = 198}, - [2618] = {.lex_state = 217}, + [2611] = {.lex_state = 228}, + [2612] = {.lex_state = 228}, + [2613] = {.lex_state = 191}, + [2614] = {.lex_state = 209}, + [2615] = {.lex_state = 228}, + [2616] = {.lex_state = 228}, + [2617] = {.lex_state = 209}, + [2618] = {.lex_state = 229}, [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}, + [2620] = {.lex_state = 198}, + [2621] = {.lex_state = 209}, + [2622] = {.lex_state = 176}, + [2623] = {.lex_state = 198}, + [2624] = {.lex_state = 217}, + [2625] = {.lex_state = 187}, + [2626] = {.lex_state = 209}, + [2627] = {.lex_state = 217}, + [2628] = {.lex_state = 238}, + [2629] = {.lex_state = 238}, + [2630] = {.lex_state = 238}, [2631] = {.lex_state = 217}, - [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 = 229}, + [2632] = {.lex_state = 238}, + [2633] = {.lex_state = 176}, + [2634] = {.lex_state = 229}, + [2635] = {.lex_state = 229}, + [2636] = {.lex_state = 238}, + [2637] = {.lex_state = 238}, + [2638] = {.lex_state = 229}, + [2639] = {.lex_state = 238}, + [2640] = {.lex_state = 187}, + [2641] = {.lex_state = 217}, + [2642] = {.lex_state = 209}, + [2643] = {.lex_state = 198}, + [2644] = {.lex_state = 217}, [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}, + [2647] = {.lex_state = 229}, + [2648] = {.lex_state = 229}, + [2649] = {.lex_state = 238}, + [2650] = {.lex_state = 217}, + [2651] = {.lex_state = 198}, + [2652] = {.lex_state = 229}, + [2653] = {.lex_state = 229}, + [2654] = {.lex_state = 198}, + [2655] = {.lex_state = 187}, + [2656] = {.lex_state = 228}, + [2657] = {.lex_state = 238}, + [2658] = {.lex_state = 217}, + [2659] = {.lex_state = 198}, + [2660] = {.lex_state = 229}, + [2661] = {.lex_state = 238}, + [2662] = {.lex_state = 229}, + [2663] = {.lex_state = 229}, + [2664] = {.lex_state = 229}, + [2665] = {.lex_state = 211}, + [2666] = {.lex_state = 209}, + [2667] = {.lex_state = 198}, + [2668] = {.lex_state = 217}, + [2669] = {.lex_state = 217}, [2670] = {.lex_state = 183}, - [2671] = {.lex_state = 238}, - [2672] = {.lex_state = 198}, - [2673] = {.lex_state = 209}, + [2671] = {.lex_state = 209}, + [2672] = {.lex_state = 211}, + [2673] = {.lex_state = 229}, [2674] = {.lex_state = 238}, - [2675] = {.lex_state = 198}, - [2676] = {.lex_state = 228}, - [2677] = {.lex_state = 238}, + [2675] = {.lex_state = 238}, + [2676] = {.lex_state = 238}, + [2677] = {.lex_state = 187}, [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 = 217}, - [2685] = {.lex_state = 229}, - [2686] = {.lex_state = 229}, - [2687] = {.lex_state = 187}, - [2688] = {.lex_state = 218}, - [2689] = {.lex_state = 229}, - [2690] = {.lex_state = 229}, - [2691] = {.lex_state = 187}, - [2692] = {.lex_state = 229}, - [2693] = {.lex_state = 229}, - [2694] = {.lex_state = 229}, - [2695] = {.lex_state = 239}, - [2696] = {.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 = 229}, - [2704] = {.lex_state = 229}, - [2705] = {.lex_state = 196}, - [2706] = {.lex_state = 229}, - [2707] = {.lex_state = 229}, - [2708] = {.lex_state = 229}, - [2709] = {.lex_state = 229}, - [2710] = {.lex_state = 204}, - [2711] = {.lex_state = 238}, - [2712] = {.lex_state = 204}, - [2713] = {.lex_state = 241}, - [2714] = {.lex_state = 229}, + [2682] = {.lex_state = 229}, + [2683] = {.lex_state = 217}, + [2684] = {.lex_state = 228}, + [2685] = {.lex_state = 183}, + [2686] = {.lex_state = 238}, + [2687] = {.lex_state = 209}, + [2688] = {.lex_state = 217}, + [2689] = {.lex_state = 217}, + [2690] = {.lex_state = 217}, + [2691] = {.lex_state = 211}, + [2692] = {.lex_state = 217}, + [2693] = {.lex_state = 217}, + [2694] = {.lex_state = 183}, + [2695] = {.lex_state = 229}, + [2696] = {.lex_state = 239}, + [2697] = {.lex_state = 196}, + [2698] = {.lex_state = 239}, + [2699] = {.lex_state = 233}, + [2700] = {.lex_state = 209}, + [2701] = {.lex_state = 241}, + [2702] = {.lex_state = 209}, + [2703] = {.lex_state = 241}, + [2704] = {.lex_state = 217}, + [2705] = {.lex_state = 229}, + [2706] = {.lex_state = 217}, + [2707] = {.lex_state = 217}, + [2708] = {.lex_state = 217}, + [2709] = {.lex_state = 187}, + [2710] = {.lex_state = 187}, + [2711] = {.lex_state = 229}, + [2712] = {.lex_state = 229}, + [2713] = {.lex_state = 217}, + [2714] = {.lex_state = 218}, [2715] = {.lex_state = 229}, - [2716] = {.lex_state = 211}, + [2716] = {.lex_state = 229}, [2717] = {.lex_state = 229}, [2718] = {.lex_state = 229}, - [2719] = {.lex_state = 187}, - [2720] = {.lex_state = 217}, - [2721] = {.lex_state = 229}, + [2719] = {.lex_state = 229}, + [2720] = {.lex_state = 229}, + [2721] = {.lex_state = 218}, [2722] = {.lex_state = 229}, [2723] = {.lex_state = 229}, [2724] = {.lex_state = 229}, [2725] = {.lex_state = 229}, [2726] = {.lex_state = 229}, - [2727] = {.lex_state = 233}, + [2727] = {.lex_state = 229}, [2728] = {.lex_state = 229}, [2729] = {.lex_state = 229}, - [2730] = {.lex_state = 233}, - [2731] = {.lex_state = 233}, + [2730] = {.lex_state = 229}, + [2731] = {.lex_state = 211}, [2732] = {.lex_state = 229}, [2733] = {.lex_state = 229}, [2734] = {.lex_state = 229}, - [2735] = {.lex_state = 233}, - [2736] = {.lex_state = 209}, + [2735] = {.lex_state = 229}, + [2736] = {.lex_state = 229}, [2737] = {.lex_state = 229}, - [2738] = {.lex_state = 241}, - [2739] = {.lex_state = 238}, - [2740] = {.lex_state = 217}, + [2738] = {.lex_state = 229}, + [2739] = {.lex_state = 229}, + [2740] = {.lex_state = 238}, [2741] = {.lex_state = 229}, [2742] = {.lex_state = 229}, [2743] = {.lex_state = 229}, [2744] = {.lex_state = 229}, - [2745] = {.lex_state = 209}, + [2745] = {.lex_state = 229}, [2746] = {.lex_state = 229}, [2747] = {.lex_state = 229}, [2748] = {.lex_state = 229}, - [2749] = {.lex_state = 194}, - [2750] = {.lex_state = 209}, - [2751] = {.lex_state = 209}, - [2752] = {.lex_state = 176}, - [2753] = {.lex_state = 209}, - [2754] = {.lex_state = 209}, - [2755] = {.lex_state = 194}, + [2749] = {.lex_state = 229}, + [2750] = {.lex_state = 229}, + [2751] = {.lex_state = 229}, + [2752] = {.lex_state = 187}, + [2753] = {.lex_state = 187}, + [2754] = {.lex_state = 204}, + [2755] = {.lex_state = 204}, [2756] = {.lex_state = 238}, - [2757] = {.lex_state = 176}, - [2758] = {.lex_state = 194}, - [2759] = {.lex_state = 209}, - [2760] = {.lex_state = 176}, - [2761] = {.lex_state = 238}, + [2757] = {.lex_state = 233}, + [2758] = {.lex_state = 233}, + [2759] = {.lex_state = 233}, + [2760] = {.lex_state = 229}, + [2761] = {.lex_state = 176}, [2762] = {.lex_state = 209}, - [2763] = {.lex_state = 194}, - [2764] = {.lex_state = 194}, - [2765] = {.lex_state = 238}, + [2763] = {.lex_state = 209}, + [2764] = {.lex_state = 209}, + [2765] = {.lex_state = 209}, [2766] = {.lex_state = 176}, - [2767] = {.lex_state = 238}, + [2767] = {.lex_state = 218}, [2768] = {.lex_state = 176}, - [2769] = {.lex_state = 209}, - [2770] = {.lex_state = 209}, - [2771] = {.lex_state = 209}, - [2772] = {.lex_state = 209}, + [2769] = {.lex_state = 176}, + [2770] = {.lex_state = 176}, + [2771] = {.lex_state = 176}, + [2772] = {.lex_state = 176}, [2773] = {.lex_state = 176}, [2774] = {.lex_state = 209}, [2775] = {.lex_state = 176}, - [2776] = {.lex_state = 209}, + [2776] = {.lex_state = 176}, [2777] = {.lex_state = 209}, [2778] = {.lex_state = 209}, - [2779] = {.lex_state = 176}, - [2780] = {.lex_state = 176}, + [2779] = {.lex_state = 209}, + [2780] = {.lex_state = 209}, [2781] = {.lex_state = 176}, - [2782] = {.lex_state = 176}, + [2782] = {.lex_state = 217}, [2783] = {.lex_state = 209}, - [2784] = {.lex_state = 194}, - [2785] = {.lex_state = 176}, - [2786] = {.lex_state = 209}, - [2787] = {.lex_state = 238}, + [2784] = {.lex_state = 209}, + [2785] = {.lex_state = 209}, + [2786] = {.lex_state = 176}, + [2787] = {.lex_state = 176}, [2788] = {.lex_state = 176}, - [2789] = {.lex_state = 209}, + [2789] = {.lex_state = 176}, [2790] = {.lex_state = 176}, - [2791] = {.lex_state = 194}, + [2791] = {.lex_state = 176}, [2792] = {.lex_state = 176}, - [2793] = {.lex_state = 209}, - [2794] = {.lex_state = 176}, - [2795] = {.lex_state = 176}, + [2793] = {.lex_state = 194}, + [2794] = {.lex_state = 238}, + [2795] = {.lex_state = 238}, [2796] = {.lex_state = 209}, - [2797] = {.lex_state = 176}, - [2798] = {.lex_state = 209}, - [2799] = {.lex_state = 217}, - [2800] = {.lex_state = 218}, + [2797] = {.lex_state = 238}, + [2798] = {.lex_state = 194}, + [2799] = {.lex_state = 209}, + [2800] = {.lex_state = 176}, [2801] = {.lex_state = 176}, - [2802] = {.lex_state = 176}, + [2802] = {.lex_state = 194}, [2803] = {.lex_state = 209}, - [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}, + [2804] = {.lex_state = 209}, + [2805] = {.lex_state = 238}, + [2806] = {.lex_state = 194}, + [2807] = {.lex_state = 194}, + [2808] = {.lex_state = 194}, + [2809] = {.lex_state = 194}, + [2810] = {.lex_state = 209}, [2811] = {.lex_state = 209}, - [2812] = {.lex_state = 194}, - [2813] = {.lex_state = 217}, + [2812] = {.lex_state = 209}, + [2813] = {.lex_state = 209}, [2814] = {.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 = 197}, - [2821] = {.lex_state = 197}, - [2822] = {.lex_state = 197}, - [2823] = {.lex_state = 197}, - [2824] = {.lex_state = 197}, - [2825] = {.lex_state = 197}, - [2826] = {.lex_state = 197}, - [2827] = {.lex_state = 197}, + [2815] = {.lex_state = 238}, + [2816] = {.lex_state = 238}, + [2817] = {.lex_state = 209}, + [2818] = {.lex_state = 209}, + [2819] = {.lex_state = 209}, + [2820] = {.lex_state = 209}, + [2821] = {.lex_state = 209}, + [2822] = {.lex_state = 183}, + [2823] = {.lex_state = 227}, + [2824] = {.lex_state = 217}, + [2825] = {.lex_state = 217}, + [2826] = {.lex_state = 183}, + [2827] = {.lex_state = 238}, [2828] = {.lex_state = 209}, - [2829] = {.lex_state = 183}, - [2830] = {.lex_state = 238}, - [2831] = {.lex_state = 194}, - [2832] = {.lex_state = 211}, - [2833] = {.lex_state = 227}, - [2834] = {.lex_state = 194}, + [2829] = {.lex_state = 211}, + [2830] = {.lex_state = 209}, + [2831] = {.lex_state = 238}, + [2832] = {.lex_state = 209}, + [2833] = {.lex_state = 209}, + [2834] = {.lex_state = 209}, [2835] = {.lex_state = 194}, - [2836] = {.lex_state = 243}, - [2837] = {.lex_state = 194}, - [2838] = {.lex_state = 197}, - [2839] = {.lex_state = 197}, - [2840] = {.lex_state = 209}, - [2841] = {.lex_state = 209}, - [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 = 183}, - [2853] = {.lex_state = 194}, - [2854] = {.lex_state = 194}, + [2836] = {.lex_state = 227}, + [2837] = {.lex_state = 211}, + [2838] = {.lex_state = 194}, + [2839] = {.lex_state = 217}, + [2840] = {.lex_state = 217}, + [2841] = {.lex_state = 197}, + [2842] = {.lex_state = 197}, + [2843] = {.lex_state = 197}, + [2844] = {.lex_state = 197}, + [2845] = {.lex_state = 197}, + [2846] = {.lex_state = 197}, + [2847] = {.lex_state = 197}, + [2848] = {.lex_state = 197}, + [2849] = {.lex_state = 197}, + [2850] = {.lex_state = 197}, + [2851] = {.lex_state = 197}, + [2852] = {.lex_state = 197}, + [2853] = {.lex_state = 197}, + [2854] = {.lex_state = 243}, [2855] = {.lex_state = 209}, [2856] = {.lex_state = 209}, - [2857] = {.lex_state = 217}, - [2858] = {.lex_state = 183}, - [2859] = {.lex_state = 209}, - [2860] = {.lex_state = 194}, - [2861] = {.lex_state = 194}, + [2857] = {.lex_state = 194}, + [2858] = {.lex_state = 194}, + [2859] = {.lex_state = 194}, + [2860] = {.lex_state = 197}, + [2861] = {.lex_state = 197}, [2862] = {.lex_state = 217}, - [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}, + [2863] = {.lex_state = 194}, + [2864] = {.lex_state = 194}, + [2865] = {.lex_state = 209}, + [2866] = {.lex_state = 194}, + [2867] = {.lex_state = 194}, + [2868] = {.lex_state = 209}, + [2869] = {.lex_state = 194}, + [2870] = {.lex_state = 194}, [2871] = {.lex_state = 209}, - [2872] = {.lex_state = 209}, - [2873] = {.lex_state = 209}, + [2872] = {.lex_state = 194}, + [2873] = {.lex_state = 194}, [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}, + [2875] = {.lex_state = 197}, + [2876] = {.lex_state = 197}, + [2877] = {.lex_state = 197}, + [2878] = {.lex_state = 209}, + [2879] = {.lex_state = 194}, + [2880] = {.lex_state = 209}, + [2881] = {.lex_state = 209}, + [2882] = {.lex_state = 227}, + [2883] = {.lex_state = 183}, + [2884] = {.lex_state = 209}, + [2885] = {.lex_state = 209}, [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}, + [2887] = {.lex_state = 209}, + [2888] = {.lex_state = 209}, + [2889] = {.lex_state = 183}, + [2890] = {.lex_state = 238}, + [2891] = {.lex_state = 209}, + [2892] = {.lex_state = 209}, + [2893] = {.lex_state = 242}, + [2894] = {.lex_state = 209}, [2895] = {.lex_state = 238}, - [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 = 201}, - [2904] = {.lex_state = 209}, - [2905] = {.lex_state = 242}, - [2906] = {.lex_state = 209}, - [2907] = {.lex_state = 211}, - [2908] = {.lex_state = 242}, - [2909] = {.lex_state = 210}, + [2896] = {.lex_state = 201}, + [2897] = {.lex_state = 201}, + [2898] = {.lex_state = 209}, + [2899] = {.lex_state = 242}, + [2900] = {.lex_state = 217}, + [2901] = {.lex_state = 217}, + [2902] = {.lex_state = 211}, + [2903] = {.lex_state = 217}, + [2904] = {.lex_state = 217}, + [2905] = {.lex_state = 217}, + [2906] = {.lex_state = 217}, + [2907] = {.lex_state = 204}, + [2908] = {.lex_state = 217}, + [2909] = {.lex_state = 204}, [2910] = {.lex_state = 217}, - [2911] = {.lex_state = 204}, - [2912] = {.lex_state = 204}, - [2913] = {.lex_state = 238}, + [2911] = {.lex_state = 217}, + [2912] = {.lex_state = 217}, + [2913] = {.lex_state = 217}, [2914] = {.lex_state = 217}, - [2915] = {.lex_state = 238}, + [2915] = {.lex_state = 209}, [2916] = {.lex_state = 238}, - [2917] = {.lex_state = 201}, - [2918] = {.lex_state = 238}, - [2919] = {.lex_state = 204}, - [2920] = {.lex_state = 204}, - [2921] = {.lex_state = 197}, - [2922] = {.lex_state = 196}, - [2923] = {.lex_state = 204}, - [2924] = {.lex_state = 209}, + [2917] = {.lex_state = 242}, + [2918] = {.lex_state = 209}, + [2919] = {.lex_state = 239}, + [2920] = {.lex_state = 209}, + [2921] = {.lex_state = 204}, + [2922] = {.lex_state = 197}, + [2923] = {.lex_state = 209}, + [2924] = {.lex_state = 238}, [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 = 209}, - [2935] = {.lex_state = 204}, - [2936] = {.lex_state = 204}, + [2927] = {.lex_state = 209}, + [2928] = {.lex_state = 209}, + [2929] = {.lex_state = 209}, + [2930] = {.lex_state = 209}, + [2931] = {.lex_state = 197}, + [2932] = {.lex_state = 238}, + [2933] = {.lex_state = 238}, + [2934] = {.lex_state = 242}, + [2935] = {.lex_state = 197}, + [2936] = {.lex_state = 209}, [2937] = {.lex_state = 197}, - [2938] = {.lex_state = 217}, - [2939] = {.lex_state = 197}, - [2940] = {.lex_state = 204}, - [2941] = {.lex_state = 204}, - [2942] = {.lex_state = 210}, - [2943] = {.lex_state = 204}, - [2944] = {.lex_state = 238}, - [2945] = {.lex_state = 210}, - [2946] = {.lex_state = 204}, - [2947] = {.lex_state = 204}, - [2948] = {.lex_state = 197}, + [2938] = {.lex_state = 197}, + [2939] = {.lex_state = 209}, + [2940] = {.lex_state = 197}, + [2941] = {.lex_state = 238}, + [2942] = {.lex_state = 238}, + [2943] = {.lex_state = 197}, + [2944] = {.lex_state = 228}, + [2945] = {.lex_state = 238}, + [2946] = {.lex_state = 238}, + [2947] = {.lex_state = 242}, + [2948] = {.lex_state = 209}, [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}, + [2950] = {.lex_state = 238}, + [2951] = {.lex_state = 238}, + [2952] = {.lex_state = 204}, + [2953] = {.lex_state = 210}, + [2954] = {.lex_state = 204}, + [2955] = {.lex_state = 197}, + [2956] = {.lex_state = 197}, + [2957] = {.lex_state = 217}, [2958] = {.lex_state = 204}, - [2959] = {.lex_state = 204}, - [2960] = {.lex_state = 217}, - [2961] = {.lex_state = 238}, - [2962] = {.lex_state = 238}, - [2963] = {.lex_state = 242}, + [2959] = {.lex_state = 217}, + [2960] = {.lex_state = 210}, + [2961] = {.lex_state = 209}, + [2962] = {.lex_state = 204}, + [2963] = {.lex_state = 204}, [2964] = {.lex_state = 204}, - [2965] = {.lex_state = 204}, + [2965] = {.lex_state = 210}, [2966] = {.lex_state = 204}, - [2967] = {.lex_state = 204}, - [2968] = {.lex_state = 210}, + [2967] = {.lex_state = 217}, + [2968] = {.lex_state = 197}, [2969] = {.lex_state = 197}, - [2970] = {.lex_state = 210}, - [2971] = {.lex_state = 204}, - [2972] = {.lex_state = 242}, - [2973] = {.lex_state = 204}, + [2970] = {.lex_state = 217}, + [2971] = {.lex_state = 238}, + [2972] = {.lex_state = 197}, + [2973] = {.lex_state = 197}, [2974] = {.lex_state = 204}, - [2975] = {.lex_state = 197}, - [2976] = {.lex_state = 204}, - [2977] = {.lex_state = 204}, - [2978] = {.lex_state = 204}, - [2979] = {.lex_state = 238}, + [2975] = {.lex_state = 217}, + [2976] = {.lex_state = 238}, + [2977] = {.lex_state = 210}, + [2978] = {.lex_state = 197}, + [2979] = {.lex_state = 204}, [2980] = {.lex_state = 204}, - [2981] = {.lex_state = 209}, + [2981] = {.lex_state = 204}, [2982] = {.lex_state = 238}, - [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 = 197}, - [3004] = {.lex_state = 209}, - [3005] = {.lex_state = 210}, - [3006] = {.lex_state = 238}, - [3007] = {.lex_state = 238}, - [3008] = {.lex_state = 217}, + [2983] = {.lex_state = 204}, + [2984] = {.lex_state = 204}, + [2985] = {.lex_state = 204}, + [2986] = {.lex_state = 217}, + [2987] = {.lex_state = 204}, + [2988] = {.lex_state = 204}, + [2989] = {.lex_state = 204}, + [2990] = {.lex_state = 238}, + [2991] = {.lex_state = 204}, + [2992] = {.lex_state = 210}, + [2993] = {.lex_state = 204}, + [2994] = {.lex_state = 204}, + [2995] = {.lex_state = 204}, + [2996] = {.lex_state = 210}, + [2997] = {.lex_state = 204}, + [2998] = {.lex_state = 204}, + [2999] = {.lex_state = 209}, + [3000] = {.lex_state = 201}, + [3001] = {.lex_state = 238}, + [3002] = {.lex_state = 204}, + [3003] = {.lex_state = 204}, + [3004] = {.lex_state = 197}, + [3005] = {.lex_state = 204}, + [3006] = {.lex_state = 196}, + [3007] = {.lex_state = 204}, + [3008] = {.lex_state = 204}, [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}, + [3010] = {.lex_state = 197}, + [3011] = {.lex_state = 204}, + [3012] = {.lex_state = 204}, + [3013] = {.lex_state = 204}, + [3014] = {.lex_state = 242}, + [3015] = {.lex_state = 204}, + [3016] = {.lex_state = 242}, [3017] = {.lex_state = 197}, [3018] = {.lex_state = 197}, [3019] = {.lex_state = 197}, - [3020] = {.lex_state = 197}, - [3021] = {.lex_state = 238}, - [3022] = {.lex_state = 209}, - [3023] = {.lex_state = 220}, - [3024] = {.lex_state = 209}, - [3025] = {.lex_state = 209}, - [3026] = {.lex_state = 217}, - [3027] = {.lex_state = 209}, - [3028] = {.lex_state = 238}, - [3029] = {.lex_state = 239}, - [3030] = {.lex_state = 238}, - [3031] = {.lex_state = 170}, - [3032] = {.lex_state = 209}, - [3033] = {.lex_state = 209}, - [3034] = {.lex_state = 197}, + [3020] = {.lex_state = 238}, + [3021] = {.lex_state = 201}, + [3022] = {.lex_state = 238}, + [3023] = {.lex_state = 238}, + [3024] = {.lex_state = 204}, + [3025] = {.lex_state = 170}, + [3026] = {.lex_state = 239}, + [3027] = {.lex_state = 197}, + [3028] = {.lex_state = 197}, + [3029] = {.lex_state = 197}, + [3030] = {.lex_state = 197}, + [3031] = {.lex_state = 209}, + [3032] = {.lex_state = 197}, + [3033] = {.lex_state = 170}, + [3034] = {.lex_state = 209}, [3035] = {.lex_state = 209}, - [3036] = {.lex_state = 238}, + [3036] = {.lex_state = 209}, [3037] = {.lex_state = 194}, - [3038] = {.lex_state = 197}, - [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 = 209}, + [3038] = {.lex_state = 204}, + [3039] = {.lex_state = 210}, + [3040] = {.lex_state = 197}, + [3041] = {.lex_state = 209}, + [3042] = {.lex_state = 197}, + [3043] = {.lex_state = 197}, + [3044] = {.lex_state = 238}, + [3045] = {.lex_state = 194}, + [3046] = {.lex_state = 238}, + [3047] = {.lex_state = 239}, [3048] = {.lex_state = 209}, [3049] = {.lex_state = 209}, - [3050] = {.lex_state = 197}, - [3051] = {.lex_state = 239}, - [3052] = {.lex_state = 170}, - [3053] = {.lex_state = 204}, - [3054] = {.lex_state = 238}, + [3050] = {.lex_state = 209}, + [3051] = {.lex_state = 209}, + [3052] = {.lex_state = 209}, + [3053] = {.lex_state = 176}, + [3054] = {.lex_state = 209}, [3055] = {.lex_state = 209}, [3056] = {.lex_state = 209}, [3057] = {.lex_state = 209}, - [3058] = {.lex_state = 197}, - [3059] = {.lex_state = 238}, + [3058] = {.lex_state = 194}, + [3059] = {.lex_state = 209}, [3060] = {.lex_state = 238}, [3061] = {.lex_state = 238}, - [3062] = {.lex_state = 209}, - [3063] = {.lex_state = 220}, - [3064] = {.lex_state = 217}, + [3062] = {.lex_state = 170}, + [3063] = {.lex_state = 217}, + [3064] = {.lex_state = 209}, [3065] = {.lex_state = 209}, - [3066] = {.lex_state = 238}, + [3066] = {.lex_state = 197}, [3067] = {.lex_state = 238}, [3068] = {.lex_state = 209}, - [3069] = {.lex_state = 209}, - [3070] = {.lex_state = 209}, - [3071] = {.lex_state = 194}, - [3072] = {.lex_state = 209}, - [3073] = {.lex_state = 210}, - [3074] = {.lex_state = 170}, + [3069] = {.lex_state = 238}, + [3070] = {.lex_state = 197}, + [3071] = {.lex_state = 170}, + [3072] = {.lex_state = 239}, + [3073] = {.lex_state = 238}, + [3074] = {.lex_state = 239}, [3075] = {.lex_state = 197}, [3076] = {.lex_state = 209}, - [3077] = {.lex_state = 194}, + [3077] = {.lex_state = 220}, [3078] = {.lex_state = 209}, - [3079] = {.lex_state = 209}, - [3080] = {.lex_state = 197}, - [3081] = {.lex_state = 170}, - [3082] = {.lex_state = 209}, - [3083] = {.lex_state = 197}, + [3079] = {.lex_state = 238}, + [3080] = {.lex_state = 238}, + [3081] = {.lex_state = 238}, + [3082] = {.lex_state = 238}, + [3083] = {.lex_state = 170}, [3084] = {.lex_state = 209}, [3085] = {.lex_state = 209}, - [3086] = {.lex_state = 194}, + [3086] = {.lex_state = 209}, [3087] = {.lex_state = 209}, - [3088] = {.lex_state = 197}, - [3089] = {.lex_state = 170}, - [3090] = {.lex_state = 209}, + [3088] = {.lex_state = 194}, + [3089] = {.lex_state = 197}, + [3090] = {.lex_state = 239}, [3091] = {.lex_state = 209}, - [3092] = {.lex_state = 197}, - [3093] = {.lex_state = 197}, - [3094] = {.lex_state = 197}, - [3095] = {.lex_state = 238}, - [3096] = {.lex_state = 239}, + [3092] = {.lex_state = 217}, + [3093] = {.lex_state = 238}, + [3094] = {.lex_state = 209}, + [3095] = {.lex_state = 239}, + [3096] = {.lex_state = 209}, [3097] = {.lex_state = 209}, - [3098] = {.lex_state = 209}, - [3099] = {.lex_state = 220}, - [3100] = {.lex_state = 209}, - [3101] = {.lex_state = 239}, - [3102] = {.lex_state = 183}, - [3103] = {.lex_state = 209}, + [3098] = {.lex_state = 194}, + [3099] = {.lex_state = 239}, + [3100] = {.lex_state = 238}, + [3101] = {.lex_state = 220}, + [3102] = {.lex_state = 238}, + [3103] = {.lex_state = 183}, [3104] = {.lex_state = 238}, - [3105] = {.lex_state = 220}, - [3106] = {.lex_state = 239}, + [3105] = {.lex_state = 238}, + [3106] = {.lex_state = 217}, [3107] = {.lex_state = 239}, - [3108] = {.lex_state = 194}, - [3109] = {.lex_state = 238}, - [3110] = {.lex_state = 194}, + [3108] = {.lex_state = 209}, + [3109] = {.lex_state = 209}, + [3110] = {.lex_state = 238}, [3111] = {.lex_state = 238}, - [3112] = {.lex_state = 238}, - [3113] = {.lex_state = 194}, - [3114] = {.lex_state = 209}, - [3115] = {.lex_state = 209}, - [3116] = {.lex_state = 239}, + [3112] = {.lex_state = 239}, + [3113] = {.lex_state = 209}, + [3114] = {.lex_state = 238}, + [3115] = {.lex_state = 239}, + [3116] = {.lex_state = 238}, [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 = 197}, - [3127] = {.lex_state = 239}, - [3128] = {.lex_state = 239}, + [3119] = {.lex_state = 209}, + [3120] = {.lex_state = 239}, + [3121] = {.lex_state = 209}, + [3122] = {.lex_state = 242}, + [3123] = {.lex_state = 209}, + [3124] = {.lex_state = 209}, + [3125] = {.lex_state = 194}, + [3126] = {.lex_state = 239}, + [3127] = {.lex_state = 209}, + [3128] = {.lex_state = 209}, [3129] = {.lex_state = 210}, - [3130] = {.lex_state = 238}, - [3131] = {.lex_state = 239}, - [3132] = {.lex_state = 209}, + [3130] = {.lex_state = 239}, + [3131] = {.lex_state = 238}, + [3132] = {.lex_state = 170}, [3133] = {.lex_state = 239}, - [3134] = {.lex_state = 217}, - [3135] = {.lex_state = 220}, - [3136] = {.lex_state = 176}, - [3137] = {.lex_state = 239}, + [3134] = {.lex_state = 194}, + [3135] = {.lex_state = 197}, + [3136] = {.lex_state = 209}, + [3137] = {.lex_state = 197}, [3138] = {.lex_state = 238}, - [3139] = {.lex_state = 209}, + [3139] = {.lex_state = 197}, [3140] = {.lex_state = 238}, - [3141] = {.lex_state = 238}, - [3142] = {.lex_state = 238}, - [3143] = {.lex_state = 209}, - [3144] = {.lex_state = 209}, + [3141] = {.lex_state = 197}, + [3142] = {.lex_state = 239}, + [3143] = {.lex_state = 197}, + [3144] = {.lex_state = 197}, [3145] = {.lex_state = 209}, [3146] = {.lex_state = 238}, - [3147] = {.lex_state = 238}, + [3147] = {.lex_state = 209}, [3148] = {.lex_state = 209}, - [3149] = {.lex_state = 238}, + [3149] = {.lex_state = 209}, [3150] = {.lex_state = 209}, - [3151] = {.lex_state = 239}, - [3152] = {.lex_state = 197}, + [3151] = {.lex_state = 238}, + [3152] = {.lex_state = 209}, [3153] = {.lex_state = 209}, - [3154] = {.lex_state = 183}, - [3155] = {.lex_state = 217}, - [3156] = {.lex_state = 217}, - [3157] = {.lex_state = 217}, - [3158] = {.lex_state = 217}, - [3159] = {.lex_state = 217}, + [3154] = {.lex_state = 209}, + [3155] = {.lex_state = 239}, + [3156] = {.lex_state = 220}, + [3157] = {.lex_state = 209}, + [3158] = {.lex_state = 209}, + [3159] = {.lex_state = 239}, [3160] = {.lex_state = 209}, - [3161] = {.lex_state = 217}, - [3162] = {.lex_state = 217}, - [3163] = {.lex_state = 209}, - [3164] = {.lex_state = 217}, - [3165] = {.lex_state = 217}, - [3166] = {.lex_state = 209}, - [3167] = {.lex_state = 217}, - [3168] = {.lex_state = 239}, - [3169] = {.lex_state = 217}, - [3170] = {.lex_state = 201}, - [3171] = {.lex_state = 217}, + [3161] = {.lex_state = 220}, + [3162] = {.lex_state = 210}, + [3163] = {.lex_state = 220}, + [3164] = {.lex_state = 194}, + [3165] = {.lex_state = 238}, + [3166] = {.lex_state = 206}, + [3167] = {.lex_state = 183}, + [3168] = {.lex_state = 209}, + [3169] = {.lex_state = 209}, + [3170] = {.lex_state = 238}, + [3171] = {.lex_state = 183}, [3172] = {.lex_state = 209}, - [3173] = {.lex_state = 217}, + [3173] = {.lex_state = 209}, [3174] = {.lex_state = 217}, - [3175] = {.lex_state = 217}, - [3176] = {.lex_state = 209}, - [3177] = {.lex_state = 209}, - [3178] = {.lex_state = 201}, - [3179] = {.lex_state = 197}, + [3175] = {.lex_state = 183}, + [3176] = {.lex_state = 220}, + [3177] = {.lex_state = 201}, + [3178] = {.lex_state = 209}, + [3179] = {.lex_state = 209}, [3180] = {.lex_state = 209}, - [3181] = {.lex_state = 183}, + [3181] = {.lex_state = 209}, [3182] = {.lex_state = 209}, [3183] = {.lex_state = 209}, [3184] = {.lex_state = 209}, @@ -25416,272 +25444,272 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3186] = {.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 = 217}, - [3198] = {.lex_state = 238}, - [3199] = {.lex_state = 217}, + [3189] = {.lex_state = 201}, + [3190] = {.lex_state = 239}, + [3191] = {.lex_state = 204}, + [3192] = {.lex_state = 217}, + [3193] = {.lex_state = 212}, + [3194] = {.lex_state = 220}, + [3195] = {.lex_state = 217}, + [3196] = {.lex_state = 239}, + [3197] = {.lex_state = 238}, + [3198] = {.lex_state = 209}, + [3199] = {.lex_state = 196}, [3200] = {.lex_state = 209}, - [3201] = {.lex_state = 217}, - [3202] = {.lex_state = 209}, - [3203] = {.lex_state = 239}, - [3204] = {.lex_state = 217}, - [3205] = {.lex_state = 217}, - [3206] = {.lex_state = 217}, - [3207] = {.lex_state = 217}, + [3201] = {.lex_state = 238}, + [3202] = {.lex_state = 210}, + [3203] = {.lex_state = 209}, + [3204] = {.lex_state = 209}, + [3205] = {.lex_state = 209}, + [3206] = {.lex_state = 209}, + [3207] = {.lex_state = 209}, [3208] = {.lex_state = 209}, - [3209] = {.lex_state = 209}, - [3210] = {.lex_state = 206}, - [3211] = {.lex_state = 239}, - [3212] = {.lex_state = 183}, + [3209] = {.lex_state = 217}, + [3210] = {.lex_state = 209}, + [3211] = {.lex_state = 209}, + [3212] = {.lex_state = 209}, [3213] = {.lex_state = 209}, [3214] = {.lex_state = 209}, [3215] = {.lex_state = 209}, - [3216] = {.lex_state = 217}, - [3217] = {.lex_state = 238}, + [3216] = {.lex_state = 210}, + [3217] = {.lex_state = 217}, [3218] = {.lex_state = 217}, [3219] = {.lex_state = 209}, [3220] = {.lex_state = 217}, - [3221] = {.lex_state = 217}, - [3222] = {.lex_state = 219}, - [3223] = {.lex_state = 196}, - [3224] = {.lex_state = 196}, - [3225] = {.lex_state = 209}, + [3221] = {.lex_state = 197}, + [3222] = {.lex_state = 217}, + [3223] = {.lex_state = 209}, + [3224] = {.lex_state = 209}, + [3225] = {.lex_state = 196}, [3226] = {.lex_state = 209}, [3227] = {.lex_state = 217}, [3228] = {.lex_state = 217}, [3229] = {.lex_state = 217}, - [3230] = {.lex_state = 209}, - [3231] = {.lex_state = 183}, - [3232] = {.lex_state = 209}, - [3233] = {.lex_state = 217}, - [3234] = {.lex_state = 204}, - [3235] = {.lex_state = 217}, + [3230] = {.lex_state = 217}, + [3231] = {.lex_state = 217}, + [3232] = {.lex_state = 217}, + [3233] = {.lex_state = 209}, + [3234] = {.lex_state = 217}, + [3235] = {.lex_state = 209}, [3236] = {.lex_state = 238}, - [3237] = {.lex_state = 209}, - [3238] = {.lex_state = 209}, - [3239] = {.lex_state = 220}, + [3237] = {.lex_state = 217}, + [3238] = {.lex_state = 217}, + [3239] = {.lex_state = 238}, [3240] = {.lex_state = 217}, [3241] = {.lex_state = 217}, - [3242] = {.lex_state = 209}, - [3243] = {.lex_state = 209}, - [3244] = {.lex_state = 220}, + [3242] = {.lex_state = 217}, + [3243] = {.lex_state = 217}, + [3244] = {.lex_state = 217}, [3245] = {.lex_state = 217}, [3246] = {.lex_state = 217}, - [3247] = {.lex_state = 238}, - [3248] = {.lex_state = 210}, + [3247] = {.lex_state = 217}, + [3248] = {.lex_state = 217}, [3249] = {.lex_state = 217}, [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}, + [3251] = {.lex_state = 217}, + [3252] = {.lex_state = 217}, + [3253] = {.lex_state = 217}, + [3254] = {.lex_state = 219}, + [3255] = {.lex_state = 239}, + [3256] = {.lex_state = 217}, + [3257] = {.lex_state = 217}, + [3258] = {.lex_state = 217}, [3259] = {.lex_state = 217}, [3260] = {.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 = 217}, - [3268] = {.lex_state = 206}, - [3269] = {.lex_state = 217}, - [3270] = {.lex_state = 217}, + [3263] = {.lex_state = 183}, + [3264] = {.lex_state = 217}, + [3265] = {.lex_state = 196}, + [3266] = {.lex_state = 210}, + [3267] = {.lex_state = 210}, + [3268] = {.lex_state = 210}, + [3269] = {.lex_state = 210}, + [3270] = {.lex_state = 210}, [3271] = {.lex_state = 217}, - [3272] = {.lex_state = 197}, + [3272] = {.lex_state = 217}, [3273] = {.lex_state = 217}, - [3274] = {.lex_state = 238}, - [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}, + [3274] = {.lex_state = 210}, + [3275] = {.lex_state = 210}, + [3276] = {.lex_state = 217}, + [3277] = {.lex_state = 210}, + [3278] = {.lex_state = 238}, + [3279] = {.lex_state = 217}, + [3280] = {.lex_state = 217}, + [3281] = {.lex_state = 238}, + [3282] = {.lex_state = 238}, + [3283] = {.lex_state = 194}, [3284] = {.lex_state = 217}, - [3285] = {.lex_state = 210}, - [3286] = {.lex_state = 210}, + [3285] = {.lex_state = 206}, + [3286] = {.lex_state = 243}, [3287] = {.lex_state = 210}, - [3288] = {.lex_state = 209}, - [3289] = {.lex_state = 217}, + [3288] = {.lex_state = 210}, + [3289] = {.lex_state = 210}, [3290] = {.lex_state = 210}, - [3291] = {.lex_state = 196}, - [3292] = {.lex_state = 217}, - [3293] = {.lex_state = 210}, - [3294] = {.lex_state = 197}, - [3295] = {.lex_state = 206}, - [3296] = {.lex_state = 210}, - [3297] = {.lex_state = 209}, - [3298] = {.lex_state = 209}, - [3299] = {.lex_state = 206}, - [3300] = {.lex_state = 206}, - [3301] = {.lex_state = 206}, + [3291] = {.lex_state = 206}, + [3292] = {.lex_state = 210}, + [3293] = {.lex_state = 209}, + [3294] = {.lex_state = 194}, + [3295] = {.lex_state = 217}, + [3296] = {.lex_state = 209}, + [3297] = {.lex_state = 206}, + [3298] = {.lex_state = 214}, + [3299] = {.lex_state = 217}, + [3300] = {.lex_state = 210}, + [3301] = {.lex_state = 197}, [3302] = {.lex_state = 206}, - [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}, + [3303] = {.lex_state = 239}, + [3304] = {.lex_state = 196}, + [3305] = {.lex_state = 217}, + [3306] = {.lex_state = 217}, + [3307] = {.lex_state = 209}, + [3308] = {.lex_state = 217}, + [3309] = {.lex_state = 217}, [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}, + [3311] = {.lex_state = 217}, + [3312] = {.lex_state = 217}, + [3313] = {.lex_state = 217}, + [3314] = {.lex_state = 217}, + [3315] = {.lex_state = 217}, + [3316] = {.lex_state = 217}, + [3317] = {.lex_state = 210}, + [3318] = {.lex_state = 217}, [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 = 200}, - [3329] = {.lex_state = 200}, - [3330] = {.lex_state = 200}, + [3320] = {.lex_state = 217}, + [3321] = {.lex_state = 209}, + [3322] = {.lex_state = 217}, + [3323] = {.lex_state = 217}, + [3324] = {.lex_state = 209}, + [3325] = {.lex_state = 206}, + [3326] = {.lex_state = 209}, + [3327] = {.lex_state = 209}, + [3328] = {.lex_state = 217}, + [3329] = {.lex_state = 206}, + [3330] = {.lex_state = 217}, [3331] = {.lex_state = 210}, [3332] = {.lex_state = 210}, - [3333] = {.lex_state = 200}, - [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 = 217}, - [3361] = {.lex_state = 200}, + [3333] = {.lex_state = 209}, + [3334] = {.lex_state = 197}, + [3335] = {.lex_state = 209}, + [3336] = {.lex_state = 197}, + [3337] = {.lex_state = 209}, + [3338] = {.lex_state = 210}, + [3339] = {.lex_state = 196}, + [3340] = {.lex_state = 196}, + [3341] = {.lex_state = 209}, + [3342] = {.lex_state = 197}, + [3343] = {.lex_state = 194}, + [3344] = {.lex_state = 214}, + [3345] = {.lex_state = 206}, + [3346] = {.lex_state = 209}, + [3347] = {.lex_state = 209}, + [3348] = {.lex_state = 210}, + [3349] = {.lex_state = 210}, + [3350] = {.lex_state = 210}, + [3351] = {.lex_state = 209}, + [3352] = {.lex_state = 206}, + [3353] = {.lex_state = 210}, + [3354] = {.lex_state = 217}, + [3355] = {.lex_state = 210}, + [3356] = {.lex_state = 209}, + [3357] = {.lex_state = 238}, + [3358] = {.lex_state = 239}, + [3359] = {.lex_state = 238}, + [3360] = {.lex_state = 210}, + [3361] = {.lex_state = 204}, [3362] = {.lex_state = 196}, - [3363] = {.lex_state = 194}, + [3363] = {.lex_state = 206}, [3364] = {.lex_state = 217}, - [3365] = {.lex_state = 217}, - [3366] = {.lex_state = 197}, - [3367] = {.lex_state = 217}, - [3368] = {.lex_state = 210}, - [3369] = {.lex_state = 196}, + [3365] = {.lex_state = 210}, + [3366] = {.lex_state = 204}, + [3367] = {.lex_state = 206}, + [3368] = {.lex_state = 206}, + [3369] = {.lex_state = 210}, [3370] = {.lex_state = 206}, - [3371] = {.lex_state = 238}, - [3372] = {.lex_state = 206}, + [3371] = {.lex_state = 206}, + [3372] = {.lex_state = 239}, [3373] = {.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 = 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}, + [3374] = {.lex_state = 216}, + [3375] = {.lex_state = 196}, + [3376] = {.lex_state = 206}, + [3377] = {.lex_state = 206}, + [3378] = {.lex_state = 206}, + [3379] = {.lex_state = 238}, + [3380] = {.lex_state = 238}, + [3381] = {.lex_state = 200}, + [3382] = {.lex_state = 200}, + [3383] = {.lex_state = 200}, + [3384] = {.lex_state = 200}, + [3385] = {.lex_state = 200}, + [3386] = {.lex_state = 200}, + [3387] = {.lex_state = 200}, + [3388] = {.lex_state = 200}, + [3389] = {.lex_state = 200}, + [3390] = {.lex_state = 200}, + [3391] = {.lex_state = 200}, + [3392] = {.lex_state = 200}, + [3393] = {.lex_state = 200}, + [3394] = {.lex_state = 200}, + [3395] = {.lex_state = 200}, [3396] = {.lex_state = 200}, - [3397] = {.lex_state = 209}, - [3398] = {.lex_state = 220}, - [3399] = {.lex_state = 209}, - [3400] = {.lex_state = 220}, - [3401] = {.lex_state = 209}, - [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}, + [3397] = {.lex_state = 200}, + [3398] = {.lex_state = 200}, + [3399] = {.lex_state = 200}, + [3400] = {.lex_state = 200}, + [3401] = {.lex_state = 200}, + [3402] = {.lex_state = 200}, + [3403] = {.lex_state = 200}, + [3404] = {.lex_state = 200}, + [3405] = {.lex_state = 200}, + [3406] = {.lex_state = 206}, + [3407] = {.lex_state = 209}, + [3408] = {.lex_state = 210}, [3409] = {.lex_state = 209}, - [3410] = {.lex_state = 242}, - [3411] = {.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}, + [3410] = {.lex_state = 209}, + [3411] = {.lex_state = 204}, + [3412] = {.lex_state = 209}, + [3413] = {.lex_state = 209}, + [3414] = {.lex_state = 220}, + [3415] = {.lex_state = 209}, + [3416] = {.lex_state = 242}, + [3417] = {.lex_state = 183}, + [3418] = {.lex_state = 242}, + [3419] = {.lex_state = 209}, [3420] = {.lex_state = 209}, - [3421] = {.lex_state = 209}, - [3422] = {.lex_state = 209}, + [3421] = {.lex_state = 193}, + [3422] = {.lex_state = 204}, [3423] = {.lex_state = 209}, - [3424] = {.lex_state = 209}, - [3425] = {.lex_state = 209}, - [3426] = {.lex_state = 183}, - [3427] = {.lex_state = 209}, - [3428] = {.lex_state = 209}, - [3429] = {.lex_state = 209}, + [3424] = {.lex_state = 242}, + [3425] = {.lex_state = 204}, + [3426] = {.lex_state = 238}, + [3427] = {.lex_state = 242}, + [3428] = {.lex_state = 238}, + [3429] = {.lex_state = 217}, [3430] = {.lex_state = 209}, [3431] = {.lex_state = 209}, - [3432] = {.lex_state = 209}, + [3432] = {.lex_state = 194}, [3433] = {.lex_state = 209}, [3434] = {.lex_state = 209}, [3435] = {.lex_state = 209}, - [3436] = {.lex_state = 242}, - [3437] = {.lex_state = 242}, + [3436] = {.lex_state = 217}, + [3437] = {.lex_state = 209}, [3438] = {.lex_state = 209}, [3439] = {.lex_state = 209}, [3440] = {.lex_state = 209}, - [3441] = {.lex_state = 209}, + [3441] = {.lex_state = 220}, [3442] = {.lex_state = 209}, [3443] = {.lex_state = 209}, - [3444] = {.lex_state = 220}, + [3444] = {.lex_state = 209}, [3445] = {.lex_state = 209}, [3446] = {.lex_state = 209}, [3447] = {.lex_state = 209}, [3448] = {.lex_state = 209}, [3449] = {.lex_state = 209}, [3450] = {.lex_state = 209}, - [3451] = {.lex_state = 224}, - [3452] = {.lex_state = 220}, - [3453] = {.lex_state = 197}, - [3454] = {.lex_state = 220}, + [3451] = {.lex_state = 209}, + [3452] = {.lex_state = 242}, + [3453] = {.lex_state = 242}, + [3454] = {.lex_state = 209}, [3455] = {.lex_state = 209}, [3456] = {.lex_state = 209}, [3457] = {.lex_state = 209}, @@ -25689,364 +25717,364 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3459] = {.lex_state = 209}, [3460] = {.lex_state = 209}, [3461] = {.lex_state = 209}, - [3462] = {.lex_state = 209}, + [3462] = {.lex_state = 220}, [3463] = {.lex_state = 209}, - [3464] = {.lex_state = 217}, + [3464] = {.lex_state = 238}, [3465] = {.lex_state = 209}, [3466] = {.lex_state = 209}, [3467] = {.lex_state = 209}, - [3468] = {.lex_state = 209}, + [3468] = {.lex_state = 222}, [3469] = {.lex_state = 209}, [3470] = {.lex_state = 209}, [3471] = {.lex_state = 209}, - [3472] = {.lex_state = 204}, - [3473] = {.lex_state = 209}, - [3474] = {.lex_state = 209}, + [3472] = {.lex_state = 209}, + [3473] = {.lex_state = 220}, + [3474] = {.lex_state = 197}, [3475] = {.lex_state = 209}, [3476] = {.lex_state = 209}, [3477] = {.lex_state = 209}, - [3478] = {.lex_state = 204}, - [3479] = {.lex_state = 204}, - [3480] = {.lex_state = 204}, - [3481] = {.lex_state = 220}, + [3478] = {.lex_state = 217}, + [3479] = {.lex_state = 209}, + [3480] = {.lex_state = 209}, + [3481] = {.lex_state = 209}, [3482] = {.lex_state = 209}, - [3483] = {.lex_state = 204}, - [3484] = {.lex_state = 204}, - [3485] = {.lex_state = 209}, + [3483] = {.lex_state = 209}, + [3484] = {.lex_state = 209}, + [3485] = {.lex_state = 183}, [3486] = {.lex_state = 209}, - [3487] = {.lex_state = 209}, - [3488] = {.lex_state = 209}, - [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 = 204}, - [3497] = {.lex_state = 220}, + [3487] = {.lex_state = 220}, + [3488] = {.lex_state = 204}, + [3489] = {.lex_state = 224}, + [3490] = {.lex_state = 209}, + [3491] = {.lex_state = 209}, + [3492] = {.lex_state = 220}, + [3493] = {.lex_state = 209}, + [3494] = {.lex_state = 217}, + [3495] = {.lex_state = 220}, + [3496] = {.lex_state = 209}, + [3497] = {.lex_state = 209}, [3498] = {.lex_state = 220}, - [3499] = {.lex_state = 204}, - [3500] = {.lex_state = 220}, - [3501] = {.lex_state = 209}, + [3499] = {.lex_state = 209}, + [3500] = {.lex_state = 209}, + [3501] = {.lex_state = 220}, [3502] = {.lex_state = 209}, [3503] = {.lex_state = 209}, - [3504] = {.lex_state = 209}, - [3505] = {.lex_state = 209}, + [3504] = {.lex_state = 220}, + [3505] = {.lex_state = 220}, [3506] = {.lex_state = 220}, [3507] = {.lex_state = 209}, [3508] = {.lex_state = 209}, [3509] = {.lex_state = 209}, - [3510] = {.lex_state = 194}, + [3510] = {.lex_state = 209}, [3511] = {.lex_state = 209}, - [3512] = {.lex_state = 204}, - [3513] = {.lex_state = 204}, + [3512] = {.lex_state = 220}, + [3513] = {.lex_state = 209}, [3514] = {.lex_state = 209}, - [3515] = {.lex_state = 242}, + [3515] = {.lex_state = 209}, [3516] = {.lex_state = 209}, [3517] = {.lex_state = 209}, - [3518] = {.lex_state = 217}, + [3518] = {.lex_state = 209}, [3519] = {.lex_state = 209}, [3520] = {.lex_state = 209}, - [3521] = {.lex_state = 238}, + [3521] = {.lex_state = 209}, [3522] = {.lex_state = 209}, [3523] = {.lex_state = 209}, - [3524] = {.lex_state = 209}, + [3524] = {.lex_state = 220}, [3525] = {.lex_state = 209}, - [3526] = {.lex_state = 209}, - [3527] = {.lex_state = 209}, - [3528] = {.lex_state = 209}, - [3529] = {.lex_state = 209}, + [3526] = {.lex_state = 204}, + [3527] = {.lex_state = 204}, + [3528] = {.lex_state = 242}, + [3529] = {.lex_state = 183}, [3530] = {.lex_state = 209}, [3531] = {.lex_state = 209}, [3532] = {.lex_state = 209}, [3533] = {.lex_state = 209}, [3534] = {.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}, + [3535] = {.lex_state = 209}, + [3536] = {.lex_state = 209}, + [3537] = {.lex_state = 204}, + [3538] = {.lex_state = 209}, + [3539] = {.lex_state = 209}, + [3540] = {.lex_state = 204}, + [3541] = {.lex_state = 209}, [3542] = {.lex_state = 209}, - [3543] = {.lex_state = 193}, - [3544] = {.lex_state = 209}, - [3545] = {.lex_state = 242}, - [3546] = {.lex_state = 238}, - [3547] = {.lex_state = 238}, + [3543] = {.lex_state = 209}, + [3544] = {.lex_state = 242}, + [3545] = {.lex_state = 209}, + [3546] = {.lex_state = 204}, + [3547] = {.lex_state = 220}, [3548] = {.lex_state = 209}, - [3549] = {.lex_state = 222}, + [3549] = {.lex_state = 193}, [3550] = {.lex_state = 209}, - [3551] = {.lex_state = 242}, + [3551] = {.lex_state = 222}, [3552] = {.lex_state = 209}, [3553] = {.lex_state = 209}, [3554] = {.lex_state = 209}, - [3555] = {.lex_state = 209}, + [3555] = {.lex_state = 183}, [3556] = {.lex_state = 209}, [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 = 209}, + [3559] = {.lex_state = 242}, + [3560] = {.lex_state = 209}, + [3561] = {.lex_state = 238}, + [3562] = {.lex_state = 238}, + [3563] = {.lex_state = 204}, + [3564] = {.lex_state = 204}, [3565] = {.lex_state = 209}, [3566] = {.lex_state = 209}, [3567] = {.lex_state = 209}, [3568] = {.lex_state = 209}, - [3569] = {.lex_state = 193}, - [3570] = {.lex_state = 209}, - [3571] = {.lex_state = 209}, - [3572] = {.lex_state = 209}, - [3573] = {.lex_state = 209}, + [3569] = {.lex_state = 204}, + [3570] = {.lex_state = 183}, + [3571] = {.lex_state = 204}, + [3572] = {.lex_state = 204}, + [3573] = {.lex_state = 204}, [3574] = {.lex_state = 209}, [3575] = {.lex_state = 209}, - [3576] = {.lex_state = 209}, - [3577] = {.lex_state = 209}, + [3576] = {.lex_state = 204}, + [3577] = {.lex_state = 220}, [3578] = {.lex_state = 209}, - [3579] = {.lex_state = 209}, + [3579] = {.lex_state = 193}, [3580] = {.lex_state = 209}, - [3581] = {.lex_state = 217}, + [3581] = {.lex_state = 209}, [3582] = {.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 = 217}, - [3589] = {.lex_state = 217}, - [3590] = {.lex_state = 217}, - [3591] = {.lex_state = 217}, - [3592] = {.lex_state = 217}, + [3583] = {.lex_state = 209}, + [3584] = {.lex_state = 209}, + [3585] = {.lex_state = 209}, + [3586] = {.lex_state = 209}, + [3587] = {.lex_state = 209}, + [3588] = {.lex_state = 209}, + [3589] = {.lex_state = 209}, + [3590] = {.lex_state = 209}, + [3591] = {.lex_state = 209}, + [3592] = {.lex_state = 242}, [3593] = {.lex_state = 209}, - [3594] = {.lex_state = 217}, - [3595] = {.lex_state = 217}, - [3596] = {.lex_state = 217}, - [3597] = {.lex_state = 200}, + [3594] = {.lex_state = 204}, + [3595] = {.lex_state = 209}, + [3596] = {.lex_state = 204}, + [3597] = {.lex_state = 217}, [3598] = {.lex_state = 217}, - [3599] = {.lex_state = 217}, + [3599] = {.lex_state = 239}, [3600] = {.lex_state = 217}, - [3601] = {.lex_state = 217}, + [3601] = {.lex_state = 200}, [3602] = {.lex_state = 217}, - [3603] = {.lex_state = 217}, + [3603] = {.lex_state = 204}, [3604] = {.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 = 209}, + [3605] = {.lex_state = 217}, + [3606] = {.lex_state = 183}, + [3607] = {.lex_state = 217}, + [3608] = {.lex_state = 209}, + [3609] = {.lex_state = 200}, + [3610] = {.lex_state = 200}, + [3611] = {.lex_state = 217}, + [3612] = {.lex_state = 183}, + [3613] = {.lex_state = 217}, [3614] = {.lex_state = 217}, - [3615] = {.lex_state = 217}, - [3616] = {.lex_state = 217}, - [3617] = {.lex_state = 209}, - [3618] = {.lex_state = 217}, - [3619] = {.lex_state = 209}, + [3615] = {.lex_state = 209}, + [3616] = {.lex_state = 209}, + [3617] = {.lex_state = 217}, + [3618] = {.lex_state = 197}, + [3619] = {.lex_state = 204}, [3620] = {.lex_state = 217}, [3621] = {.lex_state = 217}, - [3622] = {.lex_state = 217}, - [3623] = {.lex_state = 209}, - [3624] = {.lex_state = 217}, - [3625] = {.lex_state = 197}, + [3622] = {.lex_state = 183}, + [3623] = {.lex_state = 194}, + [3624] = {.lex_state = 209}, + [3625] = {.lex_state = 217}, [3626] = {.lex_state = 217}, - [3627] = {.lex_state = 217}, - [3628] = {.lex_state = 217}, + [3627] = {.lex_state = 194}, + [3628] = {.lex_state = 209}, [3629] = {.lex_state = 217}, - [3630] = {.lex_state = 197}, + [3630] = {.lex_state = 217}, [3631] = {.lex_state = 217}, - [3632] = {.lex_state = 217}, + [3632] = {.lex_state = 183}, [3633] = {.lex_state = 217}, [3634] = {.lex_state = 217}, [3635] = {.lex_state = 209}, [3636] = {.lex_state = 217}, - [3637] = {.lex_state = 197}, - [3638] = {.lex_state = 204}, - [3639] = {.lex_state = 209}, - [3640] = {.lex_state = 209}, + [3637] = {.lex_state = 209}, + [3638] = {.lex_state = 197}, + [3639] = {.lex_state = 217}, + [3640] = {.lex_state = 217}, [3641] = {.lex_state = 209}, - [3642] = {.lex_state = 209}, - [3643] = {.lex_state = 204}, + [3642] = {.lex_state = 217}, + [3643] = {.lex_state = 200}, [3644] = {.lex_state = 209}, - [3645] = {.lex_state = 239}, - [3646] = {.lex_state = 209}, + [3645] = {.lex_state = 217}, + [3646] = {.lex_state = 217}, [3647] = {.lex_state = 217}, - [3648] = {.lex_state = 204}, - [3649] = {.lex_state = 217}, - [3650] = {.lex_state = 217}, + [3648] = {.lex_state = 217}, + [3649] = {.lex_state = 209}, + [3650] = {.lex_state = 209}, [3651] = {.lex_state = 217}, [3652] = {.lex_state = 217}, - [3653] = {.lex_state = 209}, + [3653] = {.lex_state = 217}, [3654] = {.lex_state = 217}, - [3655] = {.lex_state = 217}, - [3656] = {.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}, + [3655] = {.lex_state = 204}, + [3656] = {.lex_state = 209}, + [3657] = {.lex_state = 209}, + [3658] = {.lex_state = 209}, + [3659] = {.lex_state = 217}, + [3660] = {.lex_state = 200}, + [3661] = {.lex_state = 217}, + [3662] = {.lex_state = 217}, + [3663] = {.lex_state = 206}, + [3664] = {.lex_state = 217}, + [3665] = {.lex_state = 217}, [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}, + [3667] = {.lex_state = 217}, + [3668] = {.lex_state = 217}, + [3669] = {.lex_state = 196}, + [3670] = {.lex_state = 217}, + [3671] = {.lex_state = 209}, + [3672] = {.lex_state = 206}, + [3673] = {.lex_state = 209}, + [3674] = {.lex_state = 217}, + [3675] = {.lex_state = 238}, + [3676] = {.lex_state = 217}, + [3677] = {.lex_state = 217}, + [3678] = {.lex_state = 217}, + [3679] = {.lex_state = 217}, [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}, + [3681] = {.lex_state = 217}, + [3682] = {.lex_state = 238}, + [3683] = {.lex_state = 209}, + [3684] = {.lex_state = 238}, + [3685] = {.lex_state = 238}, + [3686] = {.lex_state = 238}, [3687] = {.lex_state = 217}, - [3688] = {.lex_state = 217}, - [3689] = {.lex_state = 217}, - [3690] = {.lex_state = 217}, - [3691] = {.lex_state = 217}, - [3692] = {.lex_state = 183}, + [3688] = {.lex_state = 238}, + [3689] = {.lex_state = 238}, + [3690] = {.lex_state = 238}, + [3691] = {.lex_state = 238}, + [3692] = {.lex_state = 238}, [3693] = {.lex_state = 217}, - [3694] = {.lex_state = 183}, - [3695] = {.lex_state = 217}, - [3696] = {.lex_state = 217}, + [3694] = {.lex_state = 209}, + [3695] = {.lex_state = 197}, + [3696] = {.lex_state = 209}, [3697] = {.lex_state = 217}, - [3698] = {.lex_state = 209}, - [3699] = {.lex_state = 204}, - [3700] = {.lex_state = 197}, + [3698] = {.lex_state = 217}, + [3699] = {.lex_state = 200}, + [3700] = {.lex_state = 217}, [3701] = {.lex_state = 217}, - [3702] = {.lex_state = 209}, + [3702] = {.lex_state = 217}, [3703] = {.lex_state = 217}, [3704] = {.lex_state = 217}, [3705] = {.lex_state = 217}, - [3706] = {.lex_state = 209}, - [3707] = {.lex_state = 209}, - [3708] = {.lex_state = 217}, + [3706] = {.lex_state = 206}, + [3707] = {.lex_state = 200}, + [3708] = {.lex_state = 204}, [3709] = {.lex_state = 217}, - [3710] = {.lex_state = 209}, + [3710] = {.lex_state = 217}, [3711] = {.lex_state = 217}, - [3712] = {.lex_state = 206}, + [3712] = {.lex_state = 217}, [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}, + [3717] = {.lex_state = 217}, + [3718] = {.lex_state = 217}, + [3719] = {.lex_state = 209}, [3720] = {.lex_state = 217}, - [3721] = {.lex_state = 217}, + [3721] = {.lex_state = 204}, [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}, + [3724] = {.lex_state = 217}, + [3725] = {.lex_state = 197}, + [3726] = {.lex_state = 238}, + [3727] = {.lex_state = 204}, + [3728] = {.lex_state = 204}, + [3729] = {.lex_state = 209}, + [3730] = {.lex_state = 217}, [3731] = {.lex_state = 217}, - [3732] = {.lex_state = 238}, - [3733] = {.lex_state = 217}, + [3732] = {.lex_state = 209}, + [3733] = {.lex_state = 200}, [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 = 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 = 204}, - [3753] = {.lex_state = 239}, - [3754] = {.lex_state = 209}, - [3755] = {.lex_state = 239}, - [3756] = {.lex_state = 204}, - [3757] = {.lex_state = 239}, - [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 = 239}, - [3765] = {.lex_state = 239}, - [3766] = {.lex_state = 239}, - [3767] = {.lex_state = 239}, + [3739] = {.lex_state = 209}, + [3740] = {.lex_state = 217}, + [3741] = {.lex_state = 217}, + [3742] = {.lex_state = 197}, + [3743] = {.lex_state = 217}, + [3744] = {.lex_state = 217}, + [3745] = {.lex_state = 217}, + [3746] = {.lex_state = 204}, + [3747] = {.lex_state = 217}, + [3748] = {.lex_state = 217}, + [3749] = {.lex_state = 204}, + [3750] = {.lex_state = 238}, + [3751] = {.lex_state = 239}, + [3752] = {.lex_state = 206}, + [3753] = {.lex_state = 209}, + [3754] = {.lex_state = 204}, + [3755] = {.lex_state = 206}, + [3756] = {.lex_state = 239}, + [3757] = {.lex_state = 204}, + [3758] = {.lex_state = 204}, + [3759] = {.lex_state = 193}, + [3760] = {.lex_state = 239}, + [3761] = {.lex_state = 183}, + [3762] = {.lex_state = 183}, + [3763] = {.lex_state = 183}, + [3764] = {.lex_state = 194}, + [3765] = {.lex_state = 183}, + [3766] = {.lex_state = 204}, + [3767] = {.lex_state = 204}, [3768] = {.lex_state = 239}, [3769] = {.lex_state = 239}, [3770] = {.lex_state = 239}, - [3771] = {.lex_state = 239}, - [3772] = {.lex_state = 239}, - [3773] = {.lex_state = 239}, + [3771] = {.lex_state = 197}, + [3772] = {.lex_state = 206}, + [3773] = {.lex_state = 214}, [3774] = {.lex_state = 239}, - [3775] = {.lex_state = 214}, - [3776] = {.lex_state = 239}, - [3777] = {.lex_state = 243}, - [3778] = {.lex_state = 239}, - [3779] = {.lex_state = 204}, - [3780] = {.lex_state = 239}, + [3775] = {.lex_state = 239}, + [3776] = {.lex_state = 243}, + [3777] = {.lex_state = 204}, + [3778] = {.lex_state = 238}, + [3779] = {.lex_state = 238}, + [3780] = {.lex_state = 214}, [3781] = {.lex_state = 239}, - [3782] = {.lex_state = 239}, + [3782] = {.lex_state = 206}, [3783] = {.lex_state = 239}, [3784] = {.lex_state = 239}, [3785] = {.lex_state = 239}, [3786] = {.lex_state = 239}, [3787] = {.lex_state = 239}, - [3788] = {.lex_state = 194}, - [3789] = {.lex_state = 239}, - [3790] = {.lex_state = 194}, + [3788] = {.lex_state = 239}, + [3789] = {.lex_state = 243}, + [3790] = {.lex_state = 239}, [3791] = {.lex_state = 239}, - [3792] = {.lex_state = 183}, - [3793] = {.lex_state = 183}, + [3792] = {.lex_state = 239}, + [3793] = {.lex_state = 239}, [3794] = {.lex_state = 239}, - [3795] = {.lex_state = 197}, - [3796] = {.lex_state = 239}, - [3797] = {.lex_state = 239}, + [3795] = {.lex_state = 239}, + [3796] = {.lex_state = 194}, + [3797] = {.lex_state = 194}, [3798] = {.lex_state = 239}, [3799] = {.lex_state = 239}, [3800] = {.lex_state = 239}, - [3801] = {.lex_state = 183}, - [3802] = {.lex_state = 239}, - [3803] = {.lex_state = 194}, - [3804] = {.lex_state = 183}, + [3801] = {.lex_state = 239}, + [3802] = {.lex_state = 204}, + [3803] = {.lex_state = 239}, + [3804] = {.lex_state = 239}, [3805] = {.lex_state = 239}, - [3806] = {.lex_state = 238}, - [3807] = {.lex_state = 204}, - [3808] = {.lex_state = 238}, + [3806] = {.lex_state = 239}, + [3807] = {.lex_state = 239}, + [3808] = {.lex_state = 239}, [3809] = {.lex_state = 239}, - [3810] = {.lex_state = 214}, + [3810] = {.lex_state = 239}, [3811] = {.lex_state = 239}, - [3812] = {.lex_state = 193}, + [3812] = {.lex_state = 239}, [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}, + [3819] = {.lex_state = 204}, [3820] = {.lex_state = 239}, [3821] = {.lex_state = 239}, [3822] = {.lex_state = 239}, @@ -26059,9 +26087,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3829] = {.lex_state = 239}, [3830] = {.lex_state = 239}, [3831] = {.lex_state = 239}, - [3832] = {.lex_state = 204}, + [3832] = {.lex_state = 239}, [3833] = {.lex_state = 239}, - [3834] = {.lex_state = 206}, + [3834] = {.lex_state = 239}, [3835] = {.lex_state = 239}, [3836] = {.lex_state = 239}, [3837] = {.lex_state = 239}, @@ -26073,167 +26101,167 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3843] = {.lex_state = 239}, [3844] = {.lex_state = 206}, [3845] = {.lex_state = 239}, - [3846] = {.lex_state = 209}, - [3847] = {.lex_state = 209}, - [3848] = {.lex_state = 238}, - [3849] = {.lex_state = 209}, - [3850] = {.lex_state = 209}, - [3851] = {.lex_state = 238}, - [3852] = {.lex_state = 209}, - [3853] = {.lex_state = 204}, - [3854] = {.lex_state = 209}, - [3855] = {.lex_state = 206}, - [3856] = {.lex_state = 206}, - [3857] = {.lex_state = 209}, + [3846] = {.lex_state = 239}, + [3847] = {.lex_state = 239}, + [3848] = {.lex_state = 204}, + [3849] = {.lex_state = 206}, + [3850] = {.lex_state = 239}, + [3851] = {.lex_state = 239}, + [3852] = {.lex_state = 239}, + [3853] = {.lex_state = 243}, + [3854] = {.lex_state = 239}, + [3855] = {.lex_state = 239}, + [3856] = {.lex_state = 239}, + [3857] = {.lex_state = 239}, [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}, + [3860] = {.lex_state = 204}, + [3861] = {.lex_state = 209}, + [3862] = {.lex_state = 209}, + [3863] = {.lex_state = 204}, + [3864] = {.lex_state = 209}, + [3865] = {.lex_state = 204}, [3866] = {.lex_state = 209}, - [3867] = {.lex_state = 239}, - [3868] = {.lex_state = 206}, - [3869] = {.lex_state = 209}, - [3870] = {.lex_state = 206}, - [3871] = {.lex_state = 209}, - [3872] = {.lex_state = 204}, + [3867] = {.lex_state = 209}, + [3868] = {.lex_state = 209}, + [3869] = {.lex_state = 239}, + [3870] = {.lex_state = 241}, + [3871] = {.lex_state = 239}, + [3872] = {.lex_state = 209}, [3873] = {.lex_state = 209}, [3874] = {.lex_state = 209}, [3875] = {.lex_state = 209}, - [3876] = {.lex_state = 239}, + [3876] = {.lex_state = 209}, [3877] = {.lex_state = 209}, - [3878] = {.lex_state = 209}, - [3879] = {.lex_state = 209}, + [3878] = {.lex_state = 206}, + [3879] = {.lex_state = 206}, [3880] = {.lex_state = 209}, [3881] = {.lex_state = 239}, [3882] = {.lex_state = 239}, [3883] = {.lex_state = 206}, - [3884] = {.lex_state = 241}, - [3885] = {.lex_state = 241}, - [3886] = {.lex_state = 209}, + [3884] = {.lex_state = 193}, + [3885] = {.lex_state = 206}, + [3886] = {.lex_state = 206}, [3887] = {.lex_state = 206}, [3888] = {.lex_state = 209}, - [3889] = {.lex_state = 239}, - [3890] = {.lex_state = 209}, - [3891] = {.lex_state = 239}, + [3889] = {.lex_state = 209}, + [3890] = {.lex_state = 239}, + [3891] = {.lex_state = 209}, [3892] = {.lex_state = 193}, [3893] = {.lex_state = 209}, - [3894] = {.lex_state = 193}, - [3895] = {.lex_state = 204}, + [3894] = {.lex_state = 206}, + [3895] = {.lex_state = 206}, [3896] = {.lex_state = 239}, - [3897] = {.lex_state = 239}, - [3898] = {.lex_state = 206}, - [3899] = {.lex_state = 206}, - [3900] = {.lex_state = 239}, - [3901] = {.lex_state = 239}, - [3902] = {.lex_state = 242}, - [3903] = {.lex_state = 209}, + [3897] = {.lex_state = 209}, + [3898] = {.lex_state = 239}, + [3899] = {.lex_state = 193}, + [3900] = {.lex_state = 209}, + [3901] = {.lex_state = 209}, + [3902] = {.lex_state = 209}, + [3903] = {.lex_state = 193}, [3904] = {.lex_state = 209}, [3905] = {.lex_state = 239}, - [3906] = {.lex_state = 209}, + [3906] = {.lex_state = 206}, [3907] = {.lex_state = 209}, - [3908] = {.lex_state = 239}, + [3908] = {.lex_state = 209}, [3909] = {.lex_state = 209}, [3910] = {.lex_state = 209}, - [3911] = {.lex_state = 209}, + [3911] = {.lex_state = 206}, [3912] = {.lex_state = 209}, [3913] = {.lex_state = 209}, - [3914] = {.lex_state = 204}, + [3914] = {.lex_state = 209}, [3915] = {.lex_state = 209}, - [3916] = {.lex_state = 209}, - [3917] = {.lex_state = 209}, + [3916] = {.lex_state = 239}, + [3917] = {.lex_state = 206}, [3918] = {.lex_state = 206}, - [3919] = {.lex_state = 209}, - [3920] = {.lex_state = 206}, - [3921] = {.lex_state = 209}, - [3922] = {.lex_state = 206}, + [3919] = {.lex_state = 206}, + [3920] = {.lex_state = 239}, + [3921] = {.lex_state = 206}, + [3922] = {.lex_state = 242}, [3923] = {.lex_state = 239}, - [3924] = {.lex_state = 209}, - [3925] = {.lex_state = 206}, - [3926] = {.lex_state = 206}, - [3927] = {.lex_state = 206}, - [3928] = {.lex_state = 239}, + [3924] = {.lex_state = 239}, + [3925] = {.lex_state = 242}, + [3926] = {.lex_state = 209}, + [3927] = {.lex_state = 241}, + [3928] = {.lex_state = 241}, [3929] = {.lex_state = 206}, - [3930] = {.lex_state = 206}, - [3931] = {.lex_state = 239}, + [3930] = {.lex_state = 239}, + [3931] = {.lex_state = 206}, [3932] = {.lex_state = 209}, - [3933] = {.lex_state = 209}, - [3934] = {.lex_state = 206}, + [3933] = {.lex_state = 239}, + [3934] = {.lex_state = 239}, [3935] = {.lex_state = 209}, - [3936] = {.lex_state = 209}, - [3937] = {.lex_state = 209}, - [3938] = {.lex_state = 209}, - [3939] = {.lex_state = 206}, - [3940] = {.lex_state = 242}, + [3936] = {.lex_state = 239}, + [3937] = {.lex_state = 206}, + [3938] = {.lex_state = 206}, + [3939] = {.lex_state = 239}, + [3940] = {.lex_state = 204}, [3941] = {.lex_state = 206}, - [3942] = {.lex_state = 209}, - [3943] = {.lex_state = 206}, + [3942] = {.lex_state = 239}, + [3943] = {.lex_state = 239}, [3944] = {.lex_state = 206}, [3945] = {.lex_state = 206}, - [3946] = {.lex_state = 228}, - [3947] = {.lex_state = 206}, - [3948] = {.lex_state = 209}, - [3949] = {.lex_state = 209}, + [3946] = {.lex_state = 209}, + [3947] = {.lex_state = 209}, + [3948] = {.lex_state = 206}, + [3949] = {.lex_state = 206}, [3950] = {.lex_state = 209}, [3951] = {.lex_state = 209}, - [3952] = {.lex_state = 206}, - [3953] = {.lex_state = 209}, - [3954] = {.lex_state = 239}, - [3955] = {.lex_state = 239}, + [3952] = {.lex_state = 209}, + [3953] = {.lex_state = 206}, + [3954] = {.lex_state = 206}, + [3955] = {.lex_state = 206}, [3956] = {.lex_state = 209}, - [3957] = {.lex_state = 206}, - [3958] = {.lex_state = 206}, + [3957] = {.lex_state = 209}, + [3958] = {.lex_state = 209}, [3959] = {.lex_state = 209}, - [3960] = {.lex_state = 239}, + [3960] = {.lex_state = 209}, [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 = 243}, - [3977] = {.lex_state = 204}, - [3978] = {.lex_state = 204}, - [3979] = {.lex_state = 194}, - [3980] = {.lex_state = 204}, - [3981] = {.lex_state = 204}, - [3982] = {.lex_state = 204}, - [3983] = {.lex_state = 194}, - [3984] = {.lex_state = 193}, - [3985] = {.lex_state = 204}, - [3986] = {.lex_state = 204}, + [3962] = {.lex_state = 209}, + [3963] = {.lex_state = 209}, + [3964] = {.lex_state = 209}, + [3965] = {.lex_state = 209}, + [3966] = {.lex_state = 209}, + [3967] = {.lex_state = 206}, + [3968] = {.lex_state = 209}, + [3969] = {.lex_state = 209}, + [3970] = {.lex_state = 238}, + [3971] = {.lex_state = 206}, + [3972] = {.lex_state = 238}, + [3973] = {.lex_state = 206}, + [3974] = {.lex_state = 209}, + [3975] = {.lex_state = 239}, + [3976] = {.lex_state = 206}, + [3977] = {.lex_state = 209}, + [3978] = {.lex_state = 209}, + [3979] = {.lex_state = 239}, + [3980] = {.lex_state = 209}, + [3981] = {.lex_state = 228}, + [3982] = {.lex_state = 206}, + [3983] = {.lex_state = 204}, + [3984] = {.lex_state = 204}, + [3985] = {.lex_state = 193}, + [3986] = {.lex_state = 243}, [3987] = {.lex_state = 204}, [3988] = {.lex_state = 204}, [3989] = {.lex_state = 204}, - [3990] = {.lex_state = 204}, + [3990] = {.lex_state = 193}, [3991] = {.lex_state = 204}, [3992] = {.lex_state = 204}, [3993] = {.lex_state = 204}, [3994] = {.lex_state = 204}, - [3995] = {.lex_state = 241}, + [3995] = {.lex_state = 204}, [3996] = {.lex_state = 204}, [3997] = {.lex_state = 204}, - [3998] = {.lex_state = 238}, + [3998] = {.lex_state = 193}, [3999] = {.lex_state = 204}, - [4000] = {.lex_state = 204}, + [4000] = {.lex_state = 241}, [4001] = {.lex_state = 204}, - [4002] = {.lex_state = 193}, - [4003] = {.lex_state = 242}, - [4004] = {.lex_state = 193}, + [4002] = {.lex_state = 204}, + [4003] = {.lex_state = 204}, + [4004] = {.lex_state = 204}, [4005] = {.lex_state = 204}, - [4006] = {.lex_state = 204}, + [4006] = {.lex_state = 241}, [4007] = {.lex_state = 204}, [4008] = {.lex_state = 204}, [4009] = {.lex_state = 204}, @@ -26243,980 +26271,980 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4013] = {.lex_state = 204}, [4014] = {.lex_state = 204}, [4015] = {.lex_state = 204}, - [4016] = {.lex_state = 193}, - [4017] = {.lex_state = 241}, + [4016] = {.lex_state = 204}, + [4017] = {.lex_state = 204}, [4018] = {.lex_state = 204}, [4019] = {.lex_state = 204}, - [4020] = {.lex_state = 204}, + [4020] = {.lex_state = 243}, [4021] = {.lex_state = 204}, [4022] = {.lex_state = 204}, [4023] = {.lex_state = 204}, - [4024] = {.lex_state = 243}, + [4024] = {.lex_state = 204}, [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}, + [4027] = {.lex_state = 242}, + [4028] = {.lex_state = 204}, + [4029] = {.lex_state = 204}, + [4030] = {.lex_state = 193}, + [4031] = {.lex_state = 204}, + [4032] = {.lex_state = 194}, + [4033] = {.lex_state = 204}, [4034] = {.lex_state = 204}, - [4035] = {.lex_state = 204}, - [4036] = {.lex_state = 243}, - [4037] = {.lex_state = 204}, + [4035] = {.lex_state = 194}, + [4036] = {.lex_state = 204}, + [4037] = {.lex_state = 238}, [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}, + [4040] = {.lex_state = 204}, + [4041] = {.lex_state = 243}, + [4042] = {.lex_state = 206}, + [4043] = {.lex_state = 243}, + [4044] = {.lex_state = 204}, [4045] = {.lex_state = 204}, - [4046] = {.lex_state = 204}, - [4047] = {.lex_state = 204}, + [4046] = {.lex_state = 206}, + [4047] = {.lex_state = 228}, [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}, + [4049] = {.lex_state = 241}, + [4050] = {.lex_state = 228}, + [4051] = {.lex_state = 204}, + [4052] = {.lex_state = 242}, + [4053] = {.lex_state = 242}, + [4054] = {.lex_state = 241}, + [4055] = {.lex_state = 228}, + [4056] = {.lex_state = 204}, + [4057] = {.lex_state = 242}, [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 = 239}, - [4068] = {.lex_state = 239}, - [4069] = {.lex_state = 241}, - [4070] = {.lex_state = 239}, - [4071] = {.lex_state = 239}, - [4072] = {.lex_state = 239}, - [4073] = {.lex_state = 239}, - [4074] = {.lex_state = 204}, + [4060] = {.lex_state = 242}, + [4061] = {.lex_state = 238}, + [4062] = {.lex_state = 238}, + [4063] = {.lex_state = 204}, + [4064] = {.lex_state = 204}, + [4065] = {.lex_state = 206}, + [4066] = {.lex_state = 204}, + [4067] = {.lex_state = 206}, + [4068] = {.lex_state = 204}, + [4069] = {.lex_state = 238}, + [4070] = {.lex_state = 241}, + [4071] = {.lex_state = 194}, + [4072] = {.lex_state = 204}, + [4073] = {.lex_state = 241}, + [4074] = {.lex_state = 238}, [4075] = {.lex_state = 239}, - [4076] = {.lex_state = 239}, - [4077] = {.lex_state = 238}, - [4078] = {.lex_state = 238}, - [4079] = {.lex_state = 194}, + [4076] = {.lex_state = 194}, + [4077] = {.lex_state = 239}, + [4078] = {.lex_state = 204}, + [4079] = {.lex_state = 239}, [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}, + [4082] = {.lex_state = 238}, + [4083] = {.lex_state = 239}, + [4084] = {.lex_state = 239}, + [4085] = {.lex_state = 194}, + [4086] = {.lex_state = 239}, [4087] = {.lex_state = 239}, - [4088] = {.lex_state = 239}, - [4089] = {.lex_state = 204}, + [4088] = {.lex_state = 194}, + [4089] = {.lex_state = 241}, [4090] = {.lex_state = 239}, - [4091] = {.lex_state = 238}, + [4091] = {.lex_state = 239}, [4092] = {.lex_state = 239}, [4093] = {.lex_state = 239}, - [4094] = {.lex_state = 194}, - [4095] = {.lex_state = 239}, + [4094] = {.lex_state = 239}, + [4095] = {.lex_state = 238}, [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}, + [4097] = {.lex_state = 238}, + [4098] = {.lex_state = 241}, + [4099] = {.lex_state = 204}, + [4100] = {.lex_state = 239}, + [4101] = {.lex_state = 239}, + [4102] = {.lex_state = 239}, [4103] = {.lex_state = 239}, - [4104] = {.lex_state = 239}, + [4104] = {.lex_state = 241}, [4105] = {.lex_state = 239}, - [4106] = {.lex_state = 238}, - [4107] = {.lex_state = 241}, - [4108] = {.lex_state = 204}, - [4109] = {.lex_state = 204}, - [4110] = {.lex_state = 204}, - [4111] = {.lex_state = 206}, - [4112] = {.lex_state = 204}, - [4113] = {.lex_state = 243}, - [4114] = {.lex_state = 204}, - [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}, + [4106] = {.lex_state = 239}, + [4107] = {.lex_state = 239}, + [4108] = {.lex_state = 239}, + [4109] = {.lex_state = 229}, + [4110] = {.lex_state = 229}, + [4111] = {.lex_state = 238}, + [4112] = {.lex_state = 241}, + [4113] = {.lex_state = 239}, + [4114] = {.lex_state = 238}, + [4115] = {.lex_state = 239}, + [4116] = {.lex_state = 239}, + [4117] = {.lex_state = 239}, + [4118] = {.lex_state = 238}, + [4119] = {.lex_state = 239}, + [4120] = {.lex_state = 204}, + [4121] = {.lex_state = 206}, + [4122] = {.lex_state = 206}, + [4123] = {.lex_state = 242}, [4124] = {.lex_state = 204}, - [4125] = {.lex_state = 204}, + [4125] = {.lex_state = 239}, [4126] = {.lex_state = 239}, [4127] = {.lex_state = 239}, [4128] = {.lex_state = 204}, - [4129] = {.lex_state = 239}, + [4129] = {.lex_state = 204}, [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 = 204}, - [4137] = {.lex_state = 239}, + [4132] = {.lex_state = 204}, + [4133] = {.lex_state = 245}, + [4134] = {.lex_state = 239}, + [4135] = {.lex_state = 239}, + [4136] = {.lex_state = 243}, + [4137] = {.lex_state = 245}, [4138] = {.lex_state = 204}, [4139] = {.lex_state = 204}, - [4140] = {.lex_state = 242}, + [4140] = {.lex_state = 204}, [4141] = {.lex_state = 204}, [4142] = {.lex_state = 204}, - [4143] = {.lex_state = 204}, - [4144] = {.lex_state = 204}, + [4143] = {.lex_state = 239}, + [4144] = {.lex_state = 206}, [4145] = {.lex_state = 204}, [4146] = {.lex_state = 204}, [4147] = {.lex_state = 204}, - [4148] = {.lex_state = 204}, + [4148] = {.lex_state = 243}, [4149] = {.lex_state = 204}, - [4150] = {.lex_state = 245}, - [4151] = {.lex_state = 239}, - [4152] = {.lex_state = 239}, + [4150] = {.lex_state = 204}, + [4151] = {.lex_state = 204}, + [4152] = {.lex_state = 204}, [4153] = {.lex_state = 204}, - [4154] = {.lex_state = 238}, - [4155] = {.lex_state = 204}, + [4154] = {.lex_state = 204}, + [4155] = {.lex_state = 242}, [4156] = {.lex_state = 204}, [4157] = {.lex_state = 204}, - [4158] = {.lex_state = 238}, + [4158] = {.lex_state = 204}, [4159] = {.lex_state = 204}, - [4160] = {.lex_state = 243}, - [4161] = {.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 = 204}, - [4170] = {.lex_state = 229}, - [4171] = {.lex_state = 206}, - [4172] = {.lex_state = 238}, + [4160] = {.lex_state = 204}, + [4161] = {.lex_state = 238}, + [4162] = {.lex_state = 204}, + [4163] = {.lex_state = 204}, + [4164] = {.lex_state = 204}, + [4165] = {.lex_state = 204}, + [4166] = {.lex_state = 238}, + [4167] = {.lex_state = 242}, + [4168] = {.lex_state = 242}, + [4169] = {.lex_state = 239}, + [4170] = {.lex_state = 206}, + [4171] = {.lex_state = 242}, + [4172] = {.lex_state = 204}, [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}, + [4174] = {.lex_state = 238}, + [4175] = {.lex_state = 194}, + [4176] = {.lex_state = 238}, + [4177] = {.lex_state = 238}, + [4178] = {.lex_state = 206}, + [4179] = {.lex_state = 206}, + [4180] = {.lex_state = 206}, [4181] = {.lex_state = 204}, [4182] = {.lex_state = 204}, - [4183] = {.lex_state = 204}, + [4183] = {.lex_state = 229}, [4184] = {.lex_state = 204}, - [4185] = {.lex_state = 241}, - [4186] = {.lex_state = 229}, - [4187] = {.lex_state = 242}, - [4188] = {.lex_state = 204}, + [4185] = {.lex_state = 194}, + [4186] = {.lex_state = 194}, + [4187] = {.lex_state = 194}, + [4188] = {.lex_state = 241}, [4189] = {.lex_state = 194}, - [4190] = {.lex_state = 242}, - [4191] = {.lex_state = 204}, + [4190] = {.lex_state = 204}, + [4191] = {.lex_state = 238}, [4192] = {.lex_state = 194}, [4193] = {.lex_state = 204}, [4194] = {.lex_state = 204}, - [4195] = {.lex_state = 242}, - [4196] = {.lex_state = 242}, - [4197] = {.lex_state = 242}, - [4198] = {.lex_state = 194}, + [4195] = {.lex_state = 204}, + [4196] = {.lex_state = 204}, + [4197] = {.lex_state = 204}, + [4198] = {.lex_state = 204}, [4199] = {.lex_state = 204}, [4200] = {.lex_state = 204}, - [4201] = {.lex_state = 206}, + [4201] = {.lex_state = 238}, [4202] = {.lex_state = 204}, [4203] = {.lex_state = 204}, [4204] = {.lex_state = 204}, - [4205] = {.lex_state = 245}, - [4206] = {.lex_state = 242}, + [4205] = {.lex_state = 204}, + [4206] = {.lex_state = 204}, [4207] = {.lex_state = 241}, [4208] = {.lex_state = 204}, - [4209] = {.lex_state = 238}, - [4210] = {.lex_state = 204}, + [4209] = {.lex_state = 204}, + [4210] = {.lex_state = 242}, [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 = 204}, + [4213] = {.lex_state = 204}, + [4214] = {.lex_state = 204}, + [4215] = {.lex_state = 242}, + [4216] = {.lex_state = 242}, + [4217] = {.lex_state = 242}, [4218] = {.lex_state = 242}, - [4219] = {.lex_state = 204}, - [4220] = {.lex_state = 204}, + [4219] = {.lex_state = 241}, + [4220] = {.lex_state = 229}, [4221] = {.lex_state = 242}, [4222] = {.lex_state = 204}, - [4223] = {.lex_state = 241}, + [4223] = {.lex_state = 242}, [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 = 204}, + [4225] = {.lex_state = 206}, + [4226] = {.lex_state = 242}, + [4227] = {.lex_state = 229}, + [4228] = {.lex_state = 245}, + [4229] = {.lex_state = 206}, + [4230] = {.lex_state = 229}, [4231] = {.lex_state = 242}, [4232] = {.lex_state = 241}, [4233] = {.lex_state = 242}, - [4234] = {.lex_state = 205}, + [4234] = {.lex_state = 241}, [4235] = {.lex_state = 204}, - [4236] = {.lex_state = 242}, - [4237] = {.lex_state = 242}, - [4238] = {.lex_state = 194}, - [4239] = {.lex_state = 242}, + [4236] = {.lex_state = 204}, + [4237] = {.lex_state = 204}, + [4238] = {.lex_state = 242}, + [4239] = {.lex_state = 194}, [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}, + [4241] = {.lex_state = 194}, + [4242] = {.lex_state = 194}, + [4243] = {.lex_state = 241}, + [4244] = {.lex_state = 194}, + [4245] = {.lex_state = 194}, + [4246] = {.lex_state = 238}, + [4247] = {.lex_state = 207}, + [4248] = {.lex_state = 194}, + [4249] = {.lex_state = 205}, [4250] = {.lex_state = 242}, - [4251] = {.lex_state = 207}, + [4251] = {.lex_state = 241}, [4252] = {.lex_state = 206}, - [4253] = {.lex_state = 206}, - [4254] = {.lex_state = 194}, + [4253] = {.lex_state = 194}, + [4254] = {.lex_state = 241}, [4255] = {.lex_state = 242}, - [4256] = {.lex_state = 194}, + [4256] = {.lex_state = 242}, [4257] = {.lex_state = 242}, - [4258] = {.lex_state = 194}, + [4258] = {.lex_state = 242}, [4259] = {.lex_state = 242}, - [4260] = {.lex_state = 194}, - [4261] = {.lex_state = 194}, + [4260] = {.lex_state = 242}, + [4261] = {.lex_state = 206}, [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 = 241}, - [4269] = {.lex_state = 207}, - [4270] = {.lex_state = 242}, - [4271] = {.lex_state = 241}, - [4272] = {.lex_state = 204}, - [4273] = {.lex_state = 204}, - [4274] = {.lex_state = 229}, - [4275] = {.lex_state = 230}, - [4276] = {.lex_state = 207}, - [4277] = {.lex_state = 204}, - [4278] = {.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 = 229}, + [4263] = {.lex_state = 204}, + [4264] = {.lex_state = 194}, + [4265] = {.lex_state = 242}, + [4266] = {.lex_state = 242}, + [4267] = {.lex_state = 204}, + [4268] = {.lex_state = 242}, + [4269] = {.lex_state = 242}, + [4270] = {.lex_state = 205}, + [4271] = {.lex_state = 194}, + [4272] = {.lex_state = 194}, + [4273] = {.lex_state = 207}, + [4274] = {.lex_state = 238}, + [4275] = {.lex_state = 194}, + [4276] = {.lex_state = 242}, + [4277] = {.lex_state = 242}, + [4278] = {.lex_state = 242}, + [4279] = {.lex_state = 242}, + [4280] = {.lex_state = 242}, + [4281] = {.lex_state = 241}, + [4282] = {.lex_state = 204}, + [4283] = {.lex_state = 238}, + [4284] = {.lex_state = 204}, [4285] = {.lex_state = 229}, - [4286] = {.lex_state = 229}, - [4287] = {.lex_state = 229}, - [4288] = {.lex_state = 204}, - [4289] = {.lex_state = 238}, - [4290] = {.lex_state = 245}, - [4291] = {.lex_state = 238}, - [4292] = {.lex_state = 238}, - [4293] = {.lex_state = 204}, - [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}, + [4286] = {.lex_state = 204}, + [4287] = {.lex_state = 241}, + [4288] = {.lex_state = 238}, + [4289] = {.lex_state = 204}, + [4290] = {.lex_state = 238}, + [4291] = {.lex_state = 229}, + [4292] = {.lex_state = 241}, + [4293] = {.lex_state = 229}, + [4294] = {.lex_state = 241}, + [4295] = {.lex_state = 204}, + [4296] = {.lex_state = 241}, + [4297] = {.lex_state = 245}, + [4298] = {.lex_state = 229}, + [4299] = {.lex_state = 207}, + [4300] = {.lex_state = 230}, [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}, + [4304] = {.lex_state = 242}, + [4305] = {.lex_state = 229}, + [4306] = {.lex_state = 204}, + [4307] = {.lex_state = 229}, [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 = 242}, - [4319] = {.lex_state = 204}, - [4320] = {.lex_state = 204}, - [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 = 241}, + [4309] = {.lex_state = 204}, + [4310] = {.lex_state = 229}, + [4311] = {.lex_state = 207}, + [4312] = {.lex_state = 204}, + [4313] = {.lex_state = 229}, + [4314] = {.lex_state = 245}, + [4315] = {.lex_state = 194}, + [4316] = {.lex_state = 241}, + [4317] = {.lex_state = 230}, + [4318] = {.lex_state = 229}, + [4319] = {.lex_state = 229}, + [4320] = {.lex_state = 229}, + [4321] = {.lex_state = 229}, + [4322] = {.lex_state = 241}, + [4323] = {.lex_state = 238}, + [4324] = {.lex_state = 241}, + [4325] = {.lex_state = 238}, + [4326] = {.lex_state = 229}, + [4327] = {.lex_state = 204}, [4328] = {.lex_state = 241}, - [4329] = {.lex_state = 241}, - [4330] = {.lex_state = 241}, + [4329] = {.lex_state = 242}, + [4330] = {.lex_state = 204}, [4331] = {.lex_state = 204}, - [4332] = {.lex_state = 242}, + [4332] = {.lex_state = 204}, [4333] = {.lex_state = 204}, [4334] = {.lex_state = 204}, - [4335] = {.lex_state = 245}, + [4335] = {.lex_state = 241}, [4336] = {.lex_state = 204}, [4337] = {.lex_state = 204}, [4338] = {.lex_state = 204}, [4339] = {.lex_state = 242}, [4340] = {.lex_state = 204}, - [4341] = {.lex_state = 204}, - [4342] = {.lex_state = 242}, - [4343] = {.lex_state = 204}, - [4344] = {.lex_state = 204}, - [4345] = {.lex_state = 204}, - [4346] = {.lex_state = 204}, + [4341] = {.lex_state = 206}, + [4342] = {.lex_state = 204}, + [4343] = {.lex_state = 242}, + [4344] = {.lex_state = 241}, + [4345] = {.lex_state = 241}, + [4346] = {.lex_state = 242}, [4347] = {.lex_state = 204}, - [4348] = {.lex_state = 204}, + [4348] = {.lex_state = 242}, [4349] = {.lex_state = 204}, [4350] = {.lex_state = 204}, [4351] = {.lex_state = 204}, - [4352] = {.lex_state = 206}, - [4353] = {.lex_state = 242}, + [4352] = {.lex_state = 204}, + [4353] = {.lex_state = 204}, [4354] = {.lex_state = 204}, - [4355] = {.lex_state = 204}, - [4356] = {.lex_state = 242}, + [4355] = {.lex_state = 241}, + [4356] = {.lex_state = 204}, [4357] = {.lex_state = 204}, [4358] = {.lex_state = 204}, - [4359] = {.lex_state = 204}, - [4360] = {.lex_state = 242}, - [4361] = {.lex_state = 204}, + [4359] = {.lex_state = 241}, + [4360] = {.lex_state = 204}, + [4361] = {.lex_state = 238}, [4362] = {.lex_state = 204}, - [4363] = {.lex_state = 204}, + [4363] = {.lex_state = 238}, [4364] = {.lex_state = 204}, [4365] = {.lex_state = 204}, [4366] = {.lex_state = 204}, - [4367] = {.lex_state = 241}, - [4368] = {.lex_state = 238}, - [4369] = {.lex_state = 242}, + [4367] = {.lex_state = 204}, + [4368] = {.lex_state = 204}, + [4369] = {.lex_state = 204}, [4370] = {.lex_state = 241}, - [4371] = {.lex_state = 238}, - [4372] = {.lex_state = 241}, - [4373] = {.lex_state = 204}, + [4371] = {.lex_state = 241}, + [4372] = {.lex_state = 242}, + [4373] = {.lex_state = 241}, [4374] = {.lex_state = 204}, - [4375] = {.lex_state = 241}, - [4376] = {.lex_state = 206}, - [4377] = {.lex_state = 204}, - [4378] = {.lex_state = 241}, - [4379] = {.lex_state = 204}, - [4380] = {.lex_state = 241}, - [4381] = {.lex_state = 241}, + [4375] = {.lex_state = 242}, + [4376] = {.lex_state = 242}, + [4377] = {.lex_state = 206}, + [4378] = {.lex_state = 204}, + [4379] = {.lex_state = 242}, + [4380] = {.lex_state = 204}, + [4381] = {.lex_state = 204}, [4382] = {.lex_state = 204}, - [4383] = {.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 = 229}, + [4383] = {.lex_state = 204}, + [4384] = {.lex_state = 204}, + [4385] = {.lex_state = 204}, + [4386] = {.lex_state = 204}, + [4387] = {.lex_state = 245}, + [4388] = {.lex_state = 204}, + [4389] = {.lex_state = 241}, [4390] = {.lex_state = 204}, - [4391] = {.lex_state = 204}, - [4392] = {.lex_state = 204}, + [4391] = {.lex_state = 245}, + [4392] = {.lex_state = 205}, [4393] = {.lex_state = 204}, - [4394] = {.lex_state = 229}, + [4394] = {.lex_state = 241}, [4395] = {.lex_state = 241}, - [4396] = {.lex_state = 204}, - [4397] = {.lex_state = 229}, - [4398] = {.lex_state = 204}, - [4399] = {.lex_state = 241}, + [4396] = {.lex_state = 244}, + [4397] = {.lex_state = 204}, + [4398] = {.lex_state = 241}, + [4399] = {.lex_state = 204}, [4400] = {.lex_state = 229}, [4401] = {.lex_state = 204}, [4402] = {.lex_state = 229}, - [4403] = {.lex_state = 241}, - [4404] = {.lex_state = 229}, - [4405] = {.lex_state = 241}, - [4406] = {.lex_state = 241}, - [4407] = {.lex_state = 204}, + [4403] = {.lex_state = 229}, + [4404] = {.lex_state = 242}, + [4405] = {.lex_state = 229}, + [4406] = {.lex_state = 242}, + [4407] = {.lex_state = 241}, [4408] = {.lex_state = 241}, - [4409] = {.lex_state = 241}, + [4409] = {.lex_state = 225}, [4410] = {.lex_state = 204}, - [4411] = {.lex_state = 241}, - [4412] = {.lex_state = 241}, - [4413] = {.lex_state = 204}, - [4414] = {.lex_state = 207}, - [4415] = {.lex_state = 229}, - [4416] = {.lex_state = 241}, + [4411] = {.lex_state = 194}, + [4412] = {.lex_state = 229}, + [4413] = {.lex_state = 229}, + [4414] = {.lex_state = 229}, + [4415] = {.lex_state = 241}, + [4416] = {.lex_state = 242}, [4417] = {.lex_state = 241}, - [4418] = {.lex_state = 204}, - [4419] = {.lex_state = 194}, - [4420] = {.lex_state = 225}, - [4421] = {.lex_state = 229}, - [4422] = {.lex_state = 242}, - [4423] = {.lex_state = 242}, - [4424] = {.lex_state = 204}, - [4425] = {.lex_state = 229}, - [4426] = {.lex_state = 229}, - [4427] = {.lex_state = 242}, - [4428] = {.lex_state = 242}, - [4429] = {.lex_state = 229}, - [4430] = {.lex_state = 204}, - [4431] = {.lex_state = 204}, - [4432] = {.lex_state = 204}, - [4433] = {.lex_state = 204}, - [4434] = {.lex_state = 229}, - [4435] = {.lex_state = 194}, - [4436] = {.lex_state = 229}, - [4437] = {.lex_state = 204}, - [4438] = {.lex_state = 241}, - [4439] = {.lex_state = 241}, + [4418] = {.lex_state = 229}, + [4419] = {.lex_state = 242}, + [4420] = {.lex_state = 207}, + [4421] = {.lex_state = 194}, + [4422] = {.lex_state = 204}, + [4423] = {.lex_state = 241}, + [4424] = {.lex_state = 241}, + [4425] = {.lex_state = 204}, + [4426] = {.lex_state = 204}, + [4427] = {.lex_state = 204}, + [4428] = {.lex_state = 241}, + [4429] = {.lex_state = 241}, + [4430] = {.lex_state = 241}, + [4431] = {.lex_state = 241}, + [4432] = {.lex_state = 229}, + [4433] = {.lex_state = 241}, + [4434] = {.lex_state = 241}, + [4435] = {.lex_state = 204}, + [4436] = {.lex_state = 204}, + [4437] = {.lex_state = 242}, + [4438] = {.lex_state = 194}, + [4439] = {.lex_state = 229}, [4440] = {.lex_state = 241}, [4441] = {.lex_state = 229}, - [4442] = {.lex_state = 241}, - [4443] = {.lex_state = 241}, - [4444] = {.lex_state = 241}, - [4445] = {.lex_state = 241}, - [4446] = {.lex_state = 242}, - [4447] = {.lex_state = 194}, + [4442] = {.lex_state = 229}, + [4443] = {.lex_state = 229}, + [4444] = {.lex_state = 204}, + [4445] = {.lex_state = 229}, + [4446] = {.lex_state = 204}, + [4447] = {.lex_state = 241}, [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 = 229}, - [4455] = {.lex_state = 207}, - [4456] = {.lex_state = 241}, - [4457] = {.lex_state = 229}, - [4458] = {.lex_state = 229}, + [4449] = {.lex_state = 229}, + [4450] = {.lex_state = 241}, + [4451] = {.lex_state = 204}, + [4452] = {.lex_state = 229}, + [4453] = {.lex_state = 241}, + [4454] = {.lex_state = 241}, + [4455] = {.lex_state = 204}, + [4456] = {.lex_state = 204}, + [4457] = {.lex_state = 241}, + [4458] = {.lex_state = 204}, [4459] = {.lex_state = 204}, [4460] = {.lex_state = 204}, - [4461] = {.lex_state = 241}, - [4462] = {.lex_state = 229}, + [4461] = {.lex_state = 204}, + [4462] = {.lex_state = 207}, [4463] = {.lex_state = 204}, - [4464] = {.lex_state = 204}, + [4464] = {.lex_state = 194}, [4465] = {.lex_state = 204}, [4466] = {.lex_state = 204}, - [4467] = {.lex_state = 229}, - [4468] = {.lex_state = 229}, - [4469] = {.lex_state = 242}, - [4470] = {.lex_state = 204}, - [4471] = {.lex_state = 204}, - [4472] = {.lex_state = 204}, + [4467] = {.lex_state = 204}, + [4468] = {.lex_state = 204}, + [4469] = {.lex_state = 241}, + [4470] = {.lex_state = 241}, + [4471] = {.lex_state = 229}, + [4472] = {.lex_state = 229}, [4473] = {.lex_state = 229}, - [4474] = {.lex_state = 204}, - [4475] = {.lex_state = 229}, + [4474] = {.lex_state = 229}, + [4475] = {.lex_state = 241}, [4476] = {.lex_state = 229}, - [4477] = {.lex_state = 229}, - [4478] = {.lex_state = 204}, - [4479] = {.lex_state = 244}, - [4480] = {.lex_state = 204}, - [4481] = {.lex_state = 206}, + [4477] = {.lex_state = 204}, + [4478] = {.lex_state = 241}, + [4479] = {.lex_state = 241}, + [4480] = {.lex_state = 206}, + [4481] = {.lex_state = 204}, [4482] = {.lex_state = 204}, - [4483] = {.lex_state = 229}, - [4484] = {.lex_state = 204}, - [4485] = {.lex_state = 204}, - [4486] = {.lex_state = 229}, + [4483] = {.lex_state = 242}, + [4484] = {.lex_state = 244}, + [4485] = {.lex_state = 229}, + [4486] = {.lex_state = 204}, [4487] = {.lex_state = 204}, - [4488] = {.lex_state = 206}, - [4489] = {.lex_state = 206}, - [4490] = {.lex_state = 229}, - [4491] = {.lex_state = 204}, + [4488] = {.lex_state = 204}, + [4489] = {.lex_state = 242}, + [4490] = {.lex_state = 204}, + [4491] = {.lex_state = 241}, [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}, + [4495] = {.lex_state = 242}, + [4496] = {.lex_state = 206}, + [4497] = {.lex_state = 241}, + [4498] = {.lex_state = 241}, + [4499] = {.lex_state = 241}, + [4500] = {.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}, + [4503] = {.lex_state = 241}, + [4504] = {.lex_state = 241}, + [4505] = {.lex_state = 241}, + [4506] = {.lex_state = 241}, + [4507] = {.lex_state = 229}, + [4508] = {.lex_state = 244}, [4509] = {.lex_state = 204}, - [4510] = {.lex_state = 229}, - [4511] = {.lex_state = 204}, + [4510] = {.lex_state = 204}, + [4511] = {.lex_state = 229}, [4512] = {.lex_state = 229}, - [4513] = {.lex_state = 204}, + [4513] = {.lex_state = 229}, [4514] = {.lex_state = 206}, [4515] = {.lex_state = 204}, - [4516] = {.lex_state = 242}, + [4516] = {.lex_state = 204}, [4517] = {.lex_state = 204}, - [4518] = {.lex_state = 206}, - [4519] = {.lex_state = 242}, - [4520] = {.lex_state = 228}, + [4518] = {.lex_state = 204}, + [4519] = {.lex_state = 229}, + [4520] = {.lex_state = 229}, [4521] = {.lex_state = 204}, [4522] = {.lex_state = 229}, - [4523] = {.lex_state = 204}, + [4523] = {.lex_state = 229}, [4524] = {.lex_state = 206}, - [4525] = {.lex_state = 206}, - [4526] = {.lex_state = 206}, + [4525] = {.lex_state = 242}, + [4526] = {.lex_state = 229}, [4527] = {.lex_state = 229}, - [4528] = {.lex_state = 204}, - [4529] = {.lex_state = 194}, - [4530] = {.lex_state = 204}, - [4531] = {.lex_state = 204}, - [4532] = {.lex_state = 204}, - [4533] = {.lex_state = 229}, + [4528] = {.lex_state = 229}, + [4529] = {.lex_state = 229}, + [4530] = {.lex_state = 206}, + [4531] = {.lex_state = 229}, + [4532] = {.lex_state = 229}, + [4533] = {.lex_state = 204}, [4534] = {.lex_state = 204}, - [4535] = {.lex_state = 205}, - [4536] = {.lex_state = 206}, - [4537] = {.lex_state = 204}, - [4538] = {.lex_state = 229}, - [4539] = {.lex_state = 206}, - [4540] = {.lex_state = 204}, + [4535] = {.lex_state = 242}, + [4536] = {.lex_state = 229}, + [4537] = {.lex_state = 242}, + [4538] = {.lex_state = 204}, + [4539] = {.lex_state = 229}, + [4540] = {.lex_state = 242}, [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}, + [4542] = {.lex_state = 242}, + [4543] = {.lex_state = 206}, + [4544] = {.lex_state = 204}, + [4545] = {.lex_state = 206}, + [4546] = {.lex_state = 206}, + [4547] = {.lex_state = 206}, [4548] = {.lex_state = 206}, - [4549] = {.lex_state = 204}, + [4549] = {.lex_state = 206}, [4550] = {.lex_state = 206}, [4551] = {.lex_state = 206}, [4552] = {.lex_state = 206}, - [4553] = {.lex_state = 229}, - [4554] = {.lex_state = 204}, + [4553] = {.lex_state = 206}, + [4554] = {.lex_state = 206}, [4555] = {.lex_state = 206}, [4556] = {.lex_state = 206}, - [4557] = {.lex_state = 241}, - [4558] = {.lex_state = 204}, - [4559] = {.lex_state = 204}, - [4560] = {.lex_state = 230}, - [4561] = {.lex_state = 204}, - [4562] = {.lex_state = 204}, - [4563] = {.lex_state = 204}, - [4564] = {.lex_state = 204}, - [4565] = {.lex_state = 204}, - [4566] = {.lex_state = 204}, - [4567] = {.lex_state = 204}, + [4557] = {.lex_state = 242}, + [4558] = {.lex_state = 206}, + [4559] = {.lex_state = 206}, + [4560] = {.lex_state = 206}, + [4561] = {.lex_state = 206}, + [4562] = {.lex_state = 206}, + [4563] = {.lex_state = 230}, + [4564] = {.lex_state = 242}, + [4565] = {.lex_state = 229}, + [4566] = {.lex_state = 229}, + [4567] = {.lex_state = 229}, [4568] = {.lex_state = 204}, - [4569] = {.lex_state = 204}, + [4569] = {.lex_state = 241}, [4570] = {.lex_state = 241}, - [4571] = {.lex_state = 204}, + [4571] = {.lex_state = 194}, [4572] = {.lex_state = 204}, [4573] = {.lex_state = 204}, [4574] = {.lex_state = 204}, - [4575] = {.lex_state = 206}, - [4576] = {.lex_state = 204}, + [4575] = {.lex_state = 204}, + [4576] = {.lex_state = 206}, [4577] = {.lex_state = 204}, [4578] = {.lex_state = 204}, - [4579] = {.lex_state = 241}, - [4580] = {.lex_state = 242}, - [4581] = {.lex_state = 229}, - [4582] = {.lex_state = 206}, - [4583] = {.lex_state = 204}, - [4584] = {.lex_state = 204}, + [4579] = {.lex_state = 204}, + [4580] = {.lex_state = 229}, + [4581] = {.lex_state = 204}, + [4582] = {.lex_state = 229}, + [4583] = {.lex_state = 229}, + [4584] = {.lex_state = 229}, [4585] = {.lex_state = 204}, - [4586] = {.lex_state = 206}, + [4586] = {.lex_state = 204}, [4587] = {.lex_state = 206}, - [4588] = {.lex_state = 206}, - [4589] = {.lex_state = 206}, - [4590] = {.lex_state = 206}, - [4591] = {.lex_state = 241}, - [4592] = {.lex_state = 204}, + [4588] = {.lex_state = 204}, + [4589] = {.lex_state = 204}, + [4590] = {.lex_state = 228}, + [4591] = {.lex_state = 204}, + [4592] = {.lex_state = 229}, [4593] = {.lex_state = 206}, - [4594] = {.lex_state = 206}, - [4595] = {.lex_state = 244}, - [4596] = {.lex_state = 206}, - [4597] = {.lex_state = 206}, + [4594] = {.lex_state = 204}, + [4595] = {.lex_state = 206}, + [4596] = {.lex_state = 229}, + [4597] = {.lex_state = 204}, [4598] = {.lex_state = 206}, [4599] = {.lex_state = 206}, - [4600] = {.lex_state = 242}, - [4601] = {.lex_state = 229}, + [4600] = {.lex_state = 206}, + [4601] = {.lex_state = 204}, [4602] = {.lex_state = 204}, - [4603] = {.lex_state = 204}, + [4603] = {.lex_state = 205}, [4604] = {.lex_state = 204}, - [4605] = {.lex_state = 242}, - [4606] = {.lex_state = 229}, - [4607] = {.lex_state = 242}, + [4605] = {.lex_state = 241}, + [4606] = {.lex_state = 244}, + [4607] = {.lex_state = 204}, [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}, + [4609] = {.lex_state = 242}, + [4610] = {.lex_state = 204}, + [4611] = {.lex_state = 204}, + [4612] = {.lex_state = 204}, + [4613] = {.lex_state = 204}, + [4614] = {.lex_state = 204}, + [4615] = {.lex_state = 204}, [4616] = {.lex_state = 204}, - [4617] = {.lex_state = 206}, - [4618] = {.lex_state = 241}, - [4619] = {.lex_state = 241}, - [4620] = {.lex_state = 241}, - [4621] = {.lex_state = 229}, + [4617] = {.lex_state = 204}, + [4618] = {.lex_state = 204}, + [4619] = {.lex_state = 204}, + [4620] = {.lex_state = 204}, + [4621] = {.lex_state = 204}, [4622] = {.lex_state = 204}, [4623] = {.lex_state = 204}, - [4624] = {.lex_state = 206}, - [4625] = {.lex_state = 206}, - [4626] = {.lex_state = 229}, + [4624] = {.lex_state = 204}, + [4625] = {.lex_state = 204}, + [4626] = {.lex_state = 204}, [4627] = {.lex_state = 204}, - [4628] = {.lex_state = 229}, + [4628] = {.lex_state = 204}, [4629] = {.lex_state = 204}, - [4630] = {.lex_state = 204}, - [4631] = {.lex_state = 241}, - [4632] = {.lex_state = 206}, - [4633] = {.lex_state = 242}, + [4630] = {.lex_state = 206}, + [4631] = {.lex_state = 204}, + [4632] = {.lex_state = 242}, + [4633] = {.lex_state = 206}, [4634] = {.lex_state = 206}, - [4635] = {.lex_state = 242}, + [4635] = {.lex_state = 206}, [4636] = {.lex_state = 204}, - [4637] = {.lex_state = 229}, - [4638] = {.lex_state = 244}, - [4639] = {.lex_state = 229}, + [4637] = {.lex_state = 206}, + [4638] = {.lex_state = 229}, + [4639] = {.lex_state = 204}, [4640] = {.lex_state = 204}, [4641] = {.lex_state = 204}, - [4642] = {.lex_state = 204}, - [4643] = {.lex_state = 239}, - [4644] = {.lex_state = 204}, + [4642] = {.lex_state = 206}, + [4643] = {.lex_state = 204}, + [4644] = {.lex_state = 242}, [4645] = {.lex_state = 204}, [4646] = {.lex_state = 204}, - [4647] = {.lex_state = 204}, + [4647] = {.lex_state = 206}, [4648] = {.lex_state = 204}, [4649] = {.lex_state = 204}, - [4650] = {.lex_state = 242}, + [4650] = {.lex_state = 206}, [4651] = {.lex_state = 204}, [4652] = {.lex_state = 204}, - [4653] = {.lex_state = 204}, + [4653] = {.lex_state = 206}, [4654] = {.lex_state = 204}, [4655] = {.lex_state = 204}, [4656] = {.lex_state = 204}, - [4657] = {.lex_state = 239}, + [4657] = {.lex_state = 204}, [4658] = {.lex_state = 204}, [4659] = {.lex_state = 204}, - [4660] = {.lex_state = 204}, + [4660] = {.lex_state = 239}, [4661] = {.lex_state = 204}, - [4662] = {.lex_state = 204}, + [4662] = {.lex_state = 242}, [4663] = {.lex_state = 204}, - [4664] = {.lex_state = 242}, - [4665] = {.lex_state = 242}, + [4664] = {.lex_state = 204}, + [4665] = {.lex_state = 204}, [4666] = {.lex_state = 204}, [4667] = {.lex_state = 204}, - [4668] = {.lex_state = 241}, - [4669] = {.lex_state = 204}, - [4670] = {.lex_state = 242}, + [4668] = {.lex_state = 204}, + [4669] = {.lex_state = 242}, + [4670] = {.lex_state = 204}, [4671] = {.lex_state = 204}, - [4672] = {.lex_state = 242}, + [4672] = {.lex_state = 204}, [4673] = {.lex_state = 204}, [4674] = {.lex_state = 204}, - [4675] = {.lex_state = 239}, - [4676] = {.lex_state = 206}, + [4675] = {.lex_state = 242}, + [4676] = {.lex_state = 242}, [4677] = {.lex_state = 204}, - [4678] = {.lex_state = 242}, - [4679] = {.lex_state = 239}, + [4678] = {.lex_state = 204}, + [4679] = {.lex_state = 204}, [4680] = {.lex_state = 204}, - [4681] = {.lex_state = 204}, + [4681] = {.lex_state = 242}, [4682] = {.lex_state = 204}, - [4683] = {.lex_state = 204}, - [4684] = {.lex_state = 204}, - [4685] = {.lex_state = 204}, - [4686] = {.lex_state = 204}, - [4687] = {.lex_state = 204}, - [4688] = {.lex_state = 242}, - [4689] = {.lex_state = 204}, - [4690] = {.lex_state = 242}, + [4683] = {.lex_state = 242}, + [4684] = {.lex_state = 242}, + [4685] = {.lex_state = 239}, + [4686] = {.lex_state = 242}, + [4687] = {.lex_state = 242}, + [4688] = {.lex_state = 204}, + [4689] = {.lex_state = 242}, + [4690] = {.lex_state = 239}, [4691] = {.lex_state = 204}, - [4692] = {.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 = 204}, - [4700] = {.lex_state = 242}, + [4692] = {.lex_state = 242}, + [4693] = {.lex_state = 242}, + [4694] = {.lex_state = 242}, + [4695] = {.lex_state = 242}, + [4696] = {.lex_state = 242}, + [4697] = {.lex_state = 204}, + [4698] = {.lex_state = 242}, + [4699] = {.lex_state = 242}, + [4700] = {.lex_state = 204}, [4701] = {.lex_state = 204}, - [4702] = {.lex_state = 204}, - [4703] = {.lex_state = 204}, + [4702] = {.lex_state = 242}, + [4703] = {.lex_state = 239}, [4704] = {.lex_state = 204}, - [4705] = {.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}, + [4705] = {.lex_state = 239}, + [4706] = {.lex_state = 204}, + [4707] = {.lex_state = 239}, + [4708] = {.lex_state = 242}, + [4709] = {.lex_state = 204}, + [4710] = {.lex_state = 242}, + [4711] = {.lex_state = 242}, + [4712] = {.lex_state = 204}, + [4713] = {.lex_state = 238}, + [4714] = {.lex_state = 239}, + [4715] = {.lex_state = 239}, [4716] = {.lex_state = 204}, - [4717] = {.lex_state = 242}, - [4718] = {.lex_state = 238}, - [4719] = {.lex_state = 242}, - [4720] = {.lex_state = 242}, - [4721] = {.lex_state = 242}, - [4722] = {.lex_state = 242}, - [4723] = {.lex_state = 204}, - [4724] = {.lex_state = 204}, - [4725] = {.lex_state = 239}, - [4726] = {.lex_state = 204}, + [4717] = {.lex_state = 239}, + [4718] = {.lex_state = 204}, + [4719] = {.lex_state = 239}, + [4720] = {.lex_state = 239}, + [4721] = {.lex_state = 204}, + [4722] = {.lex_state = 239}, + [4723] = {.lex_state = 242}, + [4724] = {.lex_state = 242}, + [4725] = {.lex_state = 204}, + [4726] = {.lex_state = 231}, [4727] = {.lex_state = 242}, - [4728] = {.lex_state = 204}, + [4728] = {.lex_state = 242}, [4729] = {.lex_state = 204}, - [4730] = {.lex_state = 242}, - [4731] = {.lex_state = 242}, - [4732] = {.lex_state = 238}, - [4733] = {.lex_state = 242}, - [4734] = {.lex_state = 204}, - [4735] = {.lex_state = 238}, - [4736] = {.lex_state = 204}, - [4737] = {.lex_state = 242}, - [4738] = {.lex_state = 238}, - [4739] = {.lex_state = 242}, + [4730] = {.lex_state = 204}, + [4731] = {.lex_state = 204}, + [4732] = {.lex_state = 239}, + [4733] = {.lex_state = 241}, + [4734] = {.lex_state = 241}, + [4735] = {.lex_state = 241}, + [4736] = {.lex_state = 241}, + [4737] = {.lex_state = 239}, + [4738] = {.lex_state = 204}, + [4739] = {.lex_state = 204}, [4740] = {.lex_state = 204}, - [4741] = {.lex_state = 204}, - [4742] = {.lex_state = 242}, + [4741] = {.lex_state = 231}, + [4742] = {.lex_state = 206}, [4743] = {.lex_state = 242}, [4744] = {.lex_state = 204}, [4745] = {.lex_state = 204}, [4746] = {.lex_state = 204}, - [4747] = {.lex_state = 242}, - [4748] = {.lex_state = 239}, - [4749] = {.lex_state = 239}, - [4750] = {.lex_state = 204}, - [4751] = {.lex_state = 206}, - [4752] = {.lex_state = 204}, - [4753] = {.lex_state = 239}, - [4754] = {.lex_state = 204}, + [4747] = {.lex_state = 204}, + [4748] = {.lex_state = 204}, + [4749] = {.lex_state = 204}, + [4750] = {.lex_state = 239}, + [4751] = {.lex_state = 239}, + [4752] = {.lex_state = 239}, + [4753] = {.lex_state = 242}, + [4754] = {.lex_state = 239}, [4755] = {.lex_state = 204}, - [4756] = {.lex_state = 239}, - [4757] = {.lex_state = 242}, - [4758] = {.lex_state = 242}, + [4756] = {.lex_state = 204}, + [4757] = {.lex_state = 204}, + [4758] = {.lex_state = 204}, [4759] = {.lex_state = 204}, [4760] = {.lex_state = 204}, [4761] = {.lex_state = 204}, [4762] = {.lex_state = 204}, - [4763] = {.lex_state = 242}, + [4763] = {.lex_state = 204}, [4764] = {.lex_state = 204}, - [4765] = {.lex_state = 242}, + [4765] = {.lex_state = 204}, [4766] = {.lex_state = 204}, - [4767] = {.lex_state = 241}, - [4768] = {.lex_state = 239}, - [4769] = {.lex_state = 204}, + [4767] = {.lex_state = 239}, + [4768] = {.lex_state = 206}, + [4769] = {.lex_state = 242}, [4770] = {.lex_state = 204}, - [4771] = {.lex_state = 242}, + [4771] = {.lex_state = 204}, [4772] = {.lex_state = 204}, - [4773] = {.lex_state = 242}, - [4774] = {.lex_state = 204}, + [4773] = {.lex_state = 204}, + [4774] = {.lex_state = 242}, [4775] = {.lex_state = 204}, [4776] = {.lex_state = 204}, [4777] = {.lex_state = 204}, - [4778] = {.lex_state = 239}, + [4778] = {.lex_state = 204}, [4779] = {.lex_state = 204}, - [4780] = {.lex_state = 242}, - [4781] = {.lex_state = 242}, - [4782] = {.lex_state = 239}, - [4783] = {.lex_state = 239}, + [4780] = {.lex_state = 204}, + [4781] = {.lex_state = 204}, + [4782] = {.lex_state = 204}, + [4783] = {.lex_state = 204}, [4784] = {.lex_state = 204}, - [4785] = {.lex_state = 242}, + [4785] = {.lex_state = 241}, [4786] = {.lex_state = 204}, - [4787] = {.lex_state = 242}, - [4788] = {.lex_state = 206}, + [4787] = {.lex_state = 204}, + [4788] = {.lex_state = 204}, [4789] = {.lex_state = 204}, - [4790] = {.lex_state = 242}, + [4790] = {.lex_state = 204}, [4791] = {.lex_state = 204}, - [4792] = {.lex_state = 206}, - [4793] = {.lex_state = 242}, + [4792] = {.lex_state = 204}, + [4793] = {.lex_state = 239}, [4794] = {.lex_state = 239}, - [4795] = {.lex_state = 204}, - [4796] = {.lex_state = 204}, - [4797] = {.lex_state = 242}, - [4798] = {.lex_state = 204}, - [4799] = {.lex_state = 239}, - [4800] = {.lex_state = 239}, - [4801] = {.lex_state = 204}, - [4802] = {.lex_state = 204}, - [4803] = {.lex_state = 204}, + [4795] = {.lex_state = 239}, + [4796] = {.lex_state = 238}, + [4797] = {.lex_state = 204}, + [4798] = {.lex_state = 241}, + [4799] = {.lex_state = 204}, + [4800] = {.lex_state = 204}, + [4801] = {.lex_state = 238}, + [4802] = {.lex_state = 238}, + [4803] = {.lex_state = 238}, [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}, + [4810] = {.lex_state = 229}, [4811] = {.lex_state = 204}, - [4812] = {.lex_state = 204}, - [4813] = {.lex_state = 204}, - [4814] = {.lex_state = 239}, - [4815] = {.lex_state = 204}, - [4816] = {.lex_state = 239}, + [4812] = {.lex_state = 239}, + [4813] = {.lex_state = 242}, + [4814] = {.lex_state = 204}, + [4815] = {.lex_state = 242}, + [4816] = {.lex_state = 242}, [4817] = {.lex_state = 242}, - [4818] = {.lex_state = 204}, - [4819] = {.lex_state = 204}, + [4818] = {.lex_state = 206}, + [4819] = {.lex_state = 242}, [4820] = {.lex_state = 204}, - [4821] = {.lex_state = 242}, + [4821] = {.lex_state = 206}, [4822] = {.lex_state = 204}, - [4823] = {.lex_state = 204}, + [4823] = {.lex_state = 242}, [4824] = {.lex_state = 204}, - [4825] = {.lex_state = 231}, + [4825] = {.lex_state = 204}, [4826] = {.lex_state = 204}, - [4827] = {.lex_state = 204}, + [4827] = {.lex_state = 242}, [4828] = {.lex_state = 204}, [4829] = {.lex_state = 204}, - [4830] = {.lex_state = 242}, - [4831] = {.lex_state = 238}, - [4832] = {.lex_state = 239}, + [4830] = {.lex_state = 204}, + [4831] = {.lex_state = 204}, + [4832] = {.lex_state = 204}, [4833] = {.lex_state = 204}, - [4834] = {.lex_state = 239}, - [4835] = {.lex_state = 204}, + [4834] = {.lex_state = 204}, + [4835] = {.lex_state = 242}, [4836] = {.lex_state = 204}, [4837] = {.lex_state = 204}, - [4838] = {.lex_state = 204}, + [4838] = {.lex_state = 242}, [4839] = {.lex_state = 204}, [4840] = {.lex_state = 204}, - [4841] = {.lex_state = 239}, + [4841] = {.lex_state = 204}, [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}, + [4843] = {.lex_state = 204}, + [4844] = {.lex_state = 204}, + [4845] = {.lex_state = 242}, + [4846] = {.lex_state = 204}, + [4847] = {.lex_state = 242}, + [4848] = {.lex_state = 204}, + [4849] = {.lex_state = 204}, + [4850] = {.lex_state = 204}, + [4851] = {.lex_state = 204}, + [4852] = {.lex_state = 204}, + [4853] = {.lex_state = 204}, + [4854] = {.lex_state = 204}, + [4855] = {.lex_state = 229}, [4856] = {.lex_state = 229}, [4857] = {.lex_state = 229}, [4858] = {.lex_state = 229}, - [4859] = {.lex_state = 204}, + [4859] = {.lex_state = 229}, [4860] = {.lex_state = 229}, - [4861] = {.lex_state = 229}, + [4861] = {.lex_state = 204}, [4862] = {.lex_state = 229}, [4863] = {.lex_state = 229}, [4864] = {.lex_state = 229}, - [4865] = {.lex_state = 229}, - [4866] = {.lex_state = 229}, - [4867] = {.lex_state = 242}, - [4868] = {.lex_state = 229}, + [4865] = {.lex_state = 238}, + [4866] = {.lex_state = 207}, + [4867] = {.lex_state = 229}, + [4868] = {.lex_state = 204}, [4869] = {.lex_state = 242}, - [4870] = {.lex_state = 229}, - [4871] = {.lex_state = 229}, + [4870] = {.lex_state = 242}, + [4871] = {.lex_state = 242}, [4872] = {.lex_state = 242}, - [4873] = {.lex_state = 242}, - [4874] = {.lex_state = 204}, - [4875] = {.lex_state = 229}, - [4876] = {.lex_state = 242}, - [4877] = {.lex_state = 241}, + [4873] = {.lex_state = 229}, + [4874] = {.lex_state = 229}, + [4875] = {.lex_state = 204}, + [4876] = {.lex_state = 229}, + [4877] = {.lex_state = 229}, [4878] = {.lex_state = 229}, [4879] = {.lex_state = 229}, [4880] = {.lex_state = 229}, - [4881] = {.lex_state = 204}, + [4881] = {.lex_state = 229}, [4882] = {.lex_state = 229}, [4883] = {.lex_state = 229}, [4884] = {.lex_state = 229}, [4885] = {.lex_state = 229}, - [4886] = {.lex_state = 242}, + [4886] = {.lex_state = 229}, [4887] = {.lex_state = 229}, [4888] = {.lex_state = 229}, - [4889] = {.lex_state = 229}, - [4890] = {.lex_state = 229}, + [4889] = {.lex_state = 242}, + [4890] = {.lex_state = 204}, [4891] = {.lex_state = 204}, - [4892] = {.lex_state = 242}, - [4893] = {.lex_state = 229}, - [4894] = {.lex_state = 194}, - [4895] = {.lex_state = 241}, + [4892] = {.lex_state = 238}, + [4893] = {.lex_state = 194}, + [4894] = {.lex_state = 204}, + [4895] = {.lex_state = 229}, [4896] = {.lex_state = 204}, - [4897] = {.lex_state = 204}, + [4897] = {.lex_state = 241}, [4898] = {.lex_state = 229}, [4899] = {.lex_state = 204}, - [4900] = {.lex_state = 238}, + [4900] = {.lex_state = 229}, [4901] = {.lex_state = 229}, - [4902] = {.lex_state = 204}, + [4902] = {.lex_state = 242}, [4903] = {.lex_state = 229}, [4904] = {.lex_state = 229}, - [4905] = {.lex_state = 238}, - [4906] = {.lex_state = 204}, + [4905] = {.lex_state = 204}, + [4906] = {.lex_state = 229}, [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 = 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 = 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}, + [4908] = {.lex_state = 229}, + [4909] = {.lex_state = 242}, + [4910] = {.lex_state = 229}, + [4911] = {.lex_state = 229}, + [4912] = {.lex_state = 229}, + [4913] = {.lex_state = 204}, + [4914] = {.lex_state = 242}, + [4915] = {.lex_state = 229}, + [4916] = {.lex_state = 241}, + [4917] = {.lex_state = 229}, + [4918] = {.lex_state = 229}, + [4919] = {.lex_state = 204}, + [4920] = {.lex_state = 241}, + [4921] = {.lex_state = 205}, + [4922] = {.lex_state = 194}, + [4923] = {.lex_state = 241}, + [4924] = {.lex_state = 241}, + [4925] = {.lex_state = 194}, + [4926] = {.lex_state = 238}, + [4927] = {.lex_state = 238}, [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}, + [4929] = {.lex_state = 241}, + [4930] = {.lex_state = 241}, + [4931] = {.lex_state = 241}, + [4932] = {.lex_state = 241}, + [4933] = {.lex_state = 241}, + [4934] = {.lex_state = 194}, + [4935] = {.lex_state = 238}, + [4936] = {.lex_state = 206}, [4937] = {.lex_state = 206}, - [4938] = {.lex_state = 204}, - [4939] = {.lex_state = 206}, - [4940] = {.lex_state = 238}, - [4941] = {.lex_state = 194}, + [4938] = {.lex_state = 241}, + [4939] = {.lex_state = 204}, + [4940] = {.lex_state = 194}, + [4941] = {.lex_state = 241}, [4942] = {.lex_state = 238}, [4943] = {.lex_state = 241}, - [4944] = {.lex_state = 194}, - [4945] = {.lex_state = 238}, + [4944] = {.lex_state = 204}, + [4945] = {.lex_state = 204}, [4946] = {.lex_state = 206}, - [4947] = {.lex_state = 241}, - [4948] = {.lex_state = 241}, - [4949] = {.lex_state = 229}, + [4947] = {.lex_state = 206}, + [4948] = {.lex_state = 194}, + [4949] = {.lex_state = 206}, [4950] = {.lex_state = 241}, - [4951] = {.lex_state = 241}, - [4952] = {.lex_state = 241}, - [4953] = {.lex_state = 241}, - [4954] = {.lex_state = 229}, - [4955] = {.lex_state = 241}, + [4951] = {.lex_state = 205}, + [4952] = {.lex_state = 238}, + [4953] = {.lex_state = 194}, + [4954] = {.lex_state = 194}, + [4955] = {.lex_state = 229}, [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}, + [4958] = {.lex_state = 204}, + [4959] = {.lex_state = 194}, + [4960] = {.lex_state = 194}, + [4961] = {.lex_state = 194}, + [4962] = {.lex_state = 239}, + [4963] = {.lex_state = 229}, + [4964] = {.lex_state = 206}, [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 = 241}, + [4966] = {.lex_state = 241}, + [4967] = {.lex_state = 238}, + [4968] = {.lex_state = 239}, + [4969] = {.lex_state = 238}, + [4970] = {.lex_state = 194}, + [4971] = {.lex_state = 241}, + [4972] = {.lex_state = 206}, + [4973] = {.lex_state = 239}, + [4974] = {.lex_state = 241}, + [4975] = {.lex_state = 204}, + [4976] = {.lex_state = 206}, [4977] = {.lex_state = 241}, - [4978] = {.lex_state = 242}, + [4978] = {.lex_state = 238}, [4979] = {.lex_state = 241}, [4980] = {.lex_state = 241}, - [4981] = {.lex_state = 241}, + [4981] = {.lex_state = 238}, [4982] = {.lex_state = 241}, [4983] = {.lex_state = 241}, [4984] = {.lex_state = 241}, - [4985] = {.lex_state = 241}, - [4986] = {.lex_state = 241}, + [4985] = {.lex_state = 238}, + [4986] = {.lex_state = 242}, [4987] = {.lex_state = 241}, - [4988] = {.lex_state = 241}, - [4989] = {.lex_state = 241}, + [4988] = {.lex_state = 242}, + [4989] = {.lex_state = 242}, [4990] = {.lex_state = 241}, [4991] = {.lex_state = 241}, [4992] = {.lex_state = 241}, @@ -27236,7 +27264,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5006] = {.lex_state = 241}, [5007] = {.lex_state = 241}, [5008] = {.lex_state = 241}, - [5009] = {.lex_state = 241}, + [5009] = {.lex_state = 242}, [5010] = {.lex_state = 241}, [5011] = {.lex_state = 241}, [5012] = {.lex_state = 241}, @@ -27244,131 +27272,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 194}, - [5030] = {.lex_state = 204}, - [5031] = {.lex_state = 238}, - [5032] = {.lex_state = 241}, + [5017] = {.lex_state = 241}, + [5018] = {.lex_state = 241}, + [5019] = {.lex_state = 241}, + [5020] = {.lex_state = 241}, + [5021] = {.lex_state = 241}, + [5022] = {.lex_state = 241}, + [5023] = {.lex_state = 241}, + [5024] = {.lex_state = 241}, + [5025] = {.lex_state = 241}, + [5026] = {.lex_state = 241}, + [5027] = {.lex_state = 239}, + [5028] = {.lex_state = 241}, + [5029] = {.lex_state = 238}, + [5030] = {.lex_state = 242}, + [5031] = {.lex_state = 242}, + [5032] = {.lex_state = 242}, [5033] = {.lex_state = 242}, - [5034] = {.lex_state = 239}, - [5035] = {.lex_state = 239}, - [5036] = {.lex_state = 204}, - [5037] = {.lex_state = 238}, - [5038] = {.lex_state = 238}, - [5039] = {.lex_state = 238}, - [5040] = {.lex_state = 204}, + [5034] = {.lex_state = 194}, + [5035] = {.lex_state = 204}, + [5036] = {.lex_state = 194}, + [5037] = {.lex_state = 239}, + [5038] = {.lex_state = 239}, + [5039] = {.lex_state = 242}, + [5040] = {.lex_state = 242}, [5041] = {.lex_state = 238}, - [5042] = {.lex_state = 242}, - [5043] = {.lex_state = 242}, - [5044] = {.lex_state = 239}, - [5045] = {.lex_state = 242}, - [5046] = {.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 = 238}, - [5053] = {.lex_state = 239}, - [5054] = {.lex_state = 206}, + [5042] = {.lex_state = 241}, + [5043] = {.lex_state = 204}, + [5044] = {.lex_state = 242}, + [5045] = {.lex_state = 238}, + [5046] = {.lex_state = 204}, + [5047] = {.lex_state = 238}, + [5048] = {.lex_state = 242}, + [5049] = {.lex_state = 204}, + [5050] = {.lex_state = 238}, + [5051] = {.lex_state = 242}, + [5052] = {.lex_state = 242}, + [5053] = {.lex_state = 238}, + [5054] = {.lex_state = 238}, [5055] = {.lex_state = 238}, - [5056] = {.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 = 239}, + [5056] = {.lex_state = 239}, + [5057] = {.lex_state = 196}, + [5058] = {.lex_state = 196}, + [5059] = {.lex_state = 196}, + [5060] = {.lex_state = 242}, + [5061] = {.lex_state = 242}, + [5062] = {.lex_state = 239}, + [5063] = {.lex_state = 238}, [5064] = {.lex_state = 239}, [5065] = {.lex_state = 239}, - [5066] = {.lex_state = 238}, + [5066] = {.lex_state = 196}, [5067] = {.lex_state = 239}, [5068] = {.lex_state = 239}, - [5069] = {.lex_state = 196}, - [5070] = {.lex_state = 238}, + [5069] = {.lex_state = 239}, + [5070] = {.lex_state = 239}, [5071] = {.lex_state = 239}, - [5072] = {.lex_state = 242}, - [5073] = {.lex_state = 238}, + [5072] = {.lex_state = 238}, + [5073] = {.lex_state = 196}, [5074] = {.lex_state = 239}, - [5075] = {.lex_state = 239}, + [5075] = {.lex_state = 196}, [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}, + [5078] = {.lex_state = 239}, + [5079] = {.lex_state = 239}, + [5080] = {.lex_state = 239}, + [5081] = {.lex_state = 239}, + [5082] = {.lex_state = 196}, + [5083] = {.lex_state = 238}, [5084] = {.lex_state = 239}, - [5085] = {.lex_state = 196}, + [5085] = {.lex_state = 239}, [5086] = {.lex_state = 239}, - [5087] = {.lex_state = 206}, - [5088] = {.lex_state = 239}, + [5087] = {.lex_state = 239}, + [5088] = {.lex_state = 196}, [5089] = {.lex_state = 239}, - [5090] = {.lex_state = 206}, - [5091] = {.lex_state = 196}, - [5092] = {.lex_state = 196}, - [5093] = {.lex_state = 238}, - [5094] = {.lex_state = 239}, + [5090] = {.lex_state = 239}, + [5091] = {.lex_state = 238}, + [5092] = {.lex_state = 239}, + [5093] = {.lex_state = 196}, + [5094] = {.lex_state = 238}, [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 = 238}, + [5100] = {.lex_state = 238}, + [5101] = {.lex_state = 206}, + [5102] = {.lex_state = 194}, + [5103] = {.lex_state = 238}, + [5104] = {.lex_state = 206}, [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}, + [5108] = {.lex_state = 196}, + [5109] = {.lex_state = 238}, + [5110] = {.lex_state = 242}, + [5111] = {.lex_state = 206}, [5112] = {.lex_state = 239}, - [5113] = {.lex_state = 196}, - [5114] = {.lex_state = 196}, - [5115] = {.lex_state = 196}, - [5116] = {.lex_state = 196}, - [5117] = {.lex_state = 196}, - [5118] = {.lex_state = 196}, - [5119] = {.lex_state = 196}, + [5113] = {.lex_state = 239}, + [5114] = {.lex_state = 242}, + [5115] = {.lex_state = 238}, + [5116] = {.lex_state = 206}, + [5117] = {.lex_state = 238}, + [5118] = {.lex_state = 238}, + [5119] = {.lex_state = 239}, [5120] = {.lex_state = 196}, - [5121] = {.lex_state = 196}, - [5122] = {.lex_state = 196}, - [5123] = {.lex_state = 238}, - [5124] = {.lex_state = 196}, - [5125] = {.lex_state = 238}, + [5121] = {.lex_state = 206}, + [5122] = {.lex_state = 239}, + [5123] = {.lex_state = 196}, + [5124] = {.lex_state = 239}, + [5125] = {.lex_state = 239}, [5126] = {.lex_state = 196}, [5127] = {.lex_state = 196}, [5128] = {.lex_state = 196}, [5129] = {.lex_state = 196}, [5130] = {.lex_state = 196}, - [5131] = {.lex_state = 238}, - [5132] = {.lex_state = 238}, + [5131] = {.lex_state = 196}, + [5132] = {.lex_state = 196}, [5133] = {.lex_state = 196}, - [5134] = {.lex_state = 196}, - [5135] = {.lex_state = 196}, + [5134] = {.lex_state = 238}, + [5135] = {.lex_state = 239}, [5136] = {.lex_state = 196}, [5137] = {.lex_state = 196}, [5138] = {.lex_state = 196}, - [5139] = {.lex_state = 196}, + [5139] = {.lex_state = 239}, [5140] = {.lex_state = 196}, - [5141] = {.lex_state = 204}, + [5141] = {.lex_state = 196}, [5142] = {.lex_state = 196}, [5143] = {.lex_state = 196}, [5144] = {.lex_state = 196}, @@ -27380,28 +27408,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5150] = {.lex_state = 196}, [5151] = {.lex_state = 196}, [5152] = {.lex_state = 196}, - [5153] = {.lex_state = 196}, + [5153] = {.lex_state = 239}, [5154] = {.lex_state = 196}, - [5155] = {.lex_state = 196}, + [5155] = {.lex_state = 239}, [5156] = {.lex_state = 196}, [5157] = {.lex_state = 196}, [5158] = {.lex_state = 196}, - [5159] = {.lex_state = 196}, - [5160] = {.lex_state = 196}, + [5159] = {.lex_state = 239}, + [5160] = {.lex_state = 239}, [5161] = {.lex_state = 196}, [5162] = {.lex_state = 196}, [5163] = {.lex_state = 196}, - [5164] = {.lex_state = 196}, - [5165] = {.lex_state = 196}, + [5164] = {.lex_state = 204}, + [5165] = {.lex_state = 239}, [5166] = {.lex_state = 196}, [5167] = {.lex_state = 196}, [5168] = {.lex_state = 196}, [5169] = {.lex_state = 196}, [5170] = {.lex_state = 196}, - [5171] = {.lex_state = 196}, + [5171] = {.lex_state = 239}, [5172] = {.lex_state = 196}, - [5173] = {.lex_state = 196}, - [5174] = {.lex_state = 196}, + [5173] = {.lex_state = 239}, + [5174] = {.lex_state = 239}, [5175] = {.lex_state = 196}, [5176] = {.lex_state = 196}, [5177] = {.lex_state = 196}, @@ -27410,37 +27438,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5180] = {.lex_state = 196}, [5181] = {.lex_state = 196}, [5182] = {.lex_state = 196}, - [5183] = {.lex_state = 196}, - [5184] = {.lex_state = 196}, + [5183] = {.lex_state = 239}, + [5184] = {.lex_state = 239}, [5185] = {.lex_state = 196}, [5186] = {.lex_state = 196}, - [5187] = {.lex_state = 204}, - [5188] = {.lex_state = 196}, - [5189] = {.lex_state = 239}, - [5190] = {.lex_state = 239}, + [5187] = {.lex_state = 196}, + [5188] = {.lex_state = 238}, + [5189] = {.lex_state = 196}, + [5190] = {.lex_state = 196}, [5191] = {.lex_state = 196}, [5192] = {.lex_state = 196}, [5193] = {.lex_state = 196}, [5194] = {.lex_state = 196}, - [5195] = {.lex_state = 239}, - [5196] = {.lex_state = 239}, + [5195] = {.lex_state = 196}, + [5196] = {.lex_state = 196}, [5197] = {.lex_state = 196}, - [5198] = {.lex_state = 239}, - [5199] = {.lex_state = 239}, + [5198] = {.lex_state = 196}, + [5199] = {.lex_state = 196}, [5200] = {.lex_state = 196}, [5201] = {.lex_state = 196}, - [5202] = {.lex_state = 239}, + [5202] = {.lex_state = 196}, [5203] = {.lex_state = 196}, - [5204] = {.lex_state = 239}, - [5205] = {.lex_state = 239}, - [5206] = {.lex_state = 239}, - [5207] = {.lex_state = 239}, - [5208] = {.lex_state = 239}, + [5204] = {.lex_state = 196}, + [5205] = {.lex_state = 196}, + [5206] = {.lex_state = 196}, + [5207] = {.lex_state = 196}, + [5208] = {.lex_state = 196}, [5209] = {.lex_state = 196}, [5210] = {.lex_state = 196}, [5211] = {.lex_state = 196}, [5212] = {.lex_state = 196}, - [5213] = {.lex_state = 196}, + [5213] = {.lex_state = 204}, [5214] = {.lex_state = 196}, [5215] = {.lex_state = 196}, [5216] = {.lex_state = 196}, @@ -27457,28 +27485,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5227] = {.lex_state = 196}, [5228] = {.lex_state = 196}, [5229] = {.lex_state = 196}, - [5230] = {.lex_state = 239}, - [5231] = {.lex_state = 239}, - [5232] = {.lex_state = 239}, - [5233] = {.lex_state = 238}, + [5230] = {.lex_state = 196}, + [5231] = {.lex_state = 196}, + [5232] = {.lex_state = 196}, + [5233] = {.lex_state = 196}, [5234] = {.lex_state = 196}, - [5235] = {.lex_state = 239}, + [5235] = {.lex_state = 238}, [5236] = {.lex_state = 196}, - [5237] = {.lex_state = 239}, - [5238] = {.lex_state = 239}, + [5237] = {.lex_state = 238}, + [5238] = {.lex_state = 196}, [5239] = {.lex_state = 196}, - [5240] = {.lex_state = 239}, + [5240] = {.lex_state = 196}, [5241] = {.lex_state = 239}, [5242] = {.lex_state = 239}, [5243] = {.lex_state = 196}, - [5244] = {.lex_state = 238}, - [5245] = {.lex_state = 238}, - [5246] = {.lex_state = 239}, + [5244] = {.lex_state = 239}, + [5245] = {.lex_state = 196}, + [5246] = {.lex_state = 196}, [5247] = {.lex_state = 239}, [5248] = {.lex_state = 239}, - [5249] = {.lex_state = 239}, - [5250] = {.lex_state = 196}, - [5251] = {.lex_state = 238}, + [5249] = {.lex_state = 196}, + [5250] = {.lex_state = 239}, + [5251] = {.lex_state = 196}, [5252] = {.lex_state = 239}, [5253] = {.lex_state = 239}, [5254] = {.lex_state = 239}, @@ -27486,21 +27514,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5256] = {.lex_state = 196}, [5257] = {.lex_state = 239}, [5258] = {.lex_state = 239}, - [5259] = {.lex_state = 239}, + [5259] = {.lex_state = 196}, [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}, + [5264] = {.lex_state = 239}, + [5265] = {.lex_state = 239}, + [5266] = {.lex_state = 196}, + [5267] = {.lex_state = 239}, + [5268] = {.lex_state = 239}, + [5269] = {.lex_state = 196}, [5270] = {.lex_state = 196}, - [5271] = {.lex_state = 196}, - [5272] = {.lex_state = 196}, - [5273] = {.lex_state = 239}, + [5271] = {.lex_state = 239}, + [5272] = {.lex_state = 239}, + [5273] = {.lex_state = 196}, [5274] = {.lex_state = 239}, [5275] = {.lex_state = 239}, [5276] = {.lex_state = 239}, @@ -27508,310 +27536,310 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5278] = {.lex_state = 239}, [5279] = {.lex_state = 196}, [5280] = {.lex_state = 239}, - [5281] = {.lex_state = 239}, - [5282] = {.lex_state = 239}, - [5283] = {.lex_state = 196}, + [5281] = {.lex_state = 196}, + [5282] = {.lex_state = 196}, + [5283] = {.lex_state = 239}, [5284] = {.lex_state = 196}, [5285] = {.lex_state = 239}, [5286] = {.lex_state = 239}, - [5287] = {.lex_state = 239}, + [5287] = {.lex_state = 196}, [5288] = {.lex_state = 239}, - [5289] = {.lex_state = 196}, - [5290] = {.lex_state = 196}, + [5289] = {.lex_state = 239}, + [5290] = {.lex_state = 239}, [5291] = {.lex_state = 239}, - [5292] = {.lex_state = 239}, - [5293] = {.lex_state = 239}, + [5292] = {.lex_state = 238}, + [5293] = {.lex_state = 238}, [5294] = {.lex_state = 238}, - [5295] = {.lex_state = 196}, - [5296] = {.lex_state = 239}, - [5297] = {.lex_state = 196}, - [5298] = {.lex_state = 242}, - [5299] = {.lex_state = 204}, - [5300] = {.lex_state = 204}, - [5301] = {.lex_state = 204}, - [5302] = {.lex_state = 204}, - [5303] = {.lex_state = 204}, - [5304] = {.lex_state = 204}, + [5295] = {.lex_state = 239}, + [5296] = {.lex_state = 238}, + [5297] = {.lex_state = 238}, + [5298] = {.lex_state = 239}, + [5299] = {.lex_state = 238}, + [5300] = {.lex_state = 238}, + [5301] = {.lex_state = 239}, + [5302] = {.lex_state = 238}, + [5303] = {.lex_state = 196}, + [5304] = {.lex_state = 196}, [5305] = {.lex_state = 239}, - [5306] = {.lex_state = 204}, - [5307] = {.lex_state = 204}, - [5308] = {.lex_state = 206}, - [5309] = {.lex_state = 204}, + [5306] = {.lex_state = 239}, + [5307] = {.lex_state = 196}, + [5308] = {.lex_state = 239}, + [5309] = {.lex_state = 239}, [5310] = {.lex_state = 204}, - [5311] = {.lex_state = 206}, - [5312] = {.lex_state = 204}, - [5313] = {.lex_state = 204}, + [5311] = {.lex_state = 198}, + [5312] = {.lex_state = 239}, + [5313] = {.lex_state = 242}, [5314] = {.lex_state = 204}, [5315] = {.lex_state = 204}, - [5316] = {.lex_state = 239}, + [5316] = {.lex_state = 204}, [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}, + [5323] = {.lex_state = 204}, [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}, + [5325] = {.lex_state = 198}, + [5326] = {.lex_state = 198}, + [5327] = {.lex_state = 198}, + [5328] = {.lex_state = 239}, + [5329] = {.lex_state = 196}, + [5330] = {.lex_state = 242}, + [5331] = {.lex_state = 196}, + [5332] = {.lex_state = 239}, + [5333] = {.lex_state = 204}, + [5334] = {.lex_state = 206}, + [5335] = {.lex_state = 206}, + [5336] = {.lex_state = 204}, + [5337] = {.lex_state = 204}, + [5338] = {.lex_state = 204}, + [5339] = {.lex_state = 204}, + [5340] = {.lex_state = 204}, [5341] = {.lex_state = 204}, - [5342] = {.lex_state = 198}, - [5343] = {.lex_state = 198}, + [5342] = {.lex_state = 204}, + [5343] = {.lex_state = 242}, [5344] = {.lex_state = 204}, [5345] = {.lex_state = 204}, [5346] = {.lex_state = 204}, - [5347] = {.lex_state = 239}, + [5347] = {.lex_state = 204}, [5348] = {.lex_state = 204}, [5349] = {.lex_state = 204}, - [5350] = {.lex_state = 196}, - [5351] = {.lex_state = 204}, - [5352] = {.lex_state = 196}, + [5350] = {.lex_state = 204}, + [5351] = {.lex_state = 239}, + [5352] = {.lex_state = 198}, [5353] = {.lex_state = 204}, - [5354] = {.lex_state = 239}, + [5354] = {.lex_state = 204}, [5355] = {.lex_state = 204}, - [5356] = {.lex_state = 238}, - [5357] = {.lex_state = 242}, - [5358] = {.lex_state = 242}, - [5359] = {.lex_state = 238}, - [5360] = {.lex_state = 238}, - [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}, + [5356] = {.lex_state = 204}, + [5357] = {.lex_state = 204}, + [5358] = {.lex_state = 204}, + [5359] = {.lex_state = 242}, + [5360] = {.lex_state = 242}, + [5361] = {.lex_state = 242}, + [5362] = {.lex_state = 198}, + [5363] = {.lex_state = 204}, + [5364] = {.lex_state = 204}, + [5365] = {.lex_state = 204}, + [5366] = {.lex_state = 198}, + [5367] = {.lex_state = 204}, + [5368] = {.lex_state = 198}, + [5369] = {.lex_state = 204}, + [5370] = {.lex_state = 204}, + [5371] = {.lex_state = 204}, + [5372] = {.lex_state = 238}, + [5373] = {.lex_state = 238}, [5374] = {.lex_state = 242}, - [5375] = {.lex_state = 196}, - [5376] = {.lex_state = 238}, + [5375] = {.lex_state = 238}, + [5376] = {.lex_state = 242}, [5377] = {.lex_state = 238}, - [5378] = {.lex_state = 196}, - [5379] = {.lex_state = 196}, - [5380] = {.lex_state = 238}, - [5381] = {.lex_state = 196}, - [5382] = {.lex_state = 241}, + [5378] = {.lex_state = 238}, + [5379] = {.lex_state = 242}, + [5380] = {.lex_state = 242}, + [5381] = {.lex_state = 242}, + [5382] = {.lex_state = 242}, [5383] = {.lex_state = 238}, - [5384] = {.lex_state = 196}, - [5385] = {.lex_state = 196}, - [5386] = {.lex_state = 196}, - [5387] = {.lex_state = 196}, - [5388] = {.lex_state = 238}, - [5389] = {.lex_state = 238}, - [5390] = {.lex_state = 238}, - [5391] = {.lex_state = 238}, - [5392] = {.lex_state = 238}, + [5384] = {.lex_state = 242}, + [5385] = {.lex_state = 242}, + [5386] = {.lex_state = 242}, + [5387] = {.lex_state = 242}, + [5388] = {.lex_state = 242}, + [5389] = {.lex_state = 241}, + [5390] = {.lex_state = 242}, + [5391] = {.lex_state = 196}, + [5392] = {.lex_state = 196}, [5393] = {.lex_state = 196}, - [5394] = {.lex_state = 196}, - [5395] = {.lex_state = 196}, - [5396] = {.lex_state = 196}, + [5394] = {.lex_state = 238}, + [5395] = {.lex_state = 238}, + [5396] = {.lex_state = 238}, [5397] = {.lex_state = 196}, - [5398] = {.lex_state = 238}, - [5399] = {.lex_state = 238}, + [5398] = {.lex_state = 196}, + [5399] = {.lex_state = 196}, [5400] = {.lex_state = 238}, - [5401] = {.lex_state = 196}, + [5401] = {.lex_state = 238}, [5402] = {.lex_state = 238}, [5403] = {.lex_state = 238}, - [5404] = {.lex_state = 238}, - [5405] = {.lex_state = 196}, + [5404] = {.lex_state = 241}, + [5405] = {.lex_state = 238}, [5406] = {.lex_state = 238}, [5407] = {.lex_state = 196}, [5408] = {.lex_state = 238}, - [5409] = {.lex_state = 238}, + [5409] = {.lex_state = 196}, [5410] = {.lex_state = 196}, [5411] = {.lex_state = 196}, - [5412] = {.lex_state = 238}, - [5413] = {.lex_state = 239}, - [5414] = {.lex_state = 239}, + [5412] = {.lex_state = 196}, + [5413] = {.lex_state = 196}, + [5414] = {.lex_state = 196}, [5415] = {.lex_state = 238}, - [5416] = {.lex_state = 239}, + [5416] = {.lex_state = 238}, [5417] = {.lex_state = 238}, [5418] = {.lex_state = 238}, - [5419] = {.lex_state = 239}, - [5420] = {.lex_state = 238}, + [5419] = {.lex_state = 196}, + [5420] = {.lex_state = 196}, [5421] = {.lex_state = 238}, - [5422] = {.lex_state = 196}, - [5423] = {.lex_state = 251}, + [5422] = {.lex_state = 238}, + [5423] = {.lex_state = 196}, [5424] = {.lex_state = 238}, [5425] = {.lex_state = 196}, - [5426] = {.lex_state = 251}, - [5427] = {.lex_state = 251}, - [5428] = {.lex_state = 196}, + [5426] = {.lex_state = 238}, + [5427] = {.lex_state = 196}, + [5428] = {.lex_state = 238}, [5429] = {.lex_state = 238}, [5430] = {.lex_state = 238}, - [5431] = {.lex_state = 251}, + [5431] = {.lex_state = 238}, [5432] = {.lex_state = 238}, - [5433] = {.lex_state = 238}, - [5434] = {.lex_state = 196}, - [5435] = {.lex_state = 251}, + [5433] = {.lex_state = 239}, + [5434] = {.lex_state = 239}, + [5435] = {.lex_state = 239}, [5436] = {.lex_state = 238}, - [5437] = {.lex_state = 238}, + [5437] = {.lex_state = 239}, [5438] = {.lex_state = 238}, - [5439] = {.lex_state = 238}, + [5439] = {.lex_state = 251}, [5440] = {.lex_state = 238}, - [5441] = {.lex_state = 242}, + [5441] = {.lex_state = 238}, [5442] = {.lex_state = 238}, - [5443] = {.lex_state = 242}, - [5444] = {.lex_state = 196}, + [5443] = {.lex_state = 251}, + [5444] = {.lex_state = 251}, [5445] = {.lex_state = 251}, - [5446] = {.lex_state = 238}, + [5446] = {.lex_state = 242}, [5447] = {.lex_state = 238}, - [5448] = {.lex_state = 196}, - [5449] = {.lex_state = 251}, - [5450] = {.lex_state = 242}, - [5451] = {.lex_state = 198}, - [5452] = {.lex_state = 194}, - [5453] = {.lex_state = 238}, - [5454] = {.lex_state = 198}, - [5455] = {.lex_state = 238}, + [5448] = {.lex_state = 242}, + [5449] = {.lex_state = 238}, + [5450] = {.lex_state = 238}, + [5451] = {.lex_state = 251}, + [5452] = {.lex_state = 238}, + [5453] = {.lex_state = 196}, + [5454] = {.lex_state = 196}, + [5455] = {.lex_state = 196}, [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}, + [5457] = {.lex_state = 238}, + [5458] = {.lex_state = 238}, + [5459] = {.lex_state = 238}, + [5460] = {.lex_state = 238}, + [5461] = {.lex_state = 196}, + [5462] = {.lex_state = 196}, + [5463] = {.lex_state = 251}, + [5464] = {.lex_state = 238}, + [5465] = {.lex_state = 251}, [5466] = {.lex_state = 198}, - [5467] = {.lex_state = 198}, - [5468] = {.lex_state = 242}, - [5469] = {.lex_state = 194}, + [5467] = {.lex_state = 238}, + [5468] = {.lex_state = 198}, + [5469] = {.lex_state = 196}, [5470] = {.lex_state = 198}, - [5471] = {.lex_state = 198}, + [5471] = {.lex_state = 242}, [5472] = {.lex_state = 238}, - [5473] = {.lex_state = 196}, - [5474] = {.lex_state = 238}, - [5475] = {.lex_state = 196}, + [5473] = {.lex_state = 198}, + [5474] = {.lex_state = 198}, + [5475] = {.lex_state = 198}, [5476] = {.lex_state = 196}, - [5477] = {.lex_state = 238}, - [5478] = {.lex_state = 196}, - [5479] = {.lex_state = 238}, - [5480] = {.lex_state = 238}, - [5481] = {.lex_state = 196}, - [5482] = {.lex_state = 238}, + [5477] = {.lex_state = 198}, + [5478] = {.lex_state = 198}, + [5479] = {.lex_state = 242}, + [5480] = {.lex_state = 194}, + [5481] = {.lex_state = 198}, + [5482] = {.lex_state = 198}, [5483] = {.lex_state = 196}, - [5484] = {.lex_state = 196}, - [5485] = {.lex_state = 238}, - [5486] = {.lex_state = 242}, - [5487] = {.lex_state = 196}, + [5484] = {.lex_state = 198}, + [5485] = {.lex_state = 242}, + [5486] = {.lex_state = 194}, + [5487] = {.lex_state = 198}, [5488] = {.lex_state = 238}, - [5489] = {.lex_state = 238}, + [5489] = {.lex_state = 196}, [5490] = {.lex_state = 196}, - [5491] = {.lex_state = 196}, - [5492] = {.lex_state = 238}, + [5491] = {.lex_state = 238}, + [5492] = {.lex_state = 196}, [5493] = {.lex_state = 196}, - [5494] = {.lex_state = 238}, + [5494] = {.lex_state = 196}, [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}, + [5496] = {.lex_state = 238}, + [5497] = {.lex_state = 196}, + [5498] = {.lex_state = 238}, + [5499] = {.lex_state = 196}, + [5500] = {.lex_state = 238}, + [5501] = {.lex_state = 196}, + [5502] = {.lex_state = 238}, + [5503] = {.lex_state = 242}, + [5504] = {.lex_state = 238}, + [5505] = {.lex_state = 238}, + [5506] = {.lex_state = 238}, + [5507] = {.lex_state = 196}, + [5508] = {.lex_state = 238}, + [5509] = {.lex_state = 238}, + [5510] = {.lex_state = 196}, + [5511] = {.lex_state = 196}, [5512] = {.lex_state = 251}, - [5513] = {.lex_state = 251}, + [5513] = {.lex_state = 194}, [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}, + [5519] = {.lex_state = 251}, + [5520] = {.lex_state = 251}, [5521] = {.lex_state = 251}, [5522] = {.lex_state = 251}, [5523] = {.lex_state = 251}, - [5524] = {.lex_state = 238}, - [5525] = {.lex_state = 194}, + [5524] = {.lex_state = 242}, + [5525] = {.lex_state = 238}, [5526] = {.lex_state = 238}, [5527] = {.lex_state = 238}, [5528] = {.lex_state = 238}, [5529] = {.lex_state = 238}, - [5530] = {.lex_state = 238}, - [5531] = {.lex_state = 238}, + [5530] = {.lex_state = 251}, + [5531] = {.lex_state = 251}, [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}, + [5534] = {.lex_state = 251}, + [5535] = {.lex_state = 241}, + [5536] = {.lex_state = 251}, + [5537] = {.lex_state = 242}, + [5538] = {.lex_state = 251}, + [5539] = {.lex_state = 251}, + [5540] = {.lex_state = 251}, + [5541] = {.lex_state = 251}, [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}, + [5547] = {.lex_state = 251}, + [5548] = {.lex_state = 251}, [5549] = {.lex_state = 251}, [5550] = {.lex_state = 251}, - [5551] = {.lex_state = 251}, + [5551] = {.lex_state = 238}, [5552] = {.lex_state = 251}, - [5553] = {.lex_state = 194}, + [5553] = {.lex_state = 242}, [5554] = {.lex_state = 251}, [5555] = {.lex_state = 251}, [5556] = {.lex_state = 251}, - [5557] = {.lex_state = 194}, - [5558] = {.lex_state = 251}, + [5557] = {.lex_state = 251}, + [5558] = {.lex_state = 195}, [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 = 242}, - [5566] = {.lex_state = 242}, - [5567] = {.lex_state = 242}, - [5568] = {.lex_state = 196}, - [5569] = {.lex_state = 194}, - [5570] = {.lex_state = 196}, - [5571] = {.lex_state = 196}, - [5572] = {.lex_state = 97}, - [5573] = {.lex_state = 196}, - [5574] = {.lex_state = 242}, - [5575] = {.lex_state = 242}, - [5576] = {.lex_state = 242}, - [5577] = {.lex_state = 242}, - [5578] = {.lex_state = 238}, + [5561] = {.lex_state = 238}, + [5562] = {.lex_state = 238}, + [5563] = {.lex_state = 251}, + [5564] = {.lex_state = 238}, + [5565] = {.lex_state = 238}, + [5566] = {.lex_state = 251}, + [5567] = {.lex_state = 238}, + [5568] = {.lex_state = 238}, + [5569] = {.lex_state = 238}, + [5570] = {.lex_state = 194}, + [5571] = {.lex_state = 251}, + [5572] = {.lex_state = 251}, + [5573] = {.lex_state = 251}, + [5574] = {.lex_state = 238}, + [5575] = {.lex_state = 251}, + [5576] = {.lex_state = 238}, + [5577] = {.lex_state = 194}, + [5578] = {.lex_state = 251}, [5579] = {.lex_state = 196}, [5580] = {.lex_state = 196}, - [5581] = {.lex_state = 238}, - [5582] = {.lex_state = 196}, - [5583] = {.lex_state = 242}, - [5584] = {.lex_state = 242}, + [5581] = {.lex_state = 196}, + [5582] = {.lex_state = 238}, + [5583] = {.lex_state = 196}, + [5584] = {.lex_state = 196}, [5585] = {.lex_state = 196}, [5586] = {.lex_state = 196}, [5587] = {.lex_state = 196}, @@ -27819,32 +27847,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5589] = {.lex_state = 196}, [5590] = {.lex_state = 196}, [5591] = {.lex_state = 196}, - [5592] = {.lex_state = 178}, - [5593] = {.lex_state = 242}, - [5594] = {.lex_state = 242}, - [5595] = {.lex_state = 242}, + [5592] = {.lex_state = 196}, + [5593] = {.lex_state = 238}, + [5594] = {.lex_state = 194}, + [5595] = {.lex_state = 238}, [5596] = {.lex_state = 196}, - [5597] = {.lex_state = 194}, + [5597] = {.lex_state = 196}, [5598] = {.lex_state = 196}, [5599] = {.lex_state = 196}, [5600] = {.lex_state = 196}, [5601] = {.lex_state = 196}, - [5602] = {.lex_state = 242}, + [5602] = {.lex_state = 196}, [5603] = {.lex_state = 196}, [5604] = {.lex_state = 196}, - [5605] = {.lex_state = 196}, + [5605] = {.lex_state = 178}, [5606] = {.lex_state = 196}, [5607] = {.lex_state = 196}, - [5608] = {.lex_state = 178}, + [5608] = {.lex_state = 196}, [5609] = {.lex_state = 196}, [5610] = {.lex_state = 196}, [5611] = {.lex_state = 196}, [5612] = {.lex_state = 196}, [5613] = {.lex_state = 196}, - [5614] = {.lex_state = 242}, + [5614] = {.lex_state = 196}, [5615] = {.lex_state = 196}, - [5616] = {.lex_state = 196}, - [5617] = {.lex_state = 195}, + [5616] = {.lex_state = 194}, + [5617] = {.lex_state = 196}, [5618] = {.lex_state = 196}, [5619] = {.lex_state = 196}, [5620] = {.lex_state = 196}, @@ -27855,1099 +27883,1099 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5625] = {.lex_state = 196}, [5626] = {.lex_state = 196}, [5627] = {.lex_state = 196}, - [5628] = {.lex_state = 196}, + [5628] = {.lex_state = 242}, [5629] = {.lex_state = 196}, - [5630] = {.lex_state = 238}, - [5631] = {.lex_state = 242}, - [5632] = {.lex_state = 196}, + [5630] = {.lex_state = 196}, + [5631] = {.lex_state = 196}, + [5632] = {.lex_state = 195}, [5633] = {.lex_state = 196}, - [5634] = {.lex_state = 196}, - [5635] = {.lex_state = 196}, + [5634] = {.lex_state = 242}, + [5635] = {.lex_state = 242}, [5636] = {.lex_state = 196}, [5637] = {.lex_state = 196}, - [5638] = {.lex_state = 242}, - [5639] = {.lex_state = 242}, - [5640] = {.lex_state = 196}, - [5641] = {.lex_state = 196}, - [5642] = {.lex_state = 196}, + [5638] = {.lex_state = 196}, + [5639] = {.lex_state = 196}, + [5640] = {.lex_state = 242}, + [5641] = {.lex_state = 194}, + [5642] = {.lex_state = 242}, [5643] = {.lex_state = 196}, - [5644] = {.lex_state = 242}, - [5645] = {.lex_state = 242}, - [5646] = {.lex_state = 196}, + [5644] = {.lex_state = 196}, + [5645] = {.lex_state = 178}, + [5646] = {.lex_state = 242}, [5647] = {.lex_state = 196}, - [5648] = {.lex_state = 196}, + [5648] = {.lex_state = 242}, [5649] = {.lex_state = 242}, - [5650] = {.lex_state = 196}, - [5651] = {.lex_state = 196}, + [5650] = {.lex_state = 242}, + [5651] = {.lex_state = 242}, [5652] = {.lex_state = 196}, [5653] = {.lex_state = 196}, [5654] = {.lex_state = 196}, - [5655] = {.lex_state = 242}, + [5655] = {.lex_state = 196}, [5656] = {.lex_state = 196}, - [5657] = {.lex_state = 238}, + [5657] = {.lex_state = 196}, [5658] = {.lex_state = 196}, [5659] = {.lex_state = 196}, - [5660] = {.lex_state = 196}, + [5660] = {.lex_state = 242}, [5661] = {.lex_state = 196}, - [5662] = {.lex_state = 196}, - [5663] = {.lex_state = 242}, - [5664] = {.lex_state = 196}, - [5665] = {.lex_state = 196}, + [5662] = {.lex_state = 242}, + [5663] = {.lex_state = 196}, + [5664] = {.lex_state = 242}, + [5665] = {.lex_state = 195}, [5666] = {.lex_state = 242}, - [5667] = {.lex_state = 196}, - [5668] = {.lex_state = 196}, - [5669] = {.lex_state = 178}, + [5667] = {.lex_state = 242}, + [5668] = {.lex_state = 242}, + [5669] = {.lex_state = 242}, [5670] = {.lex_state = 242}, [5671] = {.lex_state = 242}, [5672] = {.lex_state = 242}, [5673] = {.lex_state = 196}, [5674] = {.lex_state = 196}, - [5675] = {.lex_state = 196}, + [5675] = {.lex_state = 99}, [5676] = {.lex_state = 242}, - [5677] = {.lex_state = 242}, + [5677] = {.lex_state = 238}, [5678] = {.lex_state = 242}, [5679] = {.lex_state = 242}, - [5680] = {.lex_state = 196}, - [5681] = {.lex_state = 196}, - [5682] = {.lex_state = 194}, + [5680] = {.lex_state = 242}, + [5681] = {.lex_state = 242}, + [5682] = {.lex_state = 196}, [5683] = {.lex_state = 196}, - [5684] = {.lex_state = 196}, - [5685] = {.lex_state = 196}, + [5684] = {.lex_state = 242}, + [5685] = {.lex_state = 242}, [5686] = {.lex_state = 196}, - [5687] = {.lex_state = 238}, - [5688] = {.lex_state = 194}, - [5689] = {.lex_state = 196}, + [5687] = {.lex_state = 242}, + [5688] = {.lex_state = 196}, + [5689] = {.lex_state = 242}, [5690] = {.lex_state = 196}, - [5691] = {.lex_state = 196}, - [5692] = {.lex_state = 196}, - [5693] = {.lex_state = 195}, + [5691] = {.lex_state = 194}, + [5692] = {.lex_state = 242}, + [5693] = {.lex_state = 196}, [5694] = {.lex_state = 196}, - [5695] = {.lex_state = 242}, + [5695] = {.lex_state = 196}, [5696] = {.lex_state = 196}, [5697] = {.lex_state = 196}, [5698] = {.lex_state = 196}, - [5699] = {.lex_state = 238}, + [5699] = {.lex_state = 242}, [5700] = {.lex_state = 196}, [5701] = {.lex_state = 196}, [5702] = {.lex_state = 196}, - [5703] = {.lex_state = 242}, + [5703] = {.lex_state = 196}, [5704] = {.lex_state = 242}, [5705] = {.lex_state = 196}, [5706] = {.lex_state = 196}, - [5707] = {.lex_state = 196}, - [5708] = {.lex_state = 242}, - [5709] = {.lex_state = 242}, + [5707] = {.lex_state = 238}, + [5708] = {.lex_state = 196}, + [5709] = {.lex_state = 196}, [5710] = {.lex_state = 196}, - [5711] = {.lex_state = 196}, + [5711] = {.lex_state = 242}, [5712] = {.lex_state = 196}, [5713] = {.lex_state = 196}, - [5714] = {.lex_state = 194}, - [5715] = {.lex_state = 242}, + [5714] = {.lex_state = 242}, + [5715] = {.lex_state = 196}, [5716] = {.lex_state = 196}, [5717] = {.lex_state = 196}, [5718] = {.lex_state = 242}, - [5719] = {.lex_state = 238}, - [5720] = {.lex_state = 178}, - [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}, + [5719] = {.lex_state = 242}, + [5720] = {.lex_state = 196}, + [5721] = {.lex_state = 196}, + [5722] = {.lex_state = 196}, + [5723] = {.lex_state = 195}, + [5724] = {.lex_state = 196}, + [5725] = {.lex_state = 196}, + [5726] = {.lex_state = 196}, + [5727] = {.lex_state = 242}, + [5728] = {.lex_state = 196}, [5729] = {.lex_state = 238}, - [5730] = {.lex_state = 242}, - [5731] = {.lex_state = 238}, + [5730] = {.lex_state = 194}, + [5731] = {.lex_state = 196}, [5732] = {.lex_state = 238}, [5733] = {.lex_state = 178}, - [5734] = {.lex_state = 246}, - [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 = 178}, + [5734] = {.lex_state = 196}, + [5735] = {.lex_state = 196}, + [5736] = {.lex_state = 178}, + [5737] = {.lex_state = 195}, + [5738] = {.lex_state = 246}, + [5739] = {.lex_state = 178}, + [5740] = {.lex_state = 239}, + [5741] = {.lex_state = 178}, + [5742] = {.lex_state = 246}, + [5743] = {.lex_state = 242}, + [5744] = {.lex_state = 242}, + [5745] = {.lex_state = 195}, + [5746] = {.lex_state = 242}, + [5747] = {.lex_state = 242}, + [5748] = {.lex_state = 242}, + [5749] = {.lex_state = 242}, + [5750] = {.lex_state = 242}, + [5751] = {.lex_state = 194}, + [5752] = {.lex_state = 194}, + [5753] = {.lex_state = 239}, + [5754] = {.lex_state = 238}, + [5755] = {.lex_state = 238}, + [5756] = {.lex_state = 238}, + [5757] = {.lex_state = 246}, + [5758] = {.lex_state = 238}, + [5759] = {.lex_state = 246}, [5760] = {.lex_state = 178}, - [5761] = {.lex_state = 178}, - [5762] = {.lex_state = 178}, - [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 = 242}, - [5780] = {.lex_state = 178}, - [5781] = {.lex_state = 194}, - [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}, + [5761] = {.lex_state = 242}, + [5762] = {.lex_state = 242}, + [5763] = {.lex_state = 242}, + [5764] = {.lex_state = 242}, + [5765] = {.lex_state = 246}, + [5766] = {.lex_state = 246}, + [5767] = {.lex_state = 246}, + [5768] = {.lex_state = 195}, + [5769] = {.lex_state = 238}, + [5770] = {.lex_state = 238}, + [5771] = {.lex_state = 238}, + [5772] = {.lex_state = 238}, + [5773] = {.lex_state = 178}, + [5774] = {.lex_state = 246}, + [5775] = {.lex_state = 178}, + [5776] = {.lex_state = 194}, + [5777] = {.lex_state = 195}, + [5778] = {.lex_state = 195}, + [5779] = {.lex_state = 246}, + [5780] = {.lex_state = 194}, + [5781] = {.lex_state = 204}, + [5782] = {.lex_state = 246}, + [5783] = {.lex_state = 178}, + [5784] = {.lex_state = 239}, + [5785] = {.lex_state = 246}, + [5786] = {.lex_state = 239}, + [5787] = {.lex_state = 246}, + [5788] = {.lex_state = 195}, [5789] = {.lex_state = 195}, - [5790] = {.lex_state = 246}, - [5791] = {.lex_state = 239}, - [5792] = {.lex_state = 178}, - [5793] = {.lex_state = 239}, - [5794] = {.lex_state = 239}, - [5795] = {.lex_state = 178}, - [5796] = {.lex_state = 194}, - [5797] = {.lex_state = 178}, - [5798] = {.lex_state = 178}, - [5799] = {.lex_state = 178}, - [5800] = {.lex_state = 246}, - [5801] = {.lex_state = 194}, + [5790] = {.lex_state = 242}, + [5791] = {.lex_state = 194}, + [5792] = {.lex_state = 242}, + [5793] = {.lex_state = 242}, + [5794] = {.lex_state = 195}, + [5795] = {.lex_state = 242}, + [5796] = {.lex_state = 178}, + [5797] = {.lex_state = 242}, + [5798] = {.lex_state = 242}, + [5799] = {.lex_state = 242}, + [5800] = {.lex_state = 242}, + [5801] = {.lex_state = 239}, [5802] = {.lex_state = 239}, - [5803] = {.lex_state = 246}, - [5804] = {.lex_state = 242}, - [5805] = {.lex_state = 246}, - [5806] = {.lex_state = 242}, - [5807] = {.lex_state = 246}, - [5808] = {.lex_state = 239}, - [5809] = {.lex_state = 239}, + [5803] = {.lex_state = 178}, + [5804] = {.lex_state = 178}, + [5805] = {.lex_state = 195}, + [5806] = {.lex_state = 194}, + [5807] = {.lex_state = 195}, + [5808] = {.lex_state = 194}, + [5809] = {.lex_state = 195}, [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}, + [5811] = {.lex_state = 178}, + [5812] = {.lex_state = 195}, + [5813] = {.lex_state = 178}, + [5814] = {.lex_state = 178}, + [5815] = {.lex_state = 178}, + [5816] = {.lex_state = 178}, + [5817] = {.lex_state = 178}, [5818] = {.lex_state = 178}, - [5819] = {.lex_state = 194}, - [5820] = {.lex_state = 239}, + [5819] = {.lex_state = 178}, + [5820] = {.lex_state = 246}, [5821] = {.lex_state = 239}, [5822] = {.lex_state = 239}, - [5823] = {.lex_state = 239}, - [5824] = {.lex_state = 239}, + [5823] = {.lex_state = 178}, + [5824] = {.lex_state = 242}, [5825] = {.lex_state = 178}, - [5826] = {.lex_state = 246}, - [5827] = {.lex_state = 246}, - [5828] = {.lex_state = 246}, - [5829] = {.lex_state = 195}, + [5826] = {.lex_state = 178}, + [5827] = {.lex_state = 178}, + [5828] = {.lex_state = 178}, + [5829] = {.lex_state = 178}, [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 = 246}, - [5837] = {.lex_state = 178}, - [5838] = {.lex_state = 241}, + [5832] = {.lex_state = 194}, + [5833] = {.lex_state = 178}, + [5834] = {.lex_state = 239}, + [5835] = {.lex_state = 195}, + [5836] = {.lex_state = 239}, + [5837] = {.lex_state = 241}, + [5838] = {.lex_state = 194}, [5839] = {.lex_state = 246}, [5840] = {.lex_state = 239}, - [5841] = {.lex_state = 178}, - [5842] = {.lex_state = 246}, - [5843] = {.lex_state = 246}, + [5841] = {.lex_state = 246}, + [5842] = {.lex_state = 195}, + [5843] = {.lex_state = 239}, [5844] = {.lex_state = 194}, - [5845] = {.lex_state = 242}, - [5846] = {.lex_state = 194}, + [5845] = {.lex_state = 195}, + [5846] = {.lex_state = 241}, [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}, + [5848] = {.lex_state = 239}, + [5849] = {.lex_state = 246}, + [5850] = {.lex_state = 239}, + [5851] = {.lex_state = 194}, + [5852] = {.lex_state = 194}, + [5853] = {.lex_state = 239}, + [5854] = {.lex_state = 239}, + [5855] = {.lex_state = 178}, + [5856] = {.lex_state = 178}, + [5857] = {.lex_state = 246}, + [5858] = {.lex_state = 246}, + [5859] = {.lex_state = 178}, + [5860] = {.lex_state = 178}, + [5861] = {.lex_state = 246}, + [5862] = {.lex_state = 178}, + [5863] = {.lex_state = 178}, + [5864] = {.lex_state = 194}, [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 = 196}, + [5867] = {.lex_state = 178}, + [5868] = {.lex_state = 178}, + [5869] = {.lex_state = 178}, + [5870] = {.lex_state = 178}, + [5871] = {.lex_state = 195}, + [5872] = {.lex_state = 246}, + [5873] = {.lex_state = 204}, + [5874] = {.lex_state = 246}, + [5875] = {.lex_state = 195}, + [5876] = {.lex_state = 246}, + [5877] = {.lex_state = 246}, + [5878] = {.lex_state = 246}, + [5879] = {.lex_state = 239}, + [5880] = {.lex_state = 195}, + [5881] = {.lex_state = 246}, + [5882] = {.lex_state = 246}, + [5883] = {.lex_state = 246}, + [5884] = {.lex_state = 194}, + [5885] = {.lex_state = 195}, + [5886] = {.lex_state = 239}, + [5887] = {.lex_state = 242}, [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}, + [5889] = {.lex_state = 239}, + [5890] = {.lex_state = 99}, + [5891] = {.lex_state = 195}, + [5892] = {.lex_state = 238}, + [5893] = {.lex_state = 99}, + [5894] = {.lex_state = 99}, + [5895] = {.lex_state = 239}, + [5896] = {.lex_state = 99}, + [5897] = {.lex_state = 99}, + [5898] = {.lex_state = 242}, [5899] = {.lex_state = 196}, - [5900] = {.lex_state = 242}, - [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}, + [5900] = {.lex_state = 196}, + [5901] = {.lex_state = 196}, + [5902] = {.lex_state = 196}, + [5903] = {.lex_state = 194}, + [5904] = {.lex_state = 196}, + [5905] = {.lex_state = 196}, + [5906] = {.lex_state = 196}, + [5907] = {.lex_state = 196}, + [5908] = {.lex_state = 196}, + [5909] = {.lex_state = 99}, + [5910] = {.lex_state = 99}, + [5911] = {.lex_state = 241}, + [5912] = {.lex_state = 99}, [5913] = {.lex_state = 242}, - [5914] = {.lex_state = 239}, - [5915] = {.lex_state = 196}, + [5914] = {.lex_state = 194}, + [5915] = {.lex_state = 99}, [5916] = {.lex_state = 239}, - [5917] = {.lex_state = 238}, + [5917] = {.lex_state = 99}, [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}, + [5919] = {.lex_state = 99}, + [5920] = {.lex_state = 99}, + [5921] = {.lex_state = 239}, + [5922] = {.lex_state = 242}, + [5923] = {.lex_state = 99}, + [5924] = {.lex_state = 99}, + [5925] = {.lex_state = 99}, + [5926] = {.lex_state = 239}, + [5927] = {.lex_state = 239}, + [5928] = {.lex_state = 242}, + [5929] = {.lex_state = 242}, + [5930] = {.lex_state = 99}, + [5931] = {.lex_state = 242}, + [5932] = {.lex_state = 99}, [5933] = {.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 = 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}, + [5935] = {.lex_state = 242}, + [5936] = {.lex_state = 99}, + [5937] = {.lex_state = 242}, + [5938] = {.lex_state = 99}, + [5939] = {.lex_state = 242}, + [5940] = {.lex_state = 99}, + [5941] = {.lex_state = 242}, + [5942] = {.lex_state = 99}, + [5943] = {.lex_state = 239}, + [5944] = {.lex_state = 99}, + [5945] = {.lex_state = 242}, + [5946] = {.lex_state = 242}, + [5947] = {.lex_state = 242}, + [5948] = {.lex_state = 99}, + [5949] = {.lex_state = 194}, + [5950] = {.lex_state = 242}, + [5951] = {.lex_state = 242}, [5952] = {.lex_state = 242}, - [5953] = {.lex_state = 242}, - [5954] = {.lex_state = 97}, - [5955] = {.lex_state = 97}, - [5956] = {.lex_state = 194}, - [5957] = {.lex_state = 239}, + [5953] = {.lex_state = 194}, + [5954] = {.lex_state = 196}, + [5955] = {.lex_state = 242}, + [5956] = {.lex_state = 250}, + [5957] = {.lex_state = 238}, [5958] = {.lex_state = 242}, - [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}, + [5959] = {.lex_state = 99}, + [5960] = {.lex_state = 241}, + [5961] = {.lex_state = 239}, + [5962] = {.lex_state = 196}, + [5963] = {.lex_state = 238}, + [5964] = {.lex_state = 238}, + [5965] = {.lex_state = 194}, + [5966] = {.lex_state = 242}, + [5967] = {.lex_state = 99}, + [5968] = {.lex_state = 239}, [5969] = {.lex_state = 196}, - [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 = 241}, - [5980] = {.lex_state = 241}, - [5981] = {.lex_state = 241}, - [5982] = {.lex_state = 241}, - [5983] = {.lex_state = 241}, - [5984] = {.lex_state = 241}, + [5970] = {.lex_state = 99}, + [5971] = {.lex_state = 99}, + [5972] = {.lex_state = 194}, + [5973] = {.lex_state = 194}, + [5974] = {.lex_state = 99}, + [5975] = {.lex_state = 242}, + [5976] = {.lex_state = 99}, + [5977] = {.lex_state = 99}, + [5978] = {.lex_state = 195}, + [5979] = {.lex_state = 99}, + [5980] = {.lex_state = 99}, + [5981] = {.lex_state = 239}, + [5982] = {.lex_state = 99}, + [5983] = {.lex_state = 239}, + [5984] = {.lex_state = 238}, [5985] = {.lex_state = 241}, [5986] = {.lex_state = 241}, - [5987] = {.lex_state = 242}, + [5987] = {.lex_state = 196}, [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 = 196}, - [5995] = {.lex_state = 238}, - [5996] = {.lex_state = 238}, + [5991] = {.lex_state = 244}, + [5992] = {.lex_state = 196}, + [5993] = {.lex_state = 241}, + [5994] = {.lex_state = 238}, + [5995] = {.lex_state = 196}, + [5996] = {.lex_state = 241}, [5997] = {.lex_state = 238}, - [5998] = {.lex_state = 242}, - [5999] = {.lex_state = 238}, - [6000] = {.lex_state = 196}, - [6001] = {.lex_state = 238}, - [6002] = {.lex_state = 238}, - [6003] = {.lex_state = 238}, - [6004] = {.lex_state = 241}, - [6005] = {.lex_state = 196}, + [5998] = {.lex_state = 241}, + [5999] = {.lex_state = 196}, + [6000] = {.lex_state = 241}, + [6001] = {.lex_state = 241}, + [6002] = {.lex_state = 241}, + [6003] = {.lex_state = 241}, + [6004] = {.lex_state = 238}, + [6005] = {.lex_state = 238}, [6006] = {.lex_state = 241}, [6007] = {.lex_state = 196}, - [6008] = {.lex_state = 241}, - [6009] = {.lex_state = 241}, + [6008] = {.lex_state = 244}, + [6009] = {.lex_state = 196}, [6010] = {.lex_state = 241}, [6011] = {.lex_state = 241}, - [6012] = {.lex_state = 241}, - [6013] = {.lex_state = 196}, - [6014] = {.lex_state = 196}, - [6015] = {.lex_state = 241}, + [6012] = {.lex_state = 196}, + [6013] = {.lex_state = 241}, + [6014] = {.lex_state = 241}, + [6015] = {.lex_state = 196}, [6016] = {.lex_state = 241}, - [6017] = {.lex_state = 244}, - [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 = 241}, + [6017] = {.lex_state = 196}, + [6018] = {.lex_state = 242}, + [6019] = {.lex_state = 238}, + [6020] = {.lex_state = 238}, + [6021] = {.lex_state = 196}, + [6022] = {.lex_state = 242}, + [6023] = {.lex_state = 241}, + [6024] = {.lex_state = 196}, [6025] = {.lex_state = 241}, - [6026] = {.lex_state = 241}, + [6026] = {.lex_state = 196}, [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}, + [6028] = {.lex_state = 241}, + [6029] = {.lex_state = 196}, + [6030] = {.lex_state = 238}, + [6031] = {.lex_state = 238}, + [6032] = {.lex_state = 241}, + [6033] = {.lex_state = 242}, + [6034] = {.lex_state = 242}, + [6035] = {.lex_state = 238}, [6036] = {.lex_state = 241}, - [6037] = {.lex_state = 196}, - [6038] = {.lex_state = 241}, + [6037] = {.lex_state = 242}, + [6038] = {.lex_state = 238}, [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}, + [6040] = {.lex_state = 238}, + [6041] = {.lex_state = 238}, + [6042] = {.lex_state = 238}, + [6043] = {.lex_state = 241}, + [6044] = {.lex_state = 241}, + [6045] = {.lex_state = 196}, [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 = 196}, + [6048] = {.lex_state = 238}, + [6049] = {.lex_state = 238}, + [6050] = {.lex_state = 241}, + [6051] = {.lex_state = 241}, + [6052] = {.lex_state = 241}, + [6053] = {.lex_state = 241}, + [6054] = {.lex_state = 241}, [6055] = {.lex_state = 196}, - [6056] = {.lex_state = 242}, - [6057] = {.lex_state = 238}, - [6058] = {.lex_state = 175}, - [6059] = {.lex_state = 194}, - [6060] = {.lex_state = 194}, - [6061] = {.lex_state = 242}, - [6062] = {.lex_state = 196}, + [6056] = {.lex_state = 196}, + [6057] = {.lex_state = 242}, + [6058] = {.lex_state = 241}, + [6059] = {.lex_state = 196}, + [6060] = {.lex_state = 196}, + [6061] = {.lex_state = 241}, + [6062] = {.lex_state = 238}, [6063] = {.lex_state = 242}, - [6064] = {.lex_state = 194}, - [6065] = {.lex_state = 246}, + [6064] = {.lex_state = 241}, + [6065] = {.lex_state = 241}, [6066] = {.lex_state = 241}, [6067] = {.lex_state = 241}, [6068] = {.lex_state = 241}, - [6069] = {.lex_state = 234}, - [6070] = {.lex_state = 242}, + [6069] = {.lex_state = 242}, + [6070] = {.lex_state = 238}, [6071] = {.lex_state = 234}, - [6072] = {.lex_state = 196}, - [6073] = {.lex_state = 206}, + [6072] = {.lex_state = 246}, + [6073] = {.lex_state = 194}, [6074] = {.lex_state = 196}, [6075] = {.lex_state = 242}, - [6076] = {.lex_state = 242}, - [6077] = {.lex_state = 242}, - [6078] = {.lex_state = 246}, + [6076] = {.lex_state = 196}, + [6077] = {.lex_state = 194}, + [6078] = {.lex_state = 194}, [6079] = {.lex_state = 242}, - [6080] = {.lex_state = 238}, + [6080] = {.lex_state = 196}, [6081] = {.lex_state = 238}, - [6082] = {.lex_state = 241}, + [6082] = {.lex_state = 234}, [6083] = {.lex_state = 241}, - [6084] = {.lex_state = 241}, - [6085] = {.lex_state = 194}, + [6084] = {.lex_state = 196}, + [6085] = {.lex_state = 242}, [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 = 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}, + [6087] = {.lex_state = 238}, + [6088] = {.lex_state = 246}, + [6089] = {.lex_state = 175}, + [6090] = {.lex_state = 206}, + [6091] = {.lex_state = 242}, + [6092] = {.lex_state = 194}, + [6093] = {.lex_state = 196}, + [6094] = {.lex_state = 196}, + [6095] = {.lex_state = 241}, + [6096] = {.lex_state = 242}, + [6097] = {.lex_state = 238}, + [6098] = {.lex_state = 234}, + [6099] = {.lex_state = 242}, + [6100] = {.lex_state = 241}, + [6101] = {.lex_state = 234}, + [6102] = {.lex_state = 242}, + [6103] = {.lex_state = 241}, [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}, + [6105] = {.lex_state = 200}, + [6106] = {.lex_state = 238}, + [6107] = {.lex_state = 238}, + [6108] = {.lex_state = 238}, + [6109] = {.lex_state = 196}, + [6110] = {.lex_state = 239}, + [6111] = {.lex_state = 239}, [6112] = {.lex_state = 244}, - [6113] = {.lex_state = 242}, + [6113] = {.lex_state = 244}, [6114] = {.lex_state = 196}, - [6115] = {.lex_state = 200}, + [6115] = {.lex_state = 244}, [6116] = {.lex_state = 242}, - [6117] = {.lex_state = 200}, + [6117] = {.lex_state = 244}, [6118] = {.lex_state = 239}, - [6119] = {.lex_state = 196}, - [6120] = {.lex_state = 238}, + [6119] = {.lex_state = 244}, + [6120] = {.lex_state = 200}, [6121] = {.lex_state = 196}, - [6122] = {.lex_state = 242}, + [6122] = {.lex_state = 244}, [6123] = {.lex_state = 200}, - [6124] = {.lex_state = 242}, + [6124] = {.lex_state = 200}, [6125] = {.lex_state = 244}, - [6126] = {.lex_state = 200}, - [6127] = {.lex_state = 242}, - [6128] = {.lex_state = 196}, - [6129] = {.lex_state = 239}, + [6126] = {.lex_state = 242}, + [6127] = {.lex_state = 239}, + [6128] = {.lex_state = 239}, + [6129] = {.lex_state = 196}, [6130] = {.lex_state = 242}, [6131] = {.lex_state = 242}, - [6132] = {.lex_state = 244}, + [6132] = {.lex_state = 242}, [6133] = {.lex_state = 244}, - [6134] = {.lex_state = 242}, - [6135] = {.lex_state = 242}, - [6136] = {.lex_state = 242}, - [6137] = {.lex_state = 244}, - [6138] = {.lex_state = 242}, + [6134] = {.lex_state = 244}, + [6135] = {.lex_state = 200}, + [6136] = {.lex_state = 196}, + [6137] = {.lex_state = 242}, + [6138] = {.lex_state = 200}, [6139] = {.lex_state = 242}, - [6140] = {.lex_state = 242}, + [6140] = {.lex_state = 239}, [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}, + [6146] = {.lex_state = 242}, + [6147] = {.lex_state = 196}, [6148] = {.lex_state = 242}, - [6149] = {.lex_state = 244}, + [6149] = {.lex_state = 242}, [6150] = {.lex_state = 242}, - [6151] = {.lex_state = 242}, - [6152] = {.lex_state = 200}, + [6151] = {.lex_state = 244}, + [6152] = {.lex_state = 239}, [6153] = {.lex_state = 244}, - [6154] = {.lex_state = 242}, - [6155] = {.lex_state = 200}, - [6156] = {.lex_state = 242}, - [6157] = {.lex_state = 196}, - [6158] = {.lex_state = 242}, - [6159] = {.lex_state = 239}, - [6160] = {.lex_state = 244}, + [6154] = {.lex_state = 200}, + [6155] = {.lex_state = 244}, + [6156] = {.lex_state = 244}, + [6157] = {.lex_state = 244}, + [6158] = {.lex_state = 239}, + [6159] = {.lex_state = 242}, + [6160] = {.lex_state = 175}, [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}, + [6163] = {.lex_state = 196}, + [6164] = {.lex_state = 244}, + [6165] = {.lex_state = 238}, + [6166] = {.lex_state = 244}, + [6167] = {.lex_state = 239}, [6168] = {.lex_state = 239}, - [6169] = {.lex_state = 242}, - [6170] = {.lex_state = 242}, + [6169] = {.lex_state = 196}, + [6170] = {.lex_state = 238}, [6171] = {.lex_state = 242}, - [6172] = {.lex_state = 200}, - [6173] = {.lex_state = 239}, - [6174] = {.lex_state = 244}, - [6175] = {.lex_state = 239}, - [6176] = {.lex_state = 200}, - [6177] = {.lex_state = 244}, + [6172] = {.lex_state = 242}, + [6173] = {.lex_state = 242}, + [6174] = {.lex_state = 242}, + [6175] = {.lex_state = 242}, + [6176] = {.lex_state = 242}, + [6177] = {.lex_state = 242}, [6178] = {.lex_state = 242}, - [6179] = {.lex_state = 238}, - [6180] = {.lex_state = 196}, + [6179] = {.lex_state = 242}, + [6180] = {.lex_state = 242}, [6181] = {.lex_state = 242}, - [6182] = {.lex_state = 200}, + [6182] = {.lex_state = 242}, [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}, + [6184] = {.lex_state = 200}, + [6185] = {.lex_state = 242}, + [6186] = {.lex_state = 239}, + [6187] = {.lex_state = 244}, + [6188] = {.lex_state = 242}, + [6189] = {.lex_state = 242}, + [6190] = {.lex_state = 200}, + [6191] = {.lex_state = 239}, + [6192] = {.lex_state = 196}, + [6193] = {.lex_state = 242}, + [6194] = {.lex_state = 242}, + [6195] = {.lex_state = 242}, + [6196] = {.lex_state = 239}, + [6197] = {.lex_state = 239}, + [6198] = {.lex_state = 200}, [6199] = {.lex_state = 242}, [6200] = {.lex_state = 242}, - [6201] = {.lex_state = 242}, - [6202] = {.lex_state = 244}, + [6201] = {.lex_state = 244}, + [6202] = {.lex_state = 200}, [6203] = {.lex_state = 242}, - [6204] = {.lex_state = 242}, + [6204] = {.lex_state = 244}, [6205] = {.lex_state = 238}, - [6206] = {.lex_state = 242}, - [6207] = {.lex_state = 197}, - [6208] = {.lex_state = 197}, - [6209] = {.lex_state = 188}, + [6206] = {.lex_state = 239}, + [6207] = {.lex_state = 242}, + [6208] = {.lex_state = 242}, + [6209] = {.lex_state = 242}, [6210] = {.lex_state = 242}, - [6211] = {.lex_state = 188}, - [6212] = {.lex_state = 188}, - [6213] = {.lex_state = 238}, - [6214] = {.lex_state = 197}, - [6215] = {.lex_state = 238}, + [6211] = {.lex_state = 239}, + [6212] = {.lex_state = 242}, + [6213] = {.lex_state = 239}, + [6214] = {.lex_state = 239}, + [6215] = {.lex_state = 196}, [6216] = {.lex_state = 238}, - [6217] = {.lex_state = 241}, - [6218] = {.lex_state = 196}, - [6219] = {.lex_state = 196}, - [6220] = {.lex_state = 197}, - [6221] = {.lex_state = 197}, + [6217] = {.lex_state = 244}, + [6218] = {.lex_state = 238}, + [6219] = {.lex_state = 200}, + [6220] = {.lex_state = 242}, + [6221] = {.lex_state = 188}, [6222] = {.lex_state = 197}, - [6223] = {.lex_state = 197}, - [6224] = {.lex_state = 197}, + [6223] = {.lex_state = 242}, + [6224] = {.lex_state = 188}, [6225] = {.lex_state = 197}, - [6226] = {.lex_state = 196}, - [6227] = {.lex_state = 204}, - [6228] = {.lex_state = 242}, - [6229] = {.lex_state = 242}, - [6230] = {.lex_state = 197}, + [6226] = {.lex_state = 197}, + [6227] = {.lex_state = 197}, + [6228] = {.lex_state = 197}, + [6229] = {.lex_state = 197}, + [6230] = {.lex_state = 238}, [6231] = {.lex_state = 197}, [6232] = {.lex_state = 197}, [6233] = {.lex_state = 197}, [6234] = {.lex_state = 197}, - [6235] = {.lex_state = 196}, + [6235] = {.lex_state = 197}, [6236] = {.lex_state = 196}, - [6237] = {.lex_state = 196}, + [6237] = {.lex_state = 204}, [6238] = {.lex_state = 196}, [6239] = {.lex_state = 196}, [6240] = {.lex_state = 196}, [6241] = {.lex_state = 196}, [6242] = {.lex_state = 196}, [6243] = {.lex_state = 196}, - [6244] = {.lex_state = 242}, - [6245] = {.lex_state = 197}, - [6246] = {.lex_state = 188}, - [6247] = {.lex_state = 188}, - [6248] = {.lex_state = 196}, + [6244] = {.lex_state = 196}, + [6245] = {.lex_state = 196}, + [6246] = {.lex_state = 242}, + [6247] = {.lex_state = 241}, + [6248] = {.lex_state = 188}, [6249] = {.lex_state = 242}, - [6250] = {.lex_state = 241}, - [6251] = {.lex_state = 217}, - [6252] = {.lex_state = 217}, - [6253] = {.lex_state = 217}, + [6250] = {.lex_state = 188}, + [6251] = {.lex_state = 242}, + [6252] = {.lex_state = 197}, + [6253] = {.lex_state = 241}, [6254] = {.lex_state = 217}, - [6255] = {.lex_state = 242}, + [6255] = {.lex_state = 217}, [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}, + [6259] = {.lex_state = 242}, + [6260] = {.lex_state = 217}, + [6261] = {.lex_state = 217}, + [6262] = {.lex_state = 217}, + [6263] = {.lex_state = 238}, + [6264] = {.lex_state = 188}, + [6265] = {.lex_state = 238}, + [6266] = {.lex_state = 242}, + [6267] = {.lex_state = 197}, [6268] = {.lex_state = 188}, [6269] = {.lex_state = 241}, - [6270] = {.lex_state = 241}, + [6270] = {.lex_state = 196}, [6271] = {.lex_state = 188}, [6272] = {.lex_state = 241}, - [6273] = {.lex_state = 188}, + [6273] = {.lex_state = 242}, [6274] = {.lex_state = 188}, - [6275] = {.lex_state = 188}, - [6276] = {.lex_state = 238}, - [6277] = {.lex_state = 242}, + [6275] = {.lex_state = 197}, + [6276] = {.lex_state = 188}, + [6277] = {.lex_state = 197}, [6278] = {.lex_state = 196}, [6279] = {.lex_state = 188}, - [6280] = {.lex_state = 241}, - [6281] = {.lex_state = 242}, + [6280] = {.lex_state = 188}, + [6281] = {.lex_state = 188}, [6282] = {.lex_state = 188}, [6283] = {.lex_state = 188}, - [6284] = {.lex_state = 196}, - [6285] = {.lex_state = 188}, - [6286] = {.lex_state = 188}, + [6284] = {.lex_state = 242}, + [6285] = {.lex_state = 242}, + [6286] = {.lex_state = 196}, [6287] = {.lex_state = 188}, - [6288] = {.lex_state = 188}, - [6289] = {.lex_state = 241}, - [6290] = {.lex_state = 196}, - [6291] = {.lex_state = 197}, - [6292] = {.lex_state = 238}, + [6288] = {.lex_state = 241}, + [6289] = {.lex_state = 181}, + [6290] = {.lex_state = 238}, + [6291] = {.lex_state = 238}, + [6292] = {.lex_state = 196}, [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}, + [6294] = {.lex_state = 188}, + [6295] = {.lex_state = 241}, + [6296] = {.lex_state = 188}, + [6297] = {.lex_state = 188}, + [6298] = {.lex_state = 188}, + [6299] = {.lex_state = 188}, + [6300] = {.lex_state = 188}, + [6301] = {.lex_state = 196}, + [6302] = {.lex_state = 197}, + [6303] = {.lex_state = 241}, + [6304] = {.lex_state = 196}, + [6305] = {.lex_state = 241}, + [6306] = {.lex_state = 196}, + [6307] = {.lex_state = 188}, [6308] = {.lex_state = 217}, - [6309] = {.lex_state = 196}, - [6310] = {.lex_state = 217}, - [6311] = {.lex_state = 217}, - [6312] = {.lex_state = 217}, - [6313] = {.lex_state = 217}, + [6309] = {.lex_state = 217}, + [6310] = {.lex_state = 196}, + [6311] = {.lex_state = 196}, + [6312] = {.lex_state = 242}, + [6313] = {.lex_state = 196}, [6314] = {.lex_state = 196}, - [6315] = {.lex_state = 242}, + [6315] = {.lex_state = 196}, [6316] = {.lex_state = 242}, [6317] = {.lex_state = 196}, [6318] = {.lex_state = 196}, [6319] = {.lex_state = 242}, [6320] = {.lex_state = 196}, - [6321] = {.lex_state = 196}, + [6321] = {.lex_state = 242}, [6322] = {.lex_state = 196}, [6323] = {.lex_state = 196}, - [6324] = {.lex_state = 196}, - [6325] = {.lex_state = 196}, - [6326] = {.lex_state = 242}, - [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}, + [6324] = {.lex_state = 217}, + [6325] = {.lex_state = 238}, + [6326] = {.lex_state = 217}, + [6327] = {.lex_state = 217}, + [6328] = {.lex_state = 217}, + [6329] = {.lex_state = 217}, + [6330] = {.lex_state = 217}, + [6331] = {.lex_state = 217}, + [6332] = {.lex_state = 242}, + [6333] = {.lex_state = 196}, + [6334] = {.lex_state = 217}, + [6335] = {.lex_state = 196}, + [6336] = {.lex_state = 217}, + [6337] = {.lex_state = 217}, + [6338] = {.lex_state = 217}, [6339] = {.lex_state = 196}, - [6340] = {.lex_state = 196}, - [6341] = {.lex_state = 196}, - [6342] = {.lex_state = 242}, - [6343] = {.lex_state = 234}, - [6344] = {.lex_state = 238}, - [6345] = {.lex_state = 238}, - [6346] = {.lex_state = 238}, - [6347] = {.lex_state = 238}, + [6340] = {.lex_state = 217}, + [6341] = {.lex_state = 238}, + [6342] = {.lex_state = 196}, + [6343] = {.lex_state = 196}, + [6344] = {.lex_state = 242}, + [6345] = {.lex_state = 242}, + [6346] = {.lex_state = 242}, + [6347] = {.lex_state = 242}, [6348] = {.lex_state = 238}, [6349] = {.lex_state = 238}, [6350] = {.lex_state = 238}, [6351] = {.lex_state = 238}, - [6352] = {.lex_state = 242}, - [6353] = {.lex_state = 234}, - [6354] = {.lex_state = 242}, + [6352] = {.lex_state = 238}, + [6353] = {.lex_state = 238}, + [6354] = {.lex_state = 238}, [6355] = {.lex_state = 242}, - [6356] = {.lex_state = 196}, - [6357] = {.lex_state = 242}, - [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}, + [6356] = {.lex_state = 242}, + [6357] = {.lex_state = 196}, + [6358] = {.lex_state = 238}, + [6359] = {.lex_state = 238}, + [6360] = {.lex_state = 238}, + [6361] = {.lex_state = 238}, + [6362] = {.lex_state = 238}, + [6363] = {.lex_state = 238}, + [6364] = {.lex_state = 238}, + [6365] = {.lex_state = 238}, [6366] = {.lex_state = 196}, [6367] = {.lex_state = 196}, - [6368] = {.lex_state = 238}, + [6368] = {.lex_state = 242}, [6369] = {.lex_state = 234}, - [6370] = {.lex_state = 196}, + [6370] = {.lex_state = 242}, [6371] = {.lex_state = 196}, [6372] = {.lex_state = 196}, - [6373] = {.lex_state = 238}, - [6374] = {.lex_state = 234}, - [6375] = {.lex_state = 196}, - [6376] = {.lex_state = 196}, + [6373] = {.lex_state = 242}, + [6374] = {.lex_state = 196}, + [6375] = {.lex_state = 242}, + [6376] = {.lex_state = 217}, [6377] = {.lex_state = 196}, - [6378] = {.lex_state = 196}, + [6378] = {.lex_state = 242}, [6379] = {.lex_state = 196}, [6380] = {.lex_state = 196}, - [6381] = {.lex_state = 205}, + [6381] = {.lex_state = 242}, [6382] = {.lex_state = 196}, - [6383] = {.lex_state = 196}, + [6383] = {.lex_state = 217}, [6384] = {.lex_state = 196}, - [6385] = {.lex_state = 217}, - [6386] = {.lex_state = 196}, - [6387] = {.lex_state = 242}, + [6385] = {.lex_state = 242}, + [6386] = {.lex_state = 234}, + [6387] = {.lex_state = 196}, [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 = 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 = 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}, + [6389] = {.lex_state = 196}, + [6390] = {.lex_state = 196}, + [6391] = {.lex_state = 196}, + [6392] = {.lex_state = 234}, + [6393] = {.lex_state = 196}, + [6394] = {.lex_state = 196}, + [6395] = {.lex_state = 196}, + [6396] = {.lex_state = 217}, + [6397] = {.lex_state = 196}, + [6398] = {.lex_state = 242}, + [6399] = {.lex_state = 196}, + [6400] = {.lex_state = 217}, + [6401] = {.lex_state = 234}, + [6402] = {.lex_state = 217}, + [6403] = {.lex_state = 205}, + [6404] = {.lex_state = 217}, + [6405] = {.lex_state = 238}, + [6406] = {.lex_state = 194}, + [6407] = {.lex_state = 198}, + [6408] = {.lex_state = 198}, + [6409] = {.lex_state = 198}, + [6410] = {.lex_state = 194}, + [6411] = {.lex_state = 242}, + [6412] = {.lex_state = 196}, + [6413] = {.lex_state = 238}, + [6414] = {.lex_state = 196}, + [6415] = {.lex_state = 194}, + [6416] = {.lex_state = 242}, + [6417] = {.lex_state = 194}, + [6418] = {.lex_state = 194}, [6419] = {.lex_state = 241}, - [6420] = {.lex_state = 241}, - [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}, + [6420] = {.lex_state = 238}, + [6421] = {.lex_state = 242}, + [6422] = {.lex_state = 242}, + [6423] = {.lex_state = 238}, + [6424] = {.lex_state = 242}, + [6425] = {.lex_state = 242}, + [6426] = {.lex_state = 242}, + [6427] = {.lex_state = 242}, + [6428] = {.lex_state = 241}, + [6429] = {.lex_state = 241}, + [6430] = {.lex_state = 175}, + [6431] = {.lex_state = 241}, + [6432] = {.lex_state = 238}, + [6433] = {.lex_state = 238}, + [6434] = {.lex_state = 194}, [6435] = {.lex_state = 242}, - [6436] = {.lex_state = 196}, - [6437] = {.lex_state = 238}, - [6438] = {.lex_state = 238}, + [6436] = {.lex_state = 194}, + [6437] = {.lex_state = 198}, + [6438] = {.lex_state = 196}, [6439] = {.lex_state = 194}, - [6440] = {.lex_state = 194}, + [6440] = {.lex_state = 198}, [6441] = {.lex_state = 242}, - [6442] = {.lex_state = 194}, - [6443] = {.lex_state = 194}, + [6442] = {.lex_state = 198}, + [6443] = {.lex_state = 198}, [6444] = {.lex_state = 242}, [6445] = {.lex_state = 242}, - [6446] = {.lex_state = 196}, - [6447] = {.lex_state = 196}, + [6446] = {.lex_state = 198}, + [6447] = {.lex_state = 241}, [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}, + [6449] = {.lex_state = 175}, + [6450] = {.lex_state = 241}, + [6451] = {.lex_state = 194}, + [6452] = {.lex_state = 241}, + [6453] = {.lex_state = 175}, + [6454] = {.lex_state = 194}, [6455] = {.lex_state = 242}, - [6456] = {.lex_state = 194}, - [6457] = {.lex_state = 242}, - [6458] = {.lex_state = 242}, + [6456] = {.lex_state = 196}, + [6457] = {.lex_state = 241}, + [6458] = {.lex_state = 196}, [6459] = {.lex_state = 242}, - [6460] = {.lex_state = 194}, - [6461] = {.lex_state = 194}, + [6460] = {.lex_state = 242}, + [6461] = {.lex_state = 196}, [6462] = {.lex_state = 196}, - [6463] = {.lex_state = 196}, - [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}, + [6463] = {.lex_state = 242}, + [6464] = {.lex_state = 196}, + [6465] = {.lex_state = 194}, + [6466] = {.lex_state = 242}, + [6467] = {.lex_state = 238}, + [6468] = {.lex_state = 238}, + [6469] = {.lex_state = 194}, + [6470] = {.lex_state = 194}, + [6471] = {.lex_state = 238}, [6472] = {.lex_state = 196}, - [6473] = {.lex_state = 196}, - [6474] = {.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 = 197}, - [6485] = {.lex_state = 204}, + [6473] = {.lex_state = 238}, + [6474] = {.lex_state = 242}, + [6475] = {.lex_state = 194}, + [6476] = {.lex_state = 194}, + [6477] = {.lex_state = 242}, + [6478] = {.lex_state = 242}, + [6479] = {.lex_state = 194}, + [6480] = {.lex_state = 194}, + [6481] = {.lex_state = 194}, + [6482] = {.lex_state = 194}, + [6483] = {.lex_state = 242}, + [6484] = {.lex_state = 196}, + [6485] = {.lex_state = 197}, [6486] = {.lex_state = 196}, - [6487] = {.lex_state = 200}, + [6487] = {.lex_state = 238}, [6488] = {.lex_state = 196}, - [6489] = {.lex_state = 0}, - [6490] = {.lex_state = 200}, - [6491] = {.lex_state = 200}, + [6489] = {.lex_state = 196}, + [6490] = {.lex_state = 196}, + [6491] = {.lex_state = 196}, [6492] = {.lex_state = 196}, [6493] = {.lex_state = 196}, - [6494] = {.lex_state = 200}, + [6494] = {.lex_state = 196}, [6495] = {.lex_state = 196}, - [6496] = {.lex_state = 242}, + [6496] = {.lex_state = 196}, [6497] = {.lex_state = 196}, - [6498] = {.lex_state = 196}, - [6499] = {.lex_state = 200}, - [6500] = {.lex_state = 200}, - [6501] = {.lex_state = 196}, - [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}, + [6498] = {.lex_state = 242}, + [6499] = {.lex_state = 197}, + [6500] = {.lex_state = 196}, + [6501] = {.lex_state = 0}, + [6502] = {.lex_state = 242}, + [6503] = {.lex_state = 242}, + [6504] = {.lex_state = 197}, + [6505] = {.lex_state = 196}, + [6506] = {.lex_state = 200}, + [6507] = {.lex_state = 200}, + [6508] = {.lex_state = 196}, + [6509] = {.lex_state = 196}, [6510] = {.lex_state = 196}, - [6511] = {.lex_state = 242}, - [6512] = {.lex_state = 196}, - [6513] = {.lex_state = 196}, - [6514] = {.lex_state = 197}, + [6511] = {.lex_state = 196}, + [6512] = {.lex_state = 242}, + [6513] = {.lex_state = 242}, + [6514] = {.lex_state = 196}, [6515] = {.lex_state = 242}, [6516] = {.lex_state = 196}, [6517] = {.lex_state = 196}, - [6518] = {.lex_state = 196}, - [6519] = {.lex_state = 196}, - [6520] = {.lex_state = 196}, - [6521] = {.lex_state = 196}, + [6518] = {.lex_state = 242}, + [6519] = {.lex_state = 200}, + [6520] = {.lex_state = 242}, + [6521] = {.lex_state = 242}, [6522] = {.lex_state = 196}, [6523] = {.lex_state = 196}, [6524] = {.lex_state = 196}, - [6525] = {.lex_state = 196}, + [6525] = {.lex_state = 242}, [6526] = {.lex_state = 196}, - [6527] = {.lex_state = 197}, - [6528] = {.lex_state = 196}, - [6529] = {.lex_state = 196}, - [6530] = {.lex_state = 241}, + [6527] = {.lex_state = 200}, + [6528] = {.lex_state = 200}, + [6529] = {.lex_state = 242}, + [6530] = {.lex_state = 200}, [6531] = {.lex_state = 196}, [6532] = {.lex_state = 196}, - [6533] = {.lex_state = 196}, - [6534] = {.lex_state = 196}, + [6533] = {.lex_state = 204}, + [6534] = {.lex_state = 197}, [6535] = {.lex_state = 196}, - [6536] = {.lex_state = 197}, + [6536] = {.lex_state = 200}, [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}, + [6538] = {.lex_state = 200}, + [6539] = {.lex_state = 194}, + [6540] = {.lex_state = 197}, + [6541] = {.lex_state = 196}, + [6542] = {.lex_state = 197}, + [6543] = {.lex_state = 197}, [6544] = {.lex_state = 196}, [6545] = {.lex_state = 196}, - [6546] = {.lex_state = 197}, - [6547] = {.lex_state = 241}, + [6546] = {.lex_state = 196}, + [6547] = {.lex_state = 196}, [6548] = {.lex_state = 196}, [6549] = {.lex_state = 196}, - [6550] = {.lex_state = 197}, + [6550] = {.lex_state = 238}, [6551] = {.lex_state = 196}, - [6552] = {.lex_state = 196}, - [6553] = {.lex_state = 196}, - [6554] = {.lex_state = 197}, + [6552] = {.lex_state = 197}, + [6553] = {.lex_state = 197}, + [6554] = {.lex_state = 196}, [6555] = {.lex_state = 196}, - [6556] = {.lex_state = 238}, + [6556] = {.lex_state = 196}, [6557] = {.lex_state = 196}, - [6558] = {.lex_state = 196}, - [6559] = {.lex_state = 196}, + [6558] = {.lex_state = 238}, + [6559] = {.lex_state = 238}, [6560] = {.lex_state = 196}, [6561] = {.lex_state = 196}, - [6562] = {.lex_state = 217}, + [6562] = {.lex_state = 197}, [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}, + [6565] = {.lex_state = 241}, + [6566] = {.lex_state = 242}, + [6567] = {.lex_state = 241}, + [6568] = {.lex_state = 196}, + [6569] = {.lex_state = 197}, [6570] = {.lex_state = 196}, [6571] = {.lex_state = 196}, - [6572] = {.lex_state = 217}, - [6573] = {.lex_state = 198}, + [6572] = {.lex_state = 196}, + [6573] = {.lex_state = 197}, [6574] = {.lex_state = 196}, - [6575] = {.lex_state = 198}, - [6576] = {.lex_state = 196}, + [6575] = {.lex_state = 196}, + [6576] = {.lex_state = 198}, [6577] = {.lex_state = 196}, - [6578] = {.lex_state = 196}, - [6579] = {.lex_state = 196}, + [6578] = {.lex_state = 198}, + [6579] = {.lex_state = 198}, [6580] = {.lex_state = 198}, - [6581] = {.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}, + [6581] = {.lex_state = 241}, + [6582] = {.lex_state = 198}, + [6583] = {.lex_state = 217}, + [6584] = {.lex_state = 217}, + [6585] = {.lex_state = 196}, + [6586] = {.lex_state = 196}, + [6587] = {.lex_state = 241}, + [6588] = {.lex_state = 196}, + [6589] = {.lex_state = 196}, + [6590] = {.lex_state = 196}, + [6591] = {.lex_state = 196}, [6592] = {.lex_state = 196}, - [6593] = {.lex_state = 198}, + [6593] = {.lex_state = 197}, [6594] = {.lex_state = 196}, - [6595] = {.lex_state = 229}, - [6596] = {.lex_state = 198}, - [6597] = {.lex_state = 217}, + [6595] = {.lex_state = 217}, + [6596] = {.lex_state = 196}, + [6597] = {.lex_state = 197}, [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}, + [6599] = {.lex_state = 197}, + [6600] = {.lex_state = 196}, + [6601] = {.lex_state = 196}, + [6602] = {.lex_state = 197}, + [6603] = {.lex_state = 241}, + [6604] = {.lex_state = 241}, + [6605] = {.lex_state = 196}, + [6606] = {.lex_state = 196}, + [6607] = {.lex_state = 196}, [6608] = {.lex_state = 242}, - [6609] = {.lex_state = 242}, + [6609] = {.lex_state = 235}, [6610] = {.lex_state = 197}, - [6611] = {.lex_state = 197}, - [6612] = {.lex_state = 197}, + [6611] = {.lex_state = 242}, + [6612] = {.lex_state = 241}, [6613] = {.lex_state = 197}, - [6614] = {.lex_state = 238}, - [6615] = {.lex_state = 242}, - [6616] = {.lex_state = 242}, - [6617] = {.lex_state = 242}, + [6614] = {.lex_state = 242}, + [6615] = {.lex_state = 196}, + [6616] = {.lex_state = 196}, + [6617] = {.lex_state = 217}, [6618] = {.lex_state = 196}, - [6619] = {.lex_state = 196}, - [6620] = {.lex_state = 198}, - [6621] = {.lex_state = 235}, + [6619] = {.lex_state = 241}, + [6620] = {.lex_state = 238}, + [6621] = {.lex_state = 197}, [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 = 197}, - [6629] = {.lex_state = 196}, + [6623] = {.lex_state = 198}, + [6624] = {.lex_state = 197}, + [6625] = {.lex_state = 198}, + [6626] = {.lex_state = 198}, + [6627] = {.lex_state = 198}, + [6628] = {.lex_state = 198}, + [6629] = {.lex_state = 217}, [6630] = {.lex_state = 196}, - [6631] = {.lex_state = 196}, - [6632] = {.lex_state = 196}, - [6633] = {.lex_state = 196}, - [6634] = {.lex_state = 196}, + [6631] = {.lex_state = 242}, + [6632] = {.lex_state = 242}, + [6633] = {.lex_state = 242}, + [6634] = {.lex_state = 198}, [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}, + [6638] = {.lex_state = 217}, + [6639] = {.lex_state = 217}, + [6640] = {.lex_state = 196}, + [6641] = {.lex_state = 229}, + [6642] = {.lex_state = 217}, + [6643] = {.lex_state = 229}, + [6644] = {.lex_state = 196}, + [6645] = {.lex_state = 196}, + [6646] = {.lex_state = 196}, + [6647] = {.lex_state = 196}, + [6648] = {.lex_state = 196}, [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}, + [6650] = {.lex_state = 196}, + [6651] = {.lex_state = 196}, + [6652] = {.lex_state = 235}, + [6653] = {.lex_state = 339}, + [6654] = {.lex_state = 217}, + [6655] = {.lex_state = 197}, + [6656] = {.lex_state = 196}, + [6657] = {.lex_state = 217}, + [6658] = {.lex_state = 194}, + [6659] = {.lex_state = 197}, + [6660] = {.lex_state = 217}, + [6661] = {.lex_state = 197}, + [6662] = {.lex_state = 241}, [6663] = {.lex_state = 196}, - [6664] = {.lex_state = 241}, + [6664] = {.lex_state = 194}, [6665] = {.lex_state = 194}, - [6666] = {.lex_state = 194}, + [6666] = {.lex_state = 217}, [6667] = {.lex_state = 197}, - [6668] = {.lex_state = 194}, - [6669] = {.lex_state = 217}, - [6670] = {.lex_state = 238}, - [6671] = {.lex_state = 217}, - [6672] = {.lex_state = 217}, + [6668] = {.lex_state = 197}, + [6669] = {.lex_state = 194}, + [6670] = {.lex_state = 194}, + [6671] = {.lex_state = 194}, + [6672] = {.lex_state = 181}, [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}, + [6674] = {.lex_state = 217}, + [6675] = {.lex_state = 194}, + [6676] = {.lex_state = 238}, + [6677] = {.lex_state = 238}, + [6678] = {.lex_state = 238}, + [6679] = {.lex_state = 196}, + [6680] = {.lex_state = 238}, + [6681] = {.lex_state = 238}, [6682] = {.lex_state = 238}, - [6683] = {.lex_state = 194}, - [6684] = {.lex_state = 238}, - [6685] = {.lex_state = 194}, - [6686] = {.lex_state = 238}, + [6683] = {.lex_state = 238}, + [6684] = {.lex_state = 196}, + [6685] = {.lex_state = 238}, + [6686] = {.lex_state = 181}, [6687] = {.lex_state = 196}, - [6688] = {.lex_state = 196}, - [6689] = {.lex_state = 196}, - [6690] = {.lex_state = 196}, - [6691] = {.lex_state = 196}, + [6688] = {.lex_state = 241}, + [6689] = {.lex_state = 241}, + [6690] = {.lex_state = 241}, + [6691] = {.lex_state = 197}, [6692] = {.lex_state = 196}, - [6693] = {.lex_state = 198}, - [6694] = {.lex_state = 196}, - [6695] = {.lex_state = 196}, - [6696] = {.lex_state = 339}, + [6693] = {.lex_state = 194}, + [6694] = {.lex_state = 194}, + [6695] = {.lex_state = 217}, + [6696] = {.lex_state = 194}, [6697] = {.lex_state = 196}, - [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 = 196}, - [6709] = {.lex_state = 235}, - [6710] = {.lex_state = 196}, - [6711] = {.lex_state = 235}, - [6712] = {.lex_state = 198}, + [6698] = {.lex_state = 217}, + [6699] = {.lex_state = 194}, + [6700] = {.lex_state = 194}, + [6701] = {.lex_state = 217}, + [6702] = {.lex_state = 194}, + [6703] = {.lex_state = 196}, + [6704] = {.lex_state = 198}, + [6705] = {.lex_state = 198}, + [6706] = {.lex_state = 198}, + [6707] = {.lex_state = 198}, + [6708] = {.lex_state = 198}, + [6709] = {.lex_state = 198}, + [6710] = {.lex_state = 198}, + [6711] = {.lex_state = 196}, + [6712] = {.lex_state = 196}, [6713] = {.lex_state = 196}, [6714] = {.lex_state = 196}, [6715] = {.lex_state = 196}, - [6716] = {.lex_state = 198}, + [6716] = {.lex_state = 196}, [6717] = {.lex_state = 196}, [6718] = {.lex_state = 196}, - [6719] = {.lex_state = 196}, - [6720] = {.lex_state = 198}, + [6719] = {.lex_state = 235}, + [6720] = {.lex_state = 196}, [6721] = {.lex_state = 196}, [6722] = {.lex_state = 196}, [6723] = {.lex_state = 196}, @@ -28957,881 +28985,881 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6727] = {.lex_state = 196}, [6728] = {.lex_state = 196}, [6729] = {.lex_state = 196}, - [6730] = {.lex_state = 339}, + [6730] = {.lex_state = 196}, [6731] = {.lex_state = 196}, [6732] = {.lex_state = 196}, - [6733] = {.lex_state = 235}, - [6734] = {.lex_state = 196}, + [6733] = {.lex_state = 196}, + [6734] = {.lex_state = 339}, [6735] = {.lex_state = 339}, - [6736] = {.lex_state = 235}, + [6736] = {.lex_state = 196}, [6737] = {.lex_state = 196}, [6738] = {.lex_state = 196}, [6739] = {.lex_state = 196}, - [6740] = {.lex_state = 196}, - [6741] = {.lex_state = 339}, + [6740] = {.lex_state = 339}, + [6741] = {.lex_state = 196}, [6742] = {.lex_state = 196}, - [6743] = {.lex_state = 196}, + [6743] = {.lex_state = 235}, [6744] = {.lex_state = 196}, [6745] = {.lex_state = 196}, - [6746] = {.lex_state = 196}, - [6747] = {.lex_state = 200}, - [6748] = {.lex_state = 217}, - [6749] = {.lex_state = 241}, - [6750] = {.lex_state = 339}, - [6751] = {.lex_state = 175}, + [6746] = {.lex_state = 339}, + [6747] = {.lex_state = 196}, + [6748] = {.lex_state = 196}, + [6749] = {.lex_state = 196}, + [6750] = {.lex_state = 196}, + [6751] = {.lex_state = 196}, [6752] = {.lex_state = 339}, [6753] = {.lex_state = 196}, - [6754] = {.lex_state = 175}, - [6755] = {.lex_state = 339}, - [6756] = {.lex_state = 175}, - [6757] = {.lex_state = 339}, + [6754] = {.lex_state = 196}, + [6755] = {.lex_state = 196}, + [6756] = {.lex_state = 235}, + [6757] = {.lex_state = 196}, [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 = 196}, - [6766] = {.lex_state = 200}, - [6767] = {.lex_state = 198}, - [6768] = {.lex_state = 200}, + [6760] = {.lex_state = 235}, + [6761] = {.lex_state = 198}, + [6762] = {.lex_state = 196}, + [6763] = {.lex_state = 339}, + [6764] = {.lex_state = 339}, + [6765] = {.lex_state = 241}, + [6766] = {.lex_state = 217}, + [6767] = {.lex_state = 197}, + [6768] = {.lex_state = 198}, [6769] = {.lex_state = 339}, - [6770] = {.lex_state = 339}, - [6771] = {.lex_state = 196}, - [6772] = {.lex_state = 200}, - [6773] = {.lex_state = 198}, + [6770] = {.lex_state = 197}, + [6771] = {.lex_state = 175}, + [6772] = {.lex_state = 196}, + [6773] = {.lex_state = 339}, [6774] = {.lex_state = 339}, - [6775] = {.lex_state = 196}, - [6776] = {.lex_state = 194}, - [6777] = {.lex_state = 241}, - [6778] = {.lex_state = 339}, + [6775] = {.lex_state = 175}, + [6776] = {.lex_state = 196}, + [6777] = {.lex_state = 217}, + [6778] = {.lex_state = 198}, [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}, + [6781] = {.lex_state = 198}, + [6782] = {.lex_state = 196}, + [6783] = {.lex_state = 175}, + [6784] = {.lex_state = 339}, + [6785] = {.lex_state = 200}, + [6786] = {.lex_state = 339}, + [6787] = {.lex_state = 217}, + [6788] = {.lex_state = 339}, + [6789] = {.lex_state = 194}, + [6790] = {.lex_state = 339}, + [6791] = {.lex_state = 175}, + [6792] = {.lex_state = 339}, [6793] = {.lex_state = 339}, - [6794] = {.lex_state = 194}, - [6795] = {.lex_state = 197}, - [6796] = {.lex_state = 175}, + [6794] = {.lex_state = 197}, + [6795] = {.lex_state = 241}, + [6796] = {.lex_state = 339}, [6797] = {.lex_state = 196}, - [6798] = {.lex_state = 196}, - [6799] = {.lex_state = 339}, - [6800] = {.lex_state = 175}, + [6798] = {.lex_state = 339}, + [6799] = {.lex_state = 200}, + [6800] = {.lex_state = 339}, [6801] = {.lex_state = 339}, [6802] = {.lex_state = 339}, - [6803] = {.lex_state = 175}, - [6804] = {.lex_state = 339}, - [6805] = {.lex_state = 175}, + [6803] = {.lex_state = 200}, + [6804] = {.lex_state = 198}, + [6805] = {.lex_state = 200}, [6806] = {.lex_state = 339}, - [6807] = {.lex_state = 339}, + [6807] = {.lex_state = 200}, [6808] = {.lex_state = 198}, - [6809] = {.lex_state = 196}, + [6809] = {.lex_state = 194}, [6810] = {.lex_state = 175}, - [6811] = {.lex_state = 241}, - [6812] = {.lex_state = 238}, + [6811] = {.lex_state = 339}, + [6812] = {.lex_state = 200}, [6813] = {.lex_state = 339}, - [6814] = {.lex_state = 339}, - [6815] = {.lex_state = 339}, - [6816] = {.lex_state = 198}, - [6817] = {.lex_state = 339}, + [6814] = {.lex_state = 175}, + [6815] = {.lex_state = 200}, + [6816] = {.lex_state = 196}, + [6817] = {.lex_state = 196}, [6818] = {.lex_state = 339}, - [6819] = {.lex_state = 241}, - [6820] = {.lex_state = 339}, - [6821] = {.lex_state = 196}, - [6822] = {.lex_state = 197}, - [6823] = {.lex_state = 339}, - [6824] = {.lex_state = 196}, - [6825] = {.lex_state = 198}, - [6826] = {.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 = 217}, + [6819] = {.lex_state = 339}, + [6820] = {.lex_state = 217}, + [6821] = {.lex_state = 339}, + [6822] = {.lex_state = 339}, + [6823] = {.lex_state = 175}, + [6824] = {.lex_state = 339}, + [6825] = {.lex_state = 196}, + [6826] = {.lex_state = 241}, + [6827] = {.lex_state = 241}, + [6828] = {.lex_state = 339}, + [6829] = {.lex_state = 196}, + [6830] = {.lex_state = 238}, + [6831] = {.lex_state = 339}, + [6832] = {.lex_state = 196}, [6833] = {.lex_state = 339}, - [6834] = {.lex_state = 175}, - [6835] = {.lex_state = 339}, - [6836] = {.lex_state = 196}, - [6837] = {.lex_state = 175}, + [6834] = {.lex_state = 200}, + [6835] = {.lex_state = 196}, + [6836] = {.lex_state = 175}, + [6837] = {.lex_state = 339}, [6838] = {.lex_state = 198}, - [6839] = {.lex_state = 196}, - [6840] = {.lex_state = 339}, - [6841] = {.lex_state = 339}, - [6842] = {.lex_state = 198}, - [6843] = {.lex_state = 196}, - [6844] = {.lex_state = 196}, - [6845] = {.lex_state = 196}, - [6846] = {.lex_state = 241}, - [6847] = {.lex_state = 196}, + [6839] = {.lex_state = 241}, + [6840] = {.lex_state = 196}, + [6841] = {.lex_state = 196}, + [6842] = {.lex_state = 339}, + [6843] = {.lex_state = 175}, + [6844] = {.lex_state = 339}, + [6845] = {.lex_state = 339}, + [6846] = {.lex_state = 175}, + [6847] = {.lex_state = 197}, [6848] = {.lex_state = 196}, - [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}, + [6849] = {.lex_state = 339}, + [6850] = {.lex_state = 175}, + [6851] = {.lex_state = 196}, + [6852] = {.lex_state = 175}, + [6853] = {.lex_state = 196}, + [6854] = {.lex_state = 175}, + [6855] = {.lex_state = 175}, + [6856] = {.lex_state = 175}, [6857] = {.lex_state = 196}, - [6858] = {.lex_state = 196}, - [6859] = {.lex_state = 196}, - [6860] = {.lex_state = 196}, + [6858] = {.lex_state = 175}, + [6859] = {.lex_state = 339}, + [6860] = {.lex_state = 339}, [6861] = {.lex_state = 196}, [6862] = {.lex_state = 196}, - [6863] = {.lex_state = 175}, + [6863] = {.lex_state = 196}, [6864] = {.lex_state = 196}, [6865] = {.lex_state = 339}, - [6866] = {.lex_state = 196}, - [6867] = {.lex_state = 339}, + [6866] = {.lex_state = 241}, + [6867] = {.lex_state = 196}, [6868] = {.lex_state = 196}, [6869] = {.lex_state = 339}, - [6870] = {.lex_state = 196}, + [6870] = {.lex_state = 175}, [6871] = {.lex_state = 196}, - [6872] = {.lex_state = 198}, + [6872] = {.lex_state = 339}, [6873] = {.lex_state = 196}, - [6874] = {.lex_state = 339}, - [6875] = {.lex_state = 175}, - [6876] = {.lex_state = 339}, - [6877] = {.lex_state = 339}, - [6878] = {.lex_state = 175}, - [6879] = {.lex_state = 198}, - [6880] = {.lex_state = 175}, - [6881] = {.lex_state = 241}, + [6874] = {.lex_state = 196}, + [6875] = {.lex_state = 198}, + [6876] = {.lex_state = 217}, + [6877] = {.lex_state = 196}, + [6878] = {.lex_state = 196}, + [6879] = {.lex_state = 196}, + [6880] = {.lex_state = 196}, + [6881] = {.lex_state = 196}, [6882] = {.lex_state = 196}, - [6883] = {.lex_state = 196}, - [6884] = {.lex_state = 238}, + [6883] = {.lex_state = 339}, + [6884] = {.lex_state = 196}, [6885] = {.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 = 194}, - [6894] = {.lex_state = 194}, - [6895] = {.lex_state = 197}, - [6896] = {.lex_state = 238}, - [6897] = {.lex_state = 239}, - [6898] = {.lex_state = 196}, - [6899] = {.lex_state = 197}, - [6900] = {.lex_state = 197}, - [6901] = {.lex_state = 196}, - [6902] = {.lex_state = 194}, - [6903] = {.lex_state = 238}, + [6886] = {.lex_state = 241}, + [6887] = {.lex_state = 339}, + [6888] = {.lex_state = 339}, + [6889] = {.lex_state = 196}, + [6890] = {.lex_state = 217}, + [6891] = {.lex_state = 198}, + [6892] = {.lex_state = 198}, + [6893] = {.lex_state = 175}, + [6894] = {.lex_state = 198}, + [6895] = {.lex_state = 217}, + [6896] = {.lex_state = 175}, + [6897] = {.lex_state = 196}, + [6898] = {.lex_state = 339}, + [6899] = {.lex_state = 339}, + [6900] = {.lex_state = 175}, + [6901] = {.lex_state = 339}, + [6902] = {.lex_state = 196}, + [6903] = {.lex_state = 198}, [6904] = {.lex_state = 196}, [6905] = {.lex_state = 196}, - [6906] = {.lex_state = 194}, - [6907] = {.lex_state = 196}, - [6908] = {.lex_state = 238}, + [6906] = {.lex_state = 196}, + [6907] = {.lex_state = 339}, + [6908] = {.lex_state = 196}, [6909] = {.lex_state = 196}, - [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 = 339}, - [6920] = {.lex_state = 198}, - [6921] = {.lex_state = 196}, - [6922] = {.lex_state = 196}, - [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}, + [6910] = {.lex_state = 194}, + [6911] = {.lex_state = 196}, + [6912] = {.lex_state = 239}, + [6913] = {.lex_state = 196}, + [6914] = {.lex_state = 197}, + [6915] = {.lex_state = 239}, + [6916] = {.lex_state = 238}, + [6917] = {.lex_state = 194}, + [6918] = {.lex_state = 197}, + [6919] = {.lex_state = 238}, + [6920] = {.lex_state = 239}, + [6921] = {.lex_state = 197}, + [6922] = {.lex_state = 197}, + [6923] = {.lex_state = 196}, + [6924] = {.lex_state = 194}, + [6925] = {.lex_state = 197}, + [6926] = {.lex_state = 196}, + [6927] = {.lex_state = 0}, + [6928] = {.lex_state = 239}, + [6929] = {.lex_state = 194}, + [6930] = {.lex_state = 196}, + [6931] = {.lex_state = 196}, + [6932] = {.lex_state = 238}, [6933] = {.lex_state = 238}, - [6934] = {.lex_state = 238}, - [6935] = {.lex_state = 339}, - [6936] = {.lex_state = 197}, - [6937] = {.lex_state = 194}, + [6934] = {.lex_state = 339}, + [6935] = {.lex_state = 196}, + [6936] = {.lex_state = 238}, + [6937] = {.lex_state = 196}, [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}, + [6940] = {.lex_state = 197}, + [6941] = {.lex_state = 339}, + [6942] = {.lex_state = 196}, + [6943] = {.lex_state = 197}, + [6944] = {.lex_state = 194}, + [6945] = {.lex_state = 194}, [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}, + [6948] = {.lex_state = 339}, + [6949] = {.lex_state = 194}, + [6950] = {.lex_state = 196}, + [6951] = {.lex_state = 238}, + [6952] = {.lex_state = 196}, + [6953] = {.lex_state = 196}, + [6954] = {.lex_state = 194}, [6955] = {.lex_state = 196}, - [6956] = {.lex_state = 217}, + [6956] = {.lex_state = 198}, [6957] = {.lex_state = 196}, - [6958] = {.lex_state = 196}, - [6959] = {.lex_state = 196}, - [6960] = {.lex_state = 196}, - [6961] = {.lex_state = 196}, + [6958] = {.lex_state = 238}, + [6959] = {.lex_state = 197}, + [6960] = {.lex_state = 238}, + [6961] = {.lex_state = 194}, [6962] = {.lex_state = 196}, [6963] = {.lex_state = 196}, - [6964] = {.lex_state = 171}, - [6965] = {.lex_state = 196}, - [6966] = {.lex_state = 196}, - [6967] = {.lex_state = 196}, + [6964] = {.lex_state = 339}, + [6965] = {.lex_state = 194}, + [6966] = {.lex_state = 239}, + [6967] = {.lex_state = 238}, [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}, + [6969] = {.lex_state = 238}, + [6970] = {.lex_state = 238}, + [6971] = {.lex_state = 0}, + [6972] = {.lex_state = 238}, + [6973] = {.lex_state = 238}, + [6974] = {.lex_state = 194}, + [6975] = {.lex_state = 239}, + [6976] = {.lex_state = 238}, [6977] = {.lex_state = 196}, [6978] = {.lex_state = 196}, [6979] = {.lex_state = 196}, - [6980] = {.lex_state = 196}, - [6981] = {.lex_state = 171}, + [6980] = {.lex_state = 175}, + [6981] = {.lex_state = 199}, [6982] = {.lex_state = 196}, - [6983] = {.lex_state = 238}, - [6984] = {.lex_state = 339}, + [6983] = {.lex_state = 199}, + [6984] = {.lex_state = 196}, [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}, + [6987] = {.lex_state = 199}, + [6988] = {.lex_state = 196}, + [6989] = {.lex_state = 199}, + [6990] = {.lex_state = 339}, + [6991] = {.lex_state = 175}, + [6992] = {.lex_state = 196}, [6993] = {.lex_state = 196}, [6994] = {.lex_state = 196}, [6995] = {.lex_state = 196}, - [6996] = {.lex_state = 199}, + [6996] = {.lex_state = 171}, [6997] = {.lex_state = 196}, [6998] = {.lex_state = 196}, - [6999] = {.lex_state = 199}, + [6999] = {.lex_state = 196}, [7000] = {.lex_state = 196}, [7001] = {.lex_state = 196}, [7002] = {.lex_state = 196}, [7003] = {.lex_state = 196}, - [7004] = {.lex_state = 199}, + [7004] = {.lex_state = 196}, [7005] = {.lex_state = 196}, [7006] = {.lex_state = 196}, - [7007] = {.lex_state = 199}, - [7008] = {.lex_state = 196}, + [7007] = {.lex_state = 196}, + [7008] = {.lex_state = 198}, [7009] = {.lex_state = 196}, - [7010] = {.lex_state = 339}, + [7010] = {.lex_state = 196}, [7011] = {.lex_state = 196}, - [7012] = {.lex_state = 217}, - [7013] = {.lex_state = 196}, + [7012] = {.lex_state = 196}, + [7013] = {.lex_state = 175}, [7014] = {.lex_state = 196}, - [7015] = {.lex_state = 196}, - [7016] = {.lex_state = 196}, + [7015] = {.lex_state = 171}, + [7016] = {.lex_state = 339}, [7017] = {.lex_state = 196}, [7018] = {.lex_state = 196}, - [7019] = {.lex_state = 175}, - [7020] = {.lex_state = 198}, - [7021] = {.lex_state = 339}, - [7022] = {.lex_state = 175}, - [7023] = {.lex_state = 175}, - [7024] = {.lex_state = 339}, + [7019] = {.lex_state = 198}, + [7020] = {.lex_state = 199}, + [7021] = {.lex_state = 196}, + [7022] = {.lex_state = 196}, + [7023] = {.lex_state = 196}, + [7024] = {.lex_state = 196}, [7025] = {.lex_state = 196}, [7026] = {.lex_state = 196}, [7027] = {.lex_state = 199}, - [7028] = {.lex_state = 196}, - [7029] = {.lex_state = 198}, + [7028] = {.lex_state = 199}, + [7029] = {.lex_state = 196}, [7030] = {.lex_state = 196}, - [7031] = {.lex_state = 196}, - [7032] = {.lex_state = 196}, + [7031] = {.lex_state = 199}, + [7032] = {.lex_state = 217}, [7033] = {.lex_state = 196}, [7034] = {.lex_state = 196}, - [7035] = {.lex_state = 199}, - [7036] = {.lex_state = 108}, - [7037] = {.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 = 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}, + [7035] = {.lex_state = 196}, + [7036] = {.lex_state = 196}, + [7037] = {.lex_state = 217}, + [7038] = {.lex_state = 196}, + [7039] = {.lex_state = 198}, + [7040] = {.lex_state = 196}, + [7041] = {.lex_state = 196}, + [7042] = {.lex_state = 196}, + [7043] = {.lex_state = 196}, + [7044] = {.lex_state = 196}, + [7045] = {.lex_state = 196}, + [7046] = {.lex_state = 196}, + [7047] = {.lex_state = 198}, + [7048] = {.lex_state = 238}, + [7049] = {.lex_state = 198}, + [7050] = {.lex_state = 196}, + [7051] = {.lex_state = 196}, + [7052] = {.lex_state = 196}, + [7053] = {.lex_state = 196}, + [7054] = {.lex_state = 196}, + [7055] = {.lex_state = 175}, + [7056] = {.lex_state = 196}, + [7057] = {.lex_state = 339}, + [7058] = {.lex_state = 196}, + [7059] = {.lex_state = 339}, + [7060] = {.lex_state = 108}, + [7061] = {.lex_state = 339}, + [7062] = {.lex_state = 0}, + [7063] = {.lex_state = 0}, + [7064] = {.lex_state = 113}, + [7065] = {.lex_state = 113}, [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 = 110}, + [7067] = {.lex_state = 0}, + [7068] = {.lex_state = 115}, + [7069] = {.lex_state = 113}, + [7070] = {.lex_state = 199}, + [7071] = {.lex_state = 113}, + [7072] = {.lex_state = 0}, + [7073] = {.lex_state = 113}, + [7074] = {.lex_state = 113}, + [7075] = {.lex_state = 113}, [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 = 339}, - [7086] = {.lex_state = 110}, - [7087] = {.lex_state = 110}, - [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 = 110}, - [7104] = {.lex_state = 339}, + [7077] = {.lex_state = 113}, + [7078] = {.lex_state = 113}, + [7079] = {.lex_state = 0}, + [7080] = {.lex_state = 113}, + [7081] = {.lex_state = 113}, + [7082] = {.lex_state = 0}, + [7083] = {.lex_state = 113}, + [7084] = {.lex_state = 113}, + [7085] = {.lex_state = 113}, + [7086] = {.lex_state = 113}, + [7087] = {.lex_state = 339}, + [7088] = {.lex_state = 196}, + [7089] = {.lex_state = 199}, + [7090] = {.lex_state = 339}, + [7091] = {.lex_state = 339}, + [7092] = {.lex_state = 196}, + [7093] = {.lex_state = 199}, + [7094] = {.lex_state = 199}, + [7095] = {.lex_state = 199}, + [7096] = {.lex_state = 0}, + [7097] = {.lex_state = 113}, + [7098] = {.lex_state = 196}, + [7099] = {.lex_state = 115}, + [7100] = {.lex_state = 113}, + [7101] = {.lex_state = 238}, + [7102] = {.lex_state = 0}, + [7103] = {.lex_state = 196}, + [7104] = {.lex_state = 199}, [7105] = {.lex_state = 339}, - [7106] = {.lex_state = 108}, - [7107] = {.lex_state = 199}, - [7108] = {.lex_state = 200}, - [7109] = {.lex_state = 171}, - [7110] = {.lex_state = 199}, - [7111] = {.lex_state = 108}, - [7112] = {.lex_state = 110}, - [7113] = {.lex_state = 339}, + [7106] = {.lex_state = 339}, + [7107] = {.lex_state = 339}, + [7108] = {.lex_state = 339}, + [7109] = {.lex_state = 199}, + [7110] = {.lex_state = 339}, + [7111] = {.lex_state = 339}, + [7112] = {.lex_state = 238}, + [7113] = {.lex_state = 113}, [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 = 339}, - [7128] = {.lex_state = 339}, - [7129] = {.lex_state = 196}, - [7130] = {.lex_state = 111}, - [7131] = {.lex_state = 339}, - [7132] = {.lex_state = 0}, - [7133] = {.lex_state = 339}, - [7134] = {.lex_state = 199}, - [7135] = {.lex_state = 110}, - [7136] = {.lex_state = 171}, - [7137] = {.lex_state = 238}, - [7138] = {.lex_state = 111}, - [7139] = {.lex_state = 199}, - [7140] = {.lex_state = 339}, + [7115] = {.lex_state = 196}, + [7116] = {.lex_state = 199}, + [7117] = {.lex_state = 113}, + [7118] = {.lex_state = 113}, + [7119] = {.lex_state = 113}, + [7120] = {.lex_state = 196}, + [7121] = {.lex_state = 339}, + [7122] = {.lex_state = 108}, + [7123] = {.lex_state = 339}, + [7124] = {.lex_state = 339}, + [7125] = {.lex_state = 196}, + [7126] = {.lex_state = 113}, + [7127] = {.lex_state = 199}, + [7128] = {.lex_state = 115}, + [7129] = {.lex_state = 113}, + [7130] = {.lex_state = 199}, + [7131] = {.lex_state = 199}, + [7132] = {.lex_state = 339}, + [7133] = {.lex_state = 199}, + [7134] = {.lex_state = 339}, + [7135] = {.lex_state = 115}, + [7136] = {.lex_state = 0}, + [7137] = {.lex_state = 113}, + [7138] = {.lex_state = 339}, + [7139] = {.lex_state = 196}, + [7140] = {.lex_state = 199}, [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 = 196}, + [7142] = {.lex_state = 196}, + [7143] = {.lex_state = 339}, + [7144] = {.lex_state = 238}, + [7145] = {.lex_state = 199}, + [7146] = {.lex_state = 199}, + [7147] = {.lex_state = 0}, + [7148] = {.lex_state = 339}, + [7149] = {.lex_state = 199}, + [7150] = {.lex_state = 196}, + [7151] = {.lex_state = 199}, + [7152] = {.lex_state = 108}, + [7153] = {.lex_state = 0}, + [7154] = {.lex_state = 199}, + [7155] = {.lex_state = 0}, + [7156] = {.lex_state = 0}, + [7157] = {.lex_state = 113}, + [7158] = {.lex_state = 339}, [7159] = {.lex_state = 196}, - [7160] = {.lex_state = 339}, - [7161] = {.lex_state = 339}, - [7162] = {.lex_state = 111}, - [7163] = {.lex_state = 339}, - [7164] = {.lex_state = 339}, + [7160] = {.lex_state = 0}, + [7161] = {.lex_state = 199}, + [7162] = {.lex_state = 339}, + [7163] = {.lex_state = 238}, + [7164] = {.lex_state = 108}, [7165] = {.lex_state = 199}, - [7166] = {.lex_state = 339}, - [7167] = {.lex_state = 238}, - [7168] = {.lex_state = 199}, - [7169] = {.lex_state = 339}, - [7170] = {.lex_state = 196}, + [7166] = {.lex_state = 113}, + [7167] = {.lex_state = 199}, + [7168] = {.lex_state = 115}, + [7169] = {.lex_state = 200}, + [7170] = {.lex_state = 113}, [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 = 199}, - [7183] = {.lex_state = 199}, - [7184] = {.lex_state = 108}, - [7185] = {.lex_state = 110}, + [7172] = {.lex_state = 113}, + [7173] = {.lex_state = 198}, + [7174] = {.lex_state = 0}, + [7175] = {.lex_state = 238}, + [7176] = {.lex_state = 199}, + [7177] = {.lex_state = 199}, + [7178] = {.lex_state = 238}, + [7179] = {.lex_state = 113}, + [7180] = {.lex_state = 0}, + [7181] = {.lex_state = 108}, + [7182] = {.lex_state = 0}, + [7183] = {.lex_state = 339}, + [7184] = {.lex_state = 115}, + [7185] = {.lex_state = 199}, [7186] = {.lex_state = 199}, - [7187] = {.lex_state = 199}, - [7188] = {.lex_state = 339}, - [7189] = {.lex_state = 339}, - [7190] = {.lex_state = 339}, - [7191] = {.lex_state = 339}, + [7187] = {.lex_state = 217}, + [7188] = {.lex_state = 238}, + [7189] = {.lex_state = 199}, + [7190] = {.lex_state = 115}, + [7191] = {.lex_state = 113}, [7192] = {.lex_state = 199}, - [7193] = {.lex_state = 0}, - [7194] = {.lex_state = 339}, - [7195] = {.lex_state = 196}, - [7196] = {.lex_state = 198}, - [7197] = {.lex_state = 339}, + [7193] = {.lex_state = 113}, + [7194] = {.lex_state = 199}, + [7195] = {.lex_state = 339}, + [7196] = {.lex_state = 339}, + [7197] = {.lex_state = 238}, [7198] = {.lex_state = 339}, - [7199] = {.lex_state = 339}, - [7200] = {.lex_state = 339}, + [7199] = {.lex_state = 171}, + [7200] = {.lex_state = 0}, [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 = 339}, - [7210] = {.lex_state = 196}, - [7211] = {.lex_state = 339}, - [7212] = {.lex_state = 196}, - [7213] = {.lex_state = 199}, - [7214] = {.lex_state = 339}, + [7204] = {.lex_state = 196}, + [7205] = {.lex_state = 113}, + [7206] = {.lex_state = 196}, + [7207] = {.lex_state = 0}, + [7208] = {.lex_state = 113}, + [7209] = {.lex_state = 196}, + [7210] = {.lex_state = 339}, + [7211] = {.lex_state = 196}, + [7212] = {.lex_state = 115}, + [7213] = {.lex_state = 108}, + [7214] = {.lex_state = 115}, [7215] = {.lex_state = 339}, - [7216] = {.lex_state = 108}, - [7217] = {.lex_state = 110}, + [7216] = {.lex_state = 113}, + [7217] = {.lex_state = 0}, [7218] = {.lex_state = 339}, [7219] = {.lex_state = 339}, - [7220] = {.lex_state = 339}, - [7221] = {.lex_state = 339}, + [7220] = {.lex_state = 199}, + [7221] = {.lex_state = 199}, [7222] = {.lex_state = 339}, - [7223] = {.lex_state = 339}, - [7224] = {.lex_state = 339}, + [7223] = {.lex_state = 199}, + [7224] = {.lex_state = 171}, [7225] = {.lex_state = 339}, - [7226] = {.lex_state = 339}, - [7227] = {.lex_state = 339}, - [7228] = {.lex_state = 199}, - [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 = 196}, - [7237] = {.lex_state = 199}, - [7238] = {.lex_state = 238}, - [7239] = {.lex_state = 196}, + [7226] = {.lex_state = 115}, + [7227] = {.lex_state = 113}, + [7228] = {.lex_state = 339}, + [7229] = {.lex_state = 339}, + [7230] = {.lex_state = 196}, + [7231] = {.lex_state = 339}, + [7232] = {.lex_state = 115}, + [7233] = {.lex_state = 339}, + [7234] = {.lex_state = 339}, + [7235] = {.lex_state = 339}, + [7236] = {.lex_state = 339}, + [7237] = {.lex_state = 339}, + [7238] = {.lex_state = 339}, + [7239] = {.lex_state = 339}, [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 = 196}, - [7248] = {.lex_state = 0}, - [7249] = {.lex_state = 199}, - [7250] = {.lex_state = 0}, - [7251] = {.lex_state = 0}, - [7252] = {.lex_state = 0}, - [7253] = {.lex_state = 196}, - [7254] = {.lex_state = 0}, - [7255] = {.lex_state = 199}, - [7256] = {.lex_state = 196}, - [7257] = {.lex_state = 196}, - [7258] = {.lex_state = 0}, - [7259] = {.lex_state = 0}, - [7260] = {.lex_state = 0}, - [7261] = {.lex_state = 0}, - [7262] = {.lex_state = 0}, - [7263] = {.lex_state = 171}, - [7264] = {.lex_state = 196}, - [7265] = {.lex_state = 0}, + [7242] = {.lex_state = 339}, + [7243] = {.lex_state = 339}, + [7244] = {.lex_state = 339}, + [7245] = {.lex_state = 339}, + [7246] = {.lex_state = 113}, + [7247] = {.lex_state = 199}, + [7248] = {.lex_state = 339}, + [7249] = {.lex_state = 238}, + [7250] = {.lex_state = 199}, + [7251] = {.lex_state = 339}, + [7252] = {.lex_state = 113}, + [7253] = {.lex_state = 238}, + [7254] = {.lex_state = 199}, + [7255] = {.lex_state = 113}, + [7256] = {.lex_state = 108}, + [7257] = {.lex_state = 339}, + [7258] = {.lex_state = 199}, + [7259] = {.lex_state = 339}, + [7260] = {.lex_state = 115}, + [7261] = {.lex_state = 199}, + [7262] = {.lex_state = 339}, + [7263] = {.lex_state = 115}, + [7264] = {.lex_state = 113}, + [7265] = {.lex_state = 199}, [7266] = {.lex_state = 0}, [7267] = {.lex_state = 0}, [7268] = {.lex_state = 0}, - [7269] = {.lex_state = 199}, - [7270] = {.lex_state = 196}, - [7271] = {.lex_state = 199}, - [7272] = {.lex_state = 0}, - [7273] = {.lex_state = 196}, - [7274] = {.lex_state = 171}, - [7275] = {.lex_state = 196}, + [7269] = {.lex_state = 0}, + [7270] = {.lex_state = 0}, + [7271] = {.lex_state = 0}, + [7272] = {.lex_state = 199}, + [7273] = {.lex_state = 0}, + [7274] = {.lex_state = 0}, + [7275] = {.lex_state = 199}, [7276] = {.lex_state = 0}, [7277] = {.lex_state = 196}, - [7278] = {.lex_state = 199}, + [7278] = {.lex_state = 0}, [7279] = {.lex_state = 0}, - [7280] = {.lex_state = 199}, + [7280] = {.lex_state = 0}, [7281] = {.lex_state = 0}, [7282] = {.lex_state = 0}, - [7283] = {.lex_state = 0}, + [7283] = {.lex_state = 196}, [7284] = {.lex_state = 0}, - [7285] = {.lex_state = 0}, - [7286] = {.lex_state = 0}, - [7287] = {.lex_state = 199}, + [7285] = {.lex_state = 196}, + [7286] = {.lex_state = 196}, + [7287] = {.lex_state = 196}, [7288] = {.lex_state = 0}, [7289] = {.lex_state = 0}, [7290] = {.lex_state = 0}, - [7291] = {.lex_state = 196}, - [7292] = {.lex_state = 199}, + [7291] = {.lex_state = 0}, + [7292] = {.lex_state = 171}, [7293] = {.lex_state = 0}, [7294] = {.lex_state = 196}, - [7295] = {.lex_state = 0}, - [7296] = {.lex_state = 0}, + [7295] = {.lex_state = 196}, + [7296] = {.lex_state = 196}, [7297] = {.lex_state = 0}, [7298] = {.lex_state = 0}, - [7299] = {.lex_state = 199}, - [7300] = {.lex_state = 196}, + [7299] = {.lex_state = 0}, + [7300] = {.lex_state = 0}, [7301] = {.lex_state = 196}, [7302] = {.lex_state = 0}, - [7303] = {.lex_state = 0}, + [7303] = {.lex_state = 196}, [7304] = {.lex_state = 0}, - [7305] = {.lex_state = 196}, + [7305] = {.lex_state = 0}, [7306] = {.lex_state = 0}, - [7307] = {.lex_state = 175}, - [7308] = {.lex_state = 196}, + [7307] = {.lex_state = 0}, + [7308] = {.lex_state = 0}, [7309] = {.lex_state = 0}, - [7310] = {.lex_state = 196}, - [7311] = {.lex_state = 196}, - [7312] = {.lex_state = 199}, - [7313] = {.lex_state = 171}, - [7314] = {.lex_state = 0}, - [7315] = {.lex_state = 196}, - [7316] = {.lex_state = 0}, - [7317] = {.lex_state = 339}, - [7318] = {.lex_state = 0}, + [7310] = {.lex_state = 0}, + [7311] = {.lex_state = 171}, + [7312] = {.lex_state = 196}, + [7313] = {.lex_state = 339}, + [7314] = {.lex_state = 196}, + [7315] = {.lex_state = 0}, + [7316] = {.lex_state = 196}, + [7317] = {.lex_state = 196}, + [7318] = {.lex_state = 171}, [7319] = {.lex_state = 0}, - [7320] = {.lex_state = 0}, + [7320] = {.lex_state = 196}, [7321] = {.lex_state = 0}, - [7322] = {.lex_state = 0}, + [7322] = {.lex_state = 171}, [7323] = {.lex_state = 0}, - [7324] = {.lex_state = 199}, - [7325] = {.lex_state = 199}, + [7324] = {.lex_state = 196}, + [7325] = {.lex_state = 115}, [7326] = {.lex_state = 0}, [7327] = {.lex_state = 0}, [7328] = {.lex_state = 0}, [7329] = {.lex_state = 0}, [7330] = {.lex_state = 0}, [7331] = {.lex_state = 0}, - [7332] = {.lex_state = 171}, - [7333] = {.lex_state = 0}, - [7334] = {.lex_state = 196}, + [7332] = {.lex_state = 0}, + [7333] = {.lex_state = 196}, + [7334] = {.lex_state = 0}, [7335] = {.lex_state = 199}, - [7336] = {.lex_state = 0}, + [7336] = {.lex_state = 196}, [7337] = {.lex_state = 0}, - [7338] = {.lex_state = 108}, - [7339] = {.lex_state = 164}, - [7340] = {.lex_state = 113}, - [7341] = {.lex_state = 199}, - [7342] = {.lex_state = 199}, + [7338] = {.lex_state = 196}, + [7339] = {.lex_state = 199}, + [7340] = {.lex_state = 199}, + [7341] = {.lex_state = 0}, + [7342] = {.lex_state = 196}, [7343] = {.lex_state = 0}, [7344] = {.lex_state = 0}, [7345] = {.lex_state = 0}, - [7346] = {.lex_state = 199}, - [7347] = {.lex_state = 199}, - [7348] = {.lex_state = 199}, - [7349] = {.lex_state = 0}, + [7346] = {.lex_state = 0}, + [7347] = {.lex_state = 196}, + [7348] = {.lex_state = 0}, + [7349] = {.lex_state = 196}, [7350] = {.lex_state = 0}, - [7351] = {.lex_state = 196}, - [7352] = {.lex_state = 196}, - [7353] = {.lex_state = 0}, - [7354] = {.lex_state = 199}, + [7351] = {.lex_state = 0}, + [7352] = {.lex_state = 0}, + [7353] = {.lex_state = 196}, + [7354] = {.lex_state = 0}, [7355] = {.lex_state = 0}, [7356] = {.lex_state = 0}, - [7357] = {.lex_state = 196}, + [7357] = {.lex_state = 0}, [7358] = {.lex_state = 0}, [7359] = {.lex_state = 0}, - [7360] = {.lex_state = 171}, + [7360] = {.lex_state = 196}, [7361] = {.lex_state = 0}, - [7362] = {.lex_state = 199}, - [7363] = {.lex_state = 199}, + [7362] = {.lex_state = 0}, + [7363] = {.lex_state = 0}, [7364] = {.lex_state = 199}, [7365] = {.lex_state = 199}, - [7366] = {.lex_state = 196}, + [7366] = {.lex_state = 0}, [7367] = {.lex_state = 0}, [7368] = {.lex_state = 0}, [7369] = {.lex_state = 0}, [7370] = {.lex_state = 0}, [7371] = {.lex_state = 0}, - [7372] = {.lex_state = 171}, - [7373] = {.lex_state = 113}, + [7372] = {.lex_state = 0}, + [7373] = {.lex_state = 0}, [7374] = {.lex_state = 0}, - [7375] = {.lex_state = 175}, - [7376] = {.lex_state = 199}, - [7377] = {.lex_state = 171}, - [7378] = {.lex_state = 0}, - [7379] = {.lex_state = 0}, + [7375] = {.lex_state = 0}, + [7376] = {.lex_state = 196}, + [7377] = {.lex_state = 0}, + [7378] = {.lex_state = 199}, + [7379] = {.lex_state = 199}, [7380] = {.lex_state = 0}, - [7381] = {.lex_state = 0}, + [7381] = {.lex_state = 199}, [7382] = {.lex_state = 0}, - [7383] = {.lex_state = 0}, + [7383] = {.lex_state = 199}, [7384] = {.lex_state = 0}, - [7385] = {.lex_state = 0}, - [7386] = {.lex_state = 0}, - [7387] = {.lex_state = 196}, - [7388] = {.lex_state = 196}, + [7385] = {.lex_state = 199}, + [7386] = {.lex_state = 199}, + [7387] = {.lex_state = 0}, + [7388] = {.lex_state = 171}, [7389] = {.lex_state = 0}, [7390] = {.lex_state = 0}, [7391] = {.lex_state = 199}, - [7392] = {.lex_state = 196}, + [7392] = {.lex_state = 199}, [7393] = {.lex_state = 0}, - [7394] = {.lex_state = 196}, - [7395] = {.lex_state = 108}, - [7396] = {.lex_state = 196}, + [7394] = {.lex_state = 199}, + [7395] = {.lex_state = 0}, + [7396] = {.lex_state = 0}, [7397] = {.lex_state = 0}, - [7398] = {.lex_state = 0}, + [7398] = {.lex_state = 199}, [7399] = {.lex_state = 0}, - [7400] = {.lex_state = 196}, + [7400] = {.lex_state = 0}, [7401] = {.lex_state = 196}, [7402] = {.lex_state = 0}, [7403] = {.lex_state = 0}, - [7404] = {.lex_state = 0}, + [7404] = {.lex_state = 199}, [7405] = {.lex_state = 0}, - [7406] = {.lex_state = 0}, - [7407] = {.lex_state = 0}, + [7406] = {.lex_state = 199}, + [7407] = {.lex_state = 196}, [7408] = {.lex_state = 0}, - [7409] = {.lex_state = 0}, - [7410] = {.lex_state = 196}, + [7409] = {.lex_state = 199}, + [7410] = {.lex_state = 199}, [7411] = {.lex_state = 0}, [7412] = {.lex_state = 0}, [7413] = {.lex_state = 0}, - [7414] = {.lex_state = 171}, - [7415] = {.lex_state = 0}, - [7416] = {.lex_state = 0}, + [7414] = {.lex_state = 0}, + [7415] = {.lex_state = 196}, + [7416] = {.lex_state = 171}, [7417] = {.lex_state = 0}, [7418] = {.lex_state = 0}, [7419] = {.lex_state = 0}, - [7420] = {.lex_state = 0}, - [7421] = {.lex_state = 0}, - [7422] = {.lex_state = 196}, - [7423] = {.lex_state = 196}, + [7420] = {.lex_state = 171}, + [7421] = {.lex_state = 196}, + [7422] = {.lex_state = 115}, + [7423] = {.lex_state = 0}, [7424] = {.lex_state = 196}, - [7425] = {.lex_state = 199}, - [7426] = {.lex_state = 196}, - [7427] = {.lex_state = 0}, + [7425] = {.lex_state = 0}, + [7426] = {.lex_state = 0}, + [7427] = {.lex_state = 199}, [7428] = {.lex_state = 0}, - [7429] = {.lex_state = 0}, - [7430] = {.lex_state = 0}, + [7429] = {.lex_state = 217}, + [7430] = {.lex_state = 196}, [7431] = {.lex_state = 0}, [7432] = {.lex_state = 0}, [7433] = {.lex_state = 0}, [7434] = {.lex_state = 0}, [7435] = {.lex_state = 0}, - [7436] = {.lex_state = 0}, - [7437] = {.lex_state = 196}, - [7438] = {.lex_state = 113}, - [7439] = {.lex_state = 0}, - [7440] = {.lex_state = 0}, + [7436] = {.lex_state = 196}, + [7437] = {.lex_state = 0}, + [7438] = {.lex_state = 0}, + [7439] = {.lex_state = 199}, + [7440] = {.lex_state = 199}, [7441] = {.lex_state = 196}, - [7442] = {.lex_state = 0}, - [7443] = {.lex_state = 0}, + [7442] = {.lex_state = 196}, + [7443] = {.lex_state = 115}, [7444] = {.lex_state = 0}, [7445] = {.lex_state = 0}, [7446] = {.lex_state = 0}, - [7447] = {.lex_state = 199}, - [7448] = {.lex_state = 199}, + [7447] = {.lex_state = 171}, + [7448] = {.lex_state = 0}, [7449] = {.lex_state = 0}, [7450] = {.lex_state = 196}, [7451] = {.lex_state = 0}, - [7452] = {.lex_state = 196}, - [7453] = {.lex_state = 0}, - [7454] = {.lex_state = 108}, + [7452] = {.lex_state = 0}, + [7453] = {.lex_state = 199}, + [7454] = {.lex_state = 196}, [7455] = {.lex_state = 0}, - [7456] = {.lex_state = 0}, + [7456] = {.lex_state = 196}, [7457] = {.lex_state = 0}, - [7458] = {.lex_state = 0}, - [7459] = {.lex_state = 196}, - [7460] = {.lex_state = 196}, - [7461] = {.lex_state = 196}, - [7462] = {.lex_state = 0}, + [7458] = {.lex_state = 199}, + [7459] = {.lex_state = 0}, + [7460] = {.lex_state = 199}, + [7461] = {.lex_state = 0}, + [7462] = {.lex_state = 110}, [7463] = {.lex_state = 0}, - [7464] = {.lex_state = 196}, - [7465] = {.lex_state = 171}, + [7464] = {.lex_state = 199}, + [7465] = {.lex_state = 0}, [7466] = {.lex_state = 0}, [7467] = {.lex_state = 0}, - [7468] = {.lex_state = 199}, - [7469] = {.lex_state = 199}, + [7468] = {.lex_state = 0}, + [7469] = {.lex_state = 0}, [7470] = {.lex_state = 0}, - [7471] = {.lex_state = 196}, - [7472] = {.lex_state = 196}, - [7473] = {.lex_state = 199}, - [7474] = {.lex_state = 199}, - [7475] = {.lex_state = 199}, + [7471] = {.lex_state = 0}, + [7472] = {.lex_state = 199}, + [7473] = {.lex_state = 196}, + [7474] = {.lex_state = 196}, + [7475] = {.lex_state = 0}, [7476] = {.lex_state = 0}, [7477] = {.lex_state = 0}, - [7478] = {.lex_state = 196}, - [7479] = {.lex_state = 108}, - [7480] = {.lex_state = 171}, + [7478] = {.lex_state = 0}, + [7479] = {.lex_state = 0}, + [7480] = {.lex_state = 0}, [7481] = {.lex_state = 0}, - [7482] = {.lex_state = 0}, - [7483] = {.lex_state = 0}, - [7484] = {.lex_state = 196}, - [7485] = {.lex_state = 196}, + [7482] = {.lex_state = 196}, + [7483] = {.lex_state = 199}, + [7484] = {.lex_state = 199}, + [7485] = {.lex_state = 199}, [7486] = {.lex_state = 0}, [7487] = {.lex_state = 0}, - [7488] = {.lex_state = 0}, + [7488] = {.lex_state = 196}, [7489] = {.lex_state = 0}, [7490] = {.lex_state = 196}, - [7491] = {.lex_state = 0}, + [7491] = {.lex_state = 115}, [7492] = {.lex_state = 0}, [7493] = {.lex_state = 0}, - [7494] = {.lex_state = 196}, + [7494] = {.lex_state = 0}, [7495] = {.lex_state = 0}, [7496] = {.lex_state = 0}, [7497] = {.lex_state = 196}, - [7498] = {.lex_state = 108}, + [7498] = {.lex_state = 199}, [7499] = {.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 = 199}, - [7507] = {.lex_state = 196}, + [7500] = {.lex_state = 196}, + [7501] = {.lex_state = 339}, + [7502] = {.lex_state = 0}, + [7503] = {.lex_state = 199}, + [7504] = {.lex_state = 0}, + [7505] = {.lex_state = 199}, + [7506] = {.lex_state = 0}, + [7507] = {.lex_state = 0}, [7508] = {.lex_state = 199}, - [7509] = {.lex_state = 196}, + [7509] = {.lex_state = 199}, [7510] = {.lex_state = 0}, - [7511] = {.lex_state = 0}, - [7512] = {.lex_state = 199}, - [7513] = {.lex_state = 0}, + [7511] = {.lex_state = 199}, + [7512] = {.lex_state = 0}, + [7513] = {.lex_state = 196}, [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}, + [7516] = {.lex_state = 0}, + [7517] = {.lex_state = 0}, + [7518] = {.lex_state = 110}, + [7519] = {.lex_state = 196}, + [7520] = {.lex_state = 115}, + [7521] = {.lex_state = 110}, + [7522] = {.lex_state = 0}, + [7523] = {.lex_state = 0}, + [7524] = {.lex_state = 0}, [7525] = {.lex_state = 0}, - [7526] = {.lex_state = 0}, - [7527] = {.lex_state = 199}, + [7526] = {.lex_state = 196}, + [7527] = {.lex_state = 196}, [7528] = {.lex_state = 0}, [7529] = {.lex_state = 0}, - [7530] = {.lex_state = 196}, - [7531] = {.lex_state = 175}, - [7532] = {.lex_state = 196}, - [7533] = {.lex_state = 108}, - [7534] = {.lex_state = 199}, - [7535] = {.lex_state = 0}, + [7530] = {.lex_state = 0}, + [7531] = {.lex_state = 0}, + [7532] = {.lex_state = 0}, + [7533] = {.lex_state = 0}, + [7534] = {.lex_state = 0}, + [7535] = {.lex_state = 171}, [7536] = {.lex_state = 0}, [7537] = {.lex_state = 0}, - [7538] = {.lex_state = 108}, + [7538] = {.lex_state = 0}, [7539] = {.lex_state = 0}, - [7540] = {.lex_state = 196}, - [7541] = {.lex_state = 0}, - [7542] = {.lex_state = 0}, - [7543] = {.lex_state = 171}, - [7544] = {.lex_state = 108}, - [7545] = {.lex_state = 199}, - [7546] = {.lex_state = 0}, - [7547] = {.lex_state = 108}, - [7548] = {.lex_state = 108}, - [7549] = {.lex_state = 0}, - [7550] = {.lex_state = 0}, - [7551] = {.lex_state = 196}, + [7540] = {.lex_state = 0}, + [7541] = {.lex_state = 196}, + [7542] = {.lex_state = 115}, + [7543] = {.lex_state = 196}, + [7544] = {.lex_state = 0}, + [7545] = {.lex_state = 0}, + [7546] = {.lex_state = 196}, + [7547] = {.lex_state = 0}, + [7548] = {.lex_state = 171}, + [7549] = {.lex_state = 171}, + [7550] = {.lex_state = 196}, + [7551] = {.lex_state = 0}, [7552] = {.lex_state = 0}, - [7553] = {.lex_state = 196}, + [7553] = {.lex_state = 0}, [7554] = {.lex_state = 0}, - [7555] = {.lex_state = 199}, - [7556] = {.lex_state = 0}, - [7557] = {.lex_state = 0}, - [7558] = {.lex_state = 0}, + [7555] = {.lex_state = 196}, + [7556] = {.lex_state = 115}, + [7557] = {.lex_state = 196}, + [7558] = {.lex_state = 196}, [7559] = {.lex_state = 196}, - [7560] = {.lex_state = 0}, - [7561] = {.lex_state = 0}, + [7560] = {.lex_state = 196}, + [7561] = {.lex_state = 196}, [7562] = {.lex_state = 0}, - [7563] = {.lex_state = 0}, + [7563] = {.lex_state = 164}, [7564] = {.lex_state = 0}, [7565] = {.lex_state = 0}, [7566] = {.lex_state = 196}, [7567] = {.lex_state = 196}, - [7568] = {.lex_state = 199}, - [7569] = {.lex_state = 196}, - [7570] = {.lex_state = 0}, + [7568] = {.lex_state = 115}, + [7569] = {.lex_state = 199}, + [7570] = {.lex_state = 199}, [7571] = {.lex_state = 0}, - [7572] = {.lex_state = 0}, - [7573] = {.lex_state = 0}, + [7572] = {.lex_state = 199}, + [7573] = {.lex_state = 115}, [7574] = {.lex_state = 0}, - [7575] = {.lex_state = 196}, - [7576] = {.lex_state = 199}, - [7577] = {.lex_state = 199}, + [7575] = {.lex_state = 0}, + [7576] = {.lex_state = 196}, + [7577] = {.lex_state = 115}, [7578] = {.lex_state = 0}, - [7579] = {.lex_state = 0}, - [7580] = {.lex_state = 0}, - [7581] = {.lex_state = 196}, + [7579] = {.lex_state = 115}, + [7580] = {.lex_state = 171}, + [7581] = {.lex_state = 115}, [7582] = {.lex_state = 0}, [7583] = {.lex_state = 0}, - [7584] = {.lex_state = 0}, - [7585] = {.lex_state = 196}, + [7584] = {.lex_state = 171}, + [7585] = {.lex_state = 199}, [7586] = {.lex_state = 199}, - [7587] = {.lex_state = 199}, - [7588] = {.lex_state = 199}, - [7589] = {.lex_state = 199}, - [7590] = {.lex_state = 0}, + [7587] = {.lex_state = 0}, + [7588] = {.lex_state = 0}, + [7589] = {.lex_state = 0}, + [7590] = {.lex_state = 196}, [7591] = {.lex_state = 0}, - [7592] = {.lex_state = 199}, - [7593] = {.lex_state = 199}, - [7594] = {.lex_state = 0}, - [7595] = {.lex_state = 199}, + [7592] = {.lex_state = 196}, + [7593] = {.lex_state = 196}, + [7594] = {.lex_state = 199}, + [7595] = {.lex_state = 0}, [7596] = {.lex_state = 0}, - [7597] = {.lex_state = 196}, - [7598] = {.lex_state = 0}, - [7599] = {.lex_state = 171}, + [7597] = {.lex_state = 0}, + [7598] = {.lex_state = 199}, + [7599] = {.lex_state = 0}, [7600] = {.lex_state = 0}, [7601] = {.lex_state = 0}, - [7602] = {.lex_state = 217}, + [7602] = {.lex_state = 0}, [7603] = {.lex_state = 0}, - [7604] = {.lex_state = 0}, + [7604] = {.lex_state = 199}, [7605] = {.lex_state = 0}, [7606] = {.lex_state = 0}, [7607] = {.lex_state = 0}, @@ -29840,257 +29868,257 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7610] = {.lex_state = 0}, [7611] = {.lex_state = 0}, [7612] = {.lex_state = 0}, - [7613] = {.lex_state = 0}, + [7613] = {.lex_state = 196}, [7614] = {.lex_state = 0}, - [7615] = {.lex_state = 0}, - [7616] = {.lex_state = 199}, - [7617] = {.lex_state = 199}, + [7615] = {.lex_state = 110}, + [7616] = {.lex_state = 0}, + [7617] = {.lex_state = 196}, [7618] = {.lex_state = 0}, [7619] = {.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 = 0}, - [7630] = {.lex_state = 0}, - [7631] = {.lex_state = 0}, - [7632] = {.lex_state = 196}, - [7633] = {.lex_state = 0}, - [7634] = {.lex_state = 0}, - [7635] = {.lex_state = 0}, - [7636] = {.lex_state = 196}, - [7637] = {.lex_state = 199}, - [7638] = {.lex_state = 196}, + [7620] = {.lex_state = 196}, + [7621] = {.lex_state = 0}, + [7622] = {.lex_state = 196}, + [7623] = {.lex_state = 0}, + [7624] = {.lex_state = 199}, + [7625] = {.lex_state = 0}, + [7626] = {.lex_state = 0}, + [7627] = {.lex_state = 0}, + [7628] = {.lex_state = 175}, + [7629] = {.lex_state = 196}, + [7630] = {.lex_state = 171}, + [7631] = {.lex_state = 196}, + [7632] = {.lex_state = 0}, + [7633] = {.lex_state = 199}, + [7634] = {.lex_state = 199}, + [7635] = {.lex_state = 199}, + [7636] = {.lex_state = 0}, + [7637] = {.lex_state = 196}, + [7638] = {.lex_state = 0}, [7639] = {.lex_state = 0}, - [7640] = {.lex_state = 339}, - [7641] = {.lex_state = 199}, + [7640] = {.lex_state = 0}, + [7641] = {.lex_state = 0}, [7642] = {.lex_state = 0}, - [7643] = {.lex_state = 0}, - [7644] = {.lex_state = 196}, + [7643] = {.lex_state = 199}, + [7644] = {.lex_state = 0}, [7645] = {.lex_state = 0}, - [7646] = {.lex_state = 0}, - [7647] = {.lex_state = 0}, + [7646] = {.lex_state = 196}, + [7647] = {.lex_state = 196}, [7648] = {.lex_state = 196}, - [7649] = {.lex_state = 0}, + [7649] = {.lex_state = 199}, [7650] = {.lex_state = 0}, - [7651] = {.lex_state = 0}, - [7652] = {.lex_state = 196}, + [7651] = {.lex_state = 196}, + [7652] = {.lex_state = 0}, [7653] = {.lex_state = 0}, - [7654] = {.lex_state = 0}, - [7655] = {.lex_state = 0}, - [7656] = {.lex_state = 0}, + [7654] = {.lex_state = 196}, + [7655] = {.lex_state = 196}, + [7656] = {.lex_state = 175}, [7657] = {.lex_state = 0}, - [7658] = {.lex_state = 196}, - [7659] = {.lex_state = 171}, - [7660] = {.lex_state = 0}, - [7661] = {.lex_state = 0}, - [7662] = {.lex_state = 0}, + [7658] = {.lex_state = 0}, + [7659] = {.lex_state = 199}, + [7660] = {.lex_state = 199}, + [7661] = {.lex_state = 199}, + [7662] = {.lex_state = 196}, [7663] = {.lex_state = 0}, - [7664] = {.lex_state = 199}, - [7665] = {.lex_state = 196}, - [7666] = {.lex_state = 0}, + [7664] = {.lex_state = 0}, + [7665] = {.lex_state = 199}, + [7666] = {.lex_state = 199}, [7667] = {.lex_state = 0}, - [7668] = {.lex_state = 196}, - [7669] = {.lex_state = 199}, - [7670] = {.lex_state = 199}, - [7671] = {.lex_state = 0}, + [7668] = {.lex_state = 0}, + [7669] = {.lex_state = 0}, + [7670] = {.lex_state = 0}, + [7671] = {.lex_state = 199}, [7672] = {.lex_state = 0}, - [7673] = {.lex_state = 196}, + [7673] = {.lex_state = 0}, [7674] = {.lex_state = 0}, [7675] = {.lex_state = 0}, - [7676] = {.lex_state = 196}, + [7676] = {.lex_state = 0}, [7677] = {.lex_state = 0}, - [7678] = {.lex_state = 0}, + [7678] = {.lex_state = 196}, [7679] = {.lex_state = 0}, [7680] = {.lex_state = 0}, - [7681] = {.lex_state = 0}, + [7681] = {.lex_state = 199}, [7682] = {.lex_state = 196}, - [7683] = {.lex_state = 0}, + [7683] = {.lex_state = 199}, [7684] = {.lex_state = 0}, - [7685] = {.lex_state = 196}, - [7686] = {.lex_state = 199}, - [7687] = {.lex_state = 196}, + [7685] = {.lex_state = 339}, + [7686] = {.lex_state = 0}, + [7687] = {.lex_state = 0}, [7688] = {.lex_state = 0}, [7689] = {.lex_state = 0}, - [7690] = {.lex_state = 0}, + [7690] = {.lex_state = 199}, [7691] = {.lex_state = 0}, - [7692] = {.lex_state = 0}, + [7692] = {.lex_state = 175}, [7693] = {.lex_state = 0}, - [7694] = {.lex_state = 339}, + [7694] = {.lex_state = 199}, [7695] = {.lex_state = 0}, [7696] = {.lex_state = 0}, [7697] = {.lex_state = 0}, [7698] = {.lex_state = 196}, [7699] = {.lex_state = 0}, [7700] = {.lex_state = 0}, - [7701] = {.lex_state = 339}, - [7702] = {.lex_state = 339}, - [7703] = {.lex_state = 0}, - [7704] = {.lex_state = 0}, - [7705] = {.lex_state = 339}, + [7701] = {.lex_state = 196}, + [7702] = {.lex_state = 0}, + [7703] = {.lex_state = 199}, + [7704] = {.lex_state = 196}, + [7705] = {.lex_state = 171}, [7706] = {.lex_state = 196}, [7707] = {.lex_state = 0}, - [7708] = {.lex_state = 112}, - [7709] = {.lex_state = 0}, + [7708] = {.lex_state = 199}, + [7709] = {.lex_state = 171}, [7710] = {.lex_state = 0}, - [7711] = {.lex_state = 0}, - [7712] = {.lex_state = 0}, - [7713] = {.lex_state = 0}, + [7711] = {.lex_state = 196}, + [7712] = {.lex_state = 196}, + [7713] = {.lex_state = 171}, [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 = 0}, + [7720] = {.lex_state = 339}, [7721] = {.lex_state = 0}, [7722] = {.lex_state = 339}, [7723] = {.lex_state = 0}, - [7724] = {.lex_state = 339}, - [7725] = {.lex_state = 339}, - [7726] = {.lex_state = 0}, + [7724] = {.lex_state = 196}, + [7725] = {.lex_state = 196}, + [7726] = {.lex_state = 109}, [7727] = {.lex_state = 0}, - [7728] = {.lex_state = 0}, + [7728] = {.lex_state = 196}, [7729] = {.lex_state = 0}, - [7730] = {.lex_state = 0}, + [7730] = {.lex_state = 339}, [7731] = {.lex_state = 0}, - [7732] = {.lex_state = 0}, + [7732] = {.lex_state = 339}, [7733] = {.lex_state = 0}, - [7734] = {.lex_state = 196}, + [7734] = {.lex_state = 0}, [7735] = {.lex_state = 0}, [7736] = {.lex_state = 0}, [7737] = {.lex_state = 0}, [7738] = {.lex_state = 0}, - [7739] = {.lex_state = 0}, - [7740] = {.lex_state = 0}, + [7739] = {.lex_state = 339}, + [7740] = {.lex_state = 339}, [7741] = {.lex_state = 0}, [7742] = {.lex_state = 0}, - [7743] = {.lex_state = 171}, + [7743] = {.lex_state = 0}, [7744] = {.lex_state = 0}, [7745] = {.lex_state = 0}, [7746] = {.lex_state = 0}, - [7747] = {.lex_state = 196}, - [7748] = {.lex_state = 339}, + [7747] = {.lex_state = 171}, + [7748] = {.lex_state = 196}, [7749] = {.lex_state = 0}, - [7750] = {.lex_state = 0}, - [7751] = {.lex_state = 339}, - [7752] = {.lex_state = 0}, - [7753] = {.lex_state = 339}, - [7754] = {.lex_state = 112}, + [7750] = {.lex_state = 196}, + [7751] = {.lex_state = 0}, + [7752] = {.lex_state = 196}, + [7753] = {.lex_state = 0}, + [7754] = {.lex_state = 0}, [7755] = {.lex_state = 0}, - [7756] = {.lex_state = 0}, - [7757] = {.lex_state = 196}, - [7758] = {.lex_state = 112}, - [7759] = {.lex_state = 196}, + [7756] = {.lex_state = 109}, + [7757] = {.lex_state = 0}, + [7758] = {.lex_state = 0}, + [7759] = {.lex_state = 339}, [7760] = {.lex_state = 0}, - [7761] = {.lex_state = 0}, + [7761] = {.lex_state = 339}, [7762] = {.lex_state = 0}, - [7763] = {.lex_state = 0}, + [7763] = {.lex_state = 339}, [7764] = {.lex_state = 0}, [7765] = {.lex_state = 0}, - [7766] = {.lex_state = 339}, - [7767] = {.lex_state = 0}, + [7766] = {.lex_state = 0}, + [7767] = {.lex_state = 339}, [7768] = {.lex_state = 0}, - [7769] = {.lex_state = 196}, + [7769] = {.lex_state = 0}, [7770] = {.lex_state = 0}, [7771] = {.lex_state = 0}, [7772] = {.lex_state = 0}, - [7773] = {.lex_state = 0}, + [7773] = {.lex_state = 339}, [7774] = {.lex_state = 0}, [7775] = {.lex_state = 0}, [7776] = {.lex_state = 0}, - [7777] = {.lex_state = 339}, + [7777] = {.lex_state = 0}, [7778] = {.lex_state = 0}, - [7779] = {.lex_state = 0}, + [7779] = {.lex_state = 339}, [7780] = {.lex_state = 0}, [7781] = {.lex_state = 0}, - [7782] = {.lex_state = 339}, - [7783] = {.lex_state = 0}, - [7784] = {.lex_state = 0}, + [7782] = {.lex_state = 0}, + [7783] = {.lex_state = 109}, + [7784] = {.lex_state = 339}, [7785] = {.lex_state = 0}, [7786] = {.lex_state = 0}, - [7787] = {.lex_state = 0}, + [7787] = {.lex_state = 339}, [7788] = {.lex_state = 339}, - [7789] = {.lex_state = 0}, - [7790] = {.lex_state = 339}, - [7791] = {.lex_state = 0}, - [7792] = {.lex_state = 0}, + [7789] = {.lex_state = 339}, + [7790] = {.lex_state = 0}, + [7791] = {.lex_state = 196}, + [7792] = {.lex_state = 109}, [7793] = {.lex_state = 0}, - [7794] = {.lex_state = 196}, + [7794] = {.lex_state = 0}, [7795] = {.lex_state = 0}, - [7796] = {.lex_state = 112}, - [7797] = {.lex_state = 339}, - [7798] = {.lex_state = 339}, + [7796] = {.lex_state = 0}, + [7797] = {.lex_state = 0}, + [7798] = {.lex_state = 0}, [7799] = {.lex_state = 0}, - [7800] = {.lex_state = 0}, + [7800] = {.lex_state = 171}, [7801] = {.lex_state = 339}, - [7802] = {.lex_state = 0}, - [7803] = {.lex_state = 0}, + [7802] = {.lex_state = 109}, + [7803] = {.lex_state = 196}, [7804] = {.lex_state = 0}, [7805] = {.lex_state = 0}, - [7806] = {.lex_state = 339}, - [7807] = {.lex_state = 339}, + [7806] = {.lex_state = 0}, + [7807] = {.lex_state = 0}, [7808] = {.lex_state = 339}, - [7809] = {.lex_state = 339}, - [7810] = {.lex_state = 0}, - [7811] = {.lex_state = 0}, - [7812] = {.lex_state = 0}, + [7809] = {.lex_state = 0}, + [7810] = {.lex_state = 339}, + [7811] = {.lex_state = 109}, + [7812] = {.lex_state = 339}, [7813] = {.lex_state = 0}, [7814] = {.lex_state = 0}, [7815] = {.lex_state = 339}, [7816] = {.lex_state = 0}, - [7817] = {.lex_state = 0}, + [7817] = {.lex_state = 109}, [7818] = {.lex_state = 339}, [7819] = {.lex_state = 0}, - [7820] = {.lex_state = 0}, - [7821] = {.lex_state = 0}, - [7822] = {.lex_state = 339}, - [7823] = {.lex_state = 112}, + [7820] = {.lex_state = 196}, + [7821] = {.lex_state = 339}, + [7822] = {.lex_state = 0}, + [7823] = {.lex_state = 0}, [7824] = {.lex_state = 0}, - [7825] = {.lex_state = 339}, - [7826] = {.lex_state = 0}, + [7825] = {.lex_state = 0}, + [7826] = {.lex_state = 339}, [7827] = {.lex_state = 0}, - [7828] = {.lex_state = 0}, - [7829] = {.lex_state = 196}, + [7828] = {.lex_state = 109}, + [7829] = {.lex_state = 339}, [7830] = {.lex_state = 339}, - [7831] = {.lex_state = 0}, + [7831] = {.lex_state = 171}, [7832] = {.lex_state = 0}, [7833] = {.lex_state = 0}, - [7834] = {.lex_state = 196}, + [7834] = {.lex_state = 339}, [7835] = {.lex_state = 339}, - [7836] = {.lex_state = 339}, - [7837] = {.lex_state = 339}, + [7836] = {.lex_state = 0}, + [7837] = {.lex_state = 0}, [7838] = {.lex_state = 0}, - [7839] = {.lex_state = 0}, - [7840] = {.lex_state = 112}, - [7841] = {.lex_state = 196}, - [7842] = {.lex_state = 196}, + [7839] = {.lex_state = 109}, + [7840] = {.lex_state = 0}, + [7841] = {.lex_state = 0}, + [7842] = {.lex_state = 339}, [7843] = {.lex_state = 339}, [7844] = {.lex_state = 0}, - [7845] = {.lex_state = 339}, - [7846] = {.lex_state = 171}, + [7845] = {.lex_state = 0}, + [7846] = {.lex_state = 0}, [7847] = {.lex_state = 0}, - [7848] = {.lex_state = 339}, + [7848] = {.lex_state = 0}, [7849] = {.lex_state = 0}, - [7850] = {.lex_state = 339}, + [7850] = {.lex_state = 0}, [7851] = {.lex_state = 339}, [7852] = {.lex_state = 0}, - [7853] = {.lex_state = 339}, + [7853] = {.lex_state = 0}, [7854] = {.lex_state = 0}, [7855] = {.lex_state = 0}, [7856] = {.lex_state = 0}, - [7857] = {.lex_state = 0}, - [7858] = {.lex_state = 339}, - [7859] = {.lex_state = 0}, - [7860] = {.lex_state = 196}, - [7861] = {.lex_state = 339}, + [7857] = {.lex_state = 339}, + [7858] = {.lex_state = 0}, + [7859] = {.lex_state = 339}, + [7860] = {.lex_state = 0}, + [7861] = {.lex_state = 0}, [7862] = {.lex_state = 0}, - [7863] = {.lex_state = 339}, + [7863] = {.lex_state = 171}, [7864] = {.lex_state = 0}, [7865] = {.lex_state = 339}, [7866] = {.lex_state = 0}, @@ -30101,125 +30129,125 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7871] = {.lex_state = 0}, [7872] = {.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}, + [7874] = {.lex_state = 0}, + [7875] = {.lex_state = 339}, + [7876] = {.lex_state = 0}, + [7877] = {.lex_state = 109}, [7878] = {.lex_state = 0}, - [7879] = {.lex_state = 112}, - [7880] = {.lex_state = 112}, - [7881] = {.lex_state = 0}, - [7882] = {.lex_state = 339}, + [7879] = {.lex_state = 339}, + [7880] = {.lex_state = 339}, + [7881] = {.lex_state = 109}, + [7882] = {.lex_state = 0}, [7883] = {.lex_state = 0}, - [7884] = {.lex_state = 196}, + [7884] = {.lex_state = 0}, [7885] = {.lex_state = 0}, - [7886] = {.lex_state = 0}, + [7886] = {.lex_state = 339}, [7887] = {.lex_state = 0}, [7888] = {.lex_state = 339}, - [7889] = {.lex_state = 339}, + [7889] = {.lex_state = 0}, [7890] = {.lex_state = 0}, [7891] = {.lex_state = 0}, [7892] = {.lex_state = 339}, [7893] = {.lex_state = 196}, [7894] = {.lex_state = 0}, - [7895] = {.lex_state = 339}, + [7895] = {.lex_state = 0}, [7896] = {.lex_state = 0}, - [7897] = {.lex_state = 0}, - [7898] = {.lex_state = 339}, - [7899] = {.lex_state = 0}, + [7897] = {.lex_state = 339}, + [7898] = {.lex_state = 0}, + [7899] = {.lex_state = 339}, [7900] = {.lex_state = 196}, - [7901] = {.lex_state = 339}, + [7901] = {.lex_state = 0}, [7902] = {.lex_state = 0}, - [7903] = {.lex_state = 196}, + [7903] = {.lex_state = 0}, [7904] = {.lex_state = 0}, - [7905] = {.lex_state = 339}, + [7905] = {.lex_state = 0}, [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}, + [7911] = {.lex_state = 0}, + [7912] = {.lex_state = 0}, [7913] = {.lex_state = 0}, - [7914] = {.lex_state = 196}, + [7914] = {.lex_state = 0}, [7915] = {.lex_state = 0}, [7916] = {.lex_state = 0}, - [7917] = {.lex_state = 339}, + [7917] = {.lex_state = 196}, [7918] = {.lex_state = 0}, - [7919] = {.lex_state = 339}, + [7919] = {.lex_state = 0}, [7920] = {.lex_state = 0}, [7921] = {.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}, + [7923] = {.lex_state = 339, .external_lex_state = 2}, + [7924] = {.lex_state = 0}, + [7925] = {.lex_state = 0}, + [7926] = {.lex_state = 196}, + [7927] = {.lex_state = 0}, + [7928] = {.lex_state = 0}, [7929] = {.lex_state = 0}, [7930] = {.lex_state = 0}, [7931] = {.lex_state = 0}, [7932] = {.lex_state = 0}, [7933] = {.lex_state = 0}, [7934] = {.lex_state = 0}, - [7935] = {.lex_state = 339}, - [7936] = {.lex_state = 339}, - [7937] = {.lex_state = 171}, - [7938] = {.lex_state = 0}, + [7935] = {.lex_state = 196}, + [7936] = {.lex_state = 0}, + [7937] = {.lex_state = 0}, + [7938] = {.lex_state = 339}, [7939] = {.lex_state = 0}, [7940] = {.lex_state = 0}, [7941] = {.lex_state = 0}, [7942] = {.lex_state = 0}, - [7943] = {.lex_state = 0}, + [7943] = {.lex_state = 109}, [7944] = {.lex_state = 0}, [7945] = {.lex_state = 0}, - [7946] = {.lex_state = 171}, - [7947] = {.lex_state = 0}, - [7948] = {.lex_state = 196}, - [7949] = {.lex_state = 0}, - [7950] = {.lex_state = 0}, + [7946] = {.lex_state = 339}, + [7947] = {.lex_state = 109}, + [7948] = {.lex_state = 0}, + [7949] = {.lex_state = 339}, + [7950] = {.lex_state = 339}, [7951] = {.lex_state = 0}, - [7952] = {.lex_state = 339}, + [7952] = {.lex_state = 0}, [7953] = {.lex_state = 0}, - [7954] = {.lex_state = 0}, + [7954] = {.lex_state = 339}, [7955] = {.lex_state = 0}, - [7956] = {.lex_state = 0}, - [7957] = {.lex_state = 339}, + [7956] = {.lex_state = 339}, + [7957] = {.lex_state = 0}, [7958] = {.lex_state = 0}, - [7959] = {.lex_state = 0}, + [7959] = {.lex_state = 339}, [7960] = {.lex_state = 0}, - [7961] = {.lex_state = 0}, + [7961] = {.lex_state = 339}, [7962] = {.lex_state = 0}, - [7963] = {.lex_state = 0}, + [7963] = {.lex_state = 196}, [7964] = {.lex_state = 0}, [7965] = {.lex_state = 0}, - [7966] = {.lex_state = 112}, - [7967] = {.lex_state = 339}, - [7968] = {.lex_state = 0}, - [7969] = {.lex_state = 0}, - [7970] = {.lex_state = 112}, + [7966] = {.lex_state = 0}, + [7967] = {.lex_state = 109}, + [7968] = {.lex_state = 196}, + [7969] = {.lex_state = 109}, + [7970] = {.lex_state = 0}, [7971] = {.lex_state = 0}, [7972] = {.lex_state = 339}, [7973] = {.lex_state = 0}, - [7974] = {.lex_state = 112}, + [7974] = {.lex_state = 0}, [7975] = {.lex_state = 0}, [7976] = {.lex_state = 0}, - [7977] = {.lex_state = 0}, - [7978] = {.lex_state = 0}, + [7977] = {.lex_state = 339}, + [7978] = {.lex_state = 339}, [7979] = {.lex_state = 0}, [7980] = {.lex_state = 0}, [7981] = {.lex_state = 0}, [7982] = {.lex_state = 0}, - [7983] = {.lex_state = 112}, - [7984] = {.lex_state = 196}, + [7983] = {.lex_state = 339}, + [7984] = {.lex_state = 171}, [7985] = {.lex_state = 0}, [7986] = {.lex_state = 0}, - [7987] = {.lex_state = 339}, - [7988] = {.lex_state = 0}, + [7987] = {.lex_state = 0}, + [7988] = {.lex_state = 339}, [7989] = {.lex_state = 0}, [7990] = {.lex_state = 0}, [7991] = {.lex_state = 0}, - [7992] = {.lex_state = 171}, + [7992] = {.lex_state = 0}, [7993] = {.lex_state = 0}, [7994] = {.lex_state = 0}, [7995] = {.lex_state = 0}, @@ -30227,977 +30255,1001 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7997] = {.lex_state = 0}, [7998] = {.lex_state = 0}, [7999] = {.lex_state = 0}, - [8000] = {.lex_state = 0}, + [8000] = {.lex_state = 339, .external_lex_state = 2}, [8001] = {.lex_state = 0}, [8002] = {.lex_state = 0}, [8003] = {.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}, + [8004] = {.lex_state = 339}, + [8005] = {.lex_state = 0}, + [8006] = {.lex_state = 339}, + [8007] = {.lex_state = 196}, + [8008] = {.lex_state = 0}, [8009] = {.lex_state = 0}, [8010] = {.lex_state = 0}, [8011] = {.lex_state = 0}, [8012] = {.lex_state = 0}, - [8013] = {.lex_state = 0}, - [8014] = {.lex_state = 339}, - [8015] = {.lex_state = 339}, - [8016] = {.lex_state = 196}, - [8017] = {.lex_state = 0}, + [8013] = {.lex_state = 339}, + [8014] = {.lex_state = 196}, + [8015] = {.lex_state = 0}, + [8016] = {.lex_state = 0}, + [8017] = {.lex_state = 109}, [8018] = {.lex_state = 339}, [8019] = {.lex_state = 0}, [8020] = {.lex_state = 0}, - [8021] = {.lex_state = 0}, - [8022] = {.lex_state = 0}, + [8021] = {.lex_state = 196}, + [8022] = {.lex_state = 339}, [8023] = {.lex_state = 0}, - [8024] = {.lex_state = 112}, - [8025] = {.lex_state = 0}, + [8024] = {.lex_state = 339}, + [8025] = {.lex_state = 339}, [8026] = {.lex_state = 0}, [8027] = {.lex_state = 0}, [8028] = {.lex_state = 0}, - [8029] = {.lex_state = 339}, + [8029] = {.lex_state = 0}, [8030] = {.lex_state = 0}, [8031] = {.lex_state = 0}, - [8032] = {.lex_state = 339, .external_lex_state = 2}, - [8033] = {.lex_state = 0}, + [8032] = {.lex_state = 0}, + [8033] = {.lex_state = 196}, [8034] = {.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}, + [8036] = {.lex_state = 196}, + [8037] = {.lex_state = 109}, + [8038] = {.lex_state = 339}, + [8039] = {.lex_state = 0}, [8040] = {.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}, + [8041] = {.lex_state = 0}, + [8042] = {.lex_state = 0}, + [8043] = {.lex_state = 0}, + [8044] = {.lex_state = 196}, [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}, + [8046] = {.lex_state = 0}, + [8047] = {.lex_state = 339}, + [8048] = {.lex_state = 339}, + [8049] = {.lex_state = 0}, + [8050] = {.lex_state = 0}, + [8051] = {.lex_state = 339}, + [8052] = {.lex_state = 339, .external_lex_state = 2}, [8053] = {.lex_state = 0}, - [8054] = {.lex_state = 196}, - [8055] = {.lex_state = 0}, + [8054] = {.lex_state = 0}, + [8055] = {.lex_state = 339, .external_lex_state = 2}, [8056] = {.lex_state = 0}, - [8057] = {.lex_state = 196}, - [8058] = {.lex_state = 196}, + [8057] = {.lex_state = 339}, + [8058] = {.lex_state = 339, .external_lex_state = 2}, [8059] = {.lex_state = 0}, - [8060] = {.lex_state = 0}, - [8061] = {.lex_state = 0}, - [8062] = {.lex_state = 0}, - [8063] = {.lex_state = 0}, - [8064] = {.lex_state = 113}, - [8065] = {.lex_state = 0}, - [8066] = {.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}, + [8060] = {.lex_state = 339, .external_lex_state = 2}, + [8061] = {.lex_state = 339, .external_lex_state = 2}, + [8062] = {.lex_state = 339, .external_lex_state = 2}, + [8063] = {.lex_state = 339, .external_lex_state = 2}, + [8064] = {.lex_state = 339, .external_lex_state = 2}, + [8065] = {.lex_state = 339, .external_lex_state = 2}, + [8066] = {.lex_state = 339, .external_lex_state = 2}, + [8067] = {.lex_state = 339, .external_lex_state = 2}, + [8068] = {.lex_state = 339, .external_lex_state = 2}, + [8069] = {.lex_state = 339, .external_lex_state = 2}, + [8070] = {.lex_state = 339, .external_lex_state = 2}, + [8071] = {.lex_state = 0}, + [8072] = {.lex_state = 339}, + [8073] = {.lex_state = 0}, [8074] = {.lex_state = 0}, - [8075] = {.lex_state = 0}, + [8075] = {.lex_state = 339}, [8076] = {.lex_state = 0}, [8077] = {.lex_state = 0}, - [8078] = {.lex_state = 339}, + [8078] = {.lex_state = 0}, [8079] = {.lex_state = 0}, - [8080] = {.lex_state = 0}, - [8081] = {.lex_state = 196}, - [8082] = {.lex_state = 196}, + [8080] = {.lex_state = 196}, + [8081] = {.lex_state = 0}, + [8082] = {.lex_state = 0}, [8083] = {.lex_state = 0}, - [8084] = {.lex_state = 199}, + [8084] = {.lex_state = 0}, [8085] = {.lex_state = 0}, - [8086] = {.lex_state = 0}, - [8087] = {.lex_state = 113}, - [8088] = {.lex_state = 0}, - [8089] = {.lex_state = 113}, + [8086] = {.lex_state = 196}, + [8087] = {.lex_state = 0}, + [8088] = {.lex_state = 196}, + [8089] = {.lex_state = 0}, [8090] = {.lex_state = 0}, - [8091] = {.lex_state = 0}, + [8091] = {.lex_state = 0, .external_lex_state = 2}, [8092] = {.lex_state = 0}, - [8093] = {.lex_state = 196}, - [8094] = {.lex_state = 0}, + [8093] = {.lex_state = 339}, + [8094] = {.lex_state = 196}, [8095] = {.lex_state = 0}, - [8096] = {.lex_state = 196}, - [8097] = {.lex_state = 339}, + [8096] = {.lex_state = 0}, + [8097] = {.lex_state = 0}, [8098] = {.lex_state = 0}, - [8099] = {.lex_state = 173}, + [8099] = {.lex_state = 0}, [8100] = {.lex_state = 0}, [8101] = {.lex_state = 0}, - [8102] = {.lex_state = 339}, - [8103] = {.lex_state = 173}, - [8104] = {.lex_state = 0}, - [8105] = {.lex_state = 196}, - [8106] = {.lex_state = 0}, + [8102] = {.lex_state = 196}, + [8103] = {.lex_state = 0}, + [8104] = {.lex_state = 199}, + [8105] = {.lex_state = 0}, + [8106] = {.lex_state = 196}, [8107] = {.lex_state = 0}, [8108] = {.lex_state = 0}, - [8109] = {.lex_state = 173}, - [8110] = {.lex_state = 113}, + [8109] = {.lex_state = 110}, + [8110] = {.lex_state = 196}, [8111] = {.lex_state = 0}, - [8112] = {.lex_state = 339}, - [8113] = {.lex_state = 0}, - [8114] = {.lex_state = 196}, - [8115] = {.lex_state = 113}, + [8112] = {.lex_state = 196}, + [8113] = {.lex_state = 339}, + [8114] = {.lex_state = 0}, + [8115] = {.lex_state = 0}, [8116] = {.lex_state = 0}, [8117] = {.lex_state = 0}, - [8118] = {.lex_state = 196}, - [8119] = {.lex_state = 196}, + [8118] = {.lex_state = 0}, + [8119] = {.lex_state = 0}, [8120] = {.lex_state = 0}, - [8121] = {.lex_state = 0}, - [8122] = {.lex_state = 113}, + [8121] = {.lex_state = 171}, + [8122] = {.lex_state = 0}, [8123] = {.lex_state = 0}, [8124] = {.lex_state = 196}, - [8125] = {.lex_state = 173}, + [8125] = {.lex_state = 0}, [8126] = {.lex_state = 0}, - [8127] = {.lex_state = 0}, + [8127] = {.lex_state = 196}, [8128] = {.lex_state = 0}, - [8129] = {.lex_state = 196}, + [8129] = {.lex_state = 0}, [8130] = {.lex_state = 0}, [8131] = {.lex_state = 0}, [8132] = {.lex_state = 0}, - [8133] = {.lex_state = 0}, + [8133] = {.lex_state = 339}, [8134] = {.lex_state = 0}, - [8135] = {.lex_state = 339}, + [8135] = {.lex_state = 196}, [8136] = {.lex_state = 0}, [8137] = {.lex_state = 0}, - [8138] = {.lex_state = 173}, - [8139] = {.lex_state = 199}, - [8140] = {.lex_state = 0}, + [8138] = {.lex_state = 0}, + [8139] = {.lex_state = 173}, + [8140] = {.lex_state = 196}, [8141] = {.lex_state = 196}, [8142] = {.lex_state = 0}, - [8143] = {.lex_state = 0}, + [8143] = {.lex_state = 173}, [8144] = {.lex_state = 0}, - [8145] = {.lex_state = 199}, - [8146] = {.lex_state = 196}, + [8145] = {.lex_state = 196}, + [8146] = {.lex_state = 0}, [8147] = {.lex_state = 0}, [8148] = {.lex_state = 0}, [8149] = {.lex_state = 0}, - [8150] = {.lex_state = 173}, - [8151] = {.lex_state = 0}, - [8152] = {.lex_state = 196}, - [8153] = {.lex_state = 199}, - [8154] = {.lex_state = 0}, + [8150] = {.lex_state = 0}, + [8151] = {.lex_state = 196}, + [8152] = {.lex_state = 0}, + [8153] = {.lex_state = 0}, + [8154] = {.lex_state = 195}, [8155] = {.lex_state = 0}, - [8156] = {.lex_state = 196}, + [8156] = {.lex_state = 0}, [8157] = {.lex_state = 339}, - [8158] = {.lex_state = 0}, + [8158] = {.lex_state = 196}, [8159] = {.lex_state = 0}, - [8160] = {.lex_state = 0}, - [8161] = {.lex_state = 196}, - [8162] = {.lex_state = 113}, + [8160] = {.lex_state = 173}, + [8161] = {.lex_state = 0}, + [8162] = {.lex_state = 0}, [8163] = {.lex_state = 0}, - [8164] = {.lex_state = 173}, + [8164] = {.lex_state = 339}, [8165] = {.lex_state = 0}, [8166] = {.lex_state = 0}, - [8167] = {.lex_state = 0}, + [8167] = {.lex_state = 196}, [8168] = {.lex_state = 0}, [8169] = {.lex_state = 196}, [8170] = {.lex_state = 0}, [8171] = {.lex_state = 0}, [8172] = {.lex_state = 0}, [8173] = {.lex_state = 0}, - [8174] = {.lex_state = 173}, + [8174] = {.lex_state = 339}, [8175] = {.lex_state = 0}, - [8176] = {.lex_state = 0}, - [8177] = {.lex_state = 113}, - [8178] = {.lex_state = 199}, - [8179] = {.lex_state = 0}, - [8180] = {.lex_state = 0}, + [8176] = {.lex_state = 173}, + [8177] = {.lex_state = 0}, + [8178] = {.lex_state = 0}, + [8179] = {.lex_state = 196}, + [8180] = {.lex_state = 339}, [8181] = {.lex_state = 0}, [8182] = {.lex_state = 0}, - [8183] = {.lex_state = 173}, - [8184] = {.lex_state = 0}, - [8185] = {.lex_state = 196}, + [8183] = {.lex_state = 239}, + [8184] = {.lex_state = 339}, + [8185] = {.lex_state = 0}, [8186] = {.lex_state = 0}, [8187] = {.lex_state = 0}, [8188] = {.lex_state = 196}, - [8189] = {.lex_state = 339}, + [8189] = {.lex_state = 0}, [8190] = {.lex_state = 0}, [8191] = {.lex_state = 0}, [8192] = {.lex_state = 0}, - [8193] = {.lex_state = 0}, - [8194] = {.lex_state = 0, .external_lex_state = 2}, - [8195] = {.lex_state = 0}, + [8193] = {.lex_state = 196}, + [8194] = {.lex_state = 196}, + [8195] = {.lex_state = 196}, [8196] = {.lex_state = 0}, - [8197] = {.lex_state = 0}, + [8197] = {.lex_state = 196}, [8198] = {.lex_state = 0}, [8199] = {.lex_state = 0}, - [8200] = {.lex_state = 0}, - [8201] = {.lex_state = 171}, - [8202] = {.lex_state = 196}, + [8200] = {.lex_state = 339}, + [8201] = {.lex_state = 199}, + [8202] = {.lex_state = 339}, [8203] = {.lex_state = 0}, - [8204] = {.lex_state = 0}, - [8205] = {.lex_state = 113}, + [8204] = {.lex_state = 339}, + [8205] = {.lex_state = 0}, [8206] = {.lex_state = 0}, [8207] = {.lex_state = 0}, [8208] = {.lex_state = 0}, [8209] = {.lex_state = 0}, - [8210] = {.lex_state = 196}, - [8211] = {.lex_state = 339}, - [8212] = {.lex_state = 0}, - [8213] = {.lex_state = 196}, - [8214] = {.lex_state = 0}, + [8210] = {.lex_state = 0}, + [8211] = {.lex_state = 0}, + [8212] = {.lex_state = 196}, + [8213] = {.lex_state = 110}, + [8214] = {.lex_state = 0, .external_lex_state = 2}, [8215] = {.lex_state = 0}, - [8216] = {.lex_state = 196}, + [8216] = {.lex_state = 0}, [8217] = {.lex_state = 0}, - [8218] = {.lex_state = 171}, - [8219] = {.lex_state = 196}, - [8220] = {.lex_state = 173}, - [8221] = {.lex_state = 339}, - [8222] = {.lex_state = 113}, + [8218] = {.lex_state = 0, .external_lex_state = 2}, + [8219] = {.lex_state = 0}, + [8220] = {.lex_state = 0}, + [8221] = {.lex_state = 196}, + [8222] = {.lex_state = 0}, [8223] = {.lex_state = 0}, [8224] = {.lex_state = 0}, - [8225] = {.lex_state = 0}, + [8225] = {.lex_state = 339}, [8226] = {.lex_state = 0}, - [8227] = {.lex_state = 113}, - [8228] = {.lex_state = 196}, - [8229] = {.lex_state = 0}, - [8230] = {.lex_state = 113}, - [8231] = {.lex_state = 0}, + [8227] = {.lex_state = 196}, + [8228] = {.lex_state = 199}, + [8229] = {.lex_state = 173}, + [8230] = {.lex_state = 110}, + [8231] = {.lex_state = 199}, [8232] = {.lex_state = 0}, - [8233] = {.lex_state = 199}, - [8234] = {.lex_state = 0}, - [8235] = {.lex_state = 0}, - [8236] = {.lex_state = 339}, - [8237] = {.lex_state = 0}, + [8233] = {.lex_state = 110}, + [8234] = {.lex_state = 196}, + [8235] = {.lex_state = 196}, + [8236] = {.lex_state = 0}, + [8237] = {.lex_state = 173}, [8238] = {.lex_state = 0}, - [8239] = {.lex_state = 173}, - [8240] = {.lex_state = 0}, - [8241] = {.lex_state = 0}, - [8242] = {.lex_state = 0}, - [8243] = {.lex_state = 0}, + [8239] = {.lex_state = 196}, + [8240] = {.lex_state = 196}, + [8241] = {.lex_state = 173}, + [8242] = {.lex_state = 173}, + [8243] = {.lex_state = 110}, [8244] = {.lex_state = 173}, - [8245] = {.lex_state = 196}, - [8246] = {.lex_state = 0}, - [8247] = {.lex_state = 196}, - [8248] = {.lex_state = 0}, - [8249] = {.lex_state = 0}, - [8250] = {.lex_state = 0}, - [8251] = {.lex_state = 0}, - [8252] = {.lex_state = 199}, + [8245] = {.lex_state = 339}, + [8246] = {.lex_state = 196}, + [8247] = {.lex_state = 110}, + [8248] = {.lex_state = 173}, + [8249] = {.lex_state = 199}, + [8250] = {.lex_state = 196}, + [8251] = {.lex_state = 173}, + [8252] = {.lex_state = 0}, [8253] = {.lex_state = 0}, - [8254] = {.lex_state = 0}, - [8255] = {.lex_state = 113}, + [8254] = {.lex_state = 173}, + [8255] = {.lex_state = 0}, [8256] = {.lex_state = 0}, [8257] = {.lex_state = 0}, - [8258] = {.lex_state = 173}, + [8258] = {.lex_state = 339}, [8259] = {.lex_state = 0}, - [8260] = {.lex_state = 0}, - [8261] = {.lex_state = 196}, + [8260] = {.lex_state = 339}, + [8261] = {.lex_state = 0}, [8262] = {.lex_state = 0}, - [8263] = {.lex_state = 0}, - [8264] = {.lex_state = 0}, - [8265] = {.lex_state = 173}, + [8263] = {.lex_state = 339}, + [8264] = {.lex_state = 196}, + [8265] = {.lex_state = 0}, [8266] = {.lex_state = 0}, - [8267] = {.lex_state = 0, .external_lex_state = 2}, + [8267] = {.lex_state = 339}, [8268] = {.lex_state = 0}, - [8269] = {.lex_state = 0}, - [8270] = {.lex_state = 199}, + [8269] = {.lex_state = 196}, + [8270] = {.lex_state = 173}, [8271] = {.lex_state = 0}, - [8272] = {.lex_state = 0}, - [8273] = {.lex_state = 0}, + [8272] = {.lex_state = 110}, + [8273] = {.lex_state = 173}, [8274] = {.lex_state = 0}, [8275] = {.lex_state = 0}, - [8276] = {.lex_state = 0}, - [8277] = {.lex_state = 113}, + [8276] = {.lex_state = 339}, + [8277] = {.lex_state = 0}, [8278] = {.lex_state = 0}, - [8279] = {.lex_state = 196}, - [8280] = {.lex_state = 0}, - [8281] = {.lex_state = 199}, - [8282] = {.lex_state = 339}, + [8279] = {.lex_state = 0}, + [8280] = {.lex_state = 196}, + [8281] = {.lex_state = 0}, + [8282] = {.lex_state = 0}, [8283] = {.lex_state = 0}, - [8284] = {.lex_state = 173}, - [8285] = {.lex_state = 0}, - [8286] = {.lex_state = 339}, + [8284] = {.lex_state = 0, .external_lex_state = 2}, + [8285] = {.lex_state = 196}, + [8286] = {.lex_state = 0}, [8287] = {.lex_state = 0}, [8288] = {.lex_state = 0}, - [8289] = {.lex_state = 0}, + [8289] = {.lex_state = 173}, [8290] = {.lex_state = 0}, - [8291] = {.lex_state = 173}, - [8292] = {.lex_state = 0}, - [8293] = {.lex_state = 173}, + [8291] = {.lex_state = 0, .external_lex_state = 2}, + [8292] = {.lex_state = 196}, + [8293] = {.lex_state = 0}, [8294] = {.lex_state = 0}, - [8295] = {.lex_state = 196}, - [8296] = {.lex_state = 173}, + [8295] = {.lex_state = 110}, + [8296] = {.lex_state = 0}, [8297] = {.lex_state = 0}, - [8298] = {.lex_state = 0}, + [8298] = {.lex_state = 110}, [8299] = {.lex_state = 0}, - [8300] = {.lex_state = 339}, + [8300] = {.lex_state = 0}, [8301] = {.lex_state = 0}, [8302] = {.lex_state = 0}, - [8303] = {.lex_state = 0}, + [8303] = {.lex_state = 196}, [8304] = {.lex_state = 0}, - [8305] = {.lex_state = 195}, - [8306] = {.lex_state = 196}, - [8307] = {.lex_state = 196}, - [8308] = {.lex_state = 196}, - [8309] = {.lex_state = 173}, - [8310] = {.lex_state = 0}, + [8305] = {.lex_state = 173}, + [8306] = {.lex_state = 0}, + [8307] = {.lex_state = 0}, + [8308] = {.lex_state = 0}, + [8309] = {.lex_state = 0}, + [8310] = {.lex_state = 339}, [8311] = {.lex_state = 0}, [8312] = {.lex_state = 0}, - [8313] = {.lex_state = 0}, - [8314] = {.lex_state = 196}, - [8315] = {.lex_state = 0}, + [8313] = {.lex_state = 196}, + [8314] = {.lex_state = 199}, + [8315] = {.lex_state = 339}, [8316] = {.lex_state = 0}, [8317] = {.lex_state = 0}, - [8318] = {.lex_state = 339}, + [8318] = {.lex_state = 0}, [8319] = {.lex_state = 0}, [8320] = {.lex_state = 0}, - [8321] = {.lex_state = 173}, + [8321] = {.lex_state = 0}, [8322] = {.lex_state = 0}, - [8323] = {.lex_state = 339}, - [8324] = {.lex_state = 196}, + [8323] = {.lex_state = 0}, + [8324] = {.lex_state = 339}, [8325] = {.lex_state = 0}, - [8326] = {.lex_state = 0}, + [8326] = {.lex_state = 196}, [8327] = {.lex_state = 0}, [8328] = {.lex_state = 0}, [8329] = {.lex_state = 0}, - [8330] = {.lex_state = 0, .external_lex_state = 2}, - [8331] = {.lex_state = 199}, + [8330] = {.lex_state = 0}, + [8331] = {.lex_state = 0}, [8332] = {.lex_state = 196}, - [8333] = {.lex_state = 0}, + [8333] = {.lex_state = 110}, [8334] = {.lex_state = 0}, - [8335] = {.lex_state = 239}, + [8335] = {.lex_state = 196}, [8336] = {.lex_state = 0}, - [8337] = {.lex_state = 199}, - [8338] = {.lex_state = 0}, - [8339] = {.lex_state = 339}, - [8340] = {.lex_state = 196}, - [8341] = {.lex_state = 339}, - [8342] = {.lex_state = 173}, + [8337] = {.lex_state = 0}, + [8338] = {.lex_state = 199}, + [8339] = {.lex_state = 0}, + [8340] = {.lex_state = 0}, + [8341] = {.lex_state = 0}, + [8342] = {.lex_state = 0}, [8343] = {.lex_state = 0}, - [8344] = {.lex_state = 171}, - [8345] = {.lex_state = 196}, - [8346] = {.lex_state = 0}, + [8344] = {.lex_state = 0}, + [8345] = {.lex_state = 0}, + [8346] = {.lex_state = 196}, [8347] = {.lex_state = 0}, - [8348] = {.lex_state = 0}, - [8349] = {.lex_state = 0}, - [8350] = {.lex_state = 113}, + [8348] = {.lex_state = 196}, + [8349] = {.lex_state = 0, .external_lex_state = 3}, + [8350] = {.lex_state = 0}, [8351] = {.lex_state = 0}, - [8352] = {.lex_state = 339}, - [8353] = {.lex_state = 339}, - [8354] = {.lex_state = 0}, - [8355] = {.lex_state = 199}, - [8356] = {.lex_state = 0}, - [8357] = {.lex_state = 113}, - [8358] = {.lex_state = 0}, - [8359] = {.lex_state = 0}, - [8360] = {.lex_state = 0}, + [8352] = {.lex_state = 173}, + [8353] = {.lex_state = 0}, + [8354] = {.lex_state = 0, .external_lex_state = 2}, + [8355] = {.lex_state = 0}, + [8356] = {.lex_state = 196}, + [8357] = {.lex_state = 196}, + [8358] = {.lex_state = 173}, + [8359] = {.lex_state = 173}, + [8360] = {.lex_state = 173}, [8361] = {.lex_state = 0}, [8362] = {.lex_state = 0}, - [8363] = {.lex_state = 0}, - [8364] = {.lex_state = 0}, - [8365] = {.lex_state = 0}, - [8366] = {.lex_state = 0}, - [8367] = {.lex_state = 0}, - [8368] = {.lex_state = 0}, + [8363] = {.lex_state = 339}, + [8364] = {.lex_state = 339}, + [8365] = {.lex_state = 339}, + [8366] = {.lex_state = 196}, + [8367] = {.lex_state = 196}, + [8368] = {.lex_state = 173}, [8369] = {.lex_state = 0}, [8370] = {.lex_state = 0}, - [8371] = {.lex_state = 196}, - [8372] = {.lex_state = 113}, + [8371] = {.lex_state = 0}, + [8372] = {.lex_state = 0}, [8373] = {.lex_state = 0}, - [8374] = {.lex_state = 196}, - [8375] = {.lex_state = 0}, - [8376] = {.lex_state = 0, .external_lex_state = 2}, + [8374] = {.lex_state = 0}, + [8375] = {.lex_state = 196}, + [8376] = {.lex_state = 339}, [8377] = {.lex_state = 0}, - [8378] = {.lex_state = 339}, - [8379] = {.lex_state = 339}, - [8380] = {.lex_state = 339}, - [8381] = {.lex_state = 339}, + [8378] = {.lex_state = 196}, + [8379] = {.lex_state = 0}, + [8380] = {.lex_state = 0}, + [8381] = {.lex_state = 0}, [8382] = {.lex_state = 0}, - [8383] = {.lex_state = 196}, + [8383] = {.lex_state = 0}, [8384] = {.lex_state = 0}, - [8385] = {.lex_state = 0}, + [8385] = {.lex_state = 110}, [8386] = {.lex_state = 0}, - [8387] = {.lex_state = 339}, - [8388] = {.lex_state = 339}, + [8387] = {.lex_state = 0}, + [8388] = {.lex_state = 0}, [8389] = {.lex_state = 0}, [8390] = {.lex_state = 0}, [8391] = {.lex_state = 0}, [8392] = {.lex_state = 0}, [8393] = {.lex_state = 0}, - [8394] = {.lex_state = 339}, - [8395] = {.lex_state = 0, .external_lex_state = 2}, - [8396] = {.lex_state = 0}, + [8394] = {.lex_state = 0}, + [8395] = {.lex_state = 0}, + [8396] = {.lex_state = 110}, [8397] = {.lex_state = 0}, - [8398] = {.lex_state = 339}, + [8398] = {.lex_state = 110}, [8399] = {.lex_state = 0}, - [8400] = {.lex_state = 196}, - [8401] = {.lex_state = 0}, + [8400] = {.lex_state = 0, .external_lex_state = 2}, + [8401] = {.lex_state = 196}, [8402] = {.lex_state = 0}, [8403] = {.lex_state = 0}, - [8404] = {.lex_state = 339}, + [8404] = {.lex_state = 0}, [8405] = {.lex_state = 339}, [8406] = {.lex_state = 0}, - [8407] = {.lex_state = 199}, + [8407] = {.lex_state = 196}, [8408] = {.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}, + [8409] = {.lex_state = 0}, + [8410] = {.lex_state = 173}, + [8411] = {.lex_state = 110}, + [8412] = {.lex_state = 339}, + [8413] = {.lex_state = 173}, [8414] = {.lex_state = 0}, - [8415] = {.lex_state = 339}, + [8415] = {.lex_state = 0}, [8416] = {.lex_state = 0}, - [8417] = {.lex_state = 0, .external_lex_state = 2}, - [8418] = {.lex_state = 173}, - [8419] = {.lex_state = 0}, + [8417] = {.lex_state = 196}, + [8418] = {.lex_state = 0}, + [8419] = {.lex_state = 0, .external_lex_state = 2}, [8420] = {.lex_state = 0}, - [8421] = {.lex_state = 0, .external_lex_state = 2}, - [8422] = {.lex_state = 173}, + [8421] = {.lex_state = 0}, + [8422] = {.lex_state = 339}, [8423] = {.lex_state = 0}, - [8424] = {.lex_state = 0}, - [8425] = {.lex_state = 0, .external_lex_state = 2}, + [8424] = {.lex_state = 173}, + [8425] = {.lex_state = 0}, [8426] = {.lex_state = 0}, - [8427] = {.lex_state = 0, .external_lex_state = 2}, - [8428] = {.lex_state = 0}, - [8429] = {.lex_state = 0, .external_lex_state = 2}, + [8427] = {.lex_state = 196}, + [8428] = {.lex_state = 339}, + [8429] = {.lex_state = 339}, [8430] = {.lex_state = 0}, - [8431] = {.lex_state = 0, .external_lex_state = 2}, + [8431] = {.lex_state = 0}, [8432] = {.lex_state = 0}, - [8433] = {.lex_state = 0, .external_lex_state = 2}, - [8434] = {.lex_state = 0}, - [8435] = {.lex_state = 0, .external_lex_state = 2}, + [8433] = {.lex_state = 0}, + [8434] = {.lex_state = 0, .external_lex_state = 2}, + [8435] = {.lex_state = 110}, [8436] = {.lex_state = 173}, - [8437] = {.lex_state = 173}, + [8437] = {.lex_state = 339}, [8438] = {.lex_state = 0}, [8439] = {.lex_state = 339}, [8440] = {.lex_state = 0}, - [8441] = {.lex_state = 339}, - [8442] = {.lex_state = 339}, - [8443] = {.lex_state = 339}, + [8441] = {.lex_state = 0, .external_lex_state = 2}, + [8442] = {.lex_state = 110}, + [8443] = {.lex_state = 0}, [8444] = {.lex_state = 0}, - [8445] = {.lex_state = 0}, - [8446] = {.lex_state = 339}, - [8447] = {.lex_state = 173}, - [8448] = {.lex_state = 339}, - [8449] = {.lex_state = 0}, + [8445] = {.lex_state = 0, .external_lex_state = 2}, + [8446] = {.lex_state = 173}, + [8447] = {.lex_state = 0}, + [8448] = {.lex_state = 0}, + [8449] = {.lex_state = 0, .external_lex_state = 2}, [8450] = {.lex_state = 0}, - [8451] = {.lex_state = 0}, + [8451] = {.lex_state = 0, .external_lex_state = 2}, [8452] = {.lex_state = 0}, - [8453] = {.lex_state = 0}, + [8453] = {.lex_state = 0, .external_lex_state = 2}, [8454] = {.lex_state = 0}, - [8455] = {.lex_state = 196}, + [8455] = {.lex_state = 0, .external_lex_state = 2}, [8456] = {.lex_state = 0}, - [8457] = {.lex_state = 0}, + [8457] = {.lex_state = 0, .external_lex_state = 2}, [8458] = {.lex_state = 0}, - [8459] = {.lex_state = 0}, - [8460] = {.lex_state = 0}, + [8459] = {.lex_state = 0, .external_lex_state = 2}, + [8460] = {.lex_state = 173}, [8461] = {.lex_state = 0}, [8462] = {.lex_state = 0}, - [8463] = {.lex_state = 0}, - [8464] = {.lex_state = 196}, - [8465] = {.lex_state = 0}, + [8463] = {.lex_state = 339}, + [8464] = {.lex_state = 0}, + [8465] = {.lex_state = 339}, [8466] = {.lex_state = 339}, - [8467] = {.lex_state = 0}, - [8468] = {.lex_state = 0}, - [8469] = {.lex_state = 0}, - [8470] = {.lex_state = 0}, + [8467] = {.lex_state = 339}, + [8468] = {.lex_state = 173}, + [8469] = {.lex_state = 339}, + [8470] = {.lex_state = 339}, [8471] = {.lex_state = 0}, [8472] = {.lex_state = 339}, - [8473] = {.lex_state = 0, .external_lex_state = 3}, + [8473] = {.lex_state = 110}, [8474] = {.lex_state = 0}, - [8475] = {.lex_state = 0}, - [8476] = {.lex_state = 196}, - [8477] = {.lex_state = 339}, + [8475] = {.lex_state = 339}, + [8476] = {.lex_state = 0}, + [8477] = {.lex_state = 0}, [8478] = {.lex_state = 0}, - [8479] = {.lex_state = 196}, + [8479] = {.lex_state = 0}, [8480] = {.lex_state = 0}, [8481] = {.lex_state = 0}, [8482] = {.lex_state = 0}, - [8483] = {.lex_state = 0}, + [8483] = {.lex_state = 110}, [8484] = {.lex_state = 0}, [8485] = {.lex_state = 0}, - [8486] = {.lex_state = 196}, + [8486] = {.lex_state = 0}, [8487] = {.lex_state = 0}, - [8488] = {.lex_state = 0}, - [8489] = {.lex_state = 196}, - [8490] = {.lex_state = 0}, - [8491] = {.lex_state = 0}, + [8488] = {.lex_state = 196}, + [8489] = {.lex_state = 0}, + [8490] = {.lex_state = 339}, + [8491] = {.lex_state = 171}, [8492] = {.lex_state = 0}, [8493] = {.lex_state = 0}, - [8494] = {.lex_state = 0}, + [8494] = {.lex_state = 196}, [8495] = {.lex_state = 173}, - [8496] = {.lex_state = 196}, - [8497] = {.lex_state = 173}, - [8498] = {.lex_state = 0}, - [8499] = {.lex_state = 199}, - [8500] = {.lex_state = 199}, - [8501] = {.lex_state = 173}, - [8502] = {.lex_state = 173}, + [8496] = {.lex_state = 339}, + [8497] = {.lex_state = 0, .external_lex_state = 3}, + [8498] = {.lex_state = 199}, + [8499] = {.lex_state = 0}, + [8500] = {.lex_state = 0}, + [8501] = {.lex_state = 339}, + [8502] = {.lex_state = 0}, [8503] = {.lex_state = 0}, - [8504] = {.lex_state = 339}, + [8504] = {.lex_state = 0}, [8505] = {.lex_state = 0}, - [8506] = {.lex_state = 113}, + [8506] = {.lex_state = 0}, [8507] = {.lex_state = 0}, - [8508] = {.lex_state = 196}, - [8509] = {.lex_state = 196}, - [8510] = {.lex_state = 196}, + [8508] = {.lex_state = 0}, + [8509] = {.lex_state = 339}, + [8510] = {.lex_state = 0}, [8511] = {.lex_state = 0}, [8512] = {.lex_state = 0}, [8513] = {.lex_state = 196}, [8514] = {.lex_state = 0}, - [8515] = {.lex_state = 173}, + [8515] = {.lex_state = 0}, [8516] = {.lex_state = 0}, - [8517] = {.lex_state = 113}, + [8517] = {.lex_state = 0}, [8518] = {.lex_state = 0}, - [8519] = {.lex_state = 199}, + [8519] = {.lex_state = 0}, [8520] = {.lex_state = 0}, - [8521] = {.lex_state = 174}, + [8521] = {.lex_state = 199}, [8522] = {.lex_state = 0}, - [8523] = {.lex_state = 173}, + [8523] = {.lex_state = 199}, [8524] = {.lex_state = 0}, - [8525] = {.lex_state = 199}, + [8525] = {.lex_state = 0}, [8526] = {.lex_state = 0}, - [8527] = {.lex_state = 199}, + [8527] = {.lex_state = 0}, [8528] = {.lex_state = 0}, [8529] = {.lex_state = 0}, [8530] = {.lex_state = 0}, [8531] = {.lex_state = 0}, - [8532] = {.lex_state = 0}, - [8533] = {.lex_state = 339}, + [8532] = {.lex_state = 173}, + [8533] = {.lex_state = 196}, [8534] = {.lex_state = 0}, [8535] = {.lex_state = 0}, - [8536] = {.lex_state = 196}, + [8536] = {.lex_state = 0}, [8537] = {.lex_state = 0}, [8538] = {.lex_state = 0}, [8539] = {.lex_state = 0}, [8540] = {.lex_state = 0}, [8541] = {.lex_state = 0}, [8542] = {.lex_state = 0}, - [8543] = {.lex_state = 113}, - [8544] = {.lex_state = 0}, + [8543] = {.lex_state = 199}, + [8544] = {.lex_state = 339}, [8545] = {.lex_state = 0}, - [8546] = {.lex_state = 0}, + [8546] = {.lex_state = 173}, [8547] = {.lex_state = 0}, - [8548] = {.lex_state = 196}, + [8548] = {.lex_state = 0}, [8549] = {.lex_state = 0}, - [8550] = {.lex_state = 339}, + [8550] = {.lex_state = 0}, [8551] = {.lex_state = 0}, - [8552] = {.lex_state = 0}, - [8553] = {.lex_state = 196}, - [8554] = {.lex_state = 0}, - [8555] = {.lex_state = 113}, - [8556] = {.lex_state = 173}, + [8552] = {.lex_state = 196}, + [8553] = {.lex_state = 339}, + [8554] = {.lex_state = 199}, + [8555] = {.lex_state = 0}, + [8556] = {.lex_state = 0}, [8557] = {.lex_state = 0}, - [8558] = {.lex_state = 0}, - [8559] = {.lex_state = 113}, + [8558] = {.lex_state = 110}, + [8559] = {.lex_state = 0}, [8560] = {.lex_state = 0}, - [8561] = {.lex_state = 173}, - [8562] = {.lex_state = 0}, - [8563] = {.lex_state = 0}, - [8564] = {.lex_state = 196}, - [8565] = {.lex_state = 196}, + [8561] = {.lex_state = 110}, + [8562] = {.lex_state = 196}, + [8563] = {.lex_state = 110}, + [8564] = {.lex_state = 0}, + [8565] = {.lex_state = 110}, [8566] = {.lex_state = 0}, - [8567] = {.lex_state = 173}, - [8568] = {.lex_state = 171}, + [8567] = {.lex_state = 0}, + [8568] = {.lex_state = 0}, [8569] = {.lex_state = 0}, - [8570] = {.lex_state = 0}, + [8570] = {.lex_state = 110}, [8571] = {.lex_state = 0}, - [8572] = {.lex_state = 0}, + [8572] = {.lex_state = 199}, [8573] = {.lex_state = 0}, - [8574] = {.lex_state = 196}, - [8575] = {.lex_state = 0, .external_lex_state = 3}, + [8574] = {.lex_state = 0}, + [8575] = {.lex_state = 0}, [8576] = {.lex_state = 0}, - [8577] = {.lex_state = 196}, - [8578] = {.lex_state = 339}, - [8579] = {.lex_state = 0}, - [8580] = {.lex_state = 173}, - [8581] = {.lex_state = 113}, - [8582] = {.lex_state = 173}, - [8583] = {.lex_state = 0}, + [8577] = {.lex_state = 0}, + [8578] = {.lex_state = 0}, + [8579] = {.lex_state = 173}, + [8580] = {.lex_state = 0}, + [8581] = {.lex_state = 0}, + [8582] = {.lex_state = 0}, + [8583] = {.lex_state = 173}, [8584] = {.lex_state = 0}, [8585] = {.lex_state = 0}, - [8586] = {.lex_state = 0}, + [8586] = {.lex_state = 339}, [8587] = {.lex_state = 0}, [8588] = {.lex_state = 0}, [8589] = {.lex_state = 0}, - [8590] = {.lex_state = 196}, - [8591] = {.lex_state = 173}, + [8590] = {.lex_state = 0}, + [8591] = {.lex_state = 196}, [8592] = {.lex_state = 0}, - [8593] = {.lex_state = 0}, - [8594] = {.lex_state = 339}, - [8595] = {.lex_state = 0}, + [8593] = {.lex_state = 196}, + [8594] = {.lex_state = 196}, + [8595] = {.lex_state = 110}, [8596] = {.lex_state = 0}, - [8597] = {.lex_state = 339}, - [8598] = {.lex_state = 0}, - [8599] = {.lex_state = 0}, - [8600] = {.lex_state = 173}, + [8597] = {.lex_state = 196}, + [8598] = {.lex_state = 196}, + [8599] = {.lex_state = 173}, + [8600] = {.lex_state = 0}, [8601] = {.lex_state = 0}, - [8602] = {.lex_state = 173}, - [8603] = {.lex_state = 199}, + [8602] = {.lex_state = 0}, + [8603] = {.lex_state = 0}, [8604] = {.lex_state = 0}, [8605] = {.lex_state = 0}, - [8606] = {.lex_state = 113}, - [8607] = {.lex_state = 0}, + [8606] = {.lex_state = 0}, + [8607] = {.lex_state = 173}, [8608] = {.lex_state = 0}, - [8609] = {.lex_state = 0}, - [8610] = {.lex_state = 196}, + [8609] = {.lex_state = 339}, + [8610] = {.lex_state = 0}, [8611] = {.lex_state = 0}, [8612] = {.lex_state = 0}, - [8613] = {.lex_state = 0}, - [8614] = {.lex_state = 173}, - [8615] = {.lex_state = 173}, - [8616] = {.lex_state = 339}, + [8613] = {.lex_state = 196}, + [8614] = {.lex_state = 0}, + [8615] = {.lex_state = 0}, + [8616] = {.lex_state = 0}, [8617] = {.lex_state = 0}, [8618] = {.lex_state = 0}, [8619] = {.lex_state = 0}, - [8620] = {.lex_state = 196}, - [8621] = {.lex_state = 196}, - [8622] = {.lex_state = 0}, - [8623] = {.lex_state = 339}, - [8624] = {.lex_state = 0}, + [8620] = {.lex_state = 0}, + [8621] = {.lex_state = 0}, + [8622] = {.lex_state = 196}, + [8623] = {.lex_state = 0}, + [8624] = {.lex_state = 196}, [8625] = {.lex_state = 0}, [8626] = {.lex_state = 0}, - [8627] = {.lex_state = 339}, - [8628] = {.lex_state = 113}, + [8627] = {.lex_state = 0}, + [8628] = {.lex_state = 0}, [8629] = {.lex_state = 0}, [8630] = {.lex_state = 0}, [8631] = {.lex_state = 0}, - [8632] = {.lex_state = 0}, - [8633] = {.lex_state = 0}, + [8632] = {.lex_state = 339}, + [8633] = {.lex_state = 196}, [8634] = {.lex_state = 0}, - [8635] = {.lex_state = 0}, + [8635] = {.lex_state = 173}, [8636] = {.lex_state = 0}, - [8637] = {.lex_state = 0}, - [8638] = {.lex_state = 0, .external_lex_state = 2}, - [8639] = {.lex_state = 113}, + [8637] = {.lex_state = 339}, + [8638] = {.lex_state = 0}, + [8639] = {.lex_state = 0}, [8640] = {.lex_state = 0}, - [8641] = {.lex_state = 339}, - [8642] = {.lex_state = 339}, + [8641] = {.lex_state = 0}, + [8642] = {.lex_state = 0}, [8643] = {.lex_state = 339}, - [8644] = {.lex_state = 339}, - [8645] = {.lex_state = 0}, - [8646] = {.lex_state = 339}, + [8644] = {.lex_state = 110}, + [8645] = {.lex_state = 173}, + [8646] = {.lex_state = 0}, [8647] = {.lex_state = 0}, - [8648] = {.lex_state = 0}, + [8648] = {.lex_state = 196}, [8649] = {.lex_state = 0}, [8650] = {.lex_state = 0}, - [8651] = {.lex_state = 196}, - [8652] = {.lex_state = 196}, + [8651] = {.lex_state = 173}, + [8652] = {.lex_state = 0}, [8653] = {.lex_state = 0}, - [8654] = {.lex_state = 339}, - [8655] = {.lex_state = 196}, - [8656] = {.lex_state = 0}, + [8654] = {.lex_state = 173}, + [8655] = {.lex_state = 0}, + [8656] = {.lex_state = 0, .external_lex_state = 3}, [8657] = {.lex_state = 0}, - [8658] = {.lex_state = 339}, - [8659] = {.lex_state = 0, .external_lex_state = 3}, - [8660] = {.lex_state = 339}, - [8661] = {.lex_state = 196}, - [8662] = {.lex_state = 0}, - [8663] = {.lex_state = 0}, + [8658] = {.lex_state = 0}, + [8659] = {.lex_state = 0}, + [8660] = {.lex_state = 0}, + [8661] = {.lex_state = 0}, + [8662] = {.lex_state = 196}, + [8663] = {.lex_state = 199}, [8664] = {.lex_state = 0}, - [8665] = {.lex_state = 0}, - [8666] = {.lex_state = 196}, - [8667] = {.lex_state = 0}, - [8668] = {.lex_state = 0}, - [8669] = {.lex_state = 199}, - [8670] = {.lex_state = 113}, - [8671] = {.lex_state = 196}, - [8672] = {.lex_state = 339}, - [8673] = {.lex_state = 339}, - [8674] = {.lex_state = 339}, + [8665] = {.lex_state = 339}, + [8666] = {.lex_state = 339}, + [8667] = {.lex_state = 339}, + [8668] = {.lex_state = 339}, + [8669] = {.lex_state = 0}, + [8670] = {.lex_state = 339}, + [8671] = {.lex_state = 0}, + [8672] = {.lex_state = 0}, + [8673] = {.lex_state = 0}, + [8674] = {.lex_state = 0}, [8675] = {.lex_state = 0}, - [8676] = {.lex_state = 339}, + [8676] = {.lex_state = 196}, [8677] = {.lex_state = 0}, - [8678] = {.lex_state = 0}, - [8679] = {.lex_state = 196}, + [8678] = {.lex_state = 339}, + [8679] = {.lex_state = 0}, [8680] = {.lex_state = 0}, [8681] = {.lex_state = 339}, - [8682] = {.lex_state = 0}, - [8683] = {.lex_state = 0}, + [8682] = {.lex_state = 339}, + [8683] = {.lex_state = 0, .external_lex_state = 3}, [8684] = {.lex_state = 339}, - [8685] = {.lex_state = 0, .external_lex_state = 3}, + [8685] = {.lex_state = 0}, [8686] = {.lex_state = 0}, [8687] = {.lex_state = 0}, [8688] = {.lex_state = 0}, [8689] = {.lex_state = 0}, - [8690] = {.lex_state = 0}, - [8691] = {.lex_state = 199}, + [8690] = {.lex_state = 196}, + [8691] = {.lex_state = 0}, [8692] = {.lex_state = 0}, - [8693] = {.lex_state = 339}, - [8694] = {.lex_state = 339}, - [8695] = {.lex_state = 339}, - [8696] = {.lex_state = 196}, + [8693] = {.lex_state = 199}, + [8694] = {.lex_state = 0}, + [8695] = {.lex_state = 196}, + [8696] = {.lex_state = 339}, [8697] = {.lex_state = 339}, - [8698] = {.lex_state = 0}, + [8698] = {.lex_state = 339}, [8699] = {.lex_state = 0}, - [8700] = {.lex_state = 196}, - [8701] = {.lex_state = 339}, + [8700] = {.lex_state = 339}, + [8701] = {.lex_state = 0}, [8702] = {.lex_state = 0}, - [8703] = {.lex_state = 339}, - [8704] = {.lex_state = 339}, - [8705] = {.lex_state = 0, .external_lex_state = 3}, + [8703] = {.lex_state = 196}, + [8704] = {.lex_state = 0}, + [8705] = {.lex_state = 339}, [8706] = {.lex_state = 0}, - [8707] = {.lex_state = 0}, - [8708] = {.lex_state = 0}, - [8709] = {.lex_state = 339}, + [8707] = {.lex_state = 199}, + [8708] = {.lex_state = 339}, + [8709] = {.lex_state = 0, .external_lex_state = 3}, [8710] = {.lex_state = 0}, - [8711] = {.lex_state = 199}, - [8712] = {.lex_state = 0}, - [8713] = {.lex_state = 339}, - [8714] = {.lex_state = 339}, - [8715] = {.lex_state = 339}, + [8711] = {.lex_state = 0}, + [8712] = {.lex_state = 110}, + [8713] = {.lex_state = 0}, + [8714] = {.lex_state = 0}, + [8715] = {.lex_state = 199}, [8716] = {.lex_state = 0}, [8717] = {.lex_state = 339}, - [8718] = {.lex_state = 0}, - [8719] = {.lex_state = 0}, - [8720] = {.lex_state = 339}, + [8718] = {.lex_state = 339}, + [8719] = {.lex_state = 339}, + [8720] = {.lex_state = 0}, [8721] = {.lex_state = 339}, [8722] = {.lex_state = 0}, - [8723] = {.lex_state = 339}, - [8724] = {.lex_state = 0, .external_lex_state = 3}, - [8725] = {.lex_state = 0}, + [8723] = {.lex_state = 0}, + [8724] = {.lex_state = 196}, + [8725] = {.lex_state = 339}, [8726] = {.lex_state = 0}, [8727] = {.lex_state = 0}, - [8728] = {.lex_state = 0}, - [8729] = {.lex_state = 0}, - [8730] = {.lex_state = 199}, + [8728] = {.lex_state = 339}, + [8729] = {.lex_state = 0, .external_lex_state = 3}, + [8730] = {.lex_state = 196}, [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}, + [8732] = {.lex_state = 199}, + [8733] = {.lex_state = 0}, + [8734] = {.lex_state = 0}, + [8735] = {.lex_state = 199}, + [8736] = {.lex_state = 0}, + [8737] = {.lex_state = 339}, [8738] = {.lex_state = 339}, - [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 = 173}, + [8739] = {.lex_state = 339}, + [8740] = {.lex_state = 0}, + [8741] = {.lex_state = 339}, + [8742] = {.lex_state = 196}, + [8743] = {.lex_state = 196}, + [8744] = {.lex_state = 339}, [8745] = {.lex_state = 0}, [8746] = {.lex_state = 0}, [8747] = {.lex_state = 339}, - [8748] = {.lex_state = 339}, - [8749] = {.lex_state = 339}, + [8748] = {.lex_state = 0, .external_lex_state = 3}, + [8749] = {.lex_state = 0}, [8750] = {.lex_state = 0}, - [8751] = {.lex_state = 0, .external_lex_state = 3}, + [8751] = {.lex_state = 196}, [8752] = {.lex_state = 0}, - [8753] = {.lex_state = 196}, - [8754] = {.lex_state = 0}, - [8755] = {.lex_state = 0}, + [8753] = {.lex_state = 0}, + [8754] = {.lex_state = 199}, + [8755] = {.lex_state = 196}, [8756] = {.lex_state = 339}, [8757] = {.lex_state = 339}, - [8758] = {.lex_state = 339}, - [8759] = {.lex_state = 196}, - [8760] = {.lex_state = 0, .external_lex_state = 3}, + [8758] = {.lex_state = 0}, + [8759] = {.lex_state = 339}, + [8760] = {.lex_state = 0}, [8761] = {.lex_state = 0}, - [8762] = {.lex_state = 0}, - [8763] = {.lex_state = 339}, + [8762] = {.lex_state = 173}, + [8763] = {.lex_state = 0}, [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 = 0, .external_lex_state = 3}, - [8770] = {.lex_state = 0}, + [8765] = {.lex_state = 0, .external_lex_state = 3}, + [8766] = {.lex_state = 0}, + [8767] = {.lex_state = 173}, + [8768] = {.lex_state = 196}, + [8769] = {.lex_state = 0}, + [8770] = {.lex_state = 199}, [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}, + [8772] = {.lex_state = 339}, + [8773] = {.lex_state = 339}, + [8774] = {.lex_state = 0}, + [8775] = {.lex_state = 0, .external_lex_state = 3}, + [8776] = {.lex_state = 196}, [8777] = {.lex_state = 0}, - [8778] = {.lex_state = 0, .external_lex_state = 3}, + [8778] = {.lex_state = 0}, [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}, - [8785] = {.lex_state = 113}, - [8786] = {.lex_state = 339}, + [8780] = {.lex_state = 339}, + [8781] = {.lex_state = 339}, + [8782] = {.lex_state = 339}, + [8783] = {.lex_state = 196}, + [8784] = {.lex_state = 0, .external_lex_state = 3}, + [8785] = {.lex_state = 0}, + [8786] = {.lex_state = 0}, [8787] = {.lex_state = 339}, - [8788] = {.lex_state = 196}, + [8788] = {.lex_state = 339}, [8789] = {.lex_state = 339}, - [8790] = {.lex_state = 196}, + [8790] = {.lex_state = 0, .external_lex_state = 3}, [8791] = {.lex_state = 0}, - [8792] = {.lex_state = 0}, - [8793] = {.lex_state = 0}, + [8792] = {.lex_state = 339}, + [8793] = {.lex_state = 0, .external_lex_state = 3}, [8794] = {.lex_state = 0}, - [8795] = {.lex_state = 173}, - [8796] = {.lex_state = 0}, - [8797] = {.lex_state = 0, .external_lex_state = 2}, - [8798] = {.lex_state = 173}, + [8795] = {.lex_state = 339}, + [8796] = {.lex_state = 0, .external_lex_state = 3}, + [8797] = {.lex_state = 0}, + [8798] = {.lex_state = 0, .external_lex_state = 3}, [8799] = {.lex_state = 0}, - [8800] = {.lex_state = 0}, + [8800] = {.lex_state = 0, .external_lex_state = 3}, [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}, + [8802] = {.lex_state = 0, .external_lex_state = 3}, + [8803] = {.lex_state = 0}, + [8804] = {.lex_state = 0, .external_lex_state = 3}, + [8805] = {.lex_state = 0}, + [8806] = {.lex_state = 0, .external_lex_state = 3}, [8807] = {.lex_state = 0}, [8808] = {.lex_state = 0}, [8809] = {.lex_state = 0}, - [8810] = {.lex_state = 0}, - [8811] = {.lex_state = 0}, - [8812] = {.lex_state = 0}, - [8813] = {.lex_state = 196}, - [8814] = {.lex_state = 0}, - [8815] = {.lex_state = 0}, - [8816] = {.lex_state = 0}, - [8817] = {.lex_state = 173}, - [8818] = {.lex_state = 173}, - [8819] = {.lex_state = 339}, - [8820] = {.lex_state = 339}, - [8821] = {.lex_state = 339}, + [8810] = {.lex_state = 339}, + [8811] = {.lex_state = 339}, + [8812] = {.lex_state = 196}, + [8813] = {.lex_state = 199}, + [8814] = {.lex_state = 173}, + [8815] = {.lex_state = 110}, + [8816] = {.lex_state = 173}, + [8817] = {.lex_state = 339}, + [8818] = {.lex_state = 0}, + [8819] = {.lex_state = 0}, + [8820] = {.lex_state = 0}, + [8821] = {.lex_state = 0}, [8822] = {.lex_state = 0}, - [8823] = {.lex_state = 0}, + [8823] = {.lex_state = 173}, [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 = 0}, + [8826] = {.lex_state = 0}, + [8827] = {.lex_state = 196}, + [8828] = {.lex_state = 196}, + [8829] = {.lex_state = 0, .external_lex_state = 3}, [8830] = {.lex_state = 0}, [8831] = {.lex_state = 0}, [8832] = {.lex_state = 0}, - [8833] = {.lex_state = 339}, + [8833] = {.lex_state = 0}, [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}, + [8837] = {.lex_state = 196}, + [8838] = {.lex_state = 196}, + [8839] = {.lex_state = 199}, + [8840] = {.lex_state = 339}, + [8841] = {.lex_state = 174}, [8842] = {.lex_state = 0}, [8843] = {.lex_state = 0}, [8844] = {.lex_state = 0}, - [8845] = {.lex_state = 0}, + [8845] = {.lex_state = 171}, [8846] = {.lex_state = 0}, [8847] = {.lex_state = 0}, - [8848] = {.lex_state = 0}, - [8849] = {.lex_state = 0}, - [8850] = {.lex_state = 196}, - [8851] = {.lex_state = 339}, + [8848] = {.lex_state = 339}, + [8849] = {.lex_state = 196}, + [8850] = {.lex_state = 339}, + [8851] = {.lex_state = 0}, [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}, + [8853] = {.lex_state = 0}, + [8854] = {.lex_state = 0}, + [8855] = {.lex_state = 171}, + [8856] = {.lex_state = 339}, + [8857] = {.lex_state = 339}, + [8858] = {.lex_state = 0}, + [8859] = {.lex_state = 339}, [8860] = {.lex_state = 0}, - [8861] = {.lex_state = 171}, - [8862] = {.lex_state = 0}, + [8861] = {.lex_state = 199}, + [8862] = {.lex_state = 173}, [8863] = {.lex_state = 0}, [8864] = {.lex_state = 339}, - [8865] = {.lex_state = 0}, - [8866] = {.lex_state = 196}, - [8867] = {.lex_state = 199}, - [8868] = {.lex_state = 0}, + [8865] = {.lex_state = 173}, + [8866] = {.lex_state = 0}, + [8867] = {.lex_state = 110}, + [8868] = {.lex_state = 110}, [8869] = {.lex_state = 0}, - [8870] = {.lex_state = 339}, - [8871] = {.lex_state = 339}, - [8872] = {.lex_state = 196}, - [8873] = {.lex_state = 339}, + [8870] = {.lex_state = 110}, + [8871] = {.lex_state = 0}, + [8872] = {.lex_state = 0}, + [8873] = {.lex_state = 0}, [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}, + [8875] = {.lex_state = 173}, + [8876] = {.lex_state = 199}, + [8877] = {.lex_state = 0}, + [8878] = {.lex_state = 196}, + [8879] = {.lex_state = 0}, + [8880] = {.lex_state = 199}, + [8881] = {.lex_state = 0}, + [8882] = {.lex_state = 171}, + [8883] = {.lex_state = 0}, + [8884] = {.lex_state = 173}, + [8885] = {.lex_state = 173}, [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}, + [8887] = {.lex_state = 199}, + [8888] = {.lex_state = 0}, + [8889] = {.lex_state = 173}, + [8890] = {.lex_state = 339}, + [8891] = {.lex_state = 199}, [8892] = {.lex_state = 0}, - [8893] = {.lex_state = 339}, - [8894] = {.lex_state = 196}, - [8895] = {.lex_state = 0}, - [8896] = {.lex_state = 199}, + [8893] = {.lex_state = 0}, + [8894] = {.lex_state = 339}, + [8895] = {.lex_state = 339}, + [8896] = {.lex_state = 196}, [8897] = {.lex_state = 196}, - [8898] = {.lex_state = 0, .external_lex_state = 3}, + [8898] = {.lex_state = 173}, [8899] = {.lex_state = 0}, - [8900] = {.lex_state = 196}, - [8901] = {.lex_state = 339}, - [8902] = {.lex_state = 196}, + [8900] = {.lex_state = 173}, + [8901] = {.lex_state = 196}, + [8902] = {.lex_state = 0, .external_lex_state = 3}, [8903] = {.lex_state = 0}, - [8904] = {.lex_state = 0}, - [8905] = {.lex_state = 196}, - [8906] = {.lex_state = 0, .external_lex_state = 3}, - [8907] = {.lex_state = 196}, + [8904] = {.lex_state = 199}, + [8905] = {.lex_state = 0}, + [8906] = {.lex_state = 0}, + [8907] = {.lex_state = 339}, [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}, + [8910] = {.lex_state = 196}, + [8911] = {.lex_state = 0}, + [8912] = {.lex_state = 196}, + [8913] = {.lex_state = 0, .external_lex_state = 3}, + [8914] = {.lex_state = 0}, + [8915] = {.lex_state = 0}, + [8916] = {.lex_state = 0}, + [8917] = {.lex_state = 339}, + [8918] = {.lex_state = 196}, + [8919] = {.lex_state = 0}, + [8920] = {.lex_state = 0}, + [8921] = {.lex_state = 196}, + [8922] = {.lex_state = 0, .external_lex_state = 3}, + [8923] = {.lex_state = 0}, [8924] = {.lex_state = 0}, - [8925] = {.lex_state = 0, .external_lex_state = 3}, - [8926] = {.lex_state = 0}, - [8927] = {.lex_state = 0, .external_lex_state = 3}, + [8925] = {.lex_state = 339}, + [8926] = {.lex_state = 196}, + [8927] = {.lex_state = 0}, [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}, + [8929] = {.lex_state = 196}, + [8930] = {.lex_state = 0, .external_lex_state = 3}, + [8931] = {.lex_state = 173}, + [8932] = {.lex_state = 339}, + [8933] = {.lex_state = 196}, + [8934] = {.lex_state = 0}, + [8935] = {.lex_state = 196}, + [8936] = {.lex_state = 0, .external_lex_state = 3}, + [8937] = {.lex_state = 0}, + [8938] = {.lex_state = 196}, + [8939] = {.lex_state = 0, .external_lex_state = 3}, + [8940] = {.lex_state = 0}, + [8941] = {.lex_state = 0, .external_lex_state = 3}, [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}, + [8943] = {.lex_state = 0, .external_lex_state = 3}, + [8944] = {.lex_state = 196}, + [8945] = {.lex_state = 0, .external_lex_state = 3}, + [8946] = {.lex_state = 199}, + [8947] = {.lex_state = 0, .external_lex_state = 3}, + [8948] = {.lex_state = 0}, + [8949] = {.lex_state = 0, .external_lex_state = 3}, + [8950] = {.lex_state = 0}, + [8951] = {.lex_state = 0, .external_lex_state = 3}, + [8952] = {.lex_state = 0}, + [8953] = {.lex_state = 0, .external_lex_state = 3}, + [8954] = {.lex_state = 0}, + [8955] = {.lex_state = 0, .external_lex_state = 3}, + [8956] = {.lex_state = 0}, + [8957] = {.lex_state = 0, .external_lex_state = 3}, [8958] = {.lex_state = 339}, [8959] = {.lex_state = 339}, - [8960] = {.lex_state = 0}, - [8961] = {.lex_state = 0}, - [8962] = {.lex_state = 113}, + [8960] = {.lex_state = 173}, + [8961] = {.lex_state = 339}, + [8962] = {.lex_state = 339}, [8963] = {.lex_state = 0}, - [8964] = {.lex_state = 0}, + [8964] = {.lex_state = 339}, [8965] = {.lex_state = 339}, - [8966] = {.lex_state = 339}, + [8966] = {.lex_state = 0}, [8967] = {.lex_state = 339}, [8968] = {.lex_state = 339}, - [8969] = {.lex_state = 339}, - [8970] = {.lex_state = 0}, + [8969] = {.lex_state = 0}, + [8970] = {.lex_state = 339}, + [8971] = {.lex_state = 339}, + [8972] = {.lex_state = 0}, + [8973] = {.lex_state = 339}, + [8974] = {.lex_state = 339}, + [8975] = {.lex_state = 339}, + [8976] = {.lex_state = 339}, + [8977] = {.lex_state = 339}, + [8978] = {.lex_state = 339}, + [8979] = {.lex_state = 339}, + [8980] = {.lex_state = 339}, + [8981] = {.lex_state = 339}, + [8982] = {.lex_state = 339}, + [8983] = {.lex_state = 339}, + [8984] = {.lex_state = 110}, + [8985] = {.lex_state = 339}, + [8986] = {.lex_state = 0}, + [8987] = {.lex_state = 0}, + [8988] = {.lex_state = 0}, + [8989] = {.lex_state = 339}, + [8990] = {.lex_state = 339}, + [8991] = {.lex_state = 339}, + [8992] = {.lex_state = 339}, + [8993] = {.lex_state = 339}, + [8994] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -31415,7 +31467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [STATE(1)] = { - [sym_translation_unit] = STATE(8653), + [sym_translation_unit] = STATE(8512), [sym__top_level_item] = STATE(34), [sym_preproc_include] = STATE(34), [sym_preproc_def] = STATE(34), @@ -31426,30 +31478,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(3211), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4661), [sym_linkage_specification] = STATE(34), - [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6459), + [sym_array_declarator] = STATE(6137), [sym_compound_statement] = STATE(34), - [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_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2798), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(570), [sym__top_level_statement] = STATE(34), [sym_labeled_statement] = STATE(34), [sym__top_level_expression_statement] = STATE(34), @@ -31463,38 +31515,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(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_expression] = STATE(4907), + [sym__string] = STATE(4866), + [sym_conditional_expression] = STATE(4944), + [sym_assignment_expression] = STATE(4944), + [sym_pointer_expression] = STATE(3771), + [sym_unary_expression] = STATE(4944), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(4944), + [sym_cast_expression] = STATE(4944), + [sym_sizeof_expression] = STATE(4944), + [sym_alignof_expression] = STATE(4944), + [sym_offsetof_expression] = STATE(4944), + [sym_generic_expression] = STATE(4944), + [sym_subscript_expression] = STATE(3771), + [sym_call_expression] = STATE(3771), + [sym_gnu_asm_expression] = STATE(4944), + [sym_extension_expression] = STATE(4944), + [sym_field_expression] = STATE(3771), + [sym_compound_literal_expression] = STATE(4944), + [sym_parenthesized_expression] = STATE(3771), + [sym_char_literal] = STATE(4866), + [sym_concatenated_string] = STATE(4866), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(4944), [sym__empty_declaration] = STATE(34), - [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1867), + [sym_dependent_type] = STATE(2452), [sym_module_declaration] = STATE(34), [sym_export_declaration] = STATE(34), [sym_import_declaration] = STATE(34), @@ -31502,15 +31554,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(6950), - [sym__constructor_specifiers] = STATE(1814), + [sym_operator_cast] = STATE(6932), + [sym__constructor_specifiers] = STATE(1867), [sym_operator_cast_definition] = STATE(34), [sym_operator_cast_declaration] = STATE(34), [sym_constructor_or_destructor_definition] = STATE(34), - [sym_reference_declarator] = STATE(6145), - [sym_structured_binding_declarator] = STATE(6145), - [sym_template_type] = STATE(3030), - [sym_template_function] = STATE(4894), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4893), [sym_namespace_definition] = STATE(34), [sym_namespace_alias_definition] = STATE(34), [sym_using_declaration] = STATE(34), @@ -31522,29 +31574,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(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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(4944), + [sym_new_expression] = STATE(4944), + [sym_delete_expression] = STATE(4944), + [sym_requires_clause] = STATE(4944), + [sym_requires_expression] = STATE(4944), + [sym_lambda_expression] = STATE(4944), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(4944), + [sym_parameter_pack_expansion] = STATE(4944), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), + [sym_qualified_identifier] = STATE(3669), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6932), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3771), [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1814), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1867), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -31682,139 +31734,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(121), }, [STATE(2)] = { - [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__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -31953,139 +32005,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(3)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(42), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -32224,139 +32276,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(4)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(42), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -32495,139 +32547,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(5)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(53), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(53), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(53), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(53), + [sym_template_instantiation] = STATE(53), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(53), + [sym_operator_cast_declaration] = STATE(53), + [sym_constructor_or_destructor_definition] = STATE(53), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(53), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -32766,139 +32818,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(6)] = { - [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__block_item] = STATE(39), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(39), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(39), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(39), + [sym_template_instantiation] = STATE(39), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(39), + [sym_operator_cast_declaration] = STATE(39), + [sym_constructor_or_destructor_definition] = STATE(39), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(39), + [sym_namespace_alias_definition] = STATE(39), + [sym_using_declaration] = STATE(39), + [sym_alias_declaration] = STATE(39), + [sym_static_assert_declaration] = STATE(39), + [sym_concept_definition] = STATE(39), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -33037,139 +33089,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(7)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(66), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(66), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(66), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(66), + [sym_template_instantiation] = STATE(66), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(66), + [sym_operator_cast_declaration] = STATE(66), + [sym_constructor_or_destructor_definition] = STATE(66), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(66), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -33308,139 +33360,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(8)] = { - [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__block_item] = STATE(64), + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(64), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -33579,139 +33631,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(9)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(66), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(66), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(66), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(66), + [sym_template_instantiation] = STATE(66), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(66), + [sym_operator_cast_declaration] = STATE(66), + [sym_constructor_or_destructor_definition] = STATE(66), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(66), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -33850,139 +33902,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(10)] = { - [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__block_item] = STATE(81), + [sym_preproc_include] = STATE(81), + [sym_preproc_def] = STATE(81), + [sym_preproc_function_def] = STATE(81), + [sym_preproc_call] = STATE(81), + [sym_preproc_if] = STATE(81), + [sym_preproc_ifdef] = STATE(81), + [sym_function_definition] = STATE(81), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(81), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(81), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(81), + [sym_namespace_alias_definition] = STATE(81), + [sym_using_declaration] = STATE(81), + [sym_alias_declaration] = STATE(81), + [sym_static_assert_declaration] = STATE(81), + [sym_concept_definition] = STATE(81), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -34121,139 +34173,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(11)] = { - [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__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -34392,139 +34444,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(12)] = { - [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__block_item] = STATE(81), + [sym_preproc_include] = STATE(81), + [sym_preproc_def] = STATE(81), + [sym_preproc_function_def] = STATE(81), + [sym_preproc_call] = STATE(81), + [sym_preproc_if] = STATE(81), + [sym_preproc_ifdef] = STATE(81), + [sym_function_definition] = STATE(81), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(81), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4350), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(81), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(81), + [sym_namespace_alias_definition] = STATE(81), + [sym_using_declaration] = STATE(81), + [sym_alias_declaration] = STATE(81), + [sym_static_assert_declaration] = STATE(81), + [sym_concept_definition] = STATE(81), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(167), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -34663,136 +34715,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(13)] = { - [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__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(8352), + [sym_preproc_elif] = STATE(8352), + [sym_preproc_elifdef] = STATE(8352), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -34933,136 +34985,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(14)] = { - [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__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(8358), + [sym_preproc_elif] = STATE(8358), + [sym_preproc_elifdef] = STATE(8358), + [sym_function_definition] = STATE(27), + [sym_declaration] = STATE(27), + [sym_type_definition] = STATE(27), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(27), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(27), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(27), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(27), + [sym_template_instantiation] = STATE(27), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(27), + [sym_operator_cast_declaration] = STATE(27), + [sym_constructor_or_destructor_definition] = STATE(27), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(27), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -35203,136 +35255,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(15)] = { - [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__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(8532), + [sym_preproc_elif] = STATE(8532), + [sym_preproc_elifdef] = STATE(8532), + [sym_function_definition] = STATE(18), + [sym_declaration] = STATE(18), + [sym_type_definition] = STATE(18), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(18), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(18), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(18), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(18), + [sym_template_instantiation] = STATE(18), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(18), + [sym_operator_cast_declaration] = STATE(18), + [sym_constructor_or_destructor_definition] = STATE(18), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(18), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -35473,136 +35525,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(16)] = { - [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__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(8635), + [sym_preproc_elif] = STATE(8635), + [sym_preproc_elifdef] = STATE(8635), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -35750,129 +35802,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(8284), - [sym_preproc_elif] = STATE(8284), - [sym_preproc_elifdef] = STATE(8284), + [sym_preproc_else] = STATE(8368), + [sym_preproc_elif] = STATE(8368), + [sym_preproc_elifdef] = STATE(8368), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), [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_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6927), - [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -36020,129 +36072,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(8437), - [sym_preproc_elif] = STATE(8437), - [sym_preproc_elifdef] = STATE(8437), + [sym_preproc_else] = STATE(8762), + [sym_preproc_elif] = STATE(8762), + [sym_preproc_elifdef] = STATE(8762), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), [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_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6927), - [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -36283,136 +36335,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(19)] = { - [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__block_item] = STATE(21), + [sym_preproc_include] = STATE(21), + [sym_preproc_def] = STATE(21), + [sym_preproc_function_def] = STATE(21), + [sym_preproc_call] = STATE(21), + [sym_preproc_if] = STATE(21), + [sym_preproc_ifdef] = STATE(21), + [sym_preproc_else] = STATE(8495), + [sym_preproc_elif] = STATE(8495), + [sym_preproc_elifdef] = STATE(8495), + [sym_function_definition] = STATE(21), + [sym_declaration] = STATE(21), + [sym_type_definition] = STATE(21), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(21), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(21), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(21), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(21), + [sym_template_instantiation] = STATE(21), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(21), + [sym_operator_cast_declaration] = STATE(21), + [sym_constructor_or_destructor_definition] = STATE(21), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(21), + [sym_namespace_alias_definition] = STATE(21), + [sym_using_declaration] = STATE(21), + [sym_alias_declaration] = STATE(21), + [sym_static_assert_declaration] = STATE(21), + [sym_concept_definition] = STATE(21), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(21), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -36553,6 +36605,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(20)] = { + [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(8248), + [sym_preproc_elif] = STATE(8248), + [sym_preproc_elifdef] = STATE(8248), + [sym_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(22), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(22), + [sym_template_instantiation] = STATE(22), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(22), + [sym_operator_cast_declaration] = STATE(22), + [sym_constructor_or_destructor_definition] = STATE(22), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(22), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(146), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), + [sym_identifier] = ACTIONS(267), + [aux_sym_preproc_include_token1] = ACTIONS(269), + [aux_sym_preproc_def_token1] = ACTIONS(271), + [aux_sym_preproc_if_token1] = ACTIONS(273), + [aux_sym_preproc_if_token2] = ACTIONS(355), + [aux_sym_preproc_ifdef_token1] = ACTIONS(277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(277), + [aux_sym_preproc_else_token1] = ACTIONS(279), + [aux_sym_preproc_elif_token1] = ACTIONS(281), + [aux_sym_preproc_elifdef_token1] = ACTIONS(283), + [aux_sym_preproc_elifdef_token2] = ACTIONS(283), + [sym_preproc_directive] = ACTIONS(285), + [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(287), + [anon_sym___extension__] = ACTIONS(289), + [anon_sym_typedef] = ACTIONS(291), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(293), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(295), + [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(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_static] = ACTIONS(63), + [anon_sym_register] = ACTIONS(63), + [anon_sym_inline] = ACTIONS(299), + [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(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), + [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(327), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(333), + [anon_sym_static_assert] = ACTIONS(335), + [anon_sym_concept] = ACTIONS(337), + [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), + [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), + }, + [STATE(21)] = { [sym__block_item] = STATE(33), [sym_preproc_include] = STATE(33), [sym_preproc_def] = STATE(33), @@ -36560,134 +36882,134 @@ 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(8321), - [sym_preproc_elif] = STATE(8321), - [sym_preproc_elifdef] = STATE(8321), + [sym_preproc_else] = STATE(8254), + [sym_preproc_elif] = STATE(8254), + [sym_preproc_elifdef] = STATE(8254), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), [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_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6927), - [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(355), + [aux_sym_preproc_if_token2] = ACTIONS(357), [aux_sym_preproc_ifdef_token1] = ACTIONS(277), [aux_sym_preproc_ifdef_token2] = ACTIONS(277), [aux_sym_preproc_else_token1] = ACTIONS(279), @@ -36822,142 +37144,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(21)] = { - [sym__block_item] = STATE(23), - [sym_preproc_include] = STATE(23), - [sym_preproc_def] = STATE(23), - [sym_preproc_function_def] = STATE(23), - [sym_preproc_call] = STATE(23), - [sym_preproc_if] = STATE(23), - [sym_preproc_ifdef] = STATE(23), - [sym_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(3211), - [sym__declaration_specifiers] = STATE(4710), - [sym_linkage_specification] = STATE(23), - [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(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(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(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(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(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), + [STATE(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(8654), + [sym_preproc_elif] = STATE(8654), + [sym_preproc_elifdef] = STATE(8654), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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(2095), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(357), + [aux_sym_preproc_if_token2] = ACTIONS(359), [aux_sym_preproc_ifdef_token1] = ACTIONS(277), [aux_sym_preproc_ifdef_token2] = ACTIONS(277), [aux_sym_preproc_else_token1] = ACTIONS(279), @@ -37092,142 +37414,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(22)] = { - [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), + [STATE(23)] = { + [sym__block_item] = STATE(25), + [sym_preproc_include] = STATE(25), + [sym_preproc_def] = STATE(25), + [sym_preproc_function_def] = STATE(25), + [sym_preproc_call] = STATE(25), + [sym_preproc_if] = STATE(25), + [sym_preproc_ifdef] = STATE(25), + [sym_preproc_else] = STATE(8579), + [sym_preproc_elif] = STATE(8579), + [sym_preproc_elifdef] = STATE(8579), + [sym_function_definition] = STATE(25), + [sym_declaration] = STATE(25), + [sym_type_definition] = STATE(25), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(25), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(25), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(25), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(25), + [sym_template_instantiation] = STATE(25), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(25), + [sym_operator_cast_declaration] = STATE(25), + [sym_constructor_or_destructor_definition] = STATE(25), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(25), + [sym_namespace_alias_definition] = STATE(25), + [sym_using_declaration] = STATE(25), + [sym_alias_declaration] = STATE(25), + [sym_static_assert_declaration] = STATE(25), + [sym_concept_definition] = STATE(25), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(25), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(359), + [aux_sym_preproc_if_token2] = ACTIONS(361), [aux_sym_preproc_ifdef_token1] = ACTIONS(277), [aux_sym_preproc_ifdef_token2] = ACTIONS(277), [aux_sym_preproc_else_token1] = ACTIONS(279), @@ -37362,142 +37684,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(23)] = { - [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(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(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), + [STATE(24)] = { + [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(8237), + [sym_preproc_elif] = STATE(8237), + [sym_preproc_elifdef] = STATE(8237), + [sym_function_definition] = STATE(13), + [sym_declaration] = STATE(13), + [sym_type_definition] = STATE(13), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(13), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(13), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(13), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(13), + [sym_template_instantiation] = STATE(13), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(13), + [sym_operator_cast_declaration] = STATE(13), + [sym_constructor_or_destructor_definition] = STATE(13), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(13), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(361), + [aux_sym_preproc_if_token2] = ACTIONS(363), [aux_sym_preproc_ifdef_token1] = ACTIONS(277), [aux_sym_preproc_ifdef_token2] = ACTIONS(277), [aux_sym_preproc_else_token1] = ACTIONS(279), @@ -37632,7 +37954,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(24)] = { + [STATE(25)] = { [sym__block_item] = STATE(33), [sym_preproc_include] = STATE(33), [sym_preproc_def] = STATE(33), @@ -37640,399 +37962,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(8109), - [sym_preproc_elif] = STATE(8109), - [sym_preproc_elifdef] = STATE(8109), + [sym_preproc_else] = STATE(8241), + [sym_preproc_elif] = STATE(8241), + [sym_preproc_elifdef] = STATE(8241), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), [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_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6927), - [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), - [aux_sym_preproc_if_token1] = ACTIONS(273), - [aux_sym_preproc_if_token2] = ACTIONS(363), - [aux_sym_preproc_ifdef_token1] = ACTIONS(277), - [aux_sym_preproc_ifdef_token2] = ACTIONS(277), - [aux_sym_preproc_else_token1] = ACTIONS(279), - [aux_sym_preproc_elif_token1] = ACTIONS(281), - [aux_sym_preproc_elifdef_token1] = ACTIONS(283), - [aux_sym_preproc_elifdef_token2] = ACTIONS(283), - [sym_preproc_directive] = ACTIONS(285), - [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(287), - [anon_sym___extension__] = ACTIONS(289), - [anon_sym_typedef] = ACTIONS(291), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(293), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(295), - [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(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_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(299), - [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(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), - [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(327), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(329), - [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(331), - [anon_sym_namespace] = ACTIONS(333), - [anon_sym_static_assert] = ACTIONS(335), - [anon_sym_concept] = ACTIONS(337), - [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), - [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), - }, - [STATE(25)] = { - [sym__block_item] = STATE(27), - [sym_preproc_include] = STATE(27), - [sym_preproc_def] = STATE(27), - [sym_preproc_function_def] = STATE(27), - [sym_preproc_call] = STATE(27), - [sym_preproc_if] = STATE(27), - [sym_preproc_ifdef] = STATE(27), - [sym_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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -38173,136 +38225,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(26)] = { - [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__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(8273), + [sym_preproc_elif] = STATE(8273), + [sym_preproc_elifdef] = STATE(8273), + [sym_function_definition] = STATE(17), + [sym_declaration] = STATE(17), + [sym_type_definition] = STATE(17), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(17), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(17), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(17), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(17), + [sym_template_instantiation] = STATE(17), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(17), + [sym_operator_cast_declaration] = STATE(17), + [sym_constructor_or_destructor_definition] = STATE(17), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(17), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -38450,129 +38502,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(8561), - [sym_preproc_elif] = STATE(8561), - [sym_preproc_elifdef] = STATE(8561), + [sym_preproc_else] = STATE(8931), + [sym_preproc_elif] = STATE(8931), + [sym_preproc_elifdef] = STATE(8931), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), [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_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6927), - [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -38713,136 +38765,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(28)] = { - [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(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(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__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(8289), + [sym_preproc_elif] = STATE(8289), + [sym_preproc_elifdef] = STATE(8289), + [sym_function_definition] = STATE(30), + [sym_declaration] = STATE(30), + [sym_type_definition] = STATE(30), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(30), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(30), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(30), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(30), + [sym_template_instantiation] = STATE(30), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(30), + [sym_operator_cast_declaration] = STATE(30), + [sym_constructor_or_destructor_definition] = STATE(30), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(30), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -38990,129 +39042,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_preproc_else] = STATE(8436), + [sym_preproc_elif] = STATE(8436), + [sym_preproc_elifdef] = STATE(8436), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), [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_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(31), [sym_template_instantiation] = STATE(31), - [sym_operator_cast] = STATE(6927), - [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(31), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -39253,136 +39305,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(30)] = { - [sym__block_item] = STATE(32), - [sym_preproc_include] = STATE(32), - [sym_preproc_def] = STATE(32), - [sym_preproc_function_def] = STATE(32), - [sym_preproc_call] = STATE(32), - [sym_preproc_if] = STATE(32), - [sym_preproc_ifdef] = STATE(32), - [sym_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__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(8460), + [sym_preproc_elif] = STATE(8460), + [sym_preproc_elifdef] = STATE(8460), + [sym_function_definition] = STATE(33), + [sym_declaration] = STATE(33), + [sym_type_definition] = STATE(33), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(33), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(33), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(33), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(33), + [sym_template_instantiation] = STATE(33), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(33), + [sym_operator_cast_declaration] = STATE(33), + [sym_constructor_or_destructor_definition] = STATE(33), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(33), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -39530,129 +39582,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(8244), - [sym_preproc_elif] = STATE(8244), - [sym_preproc_elifdef] = STATE(8244), + [sym_preproc_else] = STATE(8607), + [sym_preproc_elif] = STATE(8607), + [sym_preproc_elifdef] = STATE(8607), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), [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_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6927), - [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -39793,136 +39845,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(32)] = { - [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(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(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__block_item] = STATE(16), + [sym_preproc_include] = STATE(16), + [sym_preproc_def] = STATE(16), + [sym_preproc_function_def] = STATE(16), + [sym_preproc_call] = STATE(16), + [sym_preproc_if] = STATE(16), + [sym_preproc_ifdef] = STATE(16), + [sym_preproc_else] = STATE(8875), + [sym_preproc_elif] = STATE(8875), + [sym_preproc_elifdef] = STATE(8875), + [sym_function_definition] = STATE(16), + [sym_declaration] = STATE(16), + [sym_type_definition] = STATE(16), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_linkage_specification] = STATE(16), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), + [sym_statement] = STATE(16), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(16), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(16), + [sym_template_instantiation] = STATE(16), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), + [sym_operator_cast_definition] = STATE(16), + [sym_operator_cast_declaration] = STATE(16), + [sym_constructor_or_destructor_definition] = STATE(16), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(16), + [sym_namespace_alias_definition] = STATE(16), + [sym_using_declaration] = STATE(16), + [sym_alias_declaration] = STATE(16), + [sym_static_assert_declaration] = STATE(16), + [sym_concept_definition] = STATE(16), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(16), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(267), [aux_sym_preproc_include_token1] = ACTIONS(269), [aux_sym_preproc_def_token1] = ACTIONS(271), @@ -40073,123 +40125,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(3211), - [sym__declaration_specifiers] = STATE(4710), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6427), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(441), [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_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1785), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(33), [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(6927), - [sym__constructor_specifiers] = STATE(1837), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1785), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(146), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1837), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1785), [sym_identifier] = ACTIONS(381), [aux_sym_preproc_include_token1] = ACTIONS(384), [aux_sym_preproc_def_token1] = ACTIONS(387), @@ -40340,30 +40392,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(3211), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4661), [sym_linkage_specification] = STATE(35), - [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6459), + [sym_array_declarator] = STATE(6137), [sym_compound_statement] = STATE(35), - [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_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2798), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(570), [sym__top_level_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym__top_level_expression_statement] = STATE(35), @@ -40377,38 +40429,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(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_expression] = STATE(4907), + [sym__string] = STATE(4866), + [sym_conditional_expression] = STATE(4944), + [sym_assignment_expression] = STATE(4944), + [sym_pointer_expression] = STATE(3771), + [sym_unary_expression] = STATE(4944), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(4944), + [sym_cast_expression] = STATE(4944), + [sym_sizeof_expression] = STATE(4944), + [sym_alignof_expression] = STATE(4944), + [sym_offsetof_expression] = STATE(4944), + [sym_generic_expression] = STATE(4944), + [sym_subscript_expression] = STATE(3771), + [sym_call_expression] = STATE(3771), + [sym_gnu_asm_expression] = STATE(4944), + [sym_extension_expression] = STATE(4944), + [sym_field_expression] = STATE(3771), + [sym_compound_literal_expression] = STATE(4944), + [sym_parenthesized_expression] = STATE(3771), + [sym_char_literal] = STATE(4866), + [sym_concatenated_string] = STATE(4866), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(4944), [sym__empty_declaration] = STATE(35), - [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1867), + [sym_dependent_type] = STATE(2452), [sym_module_declaration] = STATE(35), [sym_export_declaration] = STATE(35), [sym_import_declaration] = STATE(35), @@ -40416,15 +40468,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(6950), - [sym__constructor_specifiers] = STATE(1814), + [sym_operator_cast] = STATE(6932), + [sym__constructor_specifiers] = STATE(1867), [sym_operator_cast_definition] = STATE(35), [sym_operator_cast_declaration] = STATE(35), [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(6145), - [sym_structured_binding_declarator] = STATE(6145), - [sym_template_type] = STATE(3030), - [sym_template_function] = STATE(4894), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4893), [sym_namespace_definition] = STATE(35), [sym_namespace_alias_definition] = STATE(35), [sym_using_declaration] = STATE(35), @@ -40436,29 +40488,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(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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(4944), + [sym_new_expression] = STATE(4944), + [sym_delete_expression] = STATE(4944), + [sym_requires_clause] = STATE(4944), + [sym_requires_expression] = STATE(4944), + [sym_lambda_expression] = STATE(4944), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(4944), + [sym_parameter_pack_expansion] = STATE(4944), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), + [sym_qualified_identifier] = STATE(3669), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6932), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3771), [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1814), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1867), [ts_builtin_sym_end] = ACTIONS(620), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -40606,30 +40658,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(3211), - [sym__declaration_specifiers] = STATE(4803), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4661), [sym_linkage_specification] = STATE(35), - [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6459), + [sym_array_declarator] = STATE(6137), [sym_compound_statement] = STATE(35), - [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_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2798), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(570), [sym__top_level_statement] = STATE(35), [sym_labeled_statement] = STATE(35), [sym__top_level_expression_statement] = STATE(35), @@ -40643,38 +40695,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(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_expression] = STATE(4907), + [sym__string] = STATE(4866), + [sym_conditional_expression] = STATE(4944), + [sym_assignment_expression] = STATE(4944), + [sym_pointer_expression] = STATE(3771), + [sym_unary_expression] = STATE(4944), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(4944), + [sym_cast_expression] = STATE(4944), + [sym_sizeof_expression] = STATE(4944), + [sym_alignof_expression] = STATE(4944), + [sym_offsetof_expression] = STATE(4944), + [sym_generic_expression] = STATE(4944), + [sym_subscript_expression] = STATE(3771), + [sym_call_expression] = STATE(3771), + [sym_gnu_asm_expression] = STATE(4944), + [sym_extension_expression] = STATE(4944), + [sym_field_expression] = STATE(3771), + [sym_compound_literal_expression] = STATE(4944), + [sym_parenthesized_expression] = STATE(3771), + [sym_char_literal] = STATE(4866), + [sym_concatenated_string] = STATE(4866), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(4944), [sym__empty_declaration] = STATE(35), - [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1867), + [sym_dependent_type] = STATE(2452), [sym_module_declaration] = STATE(35), [sym_export_declaration] = STATE(35), [sym_import_declaration] = STATE(35), @@ -40682,15 +40734,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(6950), - [sym__constructor_specifiers] = STATE(1814), + [sym_operator_cast] = STATE(6932), + [sym__constructor_specifiers] = STATE(1867), [sym_operator_cast_definition] = STATE(35), [sym_operator_cast_declaration] = STATE(35), [sym_constructor_or_destructor_definition] = STATE(35), - [sym_reference_declarator] = STATE(6145), - [sym_structured_binding_declarator] = STATE(6145), - [sym_template_type] = STATE(3030), - [sym_template_function] = STATE(4894), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4893), [sym_namespace_definition] = STATE(35), [sym_namespace_alias_definition] = STATE(35), [sym_using_declaration] = STATE(35), @@ -40702,29 +40754,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(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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(4944), + [sym_new_expression] = STATE(4944), + [sym_delete_expression] = STATE(4944), + [sym_requires_clause] = STATE(4944), + [sym_requires_expression] = STATE(4944), + [sym_lambda_expression] = STATE(4944), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(4944), + [sym_parameter_pack_expansion] = STATE(4944), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), + [sym_qualified_identifier] = STATE(3669), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6932), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3771), [aux_sym_translation_unit_repeat1] = STATE(35), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(144), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1814), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1867), [ts_builtin_sym_end] = ACTIONS(622), [sym_identifier] = ACTIONS(624), [aux_sym_preproc_include_token1] = ACTIONS(627), @@ -40862,133 +40914,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(795), }, [STATE(36)] = { - [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__block_item] = STATE(37), + [sym_preproc_include] = STATE(37), + [sym_preproc_def] = STATE(37), + [sym_preproc_function_def] = STATE(37), + [sym_preproc_call] = STATE(37), + [sym_preproc_if] = STATE(37), + [sym_preproc_ifdef] = STATE(37), + [sym_function_definition] = STATE(37), + [sym_declaration] = STATE(37), + [sym_type_definition] = STATE(37), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(37), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(37), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(37), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(37), + [sym_template_instantiation] = STATE(37), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(37), + [sym_operator_cast_declaration] = STATE(37), + [sym_constructor_or_destructor_definition] = STATE(37), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(37), + [sym_namespace_alias_definition] = STATE(37), + [sym_using_declaration] = STATE(37), + [sym_alias_declaration] = STATE(37), + [sym_static_assert_declaration] = STATE(37), + [sym_concept_definition] = STATE(37), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(37), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -41125,141 +41177,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(37)] = { - [sym__block_item] = STATE(42), - [sym_preproc_include] = STATE(42), - [sym_preproc_def] = STATE(42), - [sym_preproc_function_def] = STATE(42), - [sym_preproc_call] = STATE(42), - [sym_preproc_if] = STATE(42), - [sym_preproc_ifdef] = STATE(42), - [sym_function_definition] = STATE(42), - [sym_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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), - [aux_sym_preproc_if_token1] = ACTIONS(876), - [aux_sym_preproc_if_token2] = ACTIONS(878), - [aux_sym_preproc_ifdef_token1] = ACTIONS(880), - [aux_sym_preproc_ifdef_token2] = ACTIONS(880), - [sym_preproc_directive] = ACTIONS(882), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), + [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), @@ -41268,14 +41319,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(884), - [anon_sym___extension__] = ACTIONS(886), - [anon_sym_typedef] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(187), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(892), + [anon_sym_using] = ACTIONS(189), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -41286,7 +41337,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(894), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(870), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -41294,7 +41346,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(896), + [anon_sym_inline] = ACTIONS(197), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -41319,19 +41371,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(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_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), @@ -41367,16 +41419,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_template] = ACTIONS(924), + [anon_sym_template] = ACTIONS(231), [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(233), [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_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), @@ -41398,131 +41450,131 @@ 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(3211), - [sym__declaration_specifiers] = STATE(4774), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4756), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1987), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6444), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(519), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2806), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(747), [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_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(38), [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(6933), - [sym__constructor_specifiers] = STATE(1844), + [sym_operator_cast] = STATE(6958), + [sym__constructor_specifiers] = STATE(1795), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6958), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), - [aux_sym_preproc_if_token1] = ACTIONS(949), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(872), + [aux_sym_preproc_include_token1] = ACTIONS(875), + [aux_sym_preproc_def_token1] = ACTIONS(878), + [aux_sym_preproc_if_token1] = ACTIONS(881), [aux_sym_preproc_if_token2] = ACTIONS(393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(952), - [aux_sym_preproc_ifdef_token2] = ACTIONS(952), - [sym_preproc_directive] = ACTIONS(955), + [aux_sym_preproc_ifdef_token1] = ACTIONS(884), + [aux_sym_preproc_ifdef_token2] = ACTIONS(884), + [sym_preproc_directive] = ACTIONS(887), [anon_sym_LPAREN2] = ACTIONS(401), [anon_sym_BANG] = ACTIONS(404), [anon_sym_TILDE] = ACTIONS(407), @@ -41531,14 +41583,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(413), [anon_sym_AMP_AMP] = ACTIONS(416), [anon_sym_AMP] = ACTIONS(419), - [anon_sym_SEMI] = ACTIONS(958), - [anon_sym___extension__] = ACTIONS(961), - [anon_sym_typedef] = ACTIONS(964), + [anon_sym_SEMI] = ACTIONS(890), + [anon_sym___extension__] = ACTIONS(893), + [anon_sym_typedef] = ACTIONS(896), [anon_sym_virtual] = ACTIONS(431), - [anon_sym_extern] = ACTIONS(967), + [anon_sym_extern] = ACTIONS(899), [anon_sym___attribute__] = ACTIONS(437), [anon_sym___attribute] = ACTIONS(437), - [anon_sym_using] = ACTIONS(970), + [anon_sym_using] = ACTIONS(902), [anon_sym_COLON_COLON] = ACTIONS(443), [anon_sym_LBRACK_LBRACK] = ACTIONS(446), [anon_sym___declspec] = ACTIONS(449), @@ -41549,7 +41601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(455), [anon_sym___thiscall] = ACTIONS(455), [anon_sym___vectorcall] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(973), + [anon_sym_LBRACE] = ACTIONS(905), [anon_sym_signed] = ACTIONS(461), [anon_sym_unsigned] = ACTIONS(461), [anon_sym_long] = ACTIONS(461), @@ -41557,7 +41609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(464), [anon_sym_static] = ACTIONS(467), [anon_sym_register] = ACTIONS(467), - [anon_sym_inline] = ACTIONS(976), + [anon_sym_inline] = ACTIONS(908), [anon_sym___inline] = ACTIONS(467), [anon_sym___inline__] = ACTIONS(467), [anon_sym___forceinline] = ACTIONS(467), @@ -41582,19 +41634,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(485), [anon_sym_struct] = ACTIONS(488), [anon_sym_union] = ACTIONS(491), - [anon_sym_if] = ACTIONS(979), - [anon_sym_switch] = ACTIONS(982), - [anon_sym_case] = ACTIONS(985), - [anon_sym_default] = ACTIONS(988), - [anon_sym_while] = ACTIONS(991), - [anon_sym_do] = ACTIONS(994), - [anon_sym_for] = ACTIONS(997), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1003), - [anon_sym_continue] = ACTIONS(1006), - [anon_sym_goto] = ACTIONS(1009), - [anon_sym___try] = ACTIONS(1012), - [anon_sym___leave] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(911), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_case] = ACTIONS(917), + [anon_sym_default] = ACTIONS(920), + [anon_sym_while] = ACTIONS(923), + [anon_sym_do] = ACTIONS(926), + [anon_sym_for] = ACTIONS(929), + [anon_sym_return] = ACTIONS(932), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_goto] = ACTIONS(941), + [anon_sym___try] = ACTIONS(944), + [anon_sym___leave] = ACTIONS(947), [anon_sym_not] = ACTIONS(410), [anon_sym_compl] = ACTIONS(410), [anon_sym_DASH_DASH] = ACTIONS(533), @@ -41630,16 +41682,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(569), [anon_sym_explicit] = ACTIONS(572), [anon_sym_typename] = ACTIONS(575), - [anon_sym_template] = ACTIONS(1018), + [anon_sym_template] = ACTIONS(950), [anon_sym_operator] = ACTIONS(581), - [anon_sym_try] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(953), [anon_sym_delete] = ACTIONS(587), - [anon_sym_throw] = ACTIONS(1024), - [anon_sym_namespace] = ACTIONS(1027), - [anon_sym_static_assert] = ACTIONS(1030), - [anon_sym_concept] = ACTIONS(1033), - [anon_sym_co_return] = ACTIONS(1036), - [anon_sym_co_yield] = ACTIONS(1039), + [anon_sym_throw] = ACTIONS(956), + [anon_sym_namespace] = ACTIONS(959), + [anon_sym_static_assert] = ACTIONS(962), + [anon_sym_concept] = ACTIONS(965), + [anon_sym_co_return] = ACTIONS(968), + [anon_sym_co_yield] = ACTIONS(971), [anon_sym_R_DQUOTE] = ACTIONS(608), [anon_sym_LR_DQUOTE] = ACTIONS(608), [anon_sym_uR_DQUOTE] = ACTIONS(608), @@ -41651,133 +41703,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(560), }, [STATE(39)] = { - [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(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(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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -41812,7 +41864,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(1042), + [anon_sym_RBRACE] = ACTIONS(974), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -41914,133 +41966,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(40)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(42), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(42), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(42), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(42), + [sym_template_instantiation] = STATE(42), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(42), + [sym_operator_cast_declaration] = STATE(42), + [sym_constructor_or_destructor_definition] = STATE(42), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(42), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -42075,7 +42127,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(1044), + [anon_sym_RBRACE] = ACTIONS(976), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42177,140 +42229,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(41)] = { - [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__block_item] = STATE(55), + [sym_preproc_include] = STATE(55), + [sym_preproc_def] = STATE(55), + [sym_preproc_function_def] = STATE(55), + [sym_preproc_call] = STATE(55), + [sym_preproc_if] = STATE(55), + [sym_preproc_ifdef] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4756), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1987), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6444), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(519), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2806), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(747), + [sym_statement] = STATE(55), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(55), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(6958), + [sym__constructor_specifiers] = STATE(1795), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(55), + [sym_namespace_alias_definition] = STATE(55), + [sym_using_declaration] = STATE(55), + [sym_alias_declaration] = STATE(55), + [sym_static_assert_declaration] = STATE(55), + [sym_concept_definition] = STATE(55), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), - [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_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6958), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(55), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(150), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(986), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(990), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -42319,14 +42372,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(992), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(998), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1000), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -42337,8 +42390,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(1046), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42346,7 +42398,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(197), + [anon_sym_inline] = ACTIONS(1004), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -42371,19 +42423,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(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(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -42419,16 +42471,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_template] = ACTIONS(231), + [anon_sym_template] = ACTIONS(1032), [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_namespace] = ACTIONS(1038), + [anon_sym_static_assert] = ACTIONS(1040), + [anon_sym_concept] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -42440,141 +42492,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(42)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), + [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), @@ -42583,14 +42634,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(884), - [anon_sym___extension__] = ACTIONS(886), - [anon_sym_typedef] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(183), + [anon_sym_typedef] = ACTIONS(185), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(187), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(892), + [anon_sym_using] = ACTIONS(189), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -42601,7 +42652,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(894), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(1048), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -42609,7 +42661,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(896), + [anon_sym_inline] = ACTIONS(197), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -42634,19 +42686,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(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_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), @@ -42682,16 +42734,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_template] = ACTIONS(924), + [anon_sym_template] = ACTIONS(231), [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(233), [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_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), @@ -42703,133 +42755,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(45), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(45), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(45), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(45), + [sym_template_instantiation] = STATE(45), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(45), + [sym_operator_cast_declaration] = STATE(45), + [sym_constructor_or_destructor_definition] = STATE(45), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(45), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -42966,133 +43018,396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(44)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), + [sym_identifier] = ACTIONS(1052), + [aux_sym_preproc_include_token1] = ACTIONS(1055), + [aux_sym_preproc_def_token1] = ACTIONS(1058), + [aux_sym_preproc_if_token1] = ACTIONS(1061), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1064), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1064), + [sym_preproc_directive] = ACTIONS(1067), + [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(1070), + [anon_sym___extension__] = ACTIONS(1073), + [anon_sym_typedef] = ACTIONS(1076), + [anon_sym_virtual] = ACTIONS(431), + [anon_sym_extern] = ACTIONS(1079), + [anon_sym___attribute__] = ACTIONS(437), + [anon_sym___attribute] = ACTIONS(437), + [anon_sym_using] = ACTIONS(1082), + [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(1085), + [anon_sym_RBRACE] = ACTIONS(1088), + [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(1090), + [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(1093), + [anon_sym_switch] = ACTIONS(1096), + [anon_sym_case] = ACTIONS(1099), + [anon_sym_default] = ACTIONS(1102), + [anon_sym_while] = ACTIONS(1105), + [anon_sym_do] = ACTIONS(1108), + [anon_sym_for] = ACTIONS(1111), + [anon_sym_return] = ACTIONS(1114), + [anon_sym_break] = ACTIONS(1117), + [anon_sym_continue] = ACTIONS(1120), + [anon_sym_goto] = ACTIONS(1123), + [anon_sym___try] = ACTIONS(1126), + [anon_sym___leave] = ACTIONS(1129), + [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(1132), + [anon_sym_operator] = ACTIONS(581), + [anon_sym_try] = ACTIONS(1135), + [anon_sym_delete] = ACTIONS(587), + [anon_sym_throw] = ACTIONS(1138), + [anon_sym_namespace] = ACTIONS(1141), + [anon_sym_static_assert] = ACTIONS(1144), + [anon_sym_concept] = ACTIONS(1147), + [anon_sym_co_return] = ACTIONS(1150), + [anon_sym_co_yield] = ACTIONS(1153), + [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), + }, + [STATE(45)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -43127,7 +43442,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(1052), + [anon_sym_RBRACE] = ACTIONS(1156), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43228,134 +43543,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(45)] = { - [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), + [STATE(46)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(47), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(47), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(47), + [sym_template_instantiation] = STATE(47), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(47), + [sym_operator_cast_declaration] = STATE(47), + [sym_constructor_or_destructor_definition] = STATE(47), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -43390,7 +43705,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(1054), + [anon_sym_RBRACE] = ACTIONS(1158), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43491,134 +43806,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(46)] = { - [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), + [STATE(47)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -43653,7 +43968,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(1056), + [anon_sym_RBRACE] = ACTIONS(1160), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -43754,134 +44069,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(47)] = { - [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), + [STATE(48)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(51), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(51), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(51), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(51), + [sym_template_instantiation] = STATE(51), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(51), + [sym_operator_cast_declaration] = STATE(51), + [sym_constructor_or_destructor_definition] = STATE(51), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(51), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -43916,7 +44231,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(1058), + [anon_sym_RBRACE] = ACTIONS(1162), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44017,134 +44332,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(48)] = { - [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), + [STATE(49)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -44179,7 +44494,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(1060), + [anon_sym_RBRACE] = ACTIONS(1164), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44280,134 +44595,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(49)] = { - [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), + [STATE(50)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -44442,7 +44757,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(1062), + [anon_sym_RBRACE] = ACTIONS(1166), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44543,134 +44858,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(50)] = { - [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), + [STATE(51)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -44705,7 +45020,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(1064), + [anon_sym_RBRACE] = ACTIONS(1168), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -44806,7 +45121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(51)] = { + [STATE(52)] = { [sym__block_item] = STATE(53), [sym_preproc_include] = STATE(53), [sym_preproc_def] = STATE(53), @@ -44817,123 +45132,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(53), [sym_declaration] = STATE(53), [sym_type_definition] = STATE(53), - [sym__declaration_modifiers] = STATE(3211), - [sym__declaration_specifiers] = STATE(4646), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), [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_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(53), [sym_template_instantiation] = STATE(53), - [sym_operator_cast] = STATE(6888), - [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(53), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -44968,7 +45283,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(1066), + [anon_sym_RBRACE] = ACTIONS(1170), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45069,134 +45384,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(53)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -45231,7 +45546,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(1068), + [anon_sym_RBRACE] = ACTIONS(1172), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -45332,397 +45647,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, [STATE(54)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(84), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(84), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(84), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(84), + [sym_template_instantiation] = STATE(84), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(84), + [sym_operator_cast_declaration] = STATE(84), + [sym_constructor_or_destructor_definition] = STATE(84), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(84), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -45859,140 +45911,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(55)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4756), + [sym_linkage_specification] = STATE(38), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1987), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6444), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(519), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2806), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(747), + [sym_statement] = STATE(38), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(38), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1795), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(38), + [sym_template_instantiation] = STATE(38), + [sym_operator_cast] = STATE(6958), + [sym__constructor_specifiers] = STATE(1795), + [sym_operator_cast_definition] = STATE(38), + [sym_operator_cast_declaration] = STATE(38), + [sym_constructor_or_destructor_definition] = STATE(38), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), - [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_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6958), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(38), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(150), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1795), + [sym_identifier] = ACTIONS(978), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(984), + [aux_sym_preproc_if_token2] = ACTIONS(1176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(988), + [aux_sym_preproc_ifdef_token2] = ACTIONS(988), + [sym_preproc_directive] = ACTIONS(990), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -46001,14 +46054,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(992), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(998), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(1000), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -46019,8 +46072,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(1176), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -46028,7 +46080,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(197), + [anon_sym_inline] = ACTIONS(1004), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -46053,19 +46105,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(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(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -46101,16 +46153,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_template] = ACTIONS(231), + [anon_sym_template] = ACTIONS(1032), [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_namespace] = ACTIONS(1038), + [anon_sym_static_assert] = ACTIONS(1040), + [anon_sym_concept] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -46122,133 +46174,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(56)] = { - [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__block_item] = STATE(39), + [sym_preproc_include] = STATE(39), + [sym_preproc_def] = STATE(39), + [sym_preproc_function_def] = STATE(39), + [sym_preproc_call] = STATE(39), + [sym_preproc_if] = STATE(39), + [sym_preproc_ifdef] = STATE(39), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(39), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(39), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(39), + [sym_template_instantiation] = STATE(39), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(39), + [sym_operator_cast_declaration] = STATE(39), + [sym_constructor_or_destructor_definition] = STATE(39), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(39), + [sym_namespace_alias_definition] = STATE(39), + [sym_using_declaration] = STATE(39), + [sym_alias_declaration] = STATE(39), + [sym_static_assert_declaration] = STATE(39), + [sym_concept_definition] = STATE(39), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -46395,123 +46447,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), [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_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(58), [sym_template_instantiation] = STATE(58), - [sym_operator_cast] = STATE(6888), - [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(58), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -46648,133 +46700,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(58)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -46911,133 +46963,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(59)] = { - [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(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(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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(49), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(49), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -47174,133 +47226,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(60)] = { - [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__block_item] = STATE(61), + [sym_preproc_include] = STATE(61), + [sym_preproc_def] = STATE(61), + [sym_preproc_function_def] = STATE(61), + [sym_preproc_call] = STATE(61), + [sym_preproc_if] = STATE(61), + [sym_preproc_ifdef] = STATE(61), + [sym_function_definition] = STATE(61), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(61), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(61), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(61), + [sym_namespace_alias_definition] = STATE(61), + [sym_using_declaration] = STATE(61), + [sym_alias_declaration] = STATE(61), + [sym_static_assert_declaration] = STATE(61), + [sym_concept_definition] = STATE(61), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(61), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -47437,133 +47489,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(61)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -47700,133 +47752,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(62)] = { - [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__block_item] = STATE(50), + [sym_preproc_include] = STATE(50), + [sym_preproc_def] = STATE(50), + [sym_preproc_function_def] = STATE(50), + [sym_preproc_call] = STATE(50), + [sym_preproc_if] = STATE(50), + [sym_preproc_ifdef] = STATE(50), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(50), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(50), + [sym_namespace_alias_definition] = STATE(50), + [sym_using_declaration] = STATE(50), + [sym_alias_declaration] = STATE(50), + [sym_static_assert_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -47963,133 +48015,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(63)] = { - [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__block_item] = STATE(64), + [sym_preproc_include] = STATE(64), + [sym_preproc_def] = STATE(64), + [sym_preproc_function_def] = STATE(64), + [sym_preproc_call] = STATE(64), + [sym_preproc_if] = STATE(64), + [sym_preproc_ifdef] = STATE(64), + [sym_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(64), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(64), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(64), + [sym_namespace_alias_definition] = STATE(64), + [sym_using_declaration] = STATE(64), + [sym_alias_declaration] = STATE(64), + [sym_static_assert_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(64), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -48226,133 +48278,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(64)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -48499,123 +48551,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), [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_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(66), [sym_template_instantiation] = STATE(66), - [sym_operator_cast] = STATE(6888), - [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(66), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -48752,133 +48804,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(66)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -49025,123 +49077,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), [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_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), [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_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(68), [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(6888), - [sym__constructor_specifiers] = STATE(1833), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), [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_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), [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_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), [aux_sym_preproc_if_repeat1] = STATE(68), - [aux_sym__declaration_specifiers_repeat1] = STATE(2095), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -49278,133 +49330,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(68)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -49541,133 +49593,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(69)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(70), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(70), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(70), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -49804,133 +49856,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(70)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -50067,133 +50119,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(71)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(72), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(72), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(72), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(72), + [sym_template_instantiation] = STATE(72), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(72), + [sym_operator_cast_declaration] = STATE(72), + [sym_constructor_or_destructor_definition] = STATE(72), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(72), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -50330,139 +50382,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(72)] = { - [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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), + [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), @@ -50471,14 +50524,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(1212), - [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), @@ -50489,7 +50542,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(1214), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(1210), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50497,7 +50551,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), @@ -50522,19 +50576,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [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), @@ -50570,18 +50624,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(1220), - [anon_sym_import] = ACTIONS(1222), - [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), @@ -50593,140 +50645,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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__block_item] = STATE(579), + [sym_preproc_include] = STATE(579), + [sym_preproc_def] = STATE(579), + [sym_preproc_function_def] = STATE(579), + [sym_preproc_call] = STATE(579), + [sym_preproc_if] = STATE(579), + [sym_preproc_ifdef] = STATE(579), + [sym_function_definition] = STATE(579), + [sym_declaration] = STATE(579), + [sym_type_definition] = STATE(579), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4661), + [sym_linkage_specification] = STATE(579), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6459), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(410), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2798), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(562), + [sym_statement] = STATE(579), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(579), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1867), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(579), + [sym_template_instantiation] = STATE(579), + [sym_operator_cast] = STATE(6932), + [sym__constructor_specifiers] = STATE(1867), + [sym_operator_cast_definition] = STATE(579), + [sym_operator_cast_declaration] = STATE(579), + [sym_constructor_or_destructor_definition] = STATE(579), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(579), + [sym_namespace_alias_definition] = STATE(579), + [sym_using_declaration] = STATE(579), + [sym_alias_declaration] = STATE(579), + [sym_static_assert_declaration] = STATE(579), + [sym_concept_definition] = STATE(579), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), - [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_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6932), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(144), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1867), + [sym_identifier] = ACTIONS(1212), + [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), @@ -50735,14 +50786,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(1214), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(187), + [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(189), + [anon_sym_using] = ACTIONS(45), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -50753,8 +50804,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(1224), + [anon_sym_LBRACE] = ACTIONS(1216), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -50762,7 +50812,272 @@ 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(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(1218), + [anon_sym___leave] = ACTIONS(1220), + [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(1222), + [anon_sym_import] = ACTIONS(1224), + [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), + }, + [STATE(74)] = { + [sym__block_item] = STATE(75), + [sym_preproc_include] = STATE(75), + [sym_preproc_def] = STATE(75), + [sym_preproc_function_def] = STATE(75), + [sym_preproc_call] = STATE(75), + [sym_preproc_if] = STATE(75), + [sym_preproc_ifdef] = STATE(75), + [sym_function_definition] = STATE(75), + [sym_declaration] = STATE(75), + [sym_type_definition] = STATE(75), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(75), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(75), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(75), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(75), + [sym_template_instantiation] = STATE(75), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(75), + [sym_operator_cast_declaration] = STATE(75), + [sym_constructor_or_destructor_definition] = STATE(75), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(75), + [sym_namespace_alias_definition] = STATE(75), + [sym_using_declaration] = STATE(75), + [sym_alias_declaration] = STATE(75), + [sym_static_assert_declaration] = STATE(75), + [sym_concept_definition] = STATE(75), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), + [sym_qualified_identifier] = STATE(3362), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(75), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(158), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), + [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(1226), + [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), @@ -50855,134 +51170,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(75)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -51017,7 +51332,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), @@ -51118,134 +51433,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(76)] = { + [sym__block_item] = STATE(77), + [sym_preproc_include] = STATE(77), + [sym_preproc_def] = STATE(77), + [sym_preproc_function_def] = STATE(77), + [sym_preproc_call] = STATE(77), + [sym_preproc_if] = STATE(77), + [sym_preproc_ifdef] = STATE(77), + [sym_function_definition] = STATE(77), + [sym_declaration] = STATE(77), + [sym_type_definition] = STATE(77), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(77), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(77), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(77), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(77), + [sym_template_instantiation] = STATE(77), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(77), + [sym_operator_cast_declaration] = STATE(77), + [sym_constructor_or_destructor_definition] = STATE(77), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(77), + [sym_namespace_alias_definition] = STATE(77), + [sym_using_declaration] = STATE(77), + [sym_alias_declaration] = STATE(77), + [sym_static_assert_declaration] = STATE(77), + [sym_concept_definition] = STATE(77), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(77), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -51280,7 +51595,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), @@ -51381,134 +51696,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(77)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -51543,270 +51858,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_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), - [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_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), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(231), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_try] = ACTIONS(233), - [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_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), - }, - [STATE(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), - [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(1232), + [anon_sym_RBRACE] = ACTIONS(1232), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -51908,133 +51960,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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__block_item] = STATE(79), + [sym_preproc_include] = STATE(79), + [sym_preproc_def] = STATE(79), + [sym_preproc_function_def] = STATE(79), + [sym_preproc_call] = STATE(79), + [sym_preproc_if] = STATE(79), + [sym_preproc_ifdef] = STATE(79), + [sym_function_definition] = STATE(79), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(79), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(79), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(79), + [sym_namespace_alias_definition] = STATE(79), + [sym_using_declaration] = STATE(79), + [sym_alias_declaration] = STATE(79), + [sym_static_assert_declaration] = STATE(79), + [sym_concept_definition] = STATE(79), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(79), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -52171,133 +52223,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -52434,133 +52486,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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__block_item] = STATE(81), + [sym_preproc_include] = STATE(81), + [sym_preproc_def] = STATE(81), + [sym_preproc_function_def] = STATE(81), + [sym_preproc_call] = STATE(81), + [sym_preproc_if] = STATE(81), + [sym_preproc_ifdef] = STATE(81), + [sym_function_definition] = STATE(81), + [sym_declaration] = STATE(81), + [sym_type_definition] = STATE(81), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(81), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(81), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(81), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(81), + [sym_template_instantiation] = STATE(81), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(81), + [sym_operator_cast_declaration] = STATE(81), + [sym_constructor_or_destructor_definition] = STATE(81), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [sym_namespace_definition] = STATE(81), + [sym_namespace_alias_definition] = STATE(81), + [sym_using_declaration] = STATE(81), + [sym_alias_declaration] = STATE(81), + [sym_static_assert_declaration] = STATE(81), + [sym_concept_definition] = STATE(81), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(81), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -52697,133 +52749,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -52960,133 +53012,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(83), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(83), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(83), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(83), + [sym_template_instantiation] = STATE(83), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(83), + [sym_operator_cast_declaration] = STATE(83), + [sym_constructor_or_destructor_definition] = STATE(83), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(83), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -53223,133 +53275,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -53486,133 +53538,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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__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(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_linkage_specification] = STATE(44), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(876), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6441), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(728), + [sym_statement] = STATE(44), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym__empty_declaration] = STATE(44), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_explicit_function_specifier] = STATE(1761), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(44), + [sym_template_instantiation] = STATE(44), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1761), + [sym_operator_cast_definition] = STATE(44), + [sym_operator_cast_declaration] = STATE(44), + [sym_constructor_or_destructor_definition] = STATE(44), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(4571), + [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(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5513), [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), + [sym_qualified_type_identifier] = STATE(3138), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_preproc_if_repeat1] = STATE(44), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(158), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_operator_cast_definition_repeat1] = STATE(1833), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1761), [sym_identifier] = ACTIONS(864), [aux_sym_preproc_include_token1] = ACTIONS(169), [aux_sym_preproc_def_token1] = ACTIONS(171), @@ -53749,93 +53801,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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), + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4846), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym_seh_try_statement] = STATE(87), + [sym_seh_leave_statement] = STATE(87), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(86), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(87), [sym_identifier] = ACTIONS(1248), [aux_sym_preproc_include_token1] = ACTIONS(1250), [aux_sym_preproc_def_token1] = ACTIONS(1250), @@ -53977,22 +54029,478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(86)] = { + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4846), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym_seh_try_statement] = STATE(87), + [sym_seh_leave_statement] = STATE(87), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(1248), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token2] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [aux_sym_preproc_else_token1] = ACTIONS(1270), + [aux_sym_preproc_elif_token1] = ACTIONS(1270), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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_AMP] = ACTIONS(1272), + [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(1270), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(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(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), + [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(301), + [anon_sym_else] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(303), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [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), + [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(1270), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(329), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_throw] = ACTIONS(331), + [anon_sym_namespace] = ACTIONS(1270), + [anon_sym_static_assert] = ACTIONS(1270), + [anon_sym_concept] = ACTIONS(1270), + [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), + [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), + }, + [STATE(87)] = { + [sym_declaration] = STATE(87), + [sym_type_definition] = STATE(87), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4846), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(87), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(87), + [sym_labeled_statement] = STATE(87), + [sym_expression_statement] = STATE(87), + [sym_if_statement] = STATE(87), + [sym_switch_statement] = STATE(87), + [sym_while_statement] = STATE(87), + [sym_do_statement] = STATE(87), + [sym_for_statement] = STATE(87), + [sym_return_statement] = STATE(87), + [sym_break_statement] = STATE(87), + [sym_continue_statement] = STATE(87), + [sym_goto_statement] = STATE(87), + [sym_seh_try_statement] = STATE(87), + [sym_seh_leave_statement] = STATE(87), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(87), + [sym_co_return_statement] = STATE(87), + [sym_co_yield_statement] = STATE(87), + [sym_throw_statement] = STATE(87), + [sym_try_statement] = STATE(87), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(87), + [sym_identifier] = ACTIONS(1274), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token2] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), + [aux_sym_preproc_else_token1] = ACTIONS(1277), + [aux_sym_preproc_elif_token1] = ACTIONS(1277), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1277), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1277), + [sym_preproc_directive] = ACTIONS(1277), + [anon_sym_LPAREN2] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1296), + [anon_sym___extension__] = ACTIONS(1299), + [anon_sym_typedef] = ACTIONS(1302), + [anon_sym_virtual] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym___attribute] = ACTIONS(1311), + [anon_sym_using] = ACTIONS(1277), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___based] = ACTIONS(1277), + [anon_sym___cdecl] = ACTIONS(1277), + [anon_sym___clrcall] = ACTIONS(1277), + [anon_sym___stdcall] = ACTIONS(1277), + [anon_sym___fastcall] = ACTIONS(1277), + [anon_sym___thiscall] = ACTIONS(1277), + [anon_sym___vectorcall] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1323), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [anon_sym__Nonnull] = ACTIONS(1332), + [anon_sym_mutable] = ACTIONS(1332), + [anon_sym_constinit] = ACTIONS(1332), + [anon_sym_consteval] = ACTIONS(1332), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_class] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1353), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_switch] = ACTIONS(1356), + [anon_sym_case] = ACTIONS(1277), + [anon_sym_default] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1359), + [anon_sym_do] = ACTIONS(1362), + [anon_sym_for] = ACTIONS(1365), + [anon_sym_return] = ACTIONS(1368), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1374), + [anon_sym_goto] = ACTIONS(1377), + [anon_sym___try] = ACTIONS(1380), + [anon_sym___leave] = ACTIONS(1383), + [anon_sym_not] = ACTIONS(1285), + [anon_sym_compl] = ACTIONS(1285), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1395), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym___asm__] = ACTIONS(1401), + [anon_sym___asm] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1407), + [anon_sym_u_SQUOTE] = ACTIONS(1407), + [anon_sym_U_SQUOTE] = ACTIONS(1407), + [anon_sym_u8_SQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1413), + [sym_false] = ACTIONS(1413), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1419), + [anon_sym_decltype] = ACTIONS(1422), + [anon_sym_explicit] = ACTIONS(1277), + [anon_sym_typename] = ACTIONS(1425), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(1277), + [anon_sym_try] = ACTIONS(1431), + [anon_sym_delete] = ACTIONS(1434), + [anon_sym_throw] = ACTIONS(1437), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_static_assert] = ACTIONS(1277), + [anon_sym_concept] = ACTIONS(1277), + [anon_sym_co_return] = ACTIONS(1440), + [anon_sym_co_yield] = ACTIONS(1443), + [anon_sym_R_DQUOTE] = ACTIONS(1446), + [anon_sym_LR_DQUOTE] = ACTIONS(1446), + [anon_sym_uR_DQUOTE] = ACTIONS(1446), + [anon_sym_UR_DQUOTE] = ACTIONS(1446), + [anon_sym_u8R_DQUOTE] = ACTIONS(1446), + [anon_sym_co_await] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_requires] = ACTIONS(1455), + [sym_this] = ACTIONS(1413), + }, + [STATE(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__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4846), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), [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_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [sym_attributed_statement] = STATE(86), [sym_labeled_statement] = STATE(86), [sym_expression_statement] = STATE(86), @@ -54007,310 +54515,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), [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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [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), - }, - [STATE(87)] = { - [sym_declaration] = STATE(88), - [sym_type_definition] = STATE(88), - [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(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), - [sym_if_statement] = STATE(88), - [sym_switch_statement] = STATE(88), - [sym_while_statement] = STATE(88), - [sym_do_statement] = STATE(88), - [sym_for_statement] = STATE(88), - [sym_return_statement] = STATE(88), - [sym_break_statement] = STATE(88), - [sym_continue_statement] = STATE(88), - [sym_goto_statement] = STATE(88), - [sym_seh_try_statement] = STATE(88), - [sym_seh_leave_statement] = STATE(88), - [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(3154), - [sym_co_await_expression] = STATE(3898), - [sym_new_expression] = STATE(3898), - [sym_delete_expression] = STATE(3898), - [sym_requires_clause] = STATE(3898), - [sym_requires_expression] = STATE(3898), - [sym_lambda_expression] = STATE(3898), - [sym_lambda_capture_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(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), + [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(1254), - [anon_sym_AMP_AMP] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1460), [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(287), [anon_sym___extension__] = ACTIONS(1260), @@ -54319,245 +54599,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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(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(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), - [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(301), - [anon_sym_else] = ACTIONS(1454), - [anon_sym_switch] = ACTIONS(303), - [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), - [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), - [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(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(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), - [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), - }, - [STATE(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(1254), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [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(1458), - [anon_sym_COLON_COLON] = ACTIONS(47), - [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(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), @@ -54663,20 +54715,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(89)] = { [sym_declaration] = STATE(85), [sym_type_definition] = STATE(85), - [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__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4846), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), [sym_compound_statement] = STATE(85), - [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_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [sym_attributed_statement] = STATE(85), [sym_labeled_statement] = STATE(85), [sym_expression_statement] = STATE(85), @@ -54691,62 +54743,62 @@ 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(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_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), [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(3154), - [sym_co_await_expression] = STATE(3898), - [sym_new_expression] = STATE(3898), - [sym_delete_expression] = STATE(3898), - [sym_requires_clause] = STATE(3898), - [sym_requires_expression] = STATE(3898), - [sym_lambda_expression] = STATE(3898), - [sym_lambda_capture_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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(205), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [aux_sym_case_statement_repeat1] = STATE(85), [sym_identifier] = ACTIONS(1248), [aux_sym_preproc_include_token1] = ACTIONS(1462), @@ -54891,20 +54943,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(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__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4800), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), [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_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [sym_attributed_statement] = STATE(90), [sym_labeled_statement] = STATE(90), [sym_expression_statement] = STATE(90), @@ -54919,135 +54971,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), [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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [aux_sym_case_statement_repeat1] = STATE(90), - [ts_builtin_sym_end] = ACTIONS(1287), + [ts_builtin_sym_end] = ACTIONS(1291), [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), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), + [sym_preproc_directive] = ACTIONS(1277), + [anon_sym_LPAREN2] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), [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_virtual] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym___attribute] = ACTIONS(1311), + [anon_sym_using] = ACTIONS(1277), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___based] = ACTIONS(1277), + [anon_sym___cdecl] = ACTIONS(1277), + [anon_sym___clrcall] = ACTIONS(1277), + [anon_sym___stdcall] = ACTIONS(1277), + [anon_sym___fastcall] = ACTIONS(1277), + [anon_sym___thiscall] = ACTIONS(1277), + [anon_sym___vectorcall] = ACTIONS(1277), [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_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [anon_sym__Nonnull] = ACTIONS(1332), + [anon_sym_mutable] = ACTIONS(1332), + [anon_sym_constinit] = ACTIONS(1332), + [anon_sym_consteval] = ACTIONS(1332), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_class] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1350), [anon_sym_if] = ACTIONS(1481), - [anon_sym_else] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1277), [anon_sym_switch] = ACTIONS(1484), - [anon_sym_case] = ACTIONS(1273), - [anon_sym_default] = ACTIONS(1273), + [anon_sym_case] = ACTIONS(1277), + [anon_sym_default] = ACTIONS(1277), [anon_sym_while] = ACTIONS(1487), [anon_sym_do] = ACTIONS(1490), [anon_sym_for] = ACTIONS(1493), @@ -55057,186 +55109,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_not] = ACTIONS(1285), + [anon_sym_compl] = ACTIONS(1285), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1395), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym___asm__] = ACTIONS(1401), + [anon_sym___asm] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1407), + [anon_sym_u_SQUOTE] = ACTIONS(1407), + [anon_sym_U_SQUOTE] = ACTIONS(1407), + [anon_sym_u8_SQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1413), + [sym_false] = ACTIONS(1413), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1419), + [anon_sym_decltype] = ACTIONS(1422), + [anon_sym_explicit] = ACTIONS(1277), + [anon_sym_typename] = ACTIONS(1425), + [anon_sym_export] = ACTIONS(1277), + [anon_sym_module] = ACTIONS(1277), + [anon_sym_import] = ACTIONS(1277), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(1277), [anon_sym_try] = ACTIONS(1514), - [anon_sym_delete] = ACTIONS(1430), + [anon_sym_delete] = ACTIONS(1434), [anon_sym_throw] = ACTIONS(1517), - [anon_sym_namespace] = ACTIONS(1273), - [anon_sym_static_assert] = ACTIONS(1273), - [anon_sym_concept] = ACTIONS(1273), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_static_assert] = ACTIONS(1277), + [anon_sym_concept] = ACTIONS(1277), [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), + [anon_sym_R_DQUOTE] = ACTIONS(1446), + [anon_sym_LR_DQUOTE] = ACTIONS(1446), + [anon_sym_uR_DQUOTE] = ACTIONS(1446), + [anon_sym_UR_DQUOTE] = ACTIONS(1446), + [anon_sym_u8R_DQUOTE] = ACTIONS(1446), + [anon_sym_co_await] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_requires] = ACTIONS(1455), + [sym_this] = ACTIONS(1413), }, [STATE(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_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4800), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(94), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(94), + [ts_builtin_sym_end] = ACTIONS(1460), [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_ifdef_token1] = ACTIONS(1462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1462), - [sym_preproc_directive] = ACTIONS(1462), + [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(1254), - [anon_sym_AMP_AMP] = ACTIONS(1464), + [anon_sym_AMP_AMP] = ACTIONS(1460), [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), [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_using] = ACTIONS(1458), [anon_sym_COLON_COLON] = ACTIONS(47), [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(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -55271,10 +55323,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(1458), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), + [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), @@ -55282,8 +55334,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -55317,19 +55369,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(1458), [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1462), - [anon_sym_module] = ACTIONS(1462), - [anon_sym_import] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_import] = ACTIONS(1458), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1462), + [anon_sym_operator] = ACTIONS(1458), [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(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), @@ -55345,20 +55397,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(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__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4800), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), [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_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [sym_attributed_statement] = STATE(90), [sym_labeled_statement] = STATE(90), [sym_expression_statement] = STATE(90), @@ -55373,97 +55425,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), [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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [aux_sym_case_statement_repeat1] = STATE(90), - [ts_builtin_sym_end] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1256), [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), + [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(1254), - [anon_sym_AMP_AMP] = ACTIONS(1460), + [anon_sym_AMP_AMP] = ACTIONS(1256), [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), [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(1458), + [anon_sym_using] = ACTIONS(1250), [anon_sym_COLON_COLON] = ACTIONS(47), [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(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), @@ -55498,10 +55550,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(1458), + [anon_sym_else] = ACTIONS(1250), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), + [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), @@ -55509,8 +55561,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -55544,19 +55596,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(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_export] = ACTIONS(1250), + [anon_sym_module] = ACTIONS(1250), + [anon_sym_import] = ACTIONS(1250), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1458), + [anon_sym_operator] = ACTIONS(1250), [anon_sym_try] = ACTIONS(143), [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_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), @@ -55570,127 +55622,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4800), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(92), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(92), + [ts_builtin_sym_end] = ACTIONS(1464), [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), + [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(1254), - [anon_sym_AMP_AMP] = ACTIONS(1256), + [anon_sym_AMP_AMP] = ACTIONS(1464), [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), [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(1250), + [anon_sym_using] = ACTIONS(1462), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [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___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(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -55725,10 +55777,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(1250), + [anon_sym_else] = ACTIONS(1462), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), [anon_sym_while] = ACTIONS(89), [anon_sym_do] = ACTIONS(91), [anon_sym_for] = ACTIONS(93), @@ -55736,8 +55788,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -55771,19 +55823,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(1250), + [anon_sym_explicit] = ACTIONS(1462), [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(1250), + [anon_sym_export] = ACTIONS(1462), + [anon_sym_module] = ACTIONS(1462), + [anon_sym_import] = ACTIONS(1462), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1250), + [anon_sym_operator] = ACTIONS(1462), [anon_sym_try] = ACTIONS(143), [anon_sym_delete] = ACTIONS(145), [anon_sym_throw] = ACTIONS(147), - [anon_sym_namespace] = ACTIONS(1250), - [anon_sym_static_assert] = ACTIONS(1250), - [anon_sym_concept] = ACTIONS(1250), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_static_assert] = ACTIONS(1462), + [anon_sym_concept] = ACTIONS(1462), [anon_sym_co_return] = ACTIONS(155), [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -55797,127 +55849,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4800), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(90), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(90), + [ts_builtin_sym_end] = ACTIONS(1272), [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), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), [anon_sym_LPAREN2] = ACTIONS(1252), [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_AMP] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1272), [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), [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(1454), + [anon_sym_using] = ACTIONS(1270), [anon_sym_COLON_COLON] = ACTIONS(47), [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(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -55952,10 +56004,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(1270), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), [anon_sym_while] = ACTIONS(89), [anon_sym_do] = ACTIONS(91), [anon_sym_for] = ACTIONS(93), @@ -55963,8 +56015,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -55998,19 +56050,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(1270), [anon_sym_typename] = ACTIONS(131), - [anon_sym_export] = ACTIONS(1454), - [anon_sym_module] = ACTIONS(1454), - [anon_sym_import] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_import] = ACTIONS(1270), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1454), + [anon_sym_operator] = ACTIONS(1270), [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(1270), + [anon_sym_static_assert] = ACTIONS(1270), + [anon_sym_concept] = ACTIONS(1270), [anon_sym_co_return] = ACTIONS(155), [anon_sym_co_yield] = ACTIONS(157), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -56024,318 +56076,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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_declaration] = STATE(102), + [sym_type_definition] = STATE(102), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(102), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(102), [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), - }, - [STATE(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), @@ -56351,7 +56179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1256), [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1592), + [anon_sym___extension__] = ACTIONS(1532), [anon_sym_typedef] = ACTIONS(185), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), @@ -56471,129 +56299,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(96)] = { + [sym_declaration] = STATE(102), + [sym_type_definition] = STATE(102), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(102), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(102), + [sym_identifier] = ACTIONS(1530), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), [anon_sym_LPAREN2] = ACTIONS(1252), [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_AMP] = ACTIONS(1456), + [anon_sym_AMP_AMP] = ACTIONS(1272), [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(1532), + [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(1270), [anon_sym_COLON_COLON] = ACTIONS(47), [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(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_RBRACE] = ACTIONS(1272), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -56626,20 +56454,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(1270), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [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), @@ -56673,18 +56501,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(1270), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1454), - [anon_sym_try] = ACTIONS(926), + [anon_sym_operator] = ACTIONS(1270), + [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(1270), + [anon_sym_static_assert] = ACTIONS(1270), + [anon_sym_concept] = ACTIONS(1270), + [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), @@ -56695,129 +56523,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(97)] = { + [sym_declaration] = STATE(96), + [sym_type_definition] = STATE(96), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(96), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(96), + [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(1252), [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_AMP] = ACTIONS(1464), + [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_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(1532), + [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(1462), + [anon_sym_using] = ACTIONS(1458), [anon_sym_COLON_COLON] = ACTIONS(47), [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_LBRACE] = ACTIONS(894), + [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_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -56850,20 +56678,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(1462), - [anon_sym_switch] = ACTIONS(900), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_default] = ACTIONS(1462), - [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(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_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -56897,18 +56725,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(1462), + [anon_sym_explicit] = ACTIONS(1458), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1462), - [anon_sym_try] = ACTIONS(926), + [anon_sym_operator] = ACTIONS(1458), + [anon_sym_try] = ACTIONS(233), [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_co_return] = ACTIONS(936), - [anon_sym_co_yield] = ACTIONS(938), + [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_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -56919,95 +56747,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(98)] = { + [sym_declaration] = STATE(100), + [sym_type_definition] = STATE(100), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4691), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(100), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(100), + [sym_identifier] = ACTIONS(1534), [aux_sym_preproc_include_token1] = ACTIONS(1458), [aux_sym_preproc_def_token1] = ACTIONS(1458), [aux_sym_preproc_if_token1] = ACTIONS(1458), @@ -57023,9 +56851,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(996), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), @@ -57041,7 +56869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(1458), [anon_sym___thiscall] = ACTIONS(1458), [anon_sym___vectorcall] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57074,20 +56902,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_if] = ACTIONS(1006), [anon_sym_else] = ACTIONS(1458), - [anon_sym_switch] = ACTIONS(900), + [anon_sym_switch] = ACTIONS(1008), [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_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -57125,14 +56953,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), [anon_sym_operator] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(1034), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(1036), [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_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -57143,129 +56971,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(99)] = { + [sym_declaration] = STATE(103), + [sym_type_definition] = STATE(103), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4691), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(103), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(103), + [sym_identifier] = ACTIONS(1534), + [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(1252), [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_AMP] = ACTIONS(1256), + [anon_sym_AMP_AMP] = ACTIONS(1464), [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(888), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(996), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1250), + [anon_sym_using] = ACTIONS(1462), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [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___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(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57298,20 +57126,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(1250), - [anon_sym_switch] = ACTIONS(900), - [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), - [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(1006), + [anon_sym_else] = ACTIONS(1462), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -57345,18 +57173,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(1250), + [anon_sym_explicit] = ACTIONS(1462), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(926), + [anon_sym_operator] = ACTIONS(1462), + [anon_sym_try] = ACTIONS(1034), [anon_sym_delete] = ACTIONS(145), - [anon_sym_throw] = ACTIONS(928), - [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_throw] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_static_assert] = ACTIONS(1462), + [anon_sym_concept] = ACTIONS(1462), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -57367,23 +57195,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(101)] = { + [STATE(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__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4691), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), [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_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [sym_attributed_statement] = STATE(101), [sym_labeled_statement] = STATE(101), [sym_expression_statement] = STATE(101), @@ -57398,322 +57226,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), [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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [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), - }, - [STATE(102)] = { - [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(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), + [sym_identifier] = ACTIONS(1534), + [aux_sym_preproc_include_token1] = ACTIONS(1270), + [aux_sym_preproc_def_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token1] = ACTIONS(1270), + [aux_sym_preproc_if_token2] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1270), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1270), + [sym_preproc_directive] = ACTIONS(1270), [anon_sym_LPAREN2] = ACTIONS(1252), [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_AMP] = ACTIONS(1460), + [anon_sym_AMP_AMP] = ACTIONS(1272), [anon_sym_AMP] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1592), - [anon_sym_typedef] = ACTIONS(185), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(996), [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(1270), [anon_sym_COLON_COLON] = ACTIONS(47), [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(1270), + [anon_sym___cdecl] = ACTIONS(1270), + [anon_sym___clrcall] = ACTIONS(1270), + [anon_sym___stdcall] = ACTIONS(1270), + [anon_sym___fastcall] = ACTIONS(1270), + [anon_sym___thiscall] = ACTIONS(1270), + [anon_sym___vectorcall] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57746,20 +57350,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(1006), + [anon_sym_else] = ACTIONS(1270), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1270), + [anon_sym_default] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -57793,18 +57397,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(1270), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1458), - [anon_sym_try] = ACTIONS(233), + [anon_sym_operator] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_namespace] = ACTIONS(1270), + [anon_sym_static_assert] = ACTIONS(1270), + [anon_sym_concept] = ACTIONS(1270), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -57815,23 +57419,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(103)] = { + [STATE(101)] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4691), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(1538), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token2] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), + [sym_preproc_directive] = ACTIONS(1277), + [anon_sym_LPAREN2] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym___extension__] = ACTIONS(1544), + [anon_sym_typedef] = ACTIONS(1547), + [anon_sym_virtual] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym___attribute] = ACTIONS(1311), + [anon_sym_using] = ACTIONS(1277), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___based] = ACTIONS(1277), + [anon_sym___cdecl] = ACTIONS(1277), + [anon_sym___clrcall] = ACTIONS(1277), + [anon_sym___stdcall] = ACTIONS(1277), + [anon_sym___fastcall] = ACTIONS(1277), + [anon_sym___thiscall] = ACTIONS(1277), + [anon_sym___vectorcall] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1550), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [anon_sym__Nonnull] = ACTIONS(1332), + [anon_sym_mutable] = ACTIONS(1332), + [anon_sym_constinit] = ACTIONS(1332), + [anon_sym_consteval] = ACTIONS(1332), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_class] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1553), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_switch] = ACTIONS(1556), + [anon_sym_case] = ACTIONS(1277), + [anon_sym_default] = ACTIONS(1277), + [anon_sym_while] = ACTIONS(1559), + [anon_sym_do] = ACTIONS(1562), + [anon_sym_for] = ACTIONS(1565), + [anon_sym_return] = ACTIONS(1568), + [anon_sym_break] = ACTIONS(1571), + [anon_sym_continue] = ACTIONS(1574), + [anon_sym_goto] = ACTIONS(1577), + [anon_sym___try] = ACTIONS(1580), + [anon_sym___leave] = ACTIONS(1583), + [anon_sym_not] = ACTIONS(1285), + [anon_sym_compl] = ACTIONS(1285), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1395), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym___asm__] = ACTIONS(1401), + [anon_sym___asm] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1407), + [anon_sym_u_SQUOTE] = ACTIONS(1407), + [anon_sym_U_SQUOTE] = ACTIONS(1407), + [anon_sym_u8_SQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1413), + [sym_false] = ACTIONS(1413), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1419), + [anon_sym_decltype] = ACTIONS(1422), + [anon_sym_explicit] = ACTIONS(1277), + [anon_sym_typename] = ACTIONS(1425), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(1277), + [anon_sym_try] = ACTIONS(1586), + [anon_sym_delete] = ACTIONS(1434), + [anon_sym_throw] = ACTIONS(1589), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_static_assert] = ACTIONS(1277), + [anon_sym_concept] = ACTIONS(1277), + [anon_sym_co_return] = ACTIONS(1592), + [anon_sym_co_yield] = ACTIONS(1595), + [anon_sym_R_DQUOTE] = ACTIONS(1446), + [anon_sym_LR_DQUOTE] = ACTIONS(1446), + [anon_sym_uR_DQUOTE] = ACTIONS(1446), + [anon_sym_UR_DQUOTE] = ACTIONS(1446), + [anon_sym_u8R_DQUOTE] = ACTIONS(1446), + [anon_sym_co_await] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_requires] = ACTIONS(1455), + [sym_this] = ACTIONS(1413), + }, + [STATE(102)] = { [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__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), [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_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [sym_attributed_statement] = STATE(102), [sym_labeled_statement] = STATE(102), [sym_expression_statement] = STATE(102), @@ -57846,98 +57674,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), [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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [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), + [sym_identifier] = ACTIONS(1598), + [aux_sym_preproc_include_token1] = ACTIONS(1277), + [aux_sym_preproc_def_token1] = ACTIONS(1277), + [aux_sym_preproc_if_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1277), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1277), + [sym_preproc_directive] = ACTIONS(1277), + [anon_sym_LPAREN2] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1293), + [anon_sym_SEMI] = ACTIONS(1601), + [anon_sym___extension__] = ACTIONS(1604), + [anon_sym_typedef] = ACTIONS(1607), + [anon_sym_virtual] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym___attribute] = ACTIONS(1311), + [anon_sym_using] = ACTIONS(1277), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym___based] = ACTIONS(1277), + [anon_sym___cdecl] = ACTIONS(1277), + [anon_sym___clrcall] = ACTIONS(1277), + [anon_sym___stdcall] = ACTIONS(1277), + [anon_sym___fastcall] = ACTIONS(1277), + [anon_sym___thiscall] = ACTIONS(1277), + [anon_sym___vectorcall] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1291), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [anon_sym__Nonnull] = ACTIONS(1332), + [anon_sym_mutable] = ACTIONS(1332), + [anon_sym_constinit] = ACTIONS(1332), + [anon_sym_consteval] = ACTIONS(1332), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_class] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1613), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_switch] = ACTIONS(1616), + [anon_sym_case] = ACTIONS(1277), + [anon_sym_default] = ACTIONS(1277), + [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(1285), + [anon_sym_compl] = ACTIONS(1285), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1395), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym___asm__] = ACTIONS(1401), + [anon_sym___asm] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1407), + [anon_sym_u_SQUOTE] = ACTIONS(1407), + [anon_sym_U_SQUOTE] = ACTIONS(1407), + [anon_sym_u8_SQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1413), + [sym_false] = ACTIONS(1413), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1419), + [anon_sym_decltype] = ACTIONS(1422), + [anon_sym_explicit] = ACTIONS(1277), + [anon_sym_typename] = ACTIONS(1425), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_operator] = ACTIONS(1277), + [anon_sym_try] = ACTIONS(1646), + [anon_sym_delete] = ACTIONS(1434), + [anon_sym_throw] = ACTIONS(1649), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_static_assert] = ACTIONS(1277), + [anon_sym_concept] = ACTIONS(1277), + [anon_sym_co_return] = ACTIONS(1652), + [anon_sym_co_yield] = ACTIONS(1655), + [anon_sym_R_DQUOTE] = ACTIONS(1446), + [anon_sym_LR_DQUOTE] = ACTIONS(1446), + [anon_sym_uR_DQUOTE] = ACTIONS(1446), + [anon_sym_UR_DQUOTE] = ACTIONS(1446), + [anon_sym_u8R_DQUOTE] = ACTIONS(1446), + [anon_sym_co_await] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_requires] = ACTIONS(1455), + [sym_this] = ACTIONS(1413), + }, + [STATE(103)] = { + [sym_declaration] = STATE(101), + [sym_type_definition] = STATE(101), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4691), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(101), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(101), + [sym_identifier] = ACTIONS(1534), + [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(1254), - [anon_sym_AMP_AMP] = ACTIONS(1456), + [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_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(1536), + [anon_sym_typedef] = ACTIONS(996), [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(1250), [anon_sym_COLON_COLON] = ACTIONS(47), [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(866), - [anon_sym_RBRACE] = ACTIONS(1456), + [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(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57970,20 +58022,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(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_if] = ACTIONS(1006), + [anon_sym_else] = ACTIONS(1250), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1250), + [anon_sym_default] = ACTIONS(1250), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -58017,18 +58069,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(1250), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1454), - [anon_sym_try] = ACTIONS(233), + [anon_sym_operator] = ACTIONS(1250), + [anon_sym_try] = ACTIONS(1034), [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_throw] = ACTIONS(1036), + [anon_sym_namespace] = ACTIONS(1250), + [anon_sym_static_assert] = ACTIONS(1250), + [anon_sym_concept] = ACTIONS(1250), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -58040,94 +58092,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(104)] = { - [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), + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(95), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [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(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [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(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(95), + [sym_identifier] = ACTIONS(1530), [aux_sym_preproc_include_token1] = ACTIONS(1462), [aux_sym_preproc_def_token1] = ACTIONS(1462), [aux_sym_preproc_if_token1] = ACTIONS(1462), @@ -58143,7 +58195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1464), [anon_sym_AMP] = ACTIONS(1258), [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1592), + [anon_sym___extension__] = ACTIONS(1532), [anon_sym_typedef] = ACTIONS(185), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), @@ -58264,95 +58316,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(105)] = { - [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), + [sym_declaration] = STATE(590), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(590), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4460), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7940), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1530), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58466,94 +58518,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(106)] = { - [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), + [sym_declaration] = STATE(440), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4800), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(410), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(440), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1526), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58561,9 +58613,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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_SEMI] = ACTIONS(1214), + [anon_sym___extension__] = ACTIONS(1658), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), @@ -58571,7 +58622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -58604,18 +58655,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(1458), - [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(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(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -58651,11 +58703,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(143), [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(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), @@ -58667,94 +58719,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(107)] = { - [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), + [sym_declaration] = STATE(558), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4691), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(519), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(558), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1534), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -58762,7 +58814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), + [anon_sym_SEMI] = ACTIONS(992), [anon_sym___extension__] = ACTIONS(1658), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), @@ -58771,7 +58823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(297), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -58804,19 +58856,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(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -58852,11 +58904,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -58870,20 +58922,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), [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_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [sym_attributed_statement] = STATE(111), [sym_labeled_statement] = STATE(111), [sym_expression_statement] = STATE(111), @@ -58898,62 +58950,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), [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), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(176), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [aux_sym_case_statement_repeat1] = STATE(111), [sym_identifier] = ACTIONS(1660), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -59007,7 +59059,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(1250), + [anon_sym_else] = ACTIONS(1462), [anon_sym_switch] = ACTIONS(1672), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), @@ -59069,94 +59121,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(109)] = { - [sym_declaration] = STATE(438), - [sym__declaration_modifiers] = STATE(2095), + [sym_declaration] = STATE(113), + [sym_type_definition] = STATE(113), + [sym__declaration_modifiers] = STATE(2054), [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), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(113), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym_seh_try_statement] = STATE(113), + [sym_seh_leave_statement] = STATE(113), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(113), + [sym_co_return_statement] = STATE(113), + [sym_co_yield_statement] = STATE(113), + [sym_throw_statement] = STATE(113), + [sym_try_statement] = STATE(113), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(1660), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59164,8 +59216,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1658), + [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), @@ -59173,7 +59226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(1668), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59206,19 +59259,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(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_if] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1270), + [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), @@ -59254,11 +59306,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1692), [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(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), @@ -59270,94 +59322,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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), + [sym_declaration] = STATE(265), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4846), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(242), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(242), + [sym_statement] = STATE(265), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(205), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1248), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59365,7 +59417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym___extension__] = ACTIONS(1658), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), @@ -59374,7 +59426,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(47), [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), @@ -59407,19 +59459,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_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_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), @@ -59455,11 +59507,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), + [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), @@ -59471,295 +59523,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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(3898), - [sym_assignment_expression] = STATE(3898), - [sym_pointer_expression] = STATE(3323), - [sym_unary_expression] = STATE(3898), - [sym_binary_expression] = STATE(3898), - [sym_update_expression] = STATE(3898), - [sym_cast_expression] = STATE(3898), - [sym_sizeof_expression] = STATE(3898), - [sym_alignof_expression] = STATE(3898), - [sym_offsetof_expression] = STATE(3898), - [sym_generic_expression] = STATE(3898), - [sym_subscript_expression] = STATE(3323), - [sym_call_expression] = STATE(3323), - [sym_gnu_asm_expression] = STATE(3898), - [sym_extension_expression] = STATE(3898), - [sym_field_expression] = STATE(3323), - [sym_compound_literal_expression] = STATE(3898), - [sym_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), + [sym_declaration] = STATE(113), + [sym_type_definition] = STATE(113), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(113), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym_seh_try_statement] = STATE(113), + [sym_seh_leave_statement] = STATE(113), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(113), + [sym_co_return_statement] = STATE(113), + [sym_co_yield_statement] = STATE(113), + [sym_throw_statement] = STATE(113), + [sym_try_statement] = STATE(113), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [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), - }, - [STATE(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), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(1660), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59767,8 +59618,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(884), - [anon_sym___extension__] = ACTIONS(1658), + [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), @@ -59776,7 +59628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(1668), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59809,19 +59661,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(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_if] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1250), + [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), @@ -59857,11 +59708,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(926), + [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), @@ -59872,95 +59723,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(113)] = { - [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), + [STATE(112)] = { + [sym_declaration] = STATE(590), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4664), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(590), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1530), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -59968,9 +59819,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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_SEMI] = ACTIONS(181), + [anon_sym___extension__] = ACTIONS(1658), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), @@ -59978,7 +59828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(47), [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), @@ -60011,18 +59861,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(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_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), @@ -60058,11 +59909,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), + [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), @@ -60073,94 +59924,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, + [STATE(113)] = { + [sym_declaration] = STATE(113), + [sym_type_definition] = STATE(113), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(113), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(113), + [sym_labeled_statement] = STATE(113), + [sym_expression_statement] = STATE(113), + [sym_if_statement] = STATE(113), + [sym_switch_statement] = STATE(113), + [sym_while_statement] = STATE(113), + [sym_do_statement] = STATE(113), + [sym_for_statement] = STATE(113), + [sym_return_statement] = STATE(113), + [sym_break_statement] = STATE(113), + [sym_continue_statement] = STATE(113), + [sym_goto_statement] = STATE(113), + [sym_seh_try_statement] = STATE(113), + [sym_seh_leave_statement] = STATE(113), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(113), + [sym_co_return_statement] = STATE(113), + [sym_co_yield_statement] = STATE(113), + [sym_throw_statement] = STATE(113), + [sym_try_statement] = STATE(113), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(1700), + [anon_sym_LPAREN2] = ACTIONS(1279), + [anon_sym_BANG] = ACTIONS(1282), + [anon_sym_TILDE] = ACTIONS(1282), + [anon_sym_DASH] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1285), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym___extension__] = ACTIONS(1706), + [anon_sym_typedef] = ACTIONS(1709), + [anon_sym_virtual] = ACTIONS(1305), + [anon_sym_extern] = ACTIONS(1308), + [anon_sym___attribute__] = ACTIONS(1311), + [anon_sym___attribute] = ACTIONS(1311), + [anon_sym_COLON_COLON] = ACTIONS(1314), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1317), + [anon_sym___declspec] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1712), + [anon_sym_signed] = ACTIONS(1326), + [anon_sym_unsigned] = ACTIONS(1326), + [anon_sym_long] = ACTIONS(1326), + [anon_sym_short] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1329), + [anon_sym_static] = ACTIONS(1308), + [anon_sym_register] = ACTIONS(1308), + [anon_sym_inline] = ACTIONS(1308), + [anon_sym___inline] = ACTIONS(1308), + [anon_sym___inline__] = ACTIONS(1308), + [anon_sym___forceinline] = ACTIONS(1308), + [anon_sym_thread_local] = ACTIONS(1308), + [anon_sym___thread] = ACTIONS(1308), + [anon_sym_const] = ACTIONS(1332), + [anon_sym_constexpr] = ACTIONS(1332), + [anon_sym_volatile] = ACTIONS(1332), + [anon_sym_restrict] = ACTIONS(1332), + [anon_sym___restrict__] = ACTIONS(1332), + [anon_sym__Atomic] = ACTIONS(1332), + [anon_sym__Noreturn] = ACTIONS(1332), + [anon_sym_noreturn] = ACTIONS(1332), + [anon_sym__Nonnull] = ACTIONS(1332), + [anon_sym_mutable] = ACTIONS(1332), + [anon_sym_constinit] = ACTIONS(1332), + [anon_sym_consteval] = ACTIONS(1332), + [anon_sym_alignas] = ACTIONS(1335), + [anon_sym__Alignas] = ACTIONS(1335), + [sym_primitive_type] = ACTIONS(1338), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_class] = ACTIONS(1344), + [anon_sym_struct] = ACTIONS(1347), + [anon_sym_union] = ACTIONS(1350), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1277), + [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(1285), + [anon_sym_compl] = ACTIONS(1285), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_sizeof] = ACTIONS(1389), + [anon_sym___alignof__] = ACTIONS(1392), + [anon_sym___alignof] = ACTIONS(1392), + [anon_sym__alignof] = ACTIONS(1392), + [anon_sym_alignof] = ACTIONS(1392), + [anon_sym__Alignof] = ACTIONS(1392), + [anon_sym_offsetof] = ACTIONS(1395), + [anon_sym__Generic] = ACTIONS(1398), + [anon_sym_asm] = ACTIONS(1401), + [anon_sym___asm__] = ACTIONS(1401), + [anon_sym___asm] = ACTIONS(1401), + [sym_number_literal] = ACTIONS(1404), + [anon_sym_L_SQUOTE] = ACTIONS(1407), + [anon_sym_u_SQUOTE] = ACTIONS(1407), + [anon_sym_U_SQUOTE] = ACTIONS(1407), + [anon_sym_u8_SQUOTE] = ACTIONS(1407), + [anon_sym_SQUOTE] = ACTIONS(1407), + [anon_sym_L_DQUOTE] = ACTIONS(1410), + [anon_sym_u_DQUOTE] = ACTIONS(1410), + [anon_sym_U_DQUOTE] = ACTIONS(1410), + [anon_sym_u8_DQUOTE] = ACTIONS(1410), + [anon_sym_DQUOTE] = ACTIONS(1410), + [sym_true] = ACTIONS(1413), + [sym_false] = ACTIONS(1413), + [anon_sym_NULL] = ACTIONS(1416), + [anon_sym_nullptr] = ACTIONS(1416), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1419), + [anon_sym_decltype] = ACTIONS(1422), + [anon_sym_typename] = ACTIONS(1425), + [anon_sym_template] = ACTIONS(1428), + [anon_sym_try] = ACTIONS(1748), + [anon_sym_delete] = ACTIONS(1434), + [anon_sym_throw] = ACTIONS(1751), + [anon_sym_co_return] = ACTIONS(1754), + [anon_sym_co_yield] = ACTIONS(1757), + [anon_sym_R_DQUOTE] = ACTIONS(1446), + [anon_sym_LR_DQUOTE] = ACTIONS(1446), + [anon_sym_uR_DQUOTE] = ACTIONS(1446), + [anon_sym_UR_DQUOTE] = ACTIONS(1446), + [anon_sym_u8R_DQUOTE] = ACTIONS(1446), + [anon_sym_co_await] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1452), + [anon_sym_requires] = ACTIONS(1455), + [sym_this] = ACTIONS(1413), + }, [STATE(114)] = { - [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), + [sym_declaration] = STATE(955), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(940), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(940), + [sym_statement] = STATE(955), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym_seh_try_statement] = STATE(940), + [sym_seh_leave_statement] = STATE(940), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), [aux_sym_attributed_declarator_repeat1] = STATE(176), - [aux_sym_sized_type_specifier_repeat1] = STATE(2385), - [aux_sym_case_statement_repeat1] = STATE(108), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [sym_identifier] = ACTIONS(1660), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -60170,8 +60222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(1658), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), @@ -60213,8 +60264,9 @@ 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(1462), [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), @@ -60275,94 +60327,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(115)] = { - [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), + [sym_declaration] = STATE(109), + [sym_type_definition] = STATE(109), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4759), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(109), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(109), + [sym_labeled_statement] = STATE(109), + [sym_expression_statement] = STATE(109), + [sym_if_statement] = STATE(109), + [sym_switch_statement] = STATE(109), + [sym_while_statement] = STATE(109), + [sym_do_statement] = STATE(109), + [sym_for_statement] = STATE(109), + [sym_return_statement] = STATE(109), + [sym_break_statement] = STATE(109), + [sym_continue_statement] = STATE(109), + [sym_goto_statement] = STATE(109), + [sym_seh_try_statement] = STATE(109), + [sym_seh_leave_statement] = STATE(109), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(109), + [sym_co_return_statement] = STATE(109), + [sym_co_yield_statement] = STATE(109), + [sym_throw_statement] = STATE(109), + [sym_try_statement] = STATE(109), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(176), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_case_statement_repeat1] = STATE(109), + [sym_identifier] = ACTIONS(1660), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60370,8 +60422,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), - [anon_sym___extension__] = ACTIONS(1658), + [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), @@ -60379,7 +60432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(47), [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), @@ -60412,19 +60465,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(1458), + [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), @@ -60460,11 +60512,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(127), [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), + [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), @@ -60476,94 +60528,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(116)] = { - [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), + [sym_declaration] = STATE(440), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4800), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(946), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_compound_statement] = STATE(566), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(440), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1764), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -60571,7 +60623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(181), [anon_sym___extension__] = ACTIONS(1658), [anon_sym_virtual] = ACTIONS(1262), [anon_sym_extern] = ACTIONS(63), @@ -60613,19 +60665,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_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), + [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(1216), - [anon_sym___leave] = ACTIONS(1218), + [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), @@ -60677,76 +60729,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(117)] = { - [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_declaration] = STATE(430), + [sym_type_definition] = STATE(4143), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4844), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_expression_statement] = STATE(4143), + [sym__for_statement_body] = STATE(8529), + [sym_expression] = STATE(4521), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8534), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_alias_declaration] = STATE(4143), + [sym__for_range_loop_body] = STATE(8564), + [sym_init_statement] = STATE(1959), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [sym_identifier] = ACTIONS(1774), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -60845,76 +60897,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(118)] = { - [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_declaration] = STATE(430), + [sym_type_definition] = STATE(4143), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4844), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_expression_statement] = STATE(4143), + [sym__for_statement_body] = STATE(8177), + [sym_expression] = STATE(4521), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8534), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_alias_declaration] = STATE(4143), + [sym__for_range_loop_body] = STATE(8178), + [sym_init_statement] = STATE(1959), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [sym_identifier] = ACTIONS(1774), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -61013,76 +61065,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(119)] = { - [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_declaration] = STATE(430), + [sym_type_definition] = STATE(4143), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4844), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_expression_statement] = STATE(4143), + [sym__for_statement_body] = STATE(8191), + [sym_expression] = STATE(4521), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8534), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_alias_declaration] = STATE(4143), + [sym__for_range_loop_body] = STATE(8192), + [sym_init_statement] = STATE(1959), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [sym_identifier] = ACTIONS(1774), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -61181,76 +61233,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(120)] = { - [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_declaration] = STATE(430), + [sym_type_definition] = STATE(4143), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4844), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_expression_statement] = STATE(4143), + [sym__for_statement_body] = STATE(8710), + [sym_expression] = STATE(4521), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8534), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_alias_declaration] = STATE(4143), + [sym__for_range_loop_body] = STATE(8722), + [sym_init_statement] = STATE(1959), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [sym_identifier] = ACTIONS(1774), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -61349,76 +61401,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(121)] = { - [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_declaration] = STATE(430), + [sym_type_definition] = STATE(4143), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4844), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_expression_statement] = STATE(4143), + [sym__for_statement_body] = STATE(8341), + [sym_expression] = STATE(4521), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8534), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_alias_declaration] = STATE(4143), + [sym__for_range_loop_body] = STATE(8911), + [sym_init_statement] = STATE(1959), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [sym_identifier] = ACTIONS(1774), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -61517,76 +61569,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(122)] = { - [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_declaration] = STATE(430), + [sym_type_definition] = STATE(4143), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4844), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_expression_statement] = STATE(4143), + [sym__for_statement_body] = STATE(8905), + [sym_expression] = STATE(4521), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8534), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_alias_declaration] = STATE(4143), + [sym__for_range_loop_body] = STATE(8906), + [sym_init_statement] = STATE(1959), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [sym_identifier] = ACTIONS(1774), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -61685,81 +61737,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(123)] = { - [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_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(5322), + [sym__declarator] = STATE(6818), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8779), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3338), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5751), + [sym_qualified_identifier] = STATE(3408), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(1786), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(1790), @@ -61852,75 +61904,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_declaration] = STATE(1588), + [sym_type_definition] = STATE(1588), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4770), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_expression_statement] = STATE(1588), + [sym_expression] = STATE(4468), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(7909), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_alias_declaration] = STATE(1588), [sym_init_statement] = STATE(134), - [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_condition_declaration] = STATE(8224), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [sym_identifier] = ACTIONS(1774), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -62019,81 +62071,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(5322), + [sym__declarator] = STATE(6818), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8830), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3338), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5751), + [sym_qualified_identifier] = STATE(3408), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(1786), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(1790), @@ -62186,81 +62238,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(5322), + [sym__declarator] = STATE(6818), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_compound_statement] = STATE(8577), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2948), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8577), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8580), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3338), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8582), + [sym__unary_right_fold] = STATE(8584), + [sym__binary_fold] = STATE(8585), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5751), + [sym_qualified_identifier] = STATE(3408), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8588), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(1786), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(1790), @@ -62353,92 +62405,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7433), + [sym_expression] = STATE(3337), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8011), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7433), + [sym_variadic_parameter_declaration] = STATE(7433), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8569), + [sym__unary_right_fold] = STATE(8573), + [sym__binary_fold] = STATE(8574), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5832), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [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_DOT_DOT_DOT] = ACTIONS(1788), + [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), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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), @@ -62466,142 +62518,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(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_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_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), + [anon_sym_typename] = ACTIONS(1914), [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), + [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), }, [STATE(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), + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7433), + [sym_expression] = STATE(3293), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8011), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7433), + [sym_variadic_parameter_declaration] = STATE(7433), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8582), + [sym__unary_right_fold] = STATE(8584), + [sym__binary_fold] = STATE(8585), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5832), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1864), [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_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), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1880), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -62631,142 +62683,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(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_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_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), + [anon_sym_typename] = ACTIONS(1914), [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), + [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), }, [STATE(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), + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7433), + [sym_expression] = STATE(3321), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8011), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7433), + [sym_variadic_parameter_declaration] = STATE(7433), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5832), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1864), [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_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), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1880), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -62796,142 +62848,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(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_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_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), + [anon_sym_typename] = ACTIONS(1914), [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), + [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), }, [STATE(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), + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7433), + [sym_expression] = STATE(3326), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8011), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7433), + [sym_variadic_parameter_declaration] = STATE(7433), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8506), + [sym__unary_right_fold] = STATE(8519), + [sym__binary_fold] = STATE(8589), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5832), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1864), [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_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), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1880), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -62961,142 +63013,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(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_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_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), + [anon_sym_typename] = ACTIONS(1914), [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), + [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), }, [STATE(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), + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7433), + [sym_expression] = STATE(3346), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8011), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7433), + [sym_variadic_parameter_declaration] = STATE(7433), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8300), + [sym__unary_right_fold] = STATE(8301), + [sym__binary_fold] = STATE(8302), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5832), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1864), [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_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), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1880), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -63126,144 +63178,144 @@ 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(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_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_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), + [anon_sym_typename] = ACTIONS(1914), [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), + [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), }, [STATE(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), + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_compound_statement] = STATE(7363), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7405), + [sym_expression] = STATE(4435), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7363), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7405), + [sym_variadic_parameter_declaration] = STATE(7405), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5851), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1926), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), + [anon_sym_RPAREN] = ACTIONS(1930), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(1878), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1898), + [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), @@ -63291,142 +63343,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(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_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(1882), + [anon_sym_typename] = ACTIONS(1914), [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), + [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), }, [STATE(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), + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7433), + [sym_expression] = STATE(3296), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8011), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7433), + [sym_variadic_parameter_declaration] = STATE(7433), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5832), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3523), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(1864), [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_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), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1880), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -63456,122 +63508,122 @@ 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(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_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_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), + [anon_sym_typename] = ACTIONS(1914), [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), + [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), }, [STATE(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__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5356), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_expression] = STATE(4482), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8883), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3069), + [sym_template_function] = STATE(3982), + [sym_condition_declaration] = STATE(8883), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5780), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(3138), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), [sym_identifier] = ACTIONS(1774), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -63971,50 +64023,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1940), }, [STATE(137)] = { - [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_expression] = STATE(2411), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_initializer_list] = STATE(2576), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1942), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), @@ -64119,50 +64171,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1974), }, [STATE(138)] = { - [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_expression] = STATE(2411), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_initializer_list] = STATE(2576), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), @@ -64266,69 +64318,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1974), }, [STATE(139)] = { - [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_compound_statement] = STATE(8664), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2961), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8664), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8505), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8506), + [sym__unary_right_fold] = STATE(8519), + [sym__binary_fold] = STATE(8589), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8159), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -64336,8 +64388,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -64412,215 +64464,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(140)] = { - [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(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), - }, - [STATE(141)] = { - [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_compound_statement] = STATE(8577), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2948), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8577), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8580), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8582), + [sym__unary_right_fold] = STATE(8584), + [sym__binary_fold] = STATE(8585), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8588), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -64628,8 +64534,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -64703,70 +64609,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, + [STATE(141)] = { + [sym_attribute_declaration] = STATE(141), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(573), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(2022), + [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), + }, [STATE(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_compound_statement] = STATE(8577), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2948), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8577), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8340), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8582), + [sym__unary_right_fold] = STATE(8584), + [sym__binary_fold] = STATE(8585), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8588), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -64774,8 +64826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -64850,69 +64902,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8853), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -64920,8 +64972,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -64996,74 +65048,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_attribute_declaration] = STATE(151), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(350), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(151), [sym_identifier] = ACTIONS(2165), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -65072,7 +65124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_using] = ACTIONS(2169), [anon_sym_COLON_COLON] = ACTIONS(47), @@ -65091,8 +65143,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -65143,72 +65195,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(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), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_statement] = STATE(256), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(145), [sym_identifier] = ACTIONS(2173), [anon_sym_LPAREN2] = ACTIONS(2025), @@ -65289,72 +65341,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(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), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_statement] = STATE(256), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(145), [sym_identifier] = ACTIONS(2233), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -65434,69 +65486,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8830), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -65504,8 +65556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -65580,69 +65632,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8727), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -65650,8 +65702,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -65727,72 +65779,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(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), + [sym_compound_statement] = STATE(519), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(546), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(149), [sym_identifier] = ACTIONS(2237), [anon_sym_LPAREN2] = ACTIONS(2025), @@ -65873,72 +65925,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(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), + [sym_compound_statement] = STATE(519), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(546), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(149), [sym_identifier] = ACTIONS(2297), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -65948,27 +66000,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(992), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_using] = ACTIONS(2299), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(1002), [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_if] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -66002,11 +66054,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -66018,215 +66070,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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(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_attribute_declaration] = STATE(151), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(350), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(2301), + [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(2304), + [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(2307), + [anon_sym_LBRACK] = ACTIONS(2054), + [sym_primitive_type] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2310), + [anon_sym_switch] = ACTIONS(2313), + [anon_sym_case] = ACTIONS(2316), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_do] = ACTIONS(2325), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2340), + [anon_sym___try] = ACTIONS(2343), + [anon_sym___leave] = ACTIONS(2346), + [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), - [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), + [anon_sym_decltype] = ACTIONS(2132), + [anon_sym_template] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_delete] = ACTIONS(2141), + [anon_sym_throw] = ACTIONS(2352), + [anon_sym_co_return] = ACTIONS(2355), + [anon_sym_co_yield] = ACTIONS(2358), + [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), }, [STATE(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_compound_statement] = STATE(8664), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2961), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8664), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8107), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8506), + [sym__unary_right_fold] = STATE(8519), + [sym__binary_fold] = STATE(8589), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8159), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -66234,8 +66286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -66310,69 +66362,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8577), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2948), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8577), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8568), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8569), + [sym__unary_right_fold] = STATE(8573), + [sym__binary_fold] = STATE(8574), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8588), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -66380,8 +66432,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -66456,69 +66508,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8577), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2948), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8577), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8950), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8569), + [sym__unary_right_fold] = STATE(8573), + [sym__binary_fold] = STATE(8574), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8588), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -66526,8 +66578,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -66602,56 +66654,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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), + [sym_expression] = STATE(2411), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_initializer_list] = STATE(2576), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2363), + [anon_sym_TILDE] = ACTIONS(2365), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1942), @@ -66671,10 +66723,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(2307), + [anon_sym___extension__] = ACTIONS(2367), [anon_sym___attribute__] = ACTIONS(1942), [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_COLON_COLON] = ACTIONS(2369), [anon_sym_LBRACE] = ACTIONS(1954), [anon_sym_LBRACK] = ACTIONS(1944), [anon_sym_EQ] = ACTIONS(1942), @@ -66693,8 +66745,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(2303), - [anon_sym_compl] = ACTIONS(2303), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -66704,7 +66756,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(2311), + [anon_sym_sizeof] = ACTIONS(2371), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -66718,17 +66770,17 @@ 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(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_number_literal] = ACTIONS(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), @@ -66736,81 +66788,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, [STATE(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_compound_statement] = STATE(8664), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2961), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8664), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8516), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8300), + [sym__unary_right_fold] = STATE(8301), + [sym__binary_fold] = STATE(8302), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8159), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -66818,8 +66870,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -66894,69 +66946,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8872), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -66964,8 +67016,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -67040,75 +67092,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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), + [sym_attribute_declaration] = STATE(141), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(573), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(2385), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -67118,7 +67170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym_SEMI] = ACTIONS(181), [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2327), + [anon_sym_using] = ACTIONS(2387), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), [anon_sym_LBRACE] = ACTIONS(866), @@ -67186,69 +67238,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(159)] = { - [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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8308), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -67256,8 +67308,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -67332,69 +67384,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(160)] = { - [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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8871), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -67402,8 +67454,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -67478,69 +67530,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(161)] = { - [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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8262), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -67548,8 +67600,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -67624,69 +67676,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(162)] = { - [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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8671), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -67694,8 +67746,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -67770,69 +67822,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(163)] = { - [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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8824), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -67840,8 +67892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -67916,69 +67968,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(164)] = { - [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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8779), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -67986,8 +68038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -68062,69 +68114,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8438), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -68132,8 +68184,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -68208,69 +68260,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8476), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -68278,8 +68330,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -68354,69 +68406,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8181), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -68424,8 +68476,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -68500,69 +68552,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8672), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -68570,8 +68622,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -68646,69 +68698,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8514), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -68716,8 +68768,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -68792,215 +68844,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8854), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), - [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), + [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), }, [STATE(171)] = { - [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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8641), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -69008,8 +69060,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -69084,69 +69136,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(172)] = { - [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_compound_statement] = STATE(8116), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2939), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8688), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -69154,8 +69206,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -69230,69 +69282,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(173)] = { - [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_compound_statement] = STATE(8664), + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(2961), + [sym__string] = STATE(3298), + [sym_comma_expression] = STATE(8664), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_type_descriptor] = STATE(8299), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7887), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym__unary_left_fold] = STATE(8300), + [sym__unary_right_fold] = STATE(8301), + [sym__binary_fold] = STATE(8302), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5791), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(5404), + [sym__assignment_expression_lhs] = STATE(8159), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), [sym_identifier] = ACTIONS(2016), [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(2018), @@ -69300,8 +69352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(1802), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACE] = ACTIONS(57), @@ -69376,75 +69428,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(1840), }, [STATE(174)] = { - [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), + [sym_attribute_declaration] = STATE(187), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(476), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(2385), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69521,75 +69573,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(175)] = { - [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), + [sym_attribute_declaration] = STATE(187), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(461), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(2385), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -69597,26 +69649,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(884), + [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(894), + [anon_sym_LBRACE] = ACTIONS(866), [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_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), @@ -69650,11 +69702,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(233), [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(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), @@ -69666,74 +69718,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(176)] = { - [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_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(940), + [sym_attributed_statement] = STATE(940), + [sym_statement] = STATE(947), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym_seh_try_statement] = STATE(940), + [sym_seh_leave_statement] = STATE(940), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(193), [sym_identifier] = ACTIONS(2389), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -69751,8 +69803,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -69811,74 +69863,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(177)] = { - [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_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(519), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(473), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(198), [sym_identifier] = ACTIONS(2297), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -69887,26 +69939,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(992), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(1002), [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_if] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -69940,11 +69992,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -69956,74 +70008,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(178)] = { - [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_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(519), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(554), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(198), [sym_identifier] = ACTIONS(2297), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -70032,26 +70084,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(992), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(1002), [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_if] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -70085,11 +70137,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -70101,75 +70153,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(179)] = { - [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), + [sym_attribute_declaration] = STATE(187), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(586), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(2385), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70177,26 +70229,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), + [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(297), + [anon_sym_LBRACE] = ACTIONS(866), [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_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), @@ -70230,11 +70282,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), + [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), @@ -70246,75 +70298,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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), + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_statement] = STATE(241), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [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), @@ -70322,26 +70374,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(287), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(297), [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_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), @@ -70375,11 +70427,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(329), [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(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), @@ -70391,74 +70443,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(519), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(483), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(198), [sym_identifier] = ACTIONS(2297), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -70467,26 +70519,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(992), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(1002), [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_if] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -70520,11 +70572,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -70536,75 +70588,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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), + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(388), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2165), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70612,26 +70664,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(1214), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(57), [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_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(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -70665,11 +70717,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(926), + [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), @@ -70681,74 +70733,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(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_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(519), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(602), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(198), [sym_identifier] = ACTIONS(2297), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -70757,26 +70809,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(992), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(894), + [anon_sym_LBRACE] = ACTIONS(1002), [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_if] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -70810,11 +70862,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(926), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -70827,74 +70879,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(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), + [sym_compound_statement] = STATE(519), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(607), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2297), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -70902,26 +70954,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(992), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(1002), [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_if] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -70955,11 +71007,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -70971,73 +71023,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(185)] = { + [sym_attribute_declaration] = STATE(198), + [sym_compound_statement] = STATE(519), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(608), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(198), + [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(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1266), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), + [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(1034), + [anon_sym_delete] = ACTIONS(145), + [anon_sym_throw] = ACTIONS(1036), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), + [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), + }, + [STATE(186)] = { [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), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_statement] = STATE(258), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(205), [sym_identifier] = ACTIONS(2233), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -71115,76 +71312,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(187)] = { + [sym_attribute_declaration] = STATE(141), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(573), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(2385), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71260,76 +71457,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(188)] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(8407), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -71337,26 +71534,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1662), + [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(1668), + [anon_sym_LBRACE] = ACTIONS(57), [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_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), @@ -71390,11 +71587,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(143), [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(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), @@ -71405,74 +71602,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(188)] = { + [STATE(189)] = { [sym_attribute_declaration] = STATE(176), - [sym_compound_statement] = STATE(931), - [sym_attributed_statement] = STATE(931), + [sym_compound_statement] = STATE(940), + [sym_attributed_statement] = STATE(940), [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), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym_seh_try_statement] = STATE(940), + [sym_seh_leave_statement] = STATE(940), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(176), [sym_identifier] = ACTIONS(2389), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -71491,8 +71688,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -71550,76 +71747,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(190)] = { + [sym_attribute_declaration] = STATE(176), + [sym_compound_statement] = STATE(940), + [sym_attributed_statement] = STATE(940), + [sym_statement] = STATE(952), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym_seh_try_statement] = STATE(940), + [sym_seh_leave_statement] = STATE(940), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [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), @@ -71627,26 +71824,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), + [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(57), + [anon_sym_LBRACE] = ACTIONS(1668), [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_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), @@ -71680,11 +71877,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1692), [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(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), @@ -71695,75 +71892,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(191)] = { + [sym_attribute_declaration] = STATE(151), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(350), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(151), [sym_identifier] = ACTIONS(2165), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -71772,7 +71969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), @@ -71790,8 +71987,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -71840,75 +72037,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(192)] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(264), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(191), [sym_identifier] = ACTIONS(2165), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -71917,7 +72114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), @@ -71935,8 +72132,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -71985,75 +72182,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(193)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(940), + [sym_attributed_statement] = STATE(940), + [sym_statement] = STATE(947), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym_seh_try_statement] = STATE(940), + [sym_seh_leave_statement] = STATE(940), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(193), [sym_identifier] = ACTIONS(2393), [anon_sym_LPAREN2] = ACTIONS(2025), [anon_sym_BANG] = ACTIONS(2028), @@ -72130,74 +72327,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2162), [sym_this] = ACTIONS(2126), }, - [STATE(193)] = { + [STATE(194)] = { [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), + [sym_compound_statement] = STATE(940), + [sym_attributed_statement] = STATE(940), + [sym_statement] = STATE(910), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym_seh_try_statement] = STATE(940), + [sym_seh_leave_statement] = STATE(940), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(176), [sym_identifier] = ACTIONS(2389), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -72216,8 +72413,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -72275,74 +72472,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(194)] = { + [STATE(195)] = { [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), + [sym_compound_statement] = STATE(940), + [sym_attributed_statement] = STATE(940), + [sym_statement] = STATE(928), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym_seh_try_statement] = STATE(940), + [sym_seh_leave_statement] = STATE(940), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(176), [sym_identifier] = ACTIONS(2389), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -72361,8 +72558,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -72420,74 +72617,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(195)] = { + [STATE(196)] = { [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), + [sym_compound_statement] = STATE(940), + [sym_attributed_statement] = STATE(940), + [sym_statement] = STATE(930), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym_seh_try_statement] = STATE(940), + [sym_seh_leave_statement] = STATE(940), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(176), [sym_identifier] = ACTIONS(2389), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -72506,8 +72703,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -72565,74 +72762,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(196)] = { + [STATE(197)] = { [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), + [sym_compound_statement] = STATE(940), + [sym_attributed_statement] = STATE(940), + [sym_statement] = STATE(931), + [sym_labeled_statement] = STATE(940), + [sym_expression_statement] = STATE(940), + [sym_if_statement] = STATE(940), + [sym_switch_statement] = STATE(940), + [sym_case_statement] = STATE(940), + [sym_while_statement] = STATE(940), + [sym_do_statement] = STATE(940), + [sym_for_statement] = STATE(940), + [sym_return_statement] = STATE(940), + [sym_break_statement] = STATE(940), + [sym_continue_statement] = STATE(940), + [sym_goto_statement] = STATE(940), + [sym_seh_try_statement] = STATE(940), + [sym_seh_leave_statement] = STATE(940), + [sym_expression] = STATE(4502), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8329), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(940), + [sym_co_return_statement] = STATE(940), + [sym_co_yield_statement] = STATE(940), + [sym_throw_statement] = STATE(940), + [sym_try_statement] = STATE(940), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(176), [sym_identifier] = ACTIONS(2389), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -72651,8 +72848,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), [anon_sym_while] = ACTIONS(1674), [anon_sym_do] = ACTIONS(1676), [anon_sym_for] = ACTIONS(1678), @@ -72710,76 +72907,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(197)] = { - [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), + [STATE(198)] = { + [sym_attribute_declaration] = STATE(149), + [sym_compound_statement] = STATE(519), + [sym_attributed_statement] = STATE(519), + [sym_statement] = STATE(546), + [sym_labeled_statement] = STATE(519), + [sym_expression_statement] = STATE(519), + [sym_if_statement] = STATE(519), + [sym_switch_statement] = STATE(519), + [sym_case_statement] = STATE(519), + [sym_while_statement] = STATE(519), + [sym_do_statement] = STATE(519), + [sym_for_statement] = STATE(519), + [sym_return_statement] = STATE(519), + [sym_break_statement] = STATE(519), + [sym_continue_statement] = STATE(519), + [sym_goto_statement] = STATE(519), + [sym_seh_try_statement] = STATE(519), + [sym_seh_leave_statement] = STATE(519), + [sym_expression] = STATE(4487), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8605), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(519), + [sym_co_return_statement] = STATE(519), + [sym_co_yield_statement] = STATE(519), + [sym_throw_statement] = STATE(519), + [sym_try_statement] = STATE(519), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [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), @@ -72787,26 +72984,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(992), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(1002), [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_if] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_case] = ACTIONS(1010), + [anon_sym_default] = ACTIONS(1012), + [anon_sym_while] = ACTIONS(1014), + [anon_sym_do] = ACTIONS(1016), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1020), + [anon_sym_break] = ACTIONS(1022), + [anon_sym_continue] = ACTIONS(1024), + [anon_sym_goto] = ACTIONS(1026), + [anon_sym___try] = ACTIONS(1028), + [anon_sym___leave] = ACTIONS(1030), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -72840,11 +73037,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), + [anon_sym_try] = ACTIONS(1034), [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(1036), + [anon_sym_co_return] = ACTIONS(1044), + [anon_sym_co_yield] = ACTIONS(1046), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -72855,76 +73052,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(198)] = { - [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), + [STATE(199)] = { + [sym_attribute_declaration] = STATE(217), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(350), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(217), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -72932,26 +73129,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1212), + [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(81), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), + [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(1216), - [anon_sym___leave] = ACTIONS(1218), + [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), @@ -73000,220 +73197,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(199)] = { - [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(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(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), - }, [STATE(200)] = { - [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_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(390), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(191), [sym_identifier] = ACTIONS(2165), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -73222,7 +73274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), @@ -73240,8 +73292,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -73291,75 +73343,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(201)] = { - [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), + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(391), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2165), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -73367,26 +73419,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(1214), [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_if] = ACTIONS(81), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(85), + [anon_sym_default] = ACTIONS(87), + [anon_sym_while] = ACTIONS(89), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1710), + [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(1712), - [anon_sym___leave] = ACTIONS(223), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -73436,75 +73488,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(202)] = { - [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), + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(8724), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -73512,26 +73564,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1212), + [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(81), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(85), - [anon_sym_default] = ACTIONS(87), - [anon_sym_while] = ACTIONS(89), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(93), + [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(1216), - [anon_sym___leave] = ACTIONS(1218), + [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), @@ -73581,75 +73633,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(203)] = { - [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), + [sym_attribute_declaration] = STATE(187), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(646), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(2385), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -73661,21 +73713,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(866), [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_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), @@ -73710,11 +73762,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(143), + [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), @@ -73726,75 +73778,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(204)] = { - [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), + [sym_attribute_declaration] = STATE(187), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(647), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(2385), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -73872,72 +73924,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(205)] = { [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), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_statement] = STATE(256), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(145), [sym_identifier] = ACTIONS(2233), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -74017,72 +74069,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(206)] = { [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), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_statement] = STATE(236), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(205), [sym_identifier] = ACTIONS(2233), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -74161,75 +74213,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(207)] = { - [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), + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(277), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(191), + [sym_identifier] = ACTIONS(2165), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74237,26 +74289,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(1214), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), - [anon_sym_LBRACE] = ACTIONS(866), + [anon_sym_LBRACE] = ACTIONS(57), [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_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(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -74290,11 +74342,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(233), + [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), @@ -74306,50 +74358,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(208)] = { - [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_expression] = STATE(3219), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_initializer_list] = STATE(3443), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), @@ -74452,72 +74504,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(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), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_statement] = STATE(244), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(205), [sym_identifier] = ACTIONS(2233), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -74597,72 +74649,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [STATE(210)] = { [sym_attribute_declaration] = STATE(205), - [sym_compound_statement] = STATE(260), - [sym_attributed_statement] = STATE(260), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), + [sym_statement] = STATE(246), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [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(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(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), + [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(329), + [anon_sym_delete] = ACTIONS(145), + [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), + [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), + }, + [STATE(211)] = { + [sym_attribute_declaration] = STATE(205), + [sym_compound_statement] = STATE(242), + [sym_attributed_statement] = STATE(242), [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), + [sym_labeled_statement] = STATE(242), + [sym_expression_statement] = STATE(242), + [sym_if_statement] = STATE(242), + [sym_switch_statement] = STATE(242), + [sym_case_statement] = STATE(242), + [sym_while_statement] = STATE(242), + [sym_do_statement] = STATE(242), + [sym_for_statement] = STATE(242), + [sym_return_statement] = STATE(242), + [sym_break_statement] = STATE(242), + [sym_continue_statement] = STATE(242), + [sym_goto_statement] = STATE(242), + [sym_seh_try_statement] = STATE(242), + [sym_seh_leave_statement] = STATE(242), + [sym_expression] = STATE(4573), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8704), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(242), + [sym_co_return_statement] = STATE(242), + [sym_co_yield_statement] = STATE(242), + [sym_throw_statement] = STATE(242), + [sym_try_statement] = STATE(242), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), [aux_sym_attributed_declarator_repeat1] = STATE(205), [sym_identifier] = ACTIONS(2233), [anon_sym_LPAREN2] = ACTIONS(1252), @@ -74740,76 +74937,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(212)] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(7421), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -74817,26 +75014,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(287), + [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(297), + [anon_sym_LBRACE] = ACTIONS(57), [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_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), @@ -74870,11 +75067,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_try] = ACTIONS(329), + [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), @@ -74885,75 +75082,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(213)] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(427), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -74969,18 +75166,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(1266), [sym_primitive_type] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1710), + [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(1712), + [anon_sym___try] = ACTIONS(1772), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75030,75 +75227,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(214)] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(391), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -75114,18 +75311,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(1266), [sym_primitive_type] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1710), + [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(1712), + [anon_sym___try] = ACTIONS(1772), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75175,75 +75372,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(215)] = { + [sym_attribute_declaration] = STATE(191), + [sym_compound_statement] = STATE(410), + [sym_attributed_statement] = STATE(410), + [sym_statement] = STATE(427), + [sym_labeled_statement] = STATE(410), + [sym_expression_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_switch_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_do_statement] = STATE(410), + [sym_for_statement] = STATE(410), + [sym_return_statement] = STATE(410), + [sym_break_statement] = STATE(410), + [sym_continue_statement] = STATE(410), + [sym_goto_statement] = STATE(410), + [sym_seh_try_statement] = STATE(410), + [sym_seh_leave_statement] = STATE(410), + [sym_expression] = STATE(4629), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8614), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(410), + [sym_co_return_statement] = STATE(410), + [sym_co_yield_statement] = STATE(410), + [sym_throw_statement] = STATE(410), + [sym_try_statement] = STATE(410), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(191), [sym_identifier] = ACTIONS(2165), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -75252,7 +75449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(1214), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(1264), @@ -75270,8 +75467,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(1216), - [anon_sym___leave] = ACTIONS(1218), + [anon_sym___try] = ACTIONS(1218), + [anon_sym___leave] = ACTIONS(1220), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -75320,75 +75517,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(216)] = { + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(8488), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -75404,18 +75601,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(1266), [sym_primitive_type] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1710), + [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(1712), + [anon_sym___try] = ACTIONS(1772), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75465,75 +75662,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(216)] = { - [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), + [STATE(217)] = { + [sym_attribute_declaration] = STATE(217), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(350), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(217), [sym_identifier] = ACTIONS(2461), [anon_sym_LPAREN2] = ACTIONS(2025), [anon_sym_BANG] = ACTIONS(2028), @@ -75546,20 +75743,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(2040), [anon_sym_COLON_COLON] = ACTIONS(2045), [anon_sym_LBRACK_LBRACK] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2307), [anon_sym_LBRACK] = ACTIONS(2054), [sym_primitive_type] = ACTIONS(2057), [anon_sym_if] = ACTIONS(2464), - [anon_sym_switch] = ACTIONS(2341), + [anon_sym_switch] = ACTIONS(2313), [anon_sym_case] = ACTIONS(2408), [anon_sym_default] = ACTIONS(2411), [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2353), + [anon_sym_do] = ACTIONS(2325), [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_return] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_goto] = ACTIONS(2340), [anon_sym___try] = ACTIONS(2473), [anon_sym___leave] = ACTIONS(2096), [anon_sym_not] = ACTIONS(2031), @@ -75595,11 +75792,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(2132), [anon_sym_template] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2349), [anon_sym_delete] = ACTIONS(2141), - [anon_sym_throw] = ACTIONS(2380), - [anon_sym_co_return] = ACTIONS(2383), - [anon_sym_co_yield] = ACTIONS(2386), + [anon_sym_throw] = ACTIONS(2352), + [anon_sym_co_return] = ACTIONS(2355), + [anon_sym_co_yield] = ACTIONS(2358), [anon_sym_R_DQUOTE] = ACTIONS(2153), [anon_sym_LR_DQUOTE] = ACTIONS(2153), [anon_sym_uR_DQUOTE] = ACTIONS(2153), @@ -75610,220 +75807,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2162), [sym_this] = ACTIONS(2126), }, - [STATE(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(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), - }, [STATE(218)] = { - [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_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(7424), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -75839,18 +75891,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(1266), [sym_primitive_type] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1710), + [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(1712), + [anon_sym___try] = ACTIONS(1772), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -75901,74 +75953,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(219)] = { - [sym_attribute_declaration] = STATE(189), - [sym_compound_statement] = STATE(560), - [sym_attributed_statement] = STATE(560), + [sym_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), [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_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -75984,18 +76036,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(1266), [sym_primitive_type] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1710), + [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(1712), + [anon_sym___try] = ACTIONS(1772), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -76046,74 +76098,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(220)] = { - [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_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(8676), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -76129,18 +76181,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(1266), [sym_primitive_type] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1710), + [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(1712), + [anon_sym___try] = ACTIONS(1772), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -76191,74 +76243,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(221)] = { - [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_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(390), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -76274,18 +76326,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(1266), [sym_primitive_type] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1710), + [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(1712), + [anon_sym___try] = ACTIONS(1772), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -76336,74 +76388,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(222)] = { - [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_attribute_declaration] = STATE(199), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(8703), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(199), [sym_identifier] = ACTIONS(2391), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), @@ -76419,18 +76471,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_LBRACK] = ACTIONS(1266), [sym_primitive_type] = ACTIONS(2171), - [anon_sym_if] = ACTIONS(1702), + [anon_sym_if] = ACTIONS(1766), [anon_sym_switch] = ACTIONS(83), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1706), - [anon_sym_while] = ACTIONS(1708), + [anon_sym_case] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1762), + [anon_sym_while] = ACTIONS(1768), [anon_sym_do] = ACTIONS(91), - [anon_sym_for] = ACTIONS(1710), + [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(1712), + [anon_sym___try] = ACTIONS(1772), [anon_sym___leave] = ACTIONS(223), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -76481,75 +76533,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(223)] = { - [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), + [sym_attribute_declaration] = STATE(187), + [sym_compound_statement] = STATE(566), + [sym_attributed_statement] = STATE(566), + [sym_statement] = STATE(635), + [sym_labeled_statement] = STATE(566), + [sym_expression_statement] = STATE(566), + [sym_if_statement] = STATE(566), + [sym_switch_statement] = STATE(566), + [sym_case_statement] = STATE(566), + [sym_while_statement] = STATE(566), + [sym_do_statement] = STATE(566), + [sym_for_statement] = STATE(566), + [sym_return_statement] = STATE(566), + [sym_break_statement] = STATE(566), + [sym_continue_statement] = STATE(566), + [sym_goto_statement] = STATE(566), + [sym_seh_try_statement] = STATE(566), + [sym_seh_leave_statement] = STATE(566), + [sym_expression] = STATE(4588), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8963), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_for_range_loop] = STATE(566), + [sym_co_return_statement] = STATE(566), + [sym_co_yield_statement] = STATE(566), + [sym_throw_statement] = STATE(566), + [sym_try_statement] = STATE(566), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [sym_identifier] = ACTIONS(2385), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -76626,200 +76678,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(224)] = { - [sym_catch_clause] = STATE(224), - [aux_sym_constructor_try_statement_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(2476), - [aux_sym_preproc_include_token1] = 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_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_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___cdecl] = ACTIONS(2476), - [anon_sym___clrcall] = ACTIONS(2476), - [anon_sym___stdcall] = ACTIONS(2476), - [anon_sym___fastcall] = ACTIONS(2476), - [anon_sym___thiscall] = ACTIONS(2476), - [anon_sym___vectorcall] = 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_case] = ACTIONS(2476), - [anon_sym_default] = 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_explicit] = ACTIONS(2476), - [anon_sym_typename] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_operator] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2476), - [anon_sym_throw] = ACTIONS(2476), - [anon_sym_namespace] = ACTIONS(2476), - [anon_sym_static_assert] = ACTIONS(2476), - [anon_sym_concept] = ACTIONS(2476), - [anon_sym_co_return] = ACTIONS(2476), - [anon_sym_co_yield] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(2480), - [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), - }, - [STATE(225)] = { - [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), + [sym_expression] = STATE(3400), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_initializer_list] = STATE(2576), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(2485), - [anon_sym_TILDE] = ACTIONS(2487), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2478), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1942), @@ -76833,17 +76741,18 @@ 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(1942), + [anon_sym_GT_EQ] = ACTIONS(1944), [anon_sym_LT_EQ] = ACTIONS(1942), [anon_sym_LT] = ACTIONS(1942), [anon_sym_LT_LT] = ACTIONS(1942), [anon_sym_GT_GT] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(2489), - [anon_sym_COLON_COLON] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(1954), [anon_sym_LBRACK] = ACTIONS(1944), [anon_sym_EQ] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(2495), + [sym_primitive_type] = ACTIONS(1956), [anon_sym_QMARK] = ACTIONS(1944), [anon_sym_STAR_EQ] = ACTIONS(1944), [anon_sym_SLASH_EQ] = ACTIONS(1944), @@ -76851,15 +76760,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(1944), [anon_sym_DASH_EQ] = ACTIONS(1944), [anon_sym_LT_LT_EQ] = ACTIONS(1944), - [anon_sym_GT_GT_EQ] = ACTIONS(1942), + [anon_sym_GT_GT_EQ] = ACTIONS(1944), [anon_sym_AMP_EQ] = ACTIONS(1944), [anon_sym_CARET_EQ] = ACTIONS(1944), [anon_sym_PIPE_EQ] = ACTIONS(1944), [anon_sym_and_eq] = ACTIONS(1942), [anon_sym_or_eq] = ACTIONS(1942), [anon_sym_xor_eq] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(2485), - [anon_sym_compl] = ACTIONS(2485), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -76869,245 +76778,244 @@ 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(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_sizeof] = ACTIONS(2484), + [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_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1944), - [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_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_GT2] = ACTIONS(1944), - [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), + [anon_sym_delete] = ACTIONS(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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(2527), - [anon_sym_requires] = ACTIONS(2527), - [sym_this] = ACTIONS(2527), + [STATE(225)] = { + [sym_catch_clause] = STATE(225), + [aux_sym_constructor_try_statement_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token2] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [aux_sym_preproc_else_token1] = ACTIONS(2490), + [aux_sym_preproc_elif_token1] = ACTIONS(2490), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_AMP_AMP] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_virtual] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_using] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___based] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_mutable] = ACTIONS(2490), + [anon_sym_constinit] = ACTIONS(2490), + [anon_sym_consteval] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym___try] = ACTIONS(2490), + [anon_sym___leave] = ACTIONS(2490), + [anon_sym_not] = ACTIONS(2490), + [anon_sym_compl] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2490), + [anon_sym_decltype] = ACTIONS(2490), + [anon_sym_explicit] = ACTIONS(2490), + [anon_sym_typename] = ACTIONS(2490), + [anon_sym_template] = ACTIONS(2490), + [anon_sym_operator] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_delete] = ACTIONS(2490), + [anon_sym_throw] = ACTIONS(2490), + [anon_sym_namespace] = ACTIONS(2490), + [anon_sym_static_assert] = ACTIONS(2490), + [anon_sym_concept] = ACTIONS(2490), + [anon_sym_co_return] = ACTIONS(2490), + [anon_sym_co_yield] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(2494), + [anon_sym_R_DQUOTE] = ACTIONS(2492), + [anon_sym_LR_DQUOTE] = ACTIONS(2492), + [anon_sym_uR_DQUOTE] = ACTIONS(2492), + [anon_sym_UR_DQUOTE] = ACTIONS(2492), + [anon_sym_u8R_DQUOTE] = ACTIONS(2492), + [anon_sym_co_await] = ACTIONS(2490), + [anon_sym_new] = ACTIONS(2490), + [anon_sym_requires] = ACTIONS(2490), + [sym_this] = ACTIONS(2490), }, - [STATE(227)] = { - [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), + [STATE(226)] = { + [sym_expression] = STATE(3318), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_initializer_list] = STATE(3620), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), [anon_sym_COMMA] = ACTIONS(1944), [anon_sym_LPAREN2] = ACTIONS(1944), - [anon_sym_BANG] = ACTIONS(2533), - [anon_sym_TILDE] = ACTIONS(2535), + [anon_sym_BANG] = ACTIONS(2499), + [anon_sym_TILDE] = ACTIONS(2501), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1942), @@ -77121,18 +77029,17 @@ 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(1942), [anon_sym_GT_GT] = ACTIONS(1942), - [anon_sym___extension__] = ACTIONS(2537), - [anon_sym_COLON] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1944), [anon_sym_EQ] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(1956), + [sym_primitive_type] = ACTIONS(2509), [anon_sym_QMARK] = ACTIONS(1944), [anon_sym_STAR_EQ] = ACTIONS(1944), [anon_sym_SLASH_EQ] = ACTIONS(1944), @@ -77140,15 +77047,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(1944), [anon_sym_DASH_EQ] = ACTIONS(1944), [anon_sym_LT_LT_EQ] = ACTIONS(1944), - [anon_sym_GT_GT_EQ] = ACTIONS(1944), + [anon_sym_GT_GT_EQ] = ACTIONS(1942), [anon_sym_AMP_EQ] = ACTIONS(1944), [anon_sym_CARET_EQ] = ACTIONS(1944), [anon_sym_PIPE_EQ] = ACTIONS(1944), [anon_sym_and_eq] = ACTIONS(1942), [anon_sym_or_eq] = ACTIONS(1942), [anon_sym_xor_eq] = ACTIONS(1942), - [anon_sym_not] = ACTIONS(2533), - [anon_sym_compl] = ACTIONS(2533), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -77158,144 +77065,432 @@ 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(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_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), [anon_sym_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1944), - [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_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), [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), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(227)] = { + [sym_catch_clause] = STATE(225), + [aux_sym_constructor_try_statement_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_include_token1] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token2] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [aux_sym_preproc_else_token1] = ACTIONS(2541), + [aux_sym_preproc_elif_token1] = ACTIONS(2541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym___extension__] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym___attribute] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym___cdecl] = ACTIONS(2541), + [anon_sym___clrcall] = ACTIONS(2541), + [anon_sym___stdcall] = ACTIONS(2541), + [anon_sym___fastcall] = ACTIONS(2541), + [anon_sym___thiscall] = ACTIONS(2541), + [anon_sym___vectorcall] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym___inline] = ACTIONS(2541), + [anon_sym___inline__] = ACTIONS(2541), + [anon_sym___forceinline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym___thread] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym___restrict__] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym__Noreturn] = ACTIONS(2541), + [anon_sym_noreturn] = ACTIONS(2541), + [anon_sym__Nonnull] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_alignas] = ACTIONS(2541), + [anon_sym__Alignas] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym___try] = ACTIONS(2541), + [anon_sym___leave] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [anon_sym___alignof__] = ACTIONS(2541), + [anon_sym___alignof] = ACTIONS(2541), + [anon_sym__alignof] = ACTIONS(2541), + [anon_sym_alignof] = ACTIONS(2541), + [anon_sym__Alignof] = ACTIONS(2541), + [anon_sym_offsetof] = ACTIONS(2541), + [anon_sym__Generic] = ACTIONS(2541), + [anon_sym_asm] = ACTIONS(2541), + [anon_sym___asm__] = ACTIONS(2541), + [anon_sym___asm] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [anon_sym_nullptr] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_concept] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_catch] = ACTIONS(2545), + [anon_sym_R_DQUOTE] = ACTIONS(2543), + [anon_sym_LR_DQUOTE] = ACTIONS(2543), + [anon_sym_uR_DQUOTE] = ACTIONS(2543), + [anon_sym_UR_DQUOTE] = ACTIONS(2543), + [anon_sym_u8R_DQUOTE] = ACTIONS(2543), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), }, [STATE(228)] = { - [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), + [sym_catch_clause] = STATE(228), + [aux_sym_constructor_try_statement_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(2492), + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_AMP_AMP] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_virtual] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_using] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___based] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_mutable] = ACTIONS(2490), + [anon_sym_constinit] = ACTIONS(2490), + [anon_sym_consteval] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym___try] = ACTIONS(2490), + [anon_sym___leave] = ACTIONS(2490), + [anon_sym_not] = ACTIONS(2490), + [anon_sym_compl] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2490), + [anon_sym_decltype] = ACTIONS(2490), + [anon_sym_explicit] = ACTIONS(2490), + [anon_sym_typename] = ACTIONS(2490), + [anon_sym_export] = ACTIONS(2490), + [anon_sym_module] = ACTIONS(2490), + [anon_sym_import] = ACTIONS(2490), + [anon_sym_template] = ACTIONS(2490), + [anon_sym_operator] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_delete] = ACTIONS(2490), + [anon_sym_throw] = ACTIONS(2490), + [anon_sym_namespace] = ACTIONS(2490), + [anon_sym_static_assert] = ACTIONS(2490), + [anon_sym_concept] = ACTIONS(2490), + [anon_sym_co_return] = ACTIONS(2490), + [anon_sym_co_yield] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(2547), + [anon_sym_R_DQUOTE] = ACTIONS(2492), + [anon_sym_LR_DQUOTE] = ACTIONS(2492), + [anon_sym_uR_DQUOTE] = ACTIONS(2492), + [anon_sym_UR_DQUOTE] = ACTIONS(2492), + [anon_sym_u8R_DQUOTE] = ACTIONS(2492), + [anon_sym_co_await] = ACTIONS(2490), + [anon_sym_new] = ACTIONS(2490), + [anon_sym_requires] = ACTIONS(2490), + [sym_this] = ACTIONS(2490), + }, + [STATE(229)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), + [anon_sym_LPAREN2] = ACTIONS(2553), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2556), [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(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_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym___extension__] = ACTIONS(2567), + [anon_sym_typedef] = ACTIONS(2570), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___based] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -77327,12 +77522,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(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), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2572), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2572), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -77344,673 +77539,387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, [STATE(230)] = { - [sym_catch_clause] = STATE(224), - [aux_sym_constructor_try_statement_repeat1] = STATE(224), - [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), - [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_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(2531), - [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_catch_clause] = STATE(225), + [aux_sym_constructor_try_statement_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(2589), + [aux_sym_preproc_include_token1] = ACTIONS(2589), + [aux_sym_preproc_def_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token2] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2589), + [aux_sym_preproc_else_token1] = ACTIONS(2589), + [aux_sym_preproc_elif_token1] = ACTIONS(2589), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2589), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_AMP_AMP] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym___extension__] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_virtual] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym___attribute__] = ACTIONS(2589), + [anon_sym___attribute] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2591), + [anon_sym___declspec] = ACTIONS(2589), + [anon_sym___based] = ACTIONS(2589), + [anon_sym___cdecl] = ACTIONS(2589), + [anon_sym___clrcall] = ACTIONS(2589), + [anon_sym___stdcall] = ACTIONS(2589), + [anon_sym___fastcall] = ACTIONS(2589), + [anon_sym___thiscall] = ACTIONS(2589), + [anon_sym___vectorcall] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym___inline] = ACTIONS(2589), + [anon_sym___inline__] = ACTIONS(2589), + [anon_sym___forceinline] = ACTIONS(2589), + [anon_sym_thread_local] = ACTIONS(2589), + [anon_sym___thread] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym___restrict__] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym__Noreturn] = ACTIONS(2589), + [anon_sym_noreturn] = ACTIONS(2589), + [anon_sym__Nonnull] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_constinit] = ACTIONS(2589), + [anon_sym_consteval] = ACTIONS(2589), + [anon_sym_alignas] = ACTIONS(2589), + [anon_sym__Alignas] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_goto] = ACTIONS(2589), + [anon_sym___try] = ACTIONS(2589), + [anon_sym___leave] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_compl] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_sizeof] = ACTIONS(2589), + [anon_sym___alignof__] = ACTIONS(2589), + [anon_sym___alignof] = ACTIONS(2589), + [anon_sym__alignof] = ACTIONS(2589), + [anon_sym_alignof] = ACTIONS(2589), + [anon_sym__Alignof] = ACTIONS(2589), + [anon_sym_offsetof] = ACTIONS(2589), + [anon_sym__Generic] = ACTIONS(2589), + [anon_sym_asm] = ACTIONS(2589), + [anon_sym___asm__] = ACTIONS(2589), + [anon_sym___asm] = ACTIONS(2589), + [sym_number_literal] = ACTIONS(2591), + [anon_sym_L_SQUOTE] = ACTIONS(2591), + [anon_sym_u_SQUOTE] = ACTIONS(2591), + [anon_sym_U_SQUOTE] = ACTIONS(2591), + [anon_sym_u8_SQUOTE] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2591), + [anon_sym_L_DQUOTE] = ACTIONS(2591), + [anon_sym_u_DQUOTE] = ACTIONS(2591), + [anon_sym_U_DQUOTE] = ACTIONS(2591), + [anon_sym_u8_DQUOTE] = ACTIONS(2591), + [anon_sym_DQUOTE] = ACTIONS(2591), + [sym_true] = ACTIONS(2589), + [sym_false] = ACTIONS(2589), + [anon_sym_NULL] = ACTIONS(2589), + [anon_sym_nullptr] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2589), + [anon_sym_decltype] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_operator] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [anon_sym_delete] = ACTIONS(2589), + [anon_sym_throw] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_static_assert] = ACTIONS(2589), + [anon_sym_concept] = ACTIONS(2589), + [anon_sym_co_return] = ACTIONS(2589), + [anon_sym_co_yield] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(2545), + [anon_sym_R_DQUOTE] = ACTIONS(2591), + [anon_sym_LR_DQUOTE] = ACTIONS(2591), + [anon_sym_uR_DQUOTE] = ACTIONS(2591), + [anon_sym_UR_DQUOTE] = ACTIONS(2591), + [anon_sym_u8R_DQUOTE] = ACTIONS(2591), + [anon_sym_co_await] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_requires] = ACTIONS(2589), + [sym_this] = ACTIONS(2589), }, [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), + [sym_catch_clause] = STATE(225), + [aux_sym_constructor_try_statement_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(2593), + [aux_sym_preproc_include_token1] = ACTIONS(2593), + [aux_sym_preproc_def_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token2] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2593), + [aux_sym_preproc_else_token1] = ACTIONS(2593), + [aux_sym_preproc_elif_token1] = ACTIONS(2593), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2593), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2593), + [sym_preproc_directive] = ACTIONS(2593), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_AMP_AMP] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym___extension__] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2593), + [anon_sym_virtual] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym___attribute__] = ACTIONS(2593), + [anon_sym___attribute] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2595), + [anon_sym___declspec] = ACTIONS(2593), + [anon_sym___based] = ACTIONS(2593), + [anon_sym___cdecl] = ACTIONS(2593), + [anon_sym___clrcall] = ACTIONS(2593), + [anon_sym___stdcall] = ACTIONS(2593), + [anon_sym___fastcall] = ACTIONS(2593), + [anon_sym___thiscall] = ACTIONS(2593), + [anon_sym___vectorcall] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2593), + [anon_sym_unsigned] = ACTIONS(2593), + [anon_sym_long] = ACTIONS(2593), + [anon_sym_short] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_register] = ACTIONS(2593), + [anon_sym_inline] = ACTIONS(2593), + [anon_sym___inline] = ACTIONS(2593), + [anon_sym___inline__] = ACTIONS(2593), + [anon_sym___forceinline] = ACTIONS(2593), + [anon_sym_thread_local] = ACTIONS(2593), + [anon_sym___thread] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_constexpr] = ACTIONS(2593), + [anon_sym_volatile] = ACTIONS(2593), + [anon_sym_restrict] = ACTIONS(2593), + [anon_sym___restrict__] = ACTIONS(2593), + [anon_sym__Atomic] = ACTIONS(2593), + [anon_sym__Noreturn] = ACTIONS(2593), + [anon_sym_noreturn] = ACTIONS(2593), + [anon_sym__Nonnull] = ACTIONS(2593), + [anon_sym_mutable] = ACTIONS(2593), + [anon_sym_constinit] = ACTIONS(2593), + [anon_sym_consteval] = ACTIONS(2593), + [anon_sym_alignas] = ACTIONS(2593), + [anon_sym__Alignas] = ACTIONS(2593), + [sym_primitive_type] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_case] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_goto] = ACTIONS(2593), + [anon_sym___try] = ACTIONS(2593), + [anon_sym___leave] = ACTIONS(2593), + [anon_sym_not] = ACTIONS(2593), + [anon_sym_compl] = ACTIONS(2593), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_sizeof] = ACTIONS(2593), + [anon_sym___alignof__] = ACTIONS(2593), + [anon_sym___alignof] = ACTIONS(2593), + [anon_sym__alignof] = ACTIONS(2593), + [anon_sym_alignof] = ACTIONS(2593), + [anon_sym__Alignof] = ACTIONS(2593), + [anon_sym_offsetof] = ACTIONS(2593), + [anon_sym__Generic] = ACTIONS(2593), + [anon_sym_asm] = ACTIONS(2593), + [anon_sym___asm__] = ACTIONS(2593), + [anon_sym___asm] = ACTIONS(2593), + [sym_number_literal] = ACTIONS(2595), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2595), + [anon_sym_u_DQUOTE] = ACTIONS(2595), + [anon_sym_U_DQUOTE] = ACTIONS(2595), + [anon_sym_u8_DQUOTE] = ACTIONS(2595), + [anon_sym_DQUOTE] = ACTIONS(2595), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [anon_sym_nullptr] = ACTIONS(2593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2593), + [anon_sym_decltype] = ACTIONS(2593), + [anon_sym_explicit] = ACTIONS(2593), + [anon_sym_typename] = ACTIONS(2593), + [anon_sym_template] = ACTIONS(2593), + [anon_sym_operator] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_delete] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_static_assert] = ACTIONS(2593), + [anon_sym_concept] = ACTIONS(2593), + [anon_sym_co_return] = ACTIONS(2593), + [anon_sym_co_yield] = ACTIONS(2593), + [anon_sym_catch] = ACTIONS(2545), + [anon_sym_R_DQUOTE] = ACTIONS(2595), + [anon_sym_LR_DQUOTE] = ACTIONS(2595), + [anon_sym_uR_DQUOTE] = ACTIONS(2595), + [anon_sym_UR_DQUOTE] = ACTIONS(2595), + [anon_sym_u8R_DQUOTE] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_requires] = ACTIONS(2593), + [sym_this] = ACTIONS(2593), }, [STATE(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), - [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_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_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___cdecl] = ACTIONS(2476), - [anon_sym___clrcall] = ACTIONS(2476), - [anon_sym___stdcall] = ACTIONS(2476), - [anon_sym___fastcall] = ACTIONS(2476), - [anon_sym___thiscall] = ACTIONS(2476), - [anon_sym___vectorcall] = 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_case] = ACTIONS(2476), - [anon_sym_default] = 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_explicit] = ACTIONS(2476), - [anon_sym_typename] = ACTIONS(2476), - [anon_sym_export] = ACTIONS(2476), - [anon_sym_module] = ACTIONS(2476), - [anon_sym_import] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_operator] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2476), - [anon_sym_throw] = ACTIONS(2476), - [anon_sym_namespace] = ACTIONS(2476), - [anon_sym_static_assert] = ACTIONS(2476), - [anon_sym_concept] = ACTIONS(2476), - [anon_sym_co_return] = ACTIONS(2476), - [anon_sym_co_yield] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(2596), - [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), - }, - [STATE(233)] = { - [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), + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), + [anon_sym_LPAREN2] = ACTIONS(2553), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2556), [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(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_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym___extension__] = ACTIONS(2567), + [anon_sym_typedef] = ACTIONS(2597), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___based] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -78042,12 +77951,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(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), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2572), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2572), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -78059,101 +77968,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(233)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), + [anon_sym_LPAREN2] = ACTIONS(2553), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2556), [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_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym___extension__] = ACTIONS(2567), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___based] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -78185,12 +78094,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(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), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2572), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2572), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -78202,101 +78111,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, + [STATE(234)] = { + [sym_catch_clause] = STATE(228), + [aux_sym_constructor_try_statement_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_include_token1] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym___extension__] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym___attribute] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym___cdecl] = ACTIONS(2541), + [anon_sym___clrcall] = ACTIONS(2541), + [anon_sym___stdcall] = ACTIONS(2541), + [anon_sym___fastcall] = ACTIONS(2541), + [anon_sym___thiscall] = ACTIONS(2541), + [anon_sym___vectorcall] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym___inline] = ACTIONS(2541), + [anon_sym___inline__] = ACTIONS(2541), + [anon_sym___forceinline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym___thread] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym___restrict__] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym__Noreturn] = ACTIONS(2541), + [anon_sym_noreturn] = ACTIONS(2541), + [anon_sym__Nonnull] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_alignas] = ACTIONS(2541), + [anon_sym__Alignas] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym___try] = ACTIONS(2541), + [anon_sym___leave] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [anon_sym___alignof__] = ACTIONS(2541), + [anon_sym___alignof] = ACTIONS(2541), + [anon_sym__alignof] = ACTIONS(2541), + [anon_sym_alignof] = ACTIONS(2541), + [anon_sym__Alignof] = ACTIONS(2541), + [anon_sym_offsetof] = ACTIONS(2541), + [anon_sym__Generic] = ACTIONS(2541), + [anon_sym_asm] = ACTIONS(2541), + [anon_sym___asm__] = ACTIONS(2541), + [anon_sym___asm] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [anon_sym_nullptr] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_export] = ACTIONS(2541), + [anon_sym_module] = ACTIONS(2541), + [anon_sym_import] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_concept] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_catch] = ACTIONS(2601), + [anon_sym_R_DQUOTE] = ACTIONS(2543), + [anon_sym_LR_DQUOTE] = ACTIONS(2543), + [anon_sym_uR_DQUOTE] = ACTIONS(2543), + [anon_sym_UR_DQUOTE] = ACTIONS(2543), + [anon_sym_u8R_DQUOTE] = ACTIONS(2543), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), + }, [STATE(235)] = { - [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), + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), + [anon_sym_LPAREN2] = ACTIONS(2553), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(2553), + [anon_sym_TILDE] = ACTIONS(2556), [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_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym___extension__] = ACTIONS(2567), [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___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_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___based] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2577), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -78328,12 +78380,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(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), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2572), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2572), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -78346,7 +78398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(229), }, [STATE(236)] = { - [sym_else_clause] = STATE(258), + [sym_else_clause] = STATE(243), [sym_identifier] = ACTIONS(2605), [aux_sym_preproc_include_token1] = ACTIONS(2605), [aux_sym_preproc_def_token1] = ACTIONS(2605), @@ -78630,199 +78682,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2611), }, [STATE(238)] = { - [sym_else_clause] = STATE(244), + [sym_expression] = STATE(3683), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_initializer_list] = STATE(3904), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), [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), - }, - [STATE(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(1892), - [anon_sym_TILDE] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_TILDE] = ACTIONS(1870), [anon_sym_DASH] = ACTIONS(1942), [anon_sym_PLUS] = ACTIONS(1942), [anon_sym_STAR] = ACTIONS(1942), @@ -78841,12 +78751,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(2621), - [anon_sym_COLON_COLON] = ACTIONS(1898), - [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym___extension__] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(2619), [anon_sym_LBRACK] = ACTIONS(1944), [anon_sym_EQ] = ACTIONS(1942), - [sym_primitive_type] = ACTIONS(2625), + [sym_primitive_type] = ACTIONS(2621), [anon_sym_QMARK] = ACTIONS(1944), [anon_sym_STAR_EQ] = ACTIONS(1944), [anon_sym_SLASH_EQ] = ACTIONS(1944), @@ -78858,8 +78768,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(1892), - [anon_sym_compl] = ACTIONS(1892), + [anon_sym_not] = ACTIONS(1872), + [anon_sym_compl] = ACTIONS(1872), [anon_sym_LT_EQ_GT] = ACTIONS(1944), [anon_sym_or] = ACTIONS(1942), [anon_sym_and] = ACTIONS(1942), @@ -78869,51 +78779,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(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_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_DOT] = ACTIONS(1942), [anon_sym_DOT_STAR] = ACTIONS(1944), [anon_sym_DASH_GT] = ACTIONS(1942), - [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_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(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_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_DASH_GT_STAR] = ACTIONS(1944), - [sym_this] = ACTIONS(1920), + [sym_this] = ACTIONS(1910), }, - [STATE(240)] = { + [STATE(239)] = { [sym_identifier] = ACTIONS(1936), [aux_sym_preproc_include_token1] = ACTIONS(1936), [aux_sym_preproc_def_token1] = ACTIONS(1936), @@ -79055,7 +78965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1936), [sym_this] = ACTIONS(1936), }, - [STATE(241)] = { + [STATE(240)] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_include_token1] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), @@ -79197,6 +79107,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1940), [sym_this] = ACTIONS(1940), }, + [STATE(241)] = { + [sym_else_clause] = STATE(248), + [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(2609), + [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), + }, [STATE(242)] = { [sym_identifier] = ACTIONS(2627), [aux_sym_preproc_include_token1] = ACTIONS(2627), @@ -80467,6 +80519,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2659), }, [STATE(251)] = { + [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), + [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_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), + }, + [STATE(252)] = { [sym_identifier] = ACTIONS(2663), [aux_sym_preproc_include_token1] = ACTIONS(2663), [aux_sym_preproc_def_token1] = ACTIONS(2663), @@ -80607,147 +80800,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2663), [sym_this] = ACTIONS(2663), }, - [STATE(252)] = { - [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), - }, [STATE(253)] = { [sym_identifier] = ACTIONS(2667), [aux_sym_preproc_include_token1] = ACTIONS(2667), @@ -82300,145 +82352,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2707), }, [STATE(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), + [sym_else_clause] = STATE(351), + [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), [anon_sym_else] = 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), + [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), }, [STATE(265)] = { [sym_identifier] = ACTIONS(2713), @@ -82582,433 +82634,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2713), }, [STATE(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), - }, - [STATE(267)] = { - [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), - }, - [STATE(268)] = { - [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), - }, - [STATE(269)] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_include_token1] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2717), [aux_sym_preproc_if_token1] = ACTIONS(1940), [aux_sym_preproc_if_token2] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), @@ -83026,7 +82655,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(2729), + [anon_sym_SEMI] = ACTIONS(2717), [anon_sym___extension__] = ACTIONS(1940), [anon_sym_typedef] = ACTIONS(1940), [anon_sym_virtual] = ACTIONS(1940), @@ -83145,148 +82774,712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1940), [sym_this] = ACTIONS(1940), }, + [STATE(267)] = { + [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(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), + }, + [STATE(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), + }, + [STATE(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), + }, [STATE(270)] = { - [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), + [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(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(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), }, [STATE(271)] = { + [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), + }, + [STATE(272)] = { [sym_identifier] = ACTIONS(2731), [aux_sym_preproc_include_token1] = ACTIONS(2731), [aux_sym_preproc_def_token1] = ACTIONS(2731), @@ -83427,7 +83620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2731), [sym_this] = ACTIONS(2731), }, - [STATE(272)] = { + [STATE(273)] = { [sym_identifier] = ACTIONS(2735), [aux_sym_preproc_include_token1] = ACTIONS(2735), [aux_sym_preproc_def_token1] = ACTIONS(2735), @@ -83568,7 +83761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2735), [sym_this] = ACTIONS(2735), }, - [STATE(273)] = { + [STATE(274)] = { [sym_identifier] = ACTIONS(2739), [aux_sym_preproc_include_token1] = ACTIONS(2739), [aux_sym_preproc_def_token1] = ACTIONS(2739), @@ -83709,287 +83902,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2739), [sym_this] = ACTIONS(2739), }, - [STATE(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), - }, [STATE(275)] = { - [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_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), + [aux_sym_preproc_else_token1] = ACTIONS(2739), + [aux_sym_preproc_elif_token1] = ACTIONS(2739), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_elifdef_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(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(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), }, [STATE(276)] = { [sym_identifier] = ACTIONS(2743), @@ -84133,173 +84185,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2743), }, [STATE(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), - }, - [STATE(278)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(2747), - [aux_sym_preproc_elif_token1] = ACTIONS(2747), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2747), - [aux_sym_preproc_elifdef_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), + [sym_else_clause] = STATE(387), + [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(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), + }, + [STATE(278)] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(2747), + [aux_sym_preproc_elif_token1] = ACTIONS(2747), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2747), + [aux_sym_preproc_elifdef_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), @@ -84979,6 +85031,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2763), }, [STATE(283)] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(2755), + [aux_sym_preproc_elif_token1] = ACTIONS(2755), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2755), + [aux_sym_preproc_elifdef_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_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), + }, + [STATE(284)] = { [sym_identifier] = ACTIONS(2767), [aux_sym_preproc_include_token1] = ACTIONS(2767), [aux_sym_preproc_def_token1] = ACTIONS(2767), @@ -85119,7 +85312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2767), [sym_this] = ACTIONS(2767), }, - [STATE(284)] = { + [STATE(285)] = { [sym_identifier] = ACTIONS(2771), [aux_sym_preproc_include_token1] = ACTIONS(2771), [aux_sym_preproc_def_token1] = ACTIONS(2771), @@ -85260,147 +85453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2771), [sym_this] = ACTIONS(2771), }, - [STATE(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), - }, [STATE(286)] = { [sym_identifier] = ACTIONS(2775), [aux_sym_preproc_include_token1] = ACTIONS(2775), @@ -87363,144 +87415,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2827), }, [STATE(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), + [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), }, [STATE(301)] = { [sym_identifier] = ACTIONS(2831), @@ -87643,424 +87695,424 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2831), }, [STATE(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), + [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), }, [STATE(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), + [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(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), + [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), }, [STATE(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), + [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(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), + [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), }, [STATE(305)] = { [sym_identifier] = ACTIONS(2835), @@ -88343,144 +88395,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2839), }, [STATE(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), + [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(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), + [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), }, [STATE(308)] = { [sym_identifier] = ACTIONS(2843), @@ -91003,146 +91055,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2907), }, [STATE(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), - }, - [STATE(327)] = { [sym_identifier] = ACTIONS(2911), [aux_sym_preproc_include_token1] = ACTIONS(2911), [aux_sym_preproc_def_token1] = ACTIONS(2911), @@ -91282,7 +91194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2911), [sym_this] = ACTIONS(2911), }, - [STATE(328)] = { + [STATE(327)] = { [sym_identifier] = ACTIONS(2915), [aux_sym_preproc_include_token1] = ACTIONS(2915), [aux_sym_preproc_def_token1] = ACTIONS(2915), @@ -91422,7 +91334,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2915), [sym_this] = ACTIONS(2915), }, - [STATE(329)] = { + [STATE(328)] = { [sym_identifier] = ACTIONS(2919), [aux_sym_preproc_include_token1] = ACTIONS(2919), [aux_sym_preproc_def_token1] = ACTIONS(2919), @@ -91562,147 +91474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2919), [sym_this] = ACTIONS(2919), }, - [STATE(330)] = { - [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), - }, - [STATE(331)] = { + [STATE(329)] = { [sym_identifier] = ACTIONS(2923), [aux_sym_preproc_include_token1] = ACTIONS(2923), [aux_sym_preproc_def_token1] = ACTIONS(2923), @@ -91842,147 +91614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2923), [sym_this] = ACTIONS(2923), }, - [STATE(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), - }, - [STATE(333)] = { + [STATE(330)] = { [sym_identifier] = ACTIONS(2927), [aux_sym_preproc_include_token1] = ACTIONS(2927), [aux_sym_preproc_def_token1] = ACTIONS(2927), @@ -92122,147 +91754,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2927), [sym_this] = ACTIONS(2927), }, - [STATE(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), + [STATE(331)] = { + [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), + [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_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(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(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), }, - [STATE(335)] = { + [STATE(332)] = { [sym_identifier] = ACTIONS(2931), [aux_sym_preproc_include_token1] = ACTIONS(2931), [aux_sym_preproc_def_token1] = ACTIONS(2931), @@ -92402,7 +92034,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2931), [sym_this] = ACTIONS(2931), }, - [STATE(336)] = { + [STATE(333)] = { + [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(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), + }, + [STATE(334)] = { [sym_identifier] = ACTIONS(2935), [aux_sym_preproc_include_token1] = ACTIONS(2935), [aux_sym_preproc_def_token1] = ACTIONS(2935), @@ -92542,7 +92314,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2935), [sym_this] = ACTIONS(2935), }, - [STATE(337)] = { + [STATE(335)] = { + [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), + [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_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(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), + }, + [STATE(336)] = { [sym_identifier] = ACTIONS(2939), [aux_sym_preproc_include_token1] = ACTIONS(2939), [aux_sym_preproc_def_token1] = ACTIONS(2939), @@ -92682,7 +92594,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2939), [sym_this] = ACTIONS(2939), }, - [STATE(338)] = { + [STATE(337)] = { [sym_identifier] = ACTIONS(2943), [aux_sym_preproc_include_token1] = ACTIONS(2943), [aux_sym_preproc_def_token1] = ACTIONS(2943), @@ -92822,7 +92734,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2943), [sym_this] = ACTIONS(2943), }, - [STATE(339)] = { + [STATE(338)] = { [sym_identifier] = ACTIONS(2947), [aux_sym_preproc_include_token1] = ACTIONS(2947), [aux_sym_preproc_def_token1] = ACTIONS(2947), @@ -92962,7 +92874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2947), [sym_this] = ACTIONS(2947), }, - [STATE(340)] = { + [STATE(339)] = { [sym_identifier] = ACTIONS(2951), [aux_sym_preproc_include_token1] = ACTIONS(2951), [aux_sym_preproc_def_token1] = ACTIONS(2951), @@ -93102,7 +93014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2951), [sym_this] = ACTIONS(2951), }, - [STATE(341)] = { + [STATE(340)] = { [sym_identifier] = ACTIONS(2955), [aux_sym_preproc_include_token1] = ACTIONS(2955), [aux_sym_preproc_def_token1] = ACTIONS(2955), @@ -93242,7 +93154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2955), [sym_this] = ACTIONS(2955), }, - [STATE(342)] = { + [STATE(341)] = { [sym_identifier] = ACTIONS(2959), [aux_sym_preproc_include_token1] = ACTIONS(2959), [aux_sym_preproc_def_token1] = ACTIONS(2959), @@ -93382,7 +93294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2959), [sym_this] = ACTIONS(2959), }, - [STATE(343)] = { + [STATE(342)] = { [sym_identifier] = ACTIONS(2963), [aux_sym_preproc_include_token1] = ACTIONS(2963), [aux_sym_preproc_def_token1] = ACTIONS(2963), @@ -93522,7 +93434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2963), [sym_this] = ACTIONS(2963), }, - [STATE(344)] = { + [STATE(343)] = { [sym_identifier] = ACTIONS(2967), [aux_sym_preproc_include_token1] = ACTIONS(2967), [aux_sym_preproc_def_token1] = ACTIONS(2967), @@ -93662,7 +93574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2967), [sym_this] = ACTIONS(2967), }, - [STATE(345)] = { + [STATE(344)] = { [sym_identifier] = ACTIONS(2971), [aux_sym_preproc_include_token1] = ACTIONS(2971), [aux_sym_preproc_def_token1] = ACTIONS(2971), @@ -93802,7 +93714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2971), [sym_this] = ACTIONS(2971), }, - [STATE(346)] = { + [STATE(345)] = { [sym_identifier] = ACTIONS(2975), [aux_sym_preproc_include_token1] = ACTIONS(2975), [aux_sym_preproc_def_token1] = ACTIONS(2975), @@ -93942,98 +93854,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2975), [sym_this] = ACTIONS(2975), }, - [STATE(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), + [STATE(346)] = { [sym_identifier] = ACTIONS(2979), - [aux_sym_preproc_def_token1] = ACTIONS(2981), + [aux_sym_preproc_include_token1] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_if_token2] = ACTIONS(2979), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2979), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2979), + [aux_sym_preproc_else_token1] = ACTIONS(2979), + [aux_sym_preproc_elif_token1] = ACTIONS(2979), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2979), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2979), + [sym_preproc_directive] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym___extension__] = ACTIONS(2979), + [anon_sym_typedef] = ACTIONS(2979), + [anon_sym_virtual] = ACTIONS(2979), + [anon_sym_extern] = ACTIONS(2979), + [anon_sym___attribute__] = ACTIONS(2979), + [anon_sym___attribute] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2981), + [anon_sym___declspec] = ACTIONS(2979), + [anon_sym___based] = ACTIONS(2979), + [anon_sym___cdecl] = ACTIONS(2979), + [anon_sym___clrcall] = ACTIONS(2979), + [anon_sym___stdcall] = ACTIONS(2979), + [anon_sym___fastcall] = ACTIONS(2979), + [anon_sym___thiscall] = ACTIONS(2979), + [anon_sym___vectorcall] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_signed] = ACTIONS(2979), + [anon_sym_unsigned] = ACTIONS(2979), + [anon_sym_long] = ACTIONS(2979), + [anon_sym_short] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_register] = ACTIONS(2979), + [anon_sym_inline] = ACTIONS(2979), + [anon_sym___inline] = ACTIONS(2979), + [anon_sym___inline__] = ACTIONS(2979), + [anon_sym___forceinline] = ACTIONS(2979), + [anon_sym_thread_local] = ACTIONS(2979), + [anon_sym___thread] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_constexpr] = ACTIONS(2979), + [anon_sym_volatile] = ACTIONS(2979), + [anon_sym_restrict] = ACTIONS(2979), + [anon_sym___restrict__] = ACTIONS(2979), + [anon_sym__Atomic] = ACTIONS(2979), + [anon_sym__Noreturn] = ACTIONS(2979), + [anon_sym_noreturn] = ACTIONS(2979), + [anon_sym__Nonnull] = ACTIONS(2979), + [anon_sym_mutable] = ACTIONS(2979), + [anon_sym_constinit] = ACTIONS(2979), + [anon_sym_consteval] = ACTIONS(2979), + [anon_sym_alignas] = ACTIONS(2979), + [anon_sym__Alignas] = ACTIONS(2979), + [sym_primitive_type] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), + [anon_sym_class] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_union] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_case] = ACTIONS(2979), + [anon_sym_default] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_goto] = ACTIONS(2979), + [anon_sym___try] = ACTIONS(2979), + [anon_sym___leave] = ACTIONS(2979), + [anon_sym_not] = ACTIONS(2979), + [anon_sym_compl] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2979), + [anon_sym___alignof__] = ACTIONS(2979), + [anon_sym___alignof] = ACTIONS(2979), + [anon_sym__alignof] = ACTIONS(2979), + [anon_sym_alignof] = ACTIONS(2979), + [anon_sym__Alignof] = ACTIONS(2979), + [anon_sym_offsetof] = ACTIONS(2979), + [anon_sym__Generic] = ACTIONS(2979), + [anon_sym_asm] = ACTIONS(2979), + [anon_sym___asm__] = ACTIONS(2979), + [anon_sym___asm] = ACTIONS(2979), + [sym_number_literal] = ACTIONS(2981), + [anon_sym_L_SQUOTE] = ACTIONS(2981), + [anon_sym_u_SQUOTE] = ACTIONS(2981), + [anon_sym_U_SQUOTE] = ACTIONS(2981), + [anon_sym_u8_SQUOTE] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_L_DQUOTE] = ACTIONS(2981), + [anon_sym_u_DQUOTE] = ACTIONS(2981), + [anon_sym_U_DQUOTE] = ACTIONS(2981), + [anon_sym_u8_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [anon_sym_NULL] = ACTIONS(2979), + [anon_sym_nullptr] = ACTIONS(2979), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2979), + [anon_sym_decltype] = ACTIONS(2979), + [anon_sym_explicit] = ACTIONS(2979), + [anon_sym_typename] = ACTIONS(2979), + [anon_sym_template] = ACTIONS(2979), + [anon_sym_operator] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_delete] = ACTIONS(2979), + [anon_sym_throw] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_static_assert] = ACTIONS(2979), + [anon_sym_concept] = ACTIONS(2979), + [anon_sym_co_return] = ACTIONS(2979), + [anon_sym_co_yield] = ACTIONS(2979), + [anon_sym_R_DQUOTE] = ACTIONS(2981), + [anon_sym_LR_DQUOTE] = ACTIONS(2981), + [anon_sym_uR_DQUOTE] = ACTIONS(2981), + [anon_sym_UR_DQUOTE] = ACTIONS(2981), + [anon_sym_u8R_DQUOTE] = ACTIONS(2981), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_requires] = ACTIONS(2979), + [sym_this] = ACTIONS(2979), + }, + [STATE(347)] = { + [sym_identifier] = ACTIONS(2983), + [aux_sym_preproc_include_token1] = ACTIONS(2983), + [aux_sym_preproc_def_token1] = ACTIONS(2983), [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), + [aux_sym_preproc_if_token2] = ACTIONS(2983), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2983), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2983), + [aux_sym_preproc_else_token1] = ACTIONS(2983), + [aux_sym_preproc_elif_token1] = ACTIONS(2983), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2983), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2983), + [sym_preproc_directive] = ACTIONS(2983), + [anon_sym_LPAREN2] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym___extension__] = ACTIONS(2983), + [anon_sym_typedef] = ACTIONS(2983), + [anon_sym_virtual] = ACTIONS(2983), + [anon_sym_extern] = ACTIONS(2983), + [anon_sym___attribute__] = ACTIONS(2983), + [anon_sym___attribute] = ACTIONS(2983), + [anon_sym_using] = ACTIONS(2983), + [anon_sym_COLON_COLON] = ACTIONS(2985), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2985), + [anon_sym___declspec] = ACTIONS(2983), + [anon_sym___based] = ACTIONS(2983), + [anon_sym___cdecl] = ACTIONS(2983), + [anon_sym___clrcall] = ACTIONS(2983), + [anon_sym___stdcall] = ACTIONS(2983), + [anon_sym___fastcall] = ACTIONS(2983), + [anon_sym___thiscall] = ACTIONS(2983), + [anon_sym___vectorcall] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_signed] = ACTIONS(2983), + [anon_sym_unsigned] = ACTIONS(2983), + [anon_sym_long] = ACTIONS(2983), + [anon_sym_short] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_static] = ACTIONS(2983), + [anon_sym_register] = ACTIONS(2983), + [anon_sym_inline] = ACTIONS(2983), + [anon_sym___inline] = ACTIONS(2983), + [anon_sym___inline__] = ACTIONS(2983), + [anon_sym___forceinline] = ACTIONS(2983), + [anon_sym_thread_local] = ACTIONS(2983), + [anon_sym___thread] = ACTIONS(2983), + [anon_sym_const] = ACTIONS(2983), + [anon_sym_constexpr] = ACTIONS(2983), + [anon_sym_volatile] = ACTIONS(2983), + [anon_sym_restrict] = ACTIONS(2983), + [anon_sym___restrict__] = ACTIONS(2983), + [anon_sym__Atomic] = ACTIONS(2983), + [anon_sym__Noreturn] = ACTIONS(2983), + [anon_sym_noreturn] = ACTIONS(2983), + [anon_sym__Nonnull] = ACTIONS(2983), + [anon_sym_mutable] = ACTIONS(2983), + [anon_sym_constinit] = ACTIONS(2983), + [anon_sym_consteval] = ACTIONS(2983), + [anon_sym_alignas] = ACTIONS(2983), + [anon_sym__Alignas] = ACTIONS(2983), + [sym_primitive_type] = ACTIONS(2983), + [anon_sym_enum] = ACTIONS(2983), + [anon_sym_class] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_union] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2983), + [anon_sym_case] = ACTIONS(2983), + [anon_sym_default] = ACTIONS(2983), + [anon_sym_while] = ACTIONS(2983), + [anon_sym_do] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_goto] = ACTIONS(2983), + [anon_sym___try] = ACTIONS(2983), + [anon_sym___leave] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_sizeof] = ACTIONS(2983), + [anon_sym___alignof__] = ACTIONS(2983), + [anon_sym___alignof] = ACTIONS(2983), + [anon_sym__alignof] = ACTIONS(2983), + [anon_sym_alignof] = ACTIONS(2983), + [anon_sym__Alignof] = ACTIONS(2983), + [anon_sym_offsetof] = ACTIONS(2983), + [anon_sym__Generic] = ACTIONS(2983), + [anon_sym_asm] = ACTIONS(2983), + [anon_sym___asm__] = ACTIONS(2983), + [anon_sym___asm] = ACTIONS(2983), + [sym_number_literal] = ACTIONS(2985), + [anon_sym_L_SQUOTE] = ACTIONS(2985), + [anon_sym_u_SQUOTE] = ACTIONS(2985), + [anon_sym_U_SQUOTE] = ACTIONS(2985), + [anon_sym_u8_SQUOTE] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_L_DQUOTE] = ACTIONS(2985), + [anon_sym_u_DQUOTE] = ACTIONS(2985), + [anon_sym_U_DQUOTE] = ACTIONS(2985), + [anon_sym_u8_DQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [anon_sym_NULL] = ACTIONS(2983), + [anon_sym_nullptr] = ACTIONS(2983), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2983), + [anon_sym_decltype] = ACTIONS(2983), + [anon_sym_explicit] = ACTIONS(2983), + [anon_sym_typename] = ACTIONS(2983), + [anon_sym_template] = ACTIONS(2983), + [anon_sym_operator] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2983), + [anon_sym_delete] = ACTIONS(2983), + [anon_sym_throw] = ACTIONS(2983), + [anon_sym_namespace] = ACTIONS(2983), + [anon_sym_static_assert] = ACTIONS(2983), + [anon_sym_concept] = ACTIONS(2983), + [anon_sym_co_return] = ACTIONS(2983), + [anon_sym_co_yield] = ACTIONS(2983), + [anon_sym_R_DQUOTE] = ACTIONS(2985), + [anon_sym_LR_DQUOTE] = ACTIONS(2985), + [anon_sym_uR_DQUOTE] = ACTIONS(2985), + [anon_sym_UR_DQUOTE] = ACTIONS(2985), + [anon_sym_u8R_DQUOTE] = ACTIONS(2985), + [anon_sym_co_await] = ACTIONS(2983), + [anon_sym_new] = ACTIONS(2983), + [anon_sym_requires] = ACTIONS(2983), + [sym_this] = ACTIONS(2983), + }, + [STATE(348)] = { + [sym_preproc_def] = STATE(386), + [sym_preproc_function_def] = STATE(386), + [sym_preproc_call] = STATE(386), + [sym_preproc_if_in_field_declaration_list] = STATE(386), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(386), + [sym_preproc_else_in_field_declaration_list] = STATE(8960), + [sym_preproc_elif_in_field_declaration_list] = STATE(8960), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8960), + [sym_type_definition] = STATE(386), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(386), + [sym_field_declaration] = STATE(386), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(386), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(386), + [sym__constructor_specifiers] = STATE(1798), + [sym_operator_cast_definition] = STATE(386), + [sym_operator_cast_declaration] = STATE(386), + [sym_constructor_or_destructor_definition] = STATE(386), + [sym_constructor_or_destructor_declaration] = STATE(386), + [sym_friend_declaration] = STATE(386), + [sym_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(386), + [sym_alias_declaration] = STATE(386), + [sym_static_assert_declaration] = STATE(386), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(386), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(2993), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -94041,7 +94233,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -94051,7 +94243,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -94064,25 +94256,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, - [STATE(348)] = { + [STATE(349)] = { [ts_builtin_sym_end] = ACTIONS(2693), [sym_identifier] = ACTIONS(2691), [aux_sym_preproc_include_token1] = ACTIONS(2691), @@ -94222,565 +94414,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2691), [sym_this] = ACTIONS(2691), }, - [STATE(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(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), - }, [STATE(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), + [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(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), + [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), }, [STATE(351)] = { - [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_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_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_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(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), + [ts_builtin_sym_end] = ACTIONS(2653), + [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_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(2651), + [anon_sym_decltype] = ACTIONS(2651), + [anon_sym_explicit] = ACTIONS(2651), + [anon_sym_typename] = ACTIONS(2651), + [anon_sym_export] = ACTIONS(2651), + [anon_sym_module] = ACTIONS(2651), + [anon_sym_import] = 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), }, [STATE(352)] = { - [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), - [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), + [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), }, [STATE(353)] = { [sym_identifier] = ACTIONS(3047), @@ -95063,191 +95115,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(3051), }, [STATE(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), + [sym_identifier] = ACTIONS(3055), + [aux_sym_preproc_include_token1] = ACTIONS(3055), + [aux_sym_preproc_def_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token2] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), + [aux_sym_preproc_else_token1] = ACTIONS(3055), + [aux_sym_preproc_elif_token1] = ACTIONS(3055), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3055), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3055), + [sym_preproc_directive] = ACTIONS(3055), + [anon_sym_LPAREN2] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_virtual] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = ACTIONS(3055), + [anon_sym___attribute] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_COLON_COLON] = ACTIONS(3057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), + [anon_sym___declspec] = ACTIONS(3055), + [anon_sym___based] = ACTIONS(3055), + [anon_sym___cdecl] = ACTIONS(3055), + [anon_sym___clrcall] = ACTIONS(3055), + [anon_sym___stdcall] = ACTIONS(3055), + [anon_sym___fastcall] = ACTIONS(3055), + [anon_sym___thiscall] = ACTIONS(3055), + [anon_sym___vectorcall] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_signed] = ACTIONS(3055), + [anon_sym_unsigned] = ACTIONS(3055), + [anon_sym_long] = ACTIONS(3055), + [anon_sym_short] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_static] = ACTIONS(3055), + [anon_sym_register] = ACTIONS(3055), + [anon_sym_inline] = ACTIONS(3055), + [anon_sym___inline] = ACTIONS(3055), + [anon_sym___inline__] = ACTIONS(3055), + [anon_sym___forceinline] = ACTIONS(3055), + [anon_sym_thread_local] = ACTIONS(3055), + [anon_sym___thread] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_constexpr] = ACTIONS(3055), + [anon_sym_volatile] = ACTIONS(3055), + [anon_sym_restrict] = ACTIONS(3055), + [anon_sym___restrict__] = ACTIONS(3055), + [anon_sym__Atomic] = ACTIONS(3055), + [anon_sym__Noreturn] = ACTIONS(3055), + [anon_sym_noreturn] = ACTIONS(3055), + [anon_sym__Nonnull] = ACTIONS(3055), + [anon_sym_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = ACTIONS(3055), + [anon_sym_alignas] = ACTIONS(3055), + [anon_sym__Alignas] = ACTIONS(3055), + [sym_primitive_type] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_class] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3055), + [anon_sym_default] = ACTIONS(3055), + [anon_sym_while] = ACTIONS(3055), + [anon_sym_do] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym___try] = ACTIONS(3055), + [anon_sym___leave] = ACTIONS(3055), + [anon_sym_not] = ACTIONS(3055), + [anon_sym_compl] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3057), + [anon_sym_sizeof] = ACTIONS(3055), + [anon_sym___alignof__] = ACTIONS(3055), + [anon_sym___alignof] = ACTIONS(3055), + [anon_sym__alignof] = ACTIONS(3055), + [anon_sym_alignof] = ACTIONS(3055), + [anon_sym__Alignof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3055), + [anon_sym__Generic] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), + [anon_sym___asm__] = ACTIONS(3055), + [anon_sym___asm] = ACTIONS(3055), + [sym_number_literal] = ACTIONS(3057), + [anon_sym_L_SQUOTE] = ACTIONS(3057), + [anon_sym_u_SQUOTE] = ACTIONS(3057), + [anon_sym_U_SQUOTE] = ACTIONS(3057), + [anon_sym_u8_SQUOTE] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3057), + [anon_sym_L_DQUOTE] = ACTIONS(3057), + [anon_sym_u_DQUOTE] = ACTIONS(3057), + [anon_sym_U_DQUOTE] = ACTIONS(3057), + [anon_sym_u8_DQUOTE] = ACTIONS(3057), + [anon_sym_DQUOTE] = ACTIONS(3057), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [anon_sym_NULL] = ACTIONS(3055), + [anon_sym_nullptr] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3055), + [anon_sym_decltype] = ACTIONS(3055), + [anon_sym_explicit] = ACTIONS(3055), + [anon_sym_typename] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(3055), + [anon_sym_try] = ACTIONS(3055), + [anon_sym_delete] = ACTIONS(3055), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_namespace] = ACTIONS(3055), + [anon_sym_static_assert] = ACTIONS(3055), + [anon_sym_concept] = ACTIONS(3055), + [anon_sym_co_return] = ACTIONS(3055), + [anon_sym_co_yield] = ACTIONS(3055), + [anon_sym_R_DQUOTE] = ACTIONS(3057), + [anon_sym_LR_DQUOTE] = ACTIONS(3057), + [anon_sym_uR_DQUOTE] = ACTIONS(3057), + [anon_sym_UR_DQUOTE] = ACTIONS(3057), + [anon_sym_u8R_DQUOTE] = ACTIONS(3057), + [anon_sym_co_await] = ACTIONS(3055), + [anon_sym_new] = ACTIONS(3055), + [anon_sym_requires] = ACTIONS(3055), + [sym_this] = ACTIONS(3055), }, [STATE(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), + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_include_token1] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token2] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [aux_sym_preproc_else_token1] = ACTIONS(3059), + [aux_sym_preproc_elif_token1] = ACTIONS(3059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = ACTIONS(3059), + [anon_sym___attribute] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), + [anon_sym___declspec] = ACTIONS(3059), + [anon_sym___based] = ACTIONS(3059), + [anon_sym___cdecl] = ACTIONS(3059), + [anon_sym___clrcall] = ACTIONS(3059), + [anon_sym___stdcall] = ACTIONS(3059), + [anon_sym___fastcall] = ACTIONS(3059), + [anon_sym___thiscall] = ACTIONS(3059), + [anon_sym___vectorcall] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_signed] = ACTIONS(3059), + [anon_sym_unsigned] = ACTIONS(3059), + [anon_sym_long] = ACTIONS(3059), + [anon_sym_short] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_register] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym___inline] = ACTIONS(3059), + [anon_sym___inline__] = ACTIONS(3059), + [anon_sym___forceinline] = ACTIONS(3059), + [anon_sym_thread_local] = ACTIONS(3059), + [anon_sym___thread] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_constexpr] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(3059), + [anon_sym_restrict] = ACTIONS(3059), + [anon_sym___restrict__] = ACTIONS(3059), + [anon_sym__Atomic] = ACTIONS(3059), + [anon_sym__Noreturn] = ACTIONS(3059), + [anon_sym_noreturn] = ACTIONS(3059), + [anon_sym__Nonnull] = ACTIONS(3059), + [anon_sym_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(3059), + [anon_sym__Alignas] = ACTIONS(3059), + [sym_primitive_type] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_switch] = ACTIONS(3059), + [anon_sym_case] = ACTIONS(3059), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_do] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_goto] = ACTIONS(3059), + [anon_sym___try] = ACTIONS(3059), + [anon_sym___leave] = ACTIONS(3059), + [anon_sym_not] = ACTIONS(3059), + [anon_sym_compl] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_sizeof] = ACTIONS(3059), + [anon_sym___alignof__] = ACTIONS(3059), + [anon_sym___alignof] = ACTIONS(3059), + [anon_sym__alignof] = ACTIONS(3059), + [anon_sym_alignof] = ACTIONS(3059), + [anon_sym__Alignof] = ACTIONS(3059), + [anon_sym_offsetof] = ACTIONS(3059), + [anon_sym__Generic] = ACTIONS(3059), + [anon_sym_asm] = ACTIONS(3059), + [anon_sym___asm__] = ACTIONS(3059), + [anon_sym___asm] = ACTIONS(3059), + [sym_number_literal] = ACTIONS(3061), + [anon_sym_L_SQUOTE] = ACTIONS(3061), + [anon_sym_u_SQUOTE] = ACTIONS(3061), + [anon_sym_U_SQUOTE] = ACTIONS(3061), + [anon_sym_u8_SQUOTE] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_L_DQUOTE] = ACTIONS(3061), + [anon_sym_u_DQUOTE] = ACTIONS(3061), + [anon_sym_U_DQUOTE] = ACTIONS(3061), + [anon_sym_u8_DQUOTE] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [anon_sym_NULL] = ACTIONS(3059), + [anon_sym_nullptr] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3059), + [anon_sym_decltype] = ACTIONS(3059), + [anon_sym_explicit] = ACTIONS(3059), + [anon_sym_typename] = ACTIONS(3059), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_delete] = ACTIONS(3059), + [anon_sym_throw] = ACTIONS(3059), + [anon_sym_namespace] = ACTIONS(3059), + [anon_sym_static_assert] = ACTIONS(3059), + [anon_sym_concept] = ACTIONS(3059), + [anon_sym_co_return] = ACTIONS(3059), + [anon_sym_co_yield] = ACTIONS(3059), + [anon_sym_R_DQUOTE] = ACTIONS(3061), + [anon_sym_LR_DQUOTE] = ACTIONS(3061), + [anon_sym_uR_DQUOTE] = ACTIONS(3061), + [anon_sym_UR_DQUOTE] = ACTIONS(3061), + [anon_sym_u8R_DQUOTE] = ACTIONS(3061), + [anon_sym_co_await] = ACTIONS(3059), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_requires] = ACTIONS(3059), + [sym_this] = ACTIONS(3059), + }, + [STATE(357)] = { + [sym_expression] = STATE(4494), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8209), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3063), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -95255,47 +95447,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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_SEMI] = ACTIONS(3066), + [anon_sym___extension__] = ACTIONS(3068), + [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(3071), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2665), + [anon_sym___declspec] = 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(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_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(3074), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_class] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -95327,10 +95519,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(2725), - [anon_sym_decltype] = ACTIONS(3069), - [anon_sym_typename] = ACTIONS(2725), - [anon_sym_template] = ACTIONS(3072), + [sym_auto] = ACTIONS(2663), + [anon_sym_decltype] = ACTIONS(3077), + [anon_sym_typename] = ACTIONS(2663), + [anon_sym_template] = ACTIONS(3080), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -95342,427 +95534,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, [STATE(358)] = { - [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(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_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), + [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_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(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), }, [STATE(359)] = { - [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), - [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_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(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), - }, - [STATE(360)] = { [sym_identifier] = ACTIONS(3083), [aux_sym_preproc_include_token1] = ACTIONS(3083), [aux_sym_preproc_def_token1] = ACTIONS(3083), @@ -95902,6 +95814,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3083), [sym_this] = ACTIONS(3083), }, + [STATE(360)] = { + [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), + }, [STATE(361)] = { [sym_identifier] = ACTIONS(3087), [aux_sym_preproc_include_token1] = ACTIONS(3087), @@ -96323,844 +96375,844 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(3095), }, [STATE(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), + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [aux_sym_preproc_else_token1] = ACTIONS(3099), + [aux_sym_preproc_elif_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym___attribute] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym__Nonnull] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym__Alignas] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym___try] = ACTIONS(3099), + [anon_sym___leave] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [anon_sym___asm] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), }, [STATE(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), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym___attribute] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym__Nonnull] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym__Alignas] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym___try] = ACTIONS(3103), + [anon_sym___leave] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [anon_sym___asm] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), }, [STATE(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), + [sym_catch_clause] = STATE(369), + [aux_sym_constructor_try_statement_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_include_token1] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token2] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym___extension__] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym___attribute] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym___cdecl] = ACTIONS(2541), + [anon_sym___clrcall] = ACTIONS(2541), + [anon_sym___stdcall] = ACTIONS(2541), + [anon_sym___fastcall] = ACTIONS(2541), + [anon_sym___thiscall] = ACTIONS(2541), + [anon_sym___vectorcall] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym___inline] = ACTIONS(2541), + [anon_sym___inline__] = ACTIONS(2541), + [anon_sym___forceinline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym___thread] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym___restrict__] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym__Noreturn] = ACTIONS(2541), + [anon_sym_noreturn] = ACTIONS(2541), + [anon_sym__Nonnull] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_alignas] = ACTIONS(2541), + [anon_sym__Alignas] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym___try] = ACTIONS(2541), + [anon_sym___leave] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [anon_sym___alignof__] = ACTIONS(2541), + [anon_sym___alignof] = ACTIONS(2541), + [anon_sym__alignof] = ACTIONS(2541), + [anon_sym_alignof] = ACTIONS(2541), + [anon_sym__Alignof] = ACTIONS(2541), + [anon_sym_offsetof] = ACTIONS(2541), + [anon_sym__Generic] = ACTIONS(2541), + [anon_sym_asm] = ACTIONS(2541), + [anon_sym___asm__] = ACTIONS(2541), + [anon_sym___asm] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [anon_sym_nullptr] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_concept] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_catch] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(2543), + [anon_sym_LR_DQUOTE] = ACTIONS(2543), + [anon_sym_uR_DQUOTE] = ACTIONS(2543), + [anon_sym_UR_DQUOTE] = ACTIONS(2543), + [anon_sym_u8R_DQUOTE] = ACTIONS(2543), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), }, [STATE(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), - [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_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_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___cdecl] = ACTIONS(2476), - [anon_sym___clrcall] = ACTIONS(2476), - [anon_sym___stdcall] = ACTIONS(2476), - [anon_sym___fastcall] = ACTIONS(2476), - [anon_sym___thiscall] = ACTIONS(2476), - [anon_sym___vectorcall] = 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_case] = ACTIONS(2476), - [anon_sym_default] = 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_explicit] = ACTIONS(2476), - [anon_sym_typename] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_operator] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2476), - [anon_sym_throw] = ACTIONS(2476), - [anon_sym_namespace] = ACTIONS(2476), - [anon_sym_static_assert] = ACTIONS(2476), - [anon_sym_concept] = ACTIONS(2476), - [anon_sym_co_return] = ACTIONS(2476), - [anon_sym_co_yield] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(3109), - [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_identifier] = ACTIONS(3109), + [aux_sym_preproc_include_token1] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token2] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [aux_sym_preproc_else_token1] = ACTIONS(3109), + [aux_sym_preproc_elif_token1] = ACTIONS(3109), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym___extension__] = ACTIONS(3109), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym___attribute] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym___cdecl] = ACTIONS(3109), + [anon_sym___clrcall] = ACTIONS(3109), + [anon_sym___stdcall] = ACTIONS(3109), + [anon_sym___fastcall] = ACTIONS(3109), + [anon_sym___thiscall] = ACTIONS(3109), + [anon_sym___vectorcall] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym___inline] = ACTIONS(3109), + [anon_sym___inline__] = ACTIONS(3109), + [anon_sym___forceinline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym___thread] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym__Nonnull] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_alignas] = ACTIONS(3109), + [anon_sym__Alignas] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym___try] = ACTIONS(3109), + [anon_sym___leave] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym___alignof__] = ACTIONS(3109), + [anon_sym___alignof] = ACTIONS(3109), + [anon_sym__alignof] = ACTIONS(3109), + [anon_sym_alignof] = ACTIONS(3109), + [anon_sym__Alignof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [anon_sym___asm] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), + [anon_sym_concept] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), }, [STATE(368)] = { - [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), - [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_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(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_identifier] = ACTIONS(3113), + [aux_sym_preproc_include_token1] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token2] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [aux_sym_preproc_else_token1] = ACTIONS(3113), + [aux_sym_preproc_elif_token1] = ACTIONS(3113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym___attribute] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym___cdecl] = ACTIONS(3113), + [anon_sym___clrcall] = ACTIONS(3113), + [anon_sym___stdcall] = ACTIONS(3113), + [anon_sym___fastcall] = ACTIONS(3113), + [anon_sym___thiscall] = ACTIONS(3113), + [anon_sym___vectorcall] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym___inline] = ACTIONS(3113), + [anon_sym___inline__] = ACTIONS(3113), + [anon_sym___forceinline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym___thread] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym__Nonnull] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_alignas] = ACTIONS(3113), + [anon_sym__Alignas] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym___try] = ACTIONS(3113), + [anon_sym___leave] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym___alignof__] = ACTIONS(3113), + [anon_sym___alignof] = ACTIONS(3113), + [anon_sym__alignof] = ACTIONS(3113), + [anon_sym_alignof] = ACTIONS(3113), + [anon_sym__Alignof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [anon_sym___asm] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), + [anon_sym_concept] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), }, [STATE(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), + [sym_catch_clause] = STATE(369), + [aux_sym_constructor_try_statement_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token2] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_AMP_AMP] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_virtual] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_using] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___based] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_mutable] = ACTIONS(2490), + [anon_sym_constinit] = ACTIONS(2490), + [anon_sym_consteval] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym___try] = ACTIONS(2490), + [anon_sym___leave] = ACTIONS(2490), + [anon_sym_not] = ACTIONS(2490), + [anon_sym_compl] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2490), + [anon_sym_decltype] = ACTIONS(2490), + [anon_sym_explicit] = ACTIONS(2490), + [anon_sym_typename] = ACTIONS(2490), + [anon_sym_template] = ACTIONS(2490), + [anon_sym_operator] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_delete] = ACTIONS(2490), + [anon_sym_throw] = ACTIONS(2490), + [anon_sym_namespace] = ACTIONS(2490), + [anon_sym_static_assert] = ACTIONS(2490), + [anon_sym_concept] = ACTIONS(2490), + [anon_sym_co_return] = ACTIONS(2490), + [anon_sym_co_yield] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(3117), + [anon_sym_R_DQUOTE] = ACTIONS(2492), + [anon_sym_LR_DQUOTE] = ACTIONS(2492), + [anon_sym_uR_DQUOTE] = ACTIONS(2492), + [anon_sym_UR_DQUOTE] = ACTIONS(2492), + [anon_sym_u8R_DQUOTE] = ACTIONS(2492), + [anon_sym_co_await] = ACTIONS(2490), + [anon_sym_new] = ACTIONS(2490), + [anon_sym_requires] = ACTIONS(2490), + [sym_this] = ACTIONS(2490), }, [STATE(370)] = { [sym_identifier] = ACTIONS(3120), @@ -97443,1217 +97495,1357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(3124), }, [STATE(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), + [sym_identifier] = ACTIONS(3128), + [aux_sym_preproc_include_token1] = ACTIONS(3128), + [aux_sym_preproc_def_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token2] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), + [aux_sym_preproc_else_token1] = ACTIONS(3128), + [aux_sym_preproc_elif_token1] = ACTIONS(3128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3128), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3128), + [sym_preproc_directive] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_AMP_AMP] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_typedef] = ACTIONS(3128), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym___cdecl] = ACTIONS(3128), + [anon_sym___clrcall] = ACTIONS(3128), + [anon_sym___stdcall] = ACTIONS(3128), + [anon_sym___fastcall] = ACTIONS(3128), + [anon_sym___thiscall] = ACTIONS(3128), + [anon_sym___vectorcall] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_case] = ACTIONS(3128), + [anon_sym_default] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_goto] = ACTIONS(3128), + [anon_sym___try] = ACTIONS(3128), + [anon_sym___leave] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3128), + [anon_sym_compl] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3130), + [anon_sym_sizeof] = ACTIONS(3128), + [anon_sym___alignof__] = ACTIONS(3128), + [anon_sym___alignof] = ACTIONS(3128), + [anon_sym__alignof] = ACTIONS(3128), + [anon_sym_alignof] = ACTIONS(3128), + [anon_sym__Alignof] = ACTIONS(3128), + [anon_sym_offsetof] = ACTIONS(3128), + [anon_sym__Generic] = ACTIONS(3128), + [anon_sym_asm] = ACTIONS(3128), + [anon_sym___asm__] = ACTIONS(3128), + [anon_sym___asm] = ACTIONS(3128), + [sym_number_literal] = ACTIONS(3130), + [anon_sym_L_SQUOTE] = ACTIONS(3130), + [anon_sym_u_SQUOTE] = ACTIONS(3130), + [anon_sym_U_SQUOTE] = ACTIONS(3130), + [anon_sym_u8_SQUOTE] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3130), + [anon_sym_L_DQUOTE] = ACTIONS(3130), + [anon_sym_u_DQUOTE] = ACTIONS(3130), + [anon_sym_U_DQUOTE] = ACTIONS(3130), + [anon_sym_u8_DQUOTE] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(3130), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [anon_sym_NULL] = ACTIONS(3128), + [anon_sym_nullptr] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3128), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_typename] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3128), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_static_assert] = ACTIONS(3128), + [anon_sym_concept] = ACTIONS(3128), + [anon_sym_co_return] = ACTIONS(3128), + [anon_sym_co_yield] = ACTIONS(3128), + [anon_sym_R_DQUOTE] = ACTIONS(3130), + [anon_sym_LR_DQUOTE] = ACTIONS(3130), + [anon_sym_uR_DQUOTE] = ACTIONS(3130), + [anon_sym_UR_DQUOTE] = ACTIONS(3130), + [anon_sym_u8R_DQUOTE] = ACTIONS(3130), + [anon_sym_co_await] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), }, [STATE(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), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_include_token1] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token2] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), + [aux_sym_preproc_else_token1] = ACTIONS(3132), + [aux_sym_preproc_elif_token1] = ACTIONS(3132), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3132), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3132), + [sym_preproc_directive] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3132), + [anon_sym_virtual] = ACTIONS(3132), + [anon_sym_extern] = ACTIONS(3132), + [anon_sym___attribute__] = ACTIONS(3132), + [anon_sym___attribute] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), + [anon_sym___declspec] = ACTIONS(3132), + [anon_sym___based] = ACTIONS(3132), + [anon_sym___cdecl] = ACTIONS(3132), + [anon_sym___clrcall] = ACTIONS(3132), + [anon_sym___stdcall] = ACTIONS(3132), + [anon_sym___fastcall] = ACTIONS(3132), + [anon_sym___thiscall] = ACTIONS(3132), + [anon_sym___vectorcall] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3134), + [anon_sym_signed] = ACTIONS(3132), + [anon_sym_unsigned] = ACTIONS(3132), + [anon_sym_long] = ACTIONS(3132), + [anon_sym_short] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_register] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym___inline] = ACTIONS(3132), + [anon_sym___inline__] = ACTIONS(3132), + [anon_sym___forceinline] = ACTIONS(3132), + [anon_sym_thread_local] = ACTIONS(3132), + [anon_sym___thread] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_constexpr] = ACTIONS(3132), + [anon_sym_volatile] = ACTIONS(3132), + [anon_sym_restrict] = ACTIONS(3132), + [anon_sym___restrict__] = ACTIONS(3132), + [anon_sym__Atomic] = ACTIONS(3132), + [anon_sym__Noreturn] = ACTIONS(3132), + [anon_sym_noreturn] = ACTIONS(3132), + [anon_sym__Nonnull] = ACTIONS(3132), + [anon_sym_mutable] = ACTIONS(3132), + [anon_sym_constinit] = ACTIONS(3132), + [anon_sym_consteval] = ACTIONS(3132), + [anon_sym_alignas] = ACTIONS(3132), + [anon_sym__Alignas] = ACTIONS(3132), + [sym_primitive_type] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3132), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_goto] = ACTIONS(3132), + [anon_sym___try] = ACTIONS(3132), + [anon_sym___leave] = ACTIONS(3132), + [anon_sym_not] = ACTIONS(3132), + [anon_sym_compl] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3134), + [anon_sym_sizeof] = ACTIONS(3132), + [anon_sym___alignof__] = ACTIONS(3132), + [anon_sym___alignof] = ACTIONS(3132), + [anon_sym__alignof] = ACTIONS(3132), + [anon_sym_alignof] = ACTIONS(3132), + [anon_sym__Alignof] = ACTIONS(3132), + [anon_sym_offsetof] = ACTIONS(3132), + [anon_sym__Generic] = ACTIONS(3132), + [anon_sym_asm] = ACTIONS(3132), + [anon_sym___asm__] = ACTIONS(3132), + [anon_sym___asm] = ACTIONS(3132), + [sym_number_literal] = ACTIONS(3134), + [anon_sym_L_SQUOTE] = ACTIONS(3134), + [anon_sym_u_SQUOTE] = ACTIONS(3134), + [anon_sym_U_SQUOTE] = ACTIONS(3134), + [anon_sym_u8_SQUOTE] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(3134), + [anon_sym_L_DQUOTE] = ACTIONS(3134), + [anon_sym_u_DQUOTE] = ACTIONS(3134), + [anon_sym_U_DQUOTE] = ACTIONS(3134), + [anon_sym_u8_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE] = ACTIONS(3134), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [anon_sym_NULL] = ACTIONS(3132), + [anon_sym_nullptr] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3132), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3132), + [anon_sym_typename] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_static_assert] = ACTIONS(3132), + [anon_sym_concept] = ACTIONS(3132), + [anon_sym_co_return] = ACTIONS(3132), + [anon_sym_co_yield] = ACTIONS(3132), + [anon_sym_R_DQUOTE] = ACTIONS(3134), + [anon_sym_LR_DQUOTE] = ACTIONS(3134), + [anon_sym_uR_DQUOTE] = ACTIONS(3134), + [anon_sym_UR_DQUOTE] = ACTIONS(3134), + [anon_sym_u8R_DQUOTE] = ACTIONS(3134), + [anon_sym_co_await] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_requires] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), }, [STATE(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), + [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(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), + [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), }, [STATE(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), + [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(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), + [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), }, [STATE(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), + [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), }, [STATE(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), - }, - [STATE(378)] = { - [ts_builtin_sym_end] = ACTIONS(2761), - [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_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), + [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(2759), - [anon_sym_decltype] = ACTIONS(2759), - [anon_sym_explicit] = ACTIONS(2759), - [anon_sym_typename] = ACTIONS(2759), - [anon_sym_export] = ACTIONS(2759), - [anon_sym_module] = ACTIONS(2759), - [anon_sym_import] = 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(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), + }, + [STATE(378)] = { + [sym_catch_clause] = STATE(228), + [aux_sym_constructor_try_statement_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(2595), + [sym_identifier] = ACTIONS(2593), + [aux_sym_preproc_include_token1] = ACTIONS(2593), + [aux_sym_preproc_def_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2593), + [sym_preproc_directive] = ACTIONS(2593), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_AMP_AMP] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym___extension__] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2593), + [anon_sym_virtual] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym___attribute__] = ACTIONS(2593), + [anon_sym___attribute] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2595), + [anon_sym___declspec] = ACTIONS(2593), + [anon_sym___based] = ACTIONS(2593), + [anon_sym___cdecl] = ACTIONS(2593), + [anon_sym___clrcall] = ACTIONS(2593), + [anon_sym___stdcall] = ACTIONS(2593), + [anon_sym___fastcall] = ACTIONS(2593), + [anon_sym___thiscall] = ACTIONS(2593), + [anon_sym___vectorcall] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2593), + [anon_sym_unsigned] = ACTIONS(2593), + [anon_sym_long] = ACTIONS(2593), + [anon_sym_short] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_register] = ACTIONS(2593), + [anon_sym_inline] = ACTIONS(2593), + [anon_sym___inline] = ACTIONS(2593), + [anon_sym___inline__] = ACTIONS(2593), + [anon_sym___forceinline] = ACTIONS(2593), + [anon_sym_thread_local] = ACTIONS(2593), + [anon_sym___thread] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_constexpr] = ACTIONS(2593), + [anon_sym_volatile] = ACTIONS(2593), + [anon_sym_restrict] = ACTIONS(2593), + [anon_sym___restrict__] = ACTIONS(2593), + [anon_sym__Atomic] = ACTIONS(2593), + [anon_sym__Noreturn] = ACTIONS(2593), + [anon_sym_noreturn] = ACTIONS(2593), + [anon_sym__Nonnull] = ACTIONS(2593), + [anon_sym_mutable] = ACTIONS(2593), + [anon_sym_constinit] = ACTIONS(2593), + [anon_sym_consteval] = ACTIONS(2593), + [anon_sym_alignas] = ACTIONS(2593), + [anon_sym__Alignas] = ACTIONS(2593), + [sym_primitive_type] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_case] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_goto] = ACTIONS(2593), + [anon_sym_not] = ACTIONS(2593), + [anon_sym_compl] = ACTIONS(2593), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_sizeof] = ACTIONS(2593), + [anon_sym___alignof__] = ACTIONS(2593), + [anon_sym___alignof] = ACTIONS(2593), + [anon_sym__alignof] = ACTIONS(2593), + [anon_sym_alignof] = ACTIONS(2593), + [anon_sym__Alignof] = ACTIONS(2593), + [anon_sym_offsetof] = ACTIONS(2593), + [anon_sym__Generic] = ACTIONS(2593), + [anon_sym_asm] = ACTIONS(2593), + [anon_sym___asm__] = ACTIONS(2593), + [anon_sym___asm] = ACTIONS(2593), + [sym_number_literal] = ACTIONS(2595), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2595), + [anon_sym_u_DQUOTE] = ACTIONS(2595), + [anon_sym_U_DQUOTE] = ACTIONS(2595), + [anon_sym_u8_DQUOTE] = ACTIONS(2595), + [anon_sym_DQUOTE] = ACTIONS(2595), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [anon_sym_nullptr] = ACTIONS(2593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2593), + [anon_sym_decltype] = ACTIONS(2593), + [anon_sym_explicit] = ACTIONS(2593), + [anon_sym_typename] = ACTIONS(2593), + [anon_sym_export] = ACTIONS(2593), + [anon_sym_module] = ACTIONS(2593), + [anon_sym_import] = ACTIONS(2593), + [anon_sym_template] = ACTIONS(2593), + [anon_sym_operator] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_delete] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_static_assert] = ACTIONS(2593), + [anon_sym_concept] = ACTIONS(2593), + [anon_sym_co_return] = ACTIONS(2593), + [anon_sym_co_yield] = ACTIONS(2593), + [anon_sym_catch] = ACTIONS(2601), + [anon_sym_R_DQUOTE] = ACTIONS(2595), + [anon_sym_LR_DQUOTE] = ACTIONS(2595), + [anon_sym_uR_DQUOTE] = ACTIONS(2595), + [anon_sym_UR_DQUOTE] = ACTIONS(2595), + [anon_sym_u8R_DQUOTE] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_requires] = ACTIONS(2593), + [sym_this] = ACTIONS(2593), }, [STATE(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(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_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4471), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7160), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7331), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [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(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3190), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, [STATE(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), + [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), + }, + [STATE(381)] = { + [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(8229), + [sym_preproc_elif_in_field_declaration_list] = STATE(8229), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8229), + [sym_type_definition] = STATE(384), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(384), + [sym_field_declaration] = STATE(384), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(384), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(384), + [sym__constructor_specifiers] = STATE(1798), + [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(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(384), + [sym_alias_declaration] = STATE(384), + [sym_static_assert_declaration] = STATE(384), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(384), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3202), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -98661,7 +98853,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -98671,7 +98863,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -98684,116 +98876,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, - [STATE(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), + [STATE(382)] = { + [sym_preproc_def] = STATE(402), + [sym_preproc_function_def] = STATE(402), + [sym_preproc_call] = STATE(402), + [sym_preproc_if_in_field_declaration_list] = STATE(402), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(402), + [sym_preproc_else_in_field_declaration_list] = STATE(8583), + [sym_preproc_elif_in_field_declaration_list] = STATE(8583), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8583), + [sym_type_definition] = STATE(402), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(402), + [sym_field_declaration] = STATE(402), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(402), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(402), + [sym__constructor_specifiers] = STATE(1798), + [sym_operator_cast_definition] = STATE(402), + [sym_operator_cast_declaration] = STATE(402), + [sym_constructor_or_destructor_definition] = STATE(402), + [sym_constructor_or_destructor_declaration] = STATE(402), + [sym_friend_declaration] = STATE(402), + [sym_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(402), + [sym_alias_declaration] = STATE(402), + [sym_static_assert_declaration] = STATE(402), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(402), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3206), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [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_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -98801,7 +98993,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -98811,7 +99003,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -98824,116 +99016,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, - [STATE(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), + [STATE(383)] = { + [sym_preproc_def] = STATE(385), + [sym_preproc_function_def] = STATE(385), + [sym_preproc_call] = STATE(385), + [sym_preproc_if_in_field_declaration_list] = STATE(385), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(385), + [sym_preproc_else_in_field_declaration_list] = STATE(8360), + [sym_preproc_elif_in_field_declaration_list] = STATE(8360), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8360), + [sym_type_definition] = STATE(385), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(385), + [sym_field_declaration] = STATE(385), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(385), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(385), + [sym__constructor_specifiers] = STATE(1798), + [sym_operator_cast_definition] = STATE(385), + [sym_operator_cast_declaration] = STATE(385), + [sym_constructor_or_destructor_definition] = STATE(385), + [sym_constructor_or_destructor_declaration] = STATE(385), + [sym_friend_declaration] = STATE(385), + [sym_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(385), + [sym_alias_declaration] = STATE(385), + [sym_static_assert_declaration] = STATE(385), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(385), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3210), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -98941,7 +99133,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -98951,7 +99143,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -98964,116 +99156,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, - [STATE(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), + [STATE(384)] = { + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_field_declaration_list] = STATE(606), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(606), + [sym_preproc_else_in_field_declaration_list] = STATE(8424), + [sym_preproc_elif_in_field_declaration_list] = STATE(8424), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8424), + [sym_type_definition] = STATE(606), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(606), + [sym_field_declaration] = STATE(606), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(606), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(606), + [sym__constructor_specifiers] = STATE(1798), + [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(606), + [sym_alias_declaration] = STATE(606), + [sym_static_assert_declaration] = STATE(606), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(606), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3214), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [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_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -99081,7 +99273,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -99091,7 +99283,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -99104,116 +99296,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, - [STATE(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), + [STATE(385)] = { + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_field_declaration_list] = STATE(606), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(606), + [sym_preproc_else_in_field_declaration_list] = STATE(8242), + [sym_preproc_elif_in_field_declaration_list] = STATE(8242), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8242), + [sym_type_definition] = STATE(606), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(606), + [sym_field_declaration] = STATE(606), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(606), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(606), + [sym__constructor_specifiers] = STATE(1798), + [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(606), + [sym_alias_declaration] = STATE(606), + [sym_static_assert_declaration] = STATE(606), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(606), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3218), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [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_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -99221,7 +99413,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -99231,7 +99423,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -99244,25 +99436,305 @@ 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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, - [STATE(385)] = { + [STATE(386)] = { + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_field_declaration_list] = STATE(606), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(606), + [sym_preproc_else_in_field_declaration_list] = STATE(8898), + [sym_preproc_elif_in_field_declaration_list] = STATE(8898), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8898), + [sym_type_definition] = STATE(606), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(606), + [sym_field_declaration] = STATE(606), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(606), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(606), + [sym__constructor_specifiers] = STATE(1798), + [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(606), + [sym_alias_declaration] = STATE(606), + [sym_static_assert_declaration] = STATE(606), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(606), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3220), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), + [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(3023), + [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(3025), + [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(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), + }, + [STATE(387)] = { + [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), + }, + [STATE(388)] = { [ts_builtin_sym_end] = ACTIONS(2637), [sym_identifier] = ACTIONS(2635), [aux_sym_preproc_include_token1] = ACTIONS(2635), @@ -99402,7 +99874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2635), [sym_this] = ACTIONS(2635), }, - [STATE(386)] = { + [STATE(389)] = { [ts_builtin_sym_end] = ACTIONS(2641), [sym_identifier] = ACTIONS(2639), [aux_sym_preproc_include_token1] = ACTIONS(2639), @@ -99542,7 +100014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2639), [sym_this] = ACTIONS(2639), }, - [STATE(387)] = { + [STATE(390)] = { [ts_builtin_sym_end] = ACTIONS(2645), [sym_identifier] = ACTIONS(2643), [aux_sym_preproc_include_token1] = ACTIONS(2643), @@ -99682,7 +100154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2643), [sym_this] = ACTIONS(2643), }, - [STATE(388)] = { + [STATE(391)] = { [ts_builtin_sym_end] = ACTIONS(2649), [sym_identifier] = ACTIONS(2647), [aux_sym_preproc_include_token1] = ACTIONS(2647), @@ -99822,201 +100294,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2647), [sym_this] = ACTIONS(2647), }, - [STATE(389)] = { - [ts_builtin_sym_end] = ACTIONS(2653), - [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_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(2651), - [anon_sym_decltype] = ACTIONS(2651), - [anon_sym_explicit] = ACTIONS(2651), - [anon_sym_typename] = ACTIONS(2651), - [anon_sym_export] = ACTIONS(2651), - [anon_sym_module] = ACTIONS(2651), - [anon_sym_import] = 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), + [STATE(392)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4474), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7136), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7445), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [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(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3222), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), + [STATE(393)] = { + [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), + }, + [STATE(394)] = { + [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), @@ -100102,845 +100714,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2659), [sym_this] = ACTIONS(2659), }, - [STATE(391)] = { - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, [STATE(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), + [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), }, [STATE(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), + [sym_catch_clause] = STATE(228), + [aux_sym_constructor_try_statement_repeat1] = STATE(228), + [ts_builtin_sym_end] = ACTIONS(2591), + [sym_identifier] = ACTIONS(2589), + [aux_sym_preproc_include_token1] = ACTIONS(2589), + [aux_sym_preproc_def_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_AMP_AMP] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym___extension__] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_virtual] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym___attribute__] = ACTIONS(2589), + [anon_sym___attribute] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2591), + [anon_sym___declspec] = ACTIONS(2589), + [anon_sym___based] = ACTIONS(2589), + [anon_sym___cdecl] = ACTIONS(2589), + [anon_sym___clrcall] = ACTIONS(2589), + [anon_sym___stdcall] = ACTIONS(2589), + [anon_sym___fastcall] = ACTIONS(2589), + [anon_sym___thiscall] = ACTIONS(2589), + [anon_sym___vectorcall] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym___inline] = ACTIONS(2589), + [anon_sym___inline__] = ACTIONS(2589), + [anon_sym___forceinline] = ACTIONS(2589), + [anon_sym_thread_local] = ACTIONS(2589), + [anon_sym___thread] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym___restrict__] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym__Noreturn] = ACTIONS(2589), + [anon_sym_noreturn] = ACTIONS(2589), + [anon_sym__Nonnull] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_constinit] = ACTIONS(2589), + [anon_sym_consteval] = ACTIONS(2589), + [anon_sym_alignas] = ACTIONS(2589), + [anon_sym__Alignas] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_goto] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_compl] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_sizeof] = ACTIONS(2589), + [anon_sym___alignof__] = ACTIONS(2589), + [anon_sym___alignof] = ACTIONS(2589), + [anon_sym__alignof] = ACTIONS(2589), + [anon_sym_alignof] = ACTIONS(2589), + [anon_sym__Alignof] = ACTIONS(2589), + [anon_sym_offsetof] = ACTIONS(2589), + [anon_sym__Generic] = ACTIONS(2589), + [anon_sym_asm] = ACTIONS(2589), + [anon_sym___asm__] = ACTIONS(2589), + [anon_sym___asm] = ACTIONS(2589), + [sym_number_literal] = ACTIONS(2591), + [anon_sym_L_SQUOTE] = ACTIONS(2591), + [anon_sym_u_SQUOTE] = ACTIONS(2591), + [anon_sym_U_SQUOTE] = ACTIONS(2591), + [anon_sym_u8_SQUOTE] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2591), + [anon_sym_L_DQUOTE] = ACTIONS(2591), + [anon_sym_u_DQUOTE] = ACTIONS(2591), + [anon_sym_U_DQUOTE] = ACTIONS(2591), + [anon_sym_u8_DQUOTE] = ACTIONS(2591), + [anon_sym_DQUOTE] = ACTIONS(2591), + [sym_true] = ACTIONS(2589), + [sym_false] = ACTIONS(2589), + [anon_sym_NULL] = ACTIONS(2589), + [anon_sym_nullptr] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2589), + [anon_sym_decltype] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_export] = ACTIONS(2589), + [anon_sym_module] = ACTIONS(2589), + [anon_sym_import] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_operator] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [anon_sym_delete] = ACTIONS(2589), + [anon_sym_throw] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_static_assert] = ACTIONS(2589), + [anon_sym_concept] = ACTIONS(2589), + [anon_sym_co_return] = ACTIONS(2589), + [anon_sym_co_yield] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(2601), + [anon_sym_R_DQUOTE] = ACTIONS(2591), + [anon_sym_LR_DQUOTE] = ACTIONS(2591), + [anon_sym_uR_DQUOTE] = ACTIONS(2591), + [anon_sym_UR_DQUOTE] = ACTIONS(2591), + [anon_sym_u8R_DQUOTE] = ACTIONS(2591), + [anon_sym_co_await] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_requires] = ACTIONS(2589), + [sym_this] = ACTIONS(2589), }, [STATE(397)] = { [sym_preproc_def] = STATE(400), @@ -100948,92 +101000,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_preproc_else_in_field_declaration_list] = STATE(8814), + [sym_preproc_elif_in_field_declaration_list] = STATE(8814), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8814), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(400), - [sym_operator_cast] = STATE(6890), + [sym_operator_cast] = STATE(6976), [sym_inline_method_definition] = STATE(400), - [sym__constructor_specifiers] = STATE(1845), + [sym__constructor_specifiers] = STATE(1798), [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), [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), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3224), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -101041,7 +101093,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -101051,7 +101103,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -101064,163 +101116,163 @@ 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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, [STATE(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(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(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), + [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(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), + [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), }, [STATE(399)] = { [sym_preproc_def] = STATE(401), @@ -101228,92 +101280,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_preproc_else_in_field_declaration_list] = STATE(8885), + [sym_preproc_elif_in_field_declaration_list] = STATE(8885), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8885), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(401), - [sym_operator_cast] = STATE(6890), + [sym_operator_cast] = STATE(6976), [sym_inline_method_definition] = STATE(401), - [sym__constructor_specifiers] = STATE(1845), + [sym__constructor_specifiers] = STATE(1798), [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), [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), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3228), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -101321,7 +101373,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -101331,7 +101383,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -101344,116 +101396,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, [STATE(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), + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_field_declaration_list] = STATE(606), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(606), + [sym_preproc_else_in_field_declaration_list] = STATE(8889), + [sym_preproc_elif_in_field_declaration_list] = STATE(8889), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8889), + [sym_type_definition] = STATE(606), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(606), + [sym_field_declaration] = STATE(606), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(606), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(606), + [sym__constructor_specifiers] = STATE(1798), + [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(606), + [sym_alias_declaration] = STATE(606), + [sym_static_assert_declaration] = STATE(606), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(606), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3232), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [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_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -101461,7 +101513,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -101471,7 +101523,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -101484,116 +101536,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, [STATE(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), + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_field_declaration_list] = STATE(606), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(606), + [sym_preproc_else_in_field_declaration_list] = STATE(8160), + [sym_preproc_elif_in_field_declaration_list] = STATE(8160), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8160), + [sym_type_definition] = STATE(606), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(606), + [sym_field_declaration] = STATE(606), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(606), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(606), + [sym__constructor_specifiers] = STATE(1798), + [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(606), + [sym_alias_declaration] = STATE(606), + [sym_static_assert_declaration] = STATE(606), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(606), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3234), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [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_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -101601,7 +101653,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -101611,7 +101663,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -101624,116 +101676,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, [STATE(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), + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_field_declaration_list] = STATE(606), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(606), + [sym_preproc_else_in_field_declaration_list] = STATE(8546), + [sym_preproc_elif_in_field_declaration_list] = STATE(8546), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8546), + [sym_type_definition] = STATE(606), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(606), + [sym_field_declaration] = STATE(606), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(606), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(606), + [sym__constructor_specifiers] = STATE(1798), + [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(606), + [sym_alias_declaration] = STATE(606), + [sym_static_assert_declaration] = STATE(606), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(606), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3236), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -101741,7 +101793,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -101751,7 +101803,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -101764,256 +101816,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, [STATE(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), - }, - [STATE(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_preproc_else_in_field_declaration_list] = STATE(8862), + [sym_preproc_elif_in_field_declaration_list] = STATE(8862), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8862), [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__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), [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_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), [sym_template_declaration] = STATE(406), - [sym_operator_cast] = STATE(6890), + [sym_operator_cast] = STATE(6976), [sym_inline_method_definition] = STATE(406), - [sym__constructor_specifiers] = STATE(1845), + [sym__constructor_specifiers] = STATE(1798), [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), [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), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), [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), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3238), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym___extension__] = ACTIONS(3007), - [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -102021,7 +101933,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -102031,7 +101943,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -102044,116 +101956,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), + }, + [STATE(404)] = { + [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), }, [STATE(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), + [sym_preproc_def] = STATE(407), + [sym_preproc_function_def] = STATE(407), + [sym_preproc_call] = STATE(407), + [sym_preproc_if_in_field_declaration_list] = STATE(407), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(407), + [sym_preproc_else_in_field_declaration_list] = STATE(8651), + [sym_preproc_elif_in_field_declaration_list] = STATE(8651), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8651), + [sym_type_definition] = STATE(407), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(407), + [sym_field_declaration] = STATE(407), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(407), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(407), + [sym__constructor_specifiers] = STATE(1798), + [sym_operator_cast_definition] = STATE(407), + [sym_operator_cast_declaration] = STATE(407), + [sym_constructor_or_destructor_definition] = STATE(407), + [sym_constructor_or_destructor_declaration] = STATE(407), + [sym_friend_declaration] = STATE(407), + [sym_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(407), + [sym_alias_declaration] = STATE(407), + [sym_static_assert_declaration] = STATE(407), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(407), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3242), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [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_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -102161,7 +102213,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -102171,7 +102223,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -102184,116 +102236,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, [STATE(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), + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_field_declaration_list] = STATE(606), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(606), + [sym_preproc_else_in_field_declaration_list] = STATE(8251), + [sym_preproc_elif_in_field_declaration_list] = STATE(8251), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8251), + [sym_type_definition] = STATE(606), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(606), + [sym_field_declaration] = STATE(606), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(606), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(606), + [sym__constructor_specifiers] = STATE(1798), + [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(606), + [sym_alias_declaration] = STATE(606), + [sym_static_assert_declaration] = STATE(606), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(606), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3246), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [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_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), [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_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), @@ -102301,7 +102353,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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -102311,7 +102363,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(3017), + [anon_sym_constexpr] = ACTIONS(3025), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -102324,97 +102376,237 @@ 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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), [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), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), }, [STATE(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), + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_field_declaration_list] = STATE(606), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(606), + [sym_preproc_else_in_field_declaration_list] = STATE(8599), + [sym_preproc_elif_in_field_declaration_list] = STATE(8599), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(8599), + [sym_type_definition] = STATE(606), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(606), + [sym_field_declaration] = STATE(606), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(606), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(606), + [sym__constructor_specifiers] = STATE(1798), + [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(606), + [sym_alias_declaration] = STATE(606), + [sym_static_assert_declaration] = STATE(606), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(606), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(2989), + [aux_sym_preproc_if_token1] = ACTIONS(2991), + [aux_sym_preproc_if_token2] = ACTIONS(3248), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2995), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2995), + [aux_sym_preproc_else_token1] = ACTIONS(2997), + [aux_sym_preproc_elif_token1] = ACTIONS(2999), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3001), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3001), + [sym_preproc_directive] = ACTIONS(3003), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym___extension__] = ACTIONS(3015), + [anon_sym_typedef] = ACTIONS(3017), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3019), + [anon_sym_COLON_COLON] = ACTIONS(3021), + [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(3023), + [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(3025), + [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(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3041), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3045), + }, + [STATE(408)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4452), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7096), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7337), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -102430,339 +102622,59 @@ 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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), - }, - [STATE(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(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), + [anon_sym_GT2] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, [STATE(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), - }, - [STATE(410)] = { [ts_builtin_sym_end] = ACTIONS(2709), [sym_identifier] = ACTIONS(2707), [aux_sym_preproc_include_token1] = ACTIONS(2707), @@ -102902,79 +102814,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2707), [sym_this] = ACTIONS(2707), }, + [STATE(410)] = { + [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), + }, [STATE(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), + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4441), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7200), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7583), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -102990,411 +103042,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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), + [anon_sym_GT2] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4442), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7147), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7463), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -103410,271 +103182,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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), + [anon_sym_GT2] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), + [STATE(413)] = { + [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), }, - [STATE(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), + [STATE(414)] = { + [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), + }, + [STATE(415)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4400), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7207), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7600), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -103690,271 +103602,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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), + [anon_sym_GT2] = ACTIONS(3256), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(416)] = { + [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), }, [STATE(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), + [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), }, [STATE(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), + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4414), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7156), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7274), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -103970,131 +104022,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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), + [anon_sym_GT2] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, [STATE(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), + [sym_catch_clause] = STATE(433), + [aux_sym_constructor_try_statement_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_include_token1] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym___extension__] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym___attribute] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym___cdecl] = ACTIONS(2541), + [anon_sym___clrcall] = ACTIONS(2541), + [anon_sym___stdcall] = ACTIONS(2541), + [anon_sym___fastcall] = ACTIONS(2541), + [anon_sym___thiscall] = ACTIONS(2541), + [anon_sym___vectorcall] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym___inline] = ACTIONS(2541), + [anon_sym___inline__] = ACTIONS(2541), + [anon_sym___forceinline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym___thread] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym___restrict__] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym__Noreturn] = ACTIONS(2541), + [anon_sym_noreturn] = ACTIONS(2541), + [anon_sym__Nonnull] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_alignas] = ACTIONS(2541), + [anon_sym__Alignas] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_case] = ACTIONS(2541), + [anon_sym_default] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym___try] = ACTIONS(2541), + [anon_sym___leave] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [anon_sym___alignof__] = ACTIONS(2541), + [anon_sym___alignof] = ACTIONS(2541), + [anon_sym__alignof] = ACTIONS(2541), + [anon_sym_alignof] = ACTIONS(2541), + [anon_sym__Alignof] = ACTIONS(2541), + [anon_sym_offsetof] = ACTIONS(2541), + [anon_sym__Generic] = ACTIONS(2541), + [anon_sym_asm] = ACTIONS(2541), + [anon_sym___asm__] = ACTIONS(2541), + [anon_sym___asm] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [anon_sym_nullptr] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_namespace] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_concept] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_catch] = ACTIONS(3260), + [anon_sym_R_DQUOTE] = ACTIONS(2543), + [anon_sym_LR_DQUOTE] = ACTIONS(2543), + [anon_sym_uR_DQUOTE] = ACTIONS(2543), + [anon_sym_UR_DQUOTE] = ACTIONS(2543), + [anon_sym_u8R_DQUOTE] = ACTIONS(2543), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), + }, + [STATE(420)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4412), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7102), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7327), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -104110,271 +104302,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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), - }, - [STATE(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), + [anon_sym_GT2] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, [STATE(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), + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4476), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7155), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7478), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -104390,131 +104442,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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), + [anon_sym_GT2] = ACTIONS(3264), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, [STATE(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), + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4402), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7182), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7595), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -104530,405 +104582,99 @@ 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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), + [anon_sym_GT2] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, [STATE(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), - [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(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), - }, - [STATE(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), - }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym___extension__] = ACTIONS(3265), + [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_COLON_COLON] = ACTIONS(3268), + [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(1266), + [anon_sym_LBRACK] = ACTIONS(2735), [anon_sym_static] = ACTIONS(2735), [anon_sym_register] = ACTIONS(2735), [anon_sym_inline] = ACTIONS(2735), @@ -104951,130 +104697,436 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(2735), [anon_sym_alignas] = ACTIONS(2735), [anon_sym__Alignas] = ACTIONS(2735), - [sym_primitive_type] = ACTIONS(3271), + [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_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), + [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(3274), + [anon_sym_decltype] = ACTIONS(2735), + [anon_sym_explicit] = ACTIONS(2735), [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), - [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_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), + }, + [STATE(424)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4403), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7217), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7658), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [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(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(425)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4405), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7062), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7686), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [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(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, [STATE(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), + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4413), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7067), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7268), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -105090,104 +105142,244 @@ 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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), + [anon_sym_GT2] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, [STATE(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), + [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), + }, + [STATE(428)] = { + [sym_expression] = STATE(4601), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8940), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3274), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -105195,47 +105387,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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_SEMI] = ACTIONS(3277), + [anon_sym___extension__] = ACTIONS(3279), + [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(3282), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2709), + [anon_sym___declspec] = ACTIONS(2707), + [anon_sym_signed] = ACTIONS(2707), + [anon_sym_unsigned] = ACTIONS(2707), + [anon_sym_long] = ACTIONS(2707), + [anon_sym_short] = ACTIONS(2707), [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_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(3285), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_class] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -105267,10 +105459,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(3290), - [anon_sym_decltype] = ACTIONS(3300), - [anon_sym_typename] = ACTIONS(3290), - [anon_sym_template] = ACTIONS(3303), + [sym_auto] = ACTIONS(2707), + [anon_sym_decltype] = ACTIONS(3288), + [anon_sym_typename] = ACTIONS(2707), + [anon_sym_template] = ACTIONS(3291), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -105282,7 +105474,1547 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(428)] = { + [STATE(429)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4432), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7072), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7279), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [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(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(430)] = { + [sym_expression] = STATE(4604), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8278), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3296), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3299), + [anon_sym___extension__] = ACTIONS(3301), + [anon_sym_virtual] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym___attribute__] = ACTIONS(3304), + [anon_sym___attribute] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3306), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3309), + [anon_sym___declspec] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3304), + [anon_sym_unsigned] = ACTIONS(3304), + [anon_sym_long] = ACTIONS(3304), + [anon_sym_short] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_register] = ACTIONS(3304), + [anon_sym_inline] = ACTIONS(3304), + [anon_sym___inline] = ACTIONS(3304), + [anon_sym___inline__] = ACTIONS(3304), + [anon_sym___forceinline] = ACTIONS(3304), + [anon_sym_thread_local] = ACTIONS(3304), + [anon_sym___thread] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_constexpr] = ACTIONS(3304), + [anon_sym_volatile] = ACTIONS(3304), + [anon_sym_restrict] = ACTIONS(3304), + [anon_sym___restrict__] = ACTIONS(3304), + [anon_sym__Atomic] = ACTIONS(3304), + [anon_sym__Noreturn] = ACTIONS(3304), + [anon_sym_noreturn] = ACTIONS(3304), + [anon_sym__Nonnull] = ACTIONS(3304), + [anon_sym_mutable] = ACTIONS(3304), + [anon_sym_constinit] = ACTIONS(3304), + [anon_sym_consteval] = ACTIONS(3304), + [anon_sym_alignas] = ACTIONS(3304), + [anon_sym__Alignas] = ACTIONS(3304), + [sym_primitive_type] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_union] = ACTIONS(3304), + [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(3304), + [anon_sym_decltype] = ACTIONS(3314), + [anon_sym_typename] = ACTIONS(3304), + [anon_sym_template] = ACTIONS(3317), + [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), + }, + [STATE(431)] = { + [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), + }, + [STATE(432)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4439), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7076), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7288), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [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(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(433)] = { + [sym_catch_clause] = STATE(433), + [aux_sym_constructor_try_statement_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_include_token1] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_AMP_AMP] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_virtual] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_using] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___based] = ACTIONS(2490), + [anon_sym___cdecl] = ACTIONS(2490), + [anon_sym___clrcall] = ACTIONS(2490), + [anon_sym___stdcall] = ACTIONS(2490), + [anon_sym___fastcall] = ACTIONS(2490), + [anon_sym___thiscall] = ACTIONS(2490), + [anon_sym___vectorcall] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_mutable] = ACTIONS(2490), + [anon_sym_constinit] = ACTIONS(2490), + [anon_sym_consteval] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_case] = ACTIONS(2490), + [anon_sym_default] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym___try] = ACTIONS(2490), + [anon_sym___leave] = ACTIONS(2490), + [anon_sym_not] = ACTIONS(2490), + [anon_sym_compl] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2490), + [anon_sym_decltype] = ACTIONS(2490), + [anon_sym_explicit] = ACTIONS(2490), + [anon_sym_typename] = ACTIONS(2490), + [anon_sym_template] = ACTIONS(2490), + [anon_sym_operator] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_delete] = ACTIONS(2490), + [anon_sym_throw] = ACTIONS(2490), + [anon_sym_namespace] = ACTIONS(2490), + [anon_sym_static_assert] = ACTIONS(2490), + [anon_sym_concept] = ACTIONS(2490), + [anon_sym_co_return] = ACTIONS(2490), + [anon_sym_co_yield] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(3322), + [anon_sym_R_DQUOTE] = ACTIONS(2492), + [anon_sym_LR_DQUOTE] = ACTIONS(2492), + [anon_sym_uR_DQUOTE] = ACTIONS(2492), + [anon_sym_UR_DQUOTE] = ACTIONS(2492), + [anon_sym_u8R_DQUOTE] = ACTIONS(2492), + [anon_sym_co_await] = ACTIONS(2490), + [anon_sym_new] = ACTIONS(2490), + [anon_sym_requires] = ACTIONS(2490), + [sym_this] = ACTIONS(2490), + }, + [STATE(434)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4443), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7079), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7297), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [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(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3325), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(435)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4449), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7082), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7306), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), + [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(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(436)] = { + [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), + }, + [STATE(437)] = { + [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), + }, + [STATE(438)] = { + [sym_identifier] = ACTIONS(3329), + [aux_sym_preproc_include_token1] = ACTIONS(3329), + [aux_sym_preproc_def_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token2] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), + [aux_sym_preproc_else_token1] = ACTIONS(3329), + [aux_sym_preproc_elif_token1] = ACTIONS(3329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3329), + [sym_preproc_directive] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_AMP_AMP] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym___extension__] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3329), + [anon_sym_virtual] = ACTIONS(3329), + [anon_sym_extern] = ACTIONS(3329), + [anon_sym___attribute__] = ACTIONS(3329), + [anon_sym___attribute] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_COLON_COLON] = ACTIONS(3331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), + [anon_sym___declspec] = ACTIONS(3329), + [anon_sym___based] = ACTIONS(3329), + [anon_sym___cdecl] = ACTIONS(3329), + [anon_sym___clrcall] = ACTIONS(3329), + [anon_sym___stdcall] = ACTIONS(3329), + [anon_sym___fastcall] = ACTIONS(3329), + [anon_sym___thiscall] = ACTIONS(3329), + [anon_sym___vectorcall] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_signed] = ACTIONS(3329), + [anon_sym_unsigned] = ACTIONS(3329), + [anon_sym_long] = ACTIONS(3329), + [anon_sym_short] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_register] = ACTIONS(3329), + [anon_sym_inline] = ACTIONS(3329), + [anon_sym___inline] = ACTIONS(3329), + [anon_sym___inline__] = ACTIONS(3329), + [anon_sym___forceinline] = ACTIONS(3329), + [anon_sym_thread_local] = ACTIONS(3329), + [anon_sym___thread] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_constexpr] = ACTIONS(3329), + [anon_sym_volatile] = ACTIONS(3329), + [anon_sym_restrict] = ACTIONS(3329), + [anon_sym___restrict__] = ACTIONS(3329), + [anon_sym__Atomic] = ACTIONS(3329), + [anon_sym__Noreturn] = ACTIONS(3329), + [anon_sym_noreturn] = ACTIONS(3329), + [anon_sym__Nonnull] = ACTIONS(3329), + [anon_sym_mutable] = ACTIONS(3329), + [anon_sym_constinit] = ACTIONS(3329), + [anon_sym_consteval] = ACTIONS(3329), + [anon_sym_alignas] = ACTIONS(3329), + [anon_sym__Alignas] = ACTIONS(3329), + [sym_primitive_type] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_case] = ACTIONS(3329), + [anon_sym_default] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_goto] = ACTIONS(3329), + [anon_sym___try] = ACTIONS(3329), + [anon_sym___leave] = ACTIONS(3329), + [anon_sym_not] = ACTIONS(3329), + [anon_sym_compl] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3329), + [anon_sym___alignof__] = ACTIONS(3329), + [anon_sym___alignof] = ACTIONS(3329), + [anon_sym__alignof] = ACTIONS(3329), + [anon_sym_alignof] = ACTIONS(3329), + [anon_sym__Alignof] = ACTIONS(3329), + [anon_sym_offsetof] = ACTIONS(3329), + [anon_sym__Generic] = ACTIONS(3329), + [anon_sym_asm] = ACTIONS(3329), + [anon_sym___asm__] = ACTIONS(3329), + [anon_sym___asm] = ACTIONS(3329), + [sym_number_literal] = ACTIONS(3331), + [anon_sym_L_SQUOTE] = ACTIONS(3331), + [anon_sym_u_SQUOTE] = ACTIONS(3331), + [anon_sym_U_SQUOTE] = ACTIONS(3331), + [anon_sym_u8_SQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_L_DQUOTE] = ACTIONS(3331), + [anon_sym_u_DQUOTE] = ACTIONS(3331), + [anon_sym_U_DQUOTE] = ACTIONS(3331), + [anon_sym_u8_DQUOTE] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [anon_sym_NULL] = ACTIONS(3329), + [anon_sym_nullptr] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3329), + [anon_sym_decltype] = ACTIONS(3329), + [anon_sym_explicit] = ACTIONS(3329), + [anon_sym_typename] = ACTIONS(3329), + [anon_sym_template] = ACTIONS(3329), + [anon_sym_operator] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_static_assert] = ACTIONS(3329), + [anon_sym_concept] = ACTIONS(3329), + [anon_sym_co_return] = ACTIONS(3329), + [anon_sym_co_yield] = ACTIONS(3329), + [anon_sym_R_DQUOTE] = ACTIONS(3331), + [anon_sym_LR_DQUOTE] = ACTIONS(3331), + [anon_sym_uR_DQUOTE] = ACTIONS(3331), + [anon_sym_UR_DQUOTE] = ACTIONS(3331), + [anon_sym_u8R_DQUOTE] = ACTIONS(3331), + [anon_sym_co_await] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_requires] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + }, + [STATE(439)] = { + [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), + }, + [STATE(440)] = { [ts_builtin_sym_end] = ACTIONS(2715), [sym_identifier] = ACTIONS(2713), [aux_sym_preproc_include_token1] = ACTIONS(2713), @@ -105422,1888 +107154,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2713), [sym_this] = ACTIONS(2713), }, - [STATE(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), - [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(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), - }, - [STATE(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), - }, - [STATE(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), - [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_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_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___cdecl] = ACTIONS(2476), - [anon_sym___clrcall] = ACTIONS(2476), - [anon_sym___stdcall] = ACTIONS(2476), - [anon_sym___fastcall] = ACTIONS(2476), - [anon_sym___thiscall] = ACTIONS(2476), - [anon_sym___vectorcall] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2478), - [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), - [anon_sym_if] = ACTIONS(2476), - [anon_sym_else] = ACTIONS(2476), - [anon_sym_switch] = ACTIONS(2476), - [anon_sym_case] = ACTIONS(2476), - [anon_sym_default] = 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_explicit] = ACTIONS(2476), - [anon_sym_typename] = ACTIONS(2476), - [anon_sym_template] = ACTIONS(2476), - [anon_sym_operator] = ACTIONS(2476), - [anon_sym_try] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2476), - [anon_sym_throw] = ACTIONS(2476), - [anon_sym_namespace] = ACTIONS(2476), - [anon_sym_static_assert] = ACTIONS(2476), - [anon_sym_concept] = ACTIONS(2476), - [anon_sym_co_return] = ACTIONS(2476), - [anon_sym_co_yield] = ACTIONS(2476), - [anon_sym_catch] = ACTIONS(3308), - [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), - }, - [STATE(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), - [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(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), - }, - [STATE(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), - [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(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), + [STATE(441)] = { + [sym_identifier] = ACTIONS(3333), + [aux_sym_preproc_include_token1] = ACTIONS(3333), + [aux_sym_preproc_def_token1] = ACTIONS(3333), + [aux_sym_preproc_if_token1] = ACTIONS(3333), + [aux_sym_preproc_if_token2] = ACTIONS(3333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), + [aux_sym_preproc_else_token1] = ACTIONS(3333), + [aux_sym_preproc_elif_token1] = ACTIONS(3333), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3333), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3333), + [sym_preproc_directive] = ACTIONS(3333), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym___extension__] = ACTIONS(3333), + [anon_sym_typedef] = ACTIONS(3333), + [anon_sym_virtual] = ACTIONS(3333), + [anon_sym_extern] = ACTIONS(3333), + [anon_sym___attribute__] = ACTIONS(3333), + [anon_sym___attribute] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3336), + [anon_sym___declspec] = ACTIONS(3333), + [anon_sym___based] = ACTIONS(3333), + [anon_sym___cdecl] = ACTIONS(3333), + [anon_sym___clrcall] = ACTIONS(3333), + [anon_sym___stdcall] = ACTIONS(3333), + [anon_sym___fastcall] = ACTIONS(3333), + [anon_sym___thiscall] = ACTIONS(3333), + [anon_sym___vectorcall] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3333), + [anon_sym_unsigned] = ACTIONS(3333), + [anon_sym_long] = ACTIONS(3333), + [anon_sym_short] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_register] = ACTIONS(3333), + [anon_sym_inline] = ACTIONS(3333), + [anon_sym___inline] = ACTIONS(3333), + [anon_sym___inline__] = ACTIONS(3333), + [anon_sym___forceinline] = ACTIONS(3333), + [anon_sym_thread_local] = ACTIONS(3333), + [anon_sym___thread] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_constexpr] = ACTIONS(3333), + [anon_sym_volatile] = ACTIONS(3333), + [anon_sym_restrict] = ACTIONS(3333), + [anon_sym___restrict__] = ACTIONS(3333), + [anon_sym__Atomic] = ACTIONS(3333), + [anon_sym__Noreturn] = ACTIONS(3333), + [anon_sym_noreturn] = ACTIONS(3333), + [anon_sym__Nonnull] = ACTIONS(3333), + [anon_sym_mutable] = ACTIONS(3333), + [anon_sym_constinit] = ACTIONS(3333), + [anon_sym_consteval] = ACTIONS(3333), + [anon_sym_alignas] = ACTIONS(3333), + [anon_sym__Alignas] = ACTIONS(3333), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_struct] = ACTIONS(3333), + [anon_sym_union] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3333), + [anon_sym_default] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_goto] = ACTIONS(3333), + [anon_sym___try] = ACTIONS(3333), + [anon_sym___leave] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3333), + [anon_sym_compl] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3333), + [anon_sym___alignof__] = ACTIONS(3333), + [anon_sym___alignof] = ACTIONS(3333), + [anon_sym__alignof] = ACTIONS(3333), + [anon_sym_alignof] = ACTIONS(3333), + [anon_sym__Alignof] = ACTIONS(3333), + [anon_sym_offsetof] = ACTIONS(3333), + [anon_sym__Generic] = ACTIONS(3333), + [anon_sym_asm] = ACTIONS(3333), + [anon_sym___asm__] = ACTIONS(3333), + [anon_sym___asm] = ACTIONS(3333), + [sym_number_literal] = ACTIONS(3336), + [anon_sym_L_SQUOTE] = ACTIONS(3336), + [anon_sym_u_SQUOTE] = ACTIONS(3336), + [anon_sym_U_SQUOTE] = ACTIONS(3336), + [anon_sym_u8_SQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_L_DQUOTE] = ACTIONS(3336), + [anon_sym_u_DQUOTE] = ACTIONS(3336), + [anon_sym_U_DQUOTE] = ACTIONS(3336), + [anon_sym_u8_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [anon_sym_NULL] = ACTIONS(3333), + [anon_sym_nullptr] = ACTIONS(3333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3333), + [anon_sym_decltype] = ACTIONS(3333), + [anon_sym_explicit] = ACTIONS(3333), + [anon_sym_typename] = ACTIONS(3333), + [anon_sym_template] = ACTIONS(3333), + [anon_sym_operator] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_static_assert] = ACTIONS(3333), + [anon_sym_concept] = ACTIONS(3333), + [anon_sym_co_return] = ACTIONS(3333), + [anon_sym_co_yield] = ACTIONS(3333), + [anon_sym_R_DQUOTE] = ACTIONS(3336), + [anon_sym_LR_DQUOTE] = ACTIONS(3336), + [anon_sym_uR_DQUOTE] = ACTIONS(3336), + [anon_sym_UR_DQUOTE] = ACTIONS(3336), + [anon_sym_u8R_DQUOTE] = ACTIONS(3336), + [anon_sym_co_await] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_requires] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(436)] = { - [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), + [STATE(442)] = { + [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(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), - }, - [STATE(437)] = { - [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), - }, - [STATE(438)] = { - [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), - }, - [STATE(439)] = { - [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), + [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), }, - [STATE(440)] = { - [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), + [STATE(443)] = { + [ts_builtin_sym_end] = ACTIONS(2761), + [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_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(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), + [sym_auto] = ACTIONS(2759), + [anon_sym_decltype] = ACTIONS(2759), + [anon_sym_explicit] = ACTIONS(2759), + [anon_sym_typename] = ACTIONS(2759), + [anon_sym_export] = ACTIONS(2759), + [anon_sym_module] = ACTIONS(2759), + [anon_sym_import] = 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), }, - [STATE(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), + [STATE(444)] = { + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(2925), + [sym__declarator] = STATE(6547), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_type_qualifier] = STATE(3997), + [sym_alignas_qualifier] = STATE(4359), + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3339), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5838), + [sym_qualified_identifier] = STATE(3340), + [sym_qualified_type_identifier] = STATE(7778), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(2529), + [aux_sym__type_definition_type_repeat1] = STATE(3997), + [aux_sym_pointer_declarator_repeat1] = STATE(2925), + [sym_identifier] = ACTIONS(3339), + [anon_sym_LPAREN2] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(3343), + [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(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_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(3345), + [anon_sym_COLON_COLON] = ACTIONS(1998), [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(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_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), + [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(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), + [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), }, - [STATE(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), + [STATE(445)] = { + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(2925), + [sym__declarator] = STATE(6547), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_type_qualifier] = STATE(3997), + [sym_alignas_qualifier] = STATE(4359), + [sym_expression] = STATE(3181), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3338), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5884), + [sym_qualified_identifier] = STATE(3408), + [sym_qualified_type_identifier] = STATE(7887), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3445), + [aux_sym__type_definition_type_repeat1] = STATE(3997), + [aux_sym_pointer_declarator_repeat1] = STATE(2925), + [sym_identifier] = ACTIONS(3357), [anon_sym_LPAREN2] = ACTIONS(1790), [anon_sym_BANG] = ACTIONS(1792), [anon_sym_TILDE] = ACTIONS(1794), @@ -107312,29 +107783,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1798), [anon_sym_AMP_AMP] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(1800), - [anon_sym___extension__] = ACTIONS(3333), + [anon_sym___extension__] = ACTIONS(3359), [anon_sym_COLON_COLON] = ACTIONS(1804), [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), + [sym_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), [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), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), [sym_primitive_type] = ACTIONS(2459), [anon_sym_not] = ACTIONS(1796), [anon_sym_compl] = ACTIONS(1796), @@ -107381,190 +107852,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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(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), - [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_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), + [STATE(446)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(2567), + [anon_sym_typedef] = ACTIONS(3361), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [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(1940), - [anon_sym_decltype] = ACTIONS(1940), - [anon_sym_explicit] = ACTIONS(1940), - [anon_sym_typename] = ACTIONS(1940), - [anon_sym_export] = ACTIONS(1940), - [anon_sym_module] = ACTIONS(1940), - [anon_sym_import] = 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(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), + [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), }, - [STATE(444)] = { - [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), + [STATE(447)] = { + [ts_builtin_sym_end] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3329), + [aux_sym_preproc_include_token1] = ACTIONS(3329), + [aux_sym_preproc_def_token1] = ACTIONS(3329), + [anon_sym_COMMA] = ACTIONS(3331), + [aux_sym_preproc_if_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), + [sym_preproc_directive] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_AMP_AMP] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym___extension__] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3329), + [anon_sym_virtual] = ACTIONS(3329), + [anon_sym_extern] = ACTIONS(3329), + [anon_sym___attribute__] = ACTIONS(3329), + [anon_sym___attribute] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_COLON_COLON] = ACTIONS(3331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), + [anon_sym___declspec] = ACTIONS(3329), + [anon_sym___based] = ACTIONS(3329), + [anon_sym___cdecl] = ACTIONS(3329), + [anon_sym___clrcall] = ACTIONS(3329), + [anon_sym___stdcall] = ACTIONS(3329), + [anon_sym___fastcall] = ACTIONS(3329), + [anon_sym___thiscall] = ACTIONS(3329), + [anon_sym___vectorcall] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_signed] = ACTIONS(3329), + [anon_sym_unsigned] = ACTIONS(3329), + [anon_sym_long] = ACTIONS(3329), + [anon_sym_short] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_register] = ACTIONS(3329), + [anon_sym_inline] = ACTIONS(3329), + [anon_sym___inline] = ACTIONS(3329), + [anon_sym___inline__] = ACTIONS(3329), + [anon_sym___forceinline] = ACTIONS(3329), + [anon_sym_thread_local] = ACTIONS(3329), + [anon_sym___thread] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_constexpr] = ACTIONS(3329), + [anon_sym_volatile] = ACTIONS(3329), + [anon_sym_restrict] = ACTIONS(3329), + [anon_sym___restrict__] = ACTIONS(3329), + [anon_sym__Atomic] = ACTIONS(3329), + [anon_sym__Noreturn] = ACTIONS(3329), + [anon_sym_noreturn] = ACTIONS(3329), + [anon_sym__Nonnull] = ACTIONS(3329), + [anon_sym_mutable] = ACTIONS(3329), + [anon_sym_constinit] = ACTIONS(3329), + [anon_sym_consteval] = ACTIONS(3329), + [anon_sym_alignas] = ACTIONS(3329), + [anon_sym__Alignas] = ACTIONS(3329), + [sym_primitive_type] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_case] = ACTIONS(3329), + [anon_sym_default] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_goto] = ACTIONS(3329), + [anon_sym_not] = ACTIONS(3329), + [anon_sym_compl] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3329), + [anon_sym___alignof__] = ACTIONS(3329), + [anon_sym___alignof] = ACTIONS(3329), + [anon_sym__alignof] = ACTIONS(3329), + [anon_sym_alignof] = ACTIONS(3329), + [anon_sym__Alignof] = ACTIONS(3329), + [anon_sym_offsetof] = ACTIONS(3329), + [anon_sym__Generic] = ACTIONS(3329), + [anon_sym_asm] = ACTIONS(3329), + [anon_sym___asm__] = ACTIONS(3329), + [anon_sym___asm] = ACTIONS(3329), + [sym_number_literal] = ACTIONS(3331), + [anon_sym_L_SQUOTE] = ACTIONS(3331), + [anon_sym_u_SQUOTE] = ACTIONS(3331), + [anon_sym_U_SQUOTE] = ACTIONS(3331), + [anon_sym_u8_SQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_L_DQUOTE] = ACTIONS(3331), + [anon_sym_u_DQUOTE] = ACTIONS(3331), + [anon_sym_U_DQUOTE] = ACTIONS(3331), + [anon_sym_u8_DQUOTE] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [anon_sym_NULL] = ACTIONS(3329), + [anon_sym_nullptr] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3329), + [anon_sym_decltype] = ACTIONS(3329), + [anon_sym_explicit] = ACTIONS(3329), + [anon_sym_typename] = ACTIONS(3329), + [anon_sym_export] = ACTIONS(3329), + [anon_sym_module] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3329), + [anon_sym_template] = ACTIONS(3329), + [anon_sym_operator] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_static_assert] = ACTIONS(3329), + [anon_sym_concept] = ACTIONS(3329), + [anon_sym_co_return] = ACTIONS(3329), + [anon_sym_co_yield] = ACTIONS(3329), + [anon_sym_R_DQUOTE] = ACTIONS(3331), + [anon_sym_LR_DQUOTE] = ACTIONS(3331), + [anon_sym_uR_DQUOTE] = ACTIONS(3331), + [anon_sym_UR_DQUOTE] = ACTIONS(3331), + [anon_sym_u8R_DQUOTE] = ACTIONS(3331), + [anon_sym_co_await] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_requires] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + }, + [STATE(448)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -107572,47 +108182,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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___extension__] = ACTIONS(2567), + [anon_sym_typedef] = ACTIONS(2570), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), [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_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -107644,10 +108254,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(2569), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(2583), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -107659,7 +108269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(445)] = { + [STATE(449)] = { [ts_builtin_sym_end] = ACTIONS(2821), [sym_identifier] = ACTIONS(2819), [aux_sym_preproc_include_token1] = ACTIONS(2819), @@ -107798,190 +108408,468 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2819), [sym_this] = ACTIONS(2819), }, - [STATE(446)] = { - [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), + [STATE(450)] = { + [sym_catch_clause] = STATE(369), + [aux_sym_constructor_try_statement_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(2593), + [aux_sym_preproc_include_token1] = ACTIONS(2593), + [aux_sym_preproc_def_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token2] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2593), + [sym_preproc_directive] = ACTIONS(2593), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_AMP_AMP] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym___extension__] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2593), + [anon_sym_virtual] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym___attribute__] = ACTIONS(2593), + [anon_sym___attribute] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2595), + [anon_sym___declspec] = ACTIONS(2593), + [anon_sym___based] = ACTIONS(2593), + [anon_sym___cdecl] = ACTIONS(2593), + [anon_sym___clrcall] = ACTIONS(2593), + [anon_sym___stdcall] = ACTIONS(2593), + [anon_sym___fastcall] = ACTIONS(2593), + [anon_sym___thiscall] = ACTIONS(2593), + [anon_sym___vectorcall] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2593), + [anon_sym_unsigned] = ACTIONS(2593), + [anon_sym_long] = ACTIONS(2593), + [anon_sym_short] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_register] = ACTIONS(2593), + [anon_sym_inline] = ACTIONS(2593), + [anon_sym___inline] = ACTIONS(2593), + [anon_sym___inline__] = ACTIONS(2593), + [anon_sym___forceinline] = ACTIONS(2593), + [anon_sym_thread_local] = ACTIONS(2593), + [anon_sym___thread] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_constexpr] = ACTIONS(2593), + [anon_sym_volatile] = ACTIONS(2593), + [anon_sym_restrict] = ACTIONS(2593), + [anon_sym___restrict__] = ACTIONS(2593), + [anon_sym__Atomic] = ACTIONS(2593), + [anon_sym__Noreturn] = ACTIONS(2593), + [anon_sym_noreturn] = ACTIONS(2593), + [anon_sym__Nonnull] = ACTIONS(2593), + [anon_sym_mutable] = ACTIONS(2593), + [anon_sym_constinit] = ACTIONS(2593), + [anon_sym_consteval] = ACTIONS(2593), + [anon_sym_alignas] = ACTIONS(2593), + [anon_sym__Alignas] = ACTIONS(2593), + [sym_primitive_type] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_case] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_goto] = ACTIONS(2593), + [anon_sym___try] = ACTIONS(2593), + [anon_sym___leave] = ACTIONS(2593), + [anon_sym_not] = ACTIONS(2593), + [anon_sym_compl] = ACTIONS(2593), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_sizeof] = ACTIONS(2593), + [anon_sym___alignof__] = ACTIONS(2593), + [anon_sym___alignof] = ACTIONS(2593), + [anon_sym__alignof] = ACTIONS(2593), + [anon_sym_alignof] = ACTIONS(2593), + [anon_sym__Alignof] = ACTIONS(2593), + [anon_sym_offsetof] = ACTIONS(2593), + [anon_sym__Generic] = ACTIONS(2593), + [anon_sym_asm] = ACTIONS(2593), + [anon_sym___asm__] = ACTIONS(2593), + [anon_sym___asm] = ACTIONS(2593), + [sym_number_literal] = ACTIONS(2595), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2595), + [anon_sym_u_DQUOTE] = ACTIONS(2595), + [anon_sym_U_DQUOTE] = ACTIONS(2595), + [anon_sym_u8_DQUOTE] = ACTIONS(2595), + [anon_sym_DQUOTE] = ACTIONS(2595), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [anon_sym_nullptr] = ACTIONS(2593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2593), + [anon_sym_decltype] = ACTIONS(2593), + [anon_sym_explicit] = ACTIONS(2593), + [anon_sym_typename] = ACTIONS(2593), + [anon_sym_template] = ACTIONS(2593), + [anon_sym_operator] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_delete] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_static_assert] = ACTIONS(2593), + [anon_sym_concept] = ACTIONS(2593), + [anon_sym_co_return] = ACTIONS(2593), + [anon_sym_co_yield] = ACTIONS(2593), + [anon_sym_catch] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(2595), + [anon_sym_LR_DQUOTE] = ACTIONS(2595), + [anon_sym_uR_DQUOTE] = ACTIONS(2595), + [anon_sym_UR_DQUOTE] = ACTIONS(2595), + [anon_sym_u8R_DQUOTE] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_requires] = ACTIONS(2593), + [sym_this] = ACTIONS(2593), }, - [STATE(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), + [STATE(451)] = { + [sym_catch_clause] = STATE(369), + [aux_sym_constructor_try_statement_repeat1] = STATE(369), + [sym_identifier] = ACTIONS(2589), + [aux_sym_preproc_include_token1] = ACTIONS(2589), + [aux_sym_preproc_def_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token2] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_AMP_AMP] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym___extension__] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_virtual] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym___attribute__] = ACTIONS(2589), + [anon_sym___attribute] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2591), + [anon_sym___declspec] = ACTIONS(2589), + [anon_sym___based] = ACTIONS(2589), + [anon_sym___cdecl] = ACTIONS(2589), + [anon_sym___clrcall] = ACTIONS(2589), + [anon_sym___stdcall] = ACTIONS(2589), + [anon_sym___fastcall] = ACTIONS(2589), + [anon_sym___thiscall] = ACTIONS(2589), + [anon_sym___vectorcall] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym___inline] = ACTIONS(2589), + [anon_sym___inline__] = ACTIONS(2589), + [anon_sym___forceinline] = ACTIONS(2589), + [anon_sym_thread_local] = ACTIONS(2589), + [anon_sym___thread] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym___restrict__] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym__Noreturn] = ACTIONS(2589), + [anon_sym_noreturn] = ACTIONS(2589), + [anon_sym__Nonnull] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_constinit] = ACTIONS(2589), + [anon_sym_consteval] = ACTIONS(2589), + [anon_sym_alignas] = ACTIONS(2589), + [anon_sym__Alignas] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_goto] = ACTIONS(2589), + [anon_sym___try] = ACTIONS(2589), + [anon_sym___leave] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_compl] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_sizeof] = ACTIONS(2589), + [anon_sym___alignof__] = ACTIONS(2589), + [anon_sym___alignof] = ACTIONS(2589), + [anon_sym__alignof] = ACTIONS(2589), + [anon_sym_alignof] = ACTIONS(2589), + [anon_sym__Alignof] = ACTIONS(2589), + [anon_sym_offsetof] = ACTIONS(2589), + [anon_sym__Generic] = ACTIONS(2589), + [anon_sym_asm] = ACTIONS(2589), + [anon_sym___asm__] = ACTIONS(2589), + [anon_sym___asm] = ACTIONS(2589), + [sym_number_literal] = ACTIONS(2591), + [anon_sym_L_SQUOTE] = ACTIONS(2591), + [anon_sym_u_SQUOTE] = ACTIONS(2591), + [anon_sym_U_SQUOTE] = ACTIONS(2591), + [anon_sym_u8_SQUOTE] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2591), + [anon_sym_L_DQUOTE] = ACTIONS(2591), + [anon_sym_u_DQUOTE] = ACTIONS(2591), + [anon_sym_U_DQUOTE] = ACTIONS(2591), + [anon_sym_u8_DQUOTE] = ACTIONS(2591), + [anon_sym_DQUOTE] = ACTIONS(2591), + [sym_true] = ACTIONS(2589), + [sym_false] = ACTIONS(2589), + [anon_sym_NULL] = ACTIONS(2589), + [anon_sym_nullptr] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2589), + [anon_sym_decltype] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_operator] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [anon_sym_delete] = ACTIONS(2589), + [anon_sym_throw] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_static_assert] = ACTIONS(2589), + [anon_sym_concept] = ACTIONS(2589), + [anon_sym_co_return] = ACTIONS(2589), + [anon_sym_co_yield] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(3107), + [anon_sym_R_DQUOTE] = ACTIONS(2591), + [anon_sym_LR_DQUOTE] = ACTIONS(2591), + [anon_sym_uR_DQUOTE] = ACTIONS(2591), + [anon_sym_UR_DQUOTE] = ACTIONS(2591), + [anon_sym_u8R_DQUOTE] = ACTIONS(2591), + [anon_sym_co_await] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_requires] = ACTIONS(2589), + [sym_this] = ACTIONS(2589), + }, + [STATE(452)] = { + [sym_catch_clause] = STATE(433), + [aux_sym_constructor_try_statement_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(2593), + [aux_sym_preproc_include_token1] = ACTIONS(2593), + [aux_sym_preproc_def_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2593), + [sym_preproc_directive] = ACTIONS(2593), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_BANG] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_DASH] = ACTIONS(2593), + [anon_sym_PLUS] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_AMP_AMP] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym___extension__] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2593), + [anon_sym_virtual] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym___attribute__] = ACTIONS(2593), + [anon_sym___attribute] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2595), + [anon_sym___declspec] = ACTIONS(2593), + [anon_sym___based] = ACTIONS(2593), + [anon_sym___cdecl] = ACTIONS(2593), + [anon_sym___clrcall] = ACTIONS(2593), + [anon_sym___stdcall] = ACTIONS(2593), + [anon_sym___fastcall] = ACTIONS(2593), + [anon_sym___thiscall] = ACTIONS(2593), + [anon_sym___vectorcall] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2593), + [anon_sym_unsigned] = ACTIONS(2593), + [anon_sym_long] = ACTIONS(2593), + [anon_sym_short] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_register] = ACTIONS(2593), + [anon_sym_inline] = ACTIONS(2593), + [anon_sym___inline] = ACTIONS(2593), + [anon_sym___inline__] = ACTIONS(2593), + [anon_sym___forceinline] = ACTIONS(2593), + [anon_sym_thread_local] = ACTIONS(2593), + [anon_sym___thread] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_constexpr] = ACTIONS(2593), + [anon_sym_volatile] = ACTIONS(2593), + [anon_sym_restrict] = ACTIONS(2593), + [anon_sym___restrict__] = ACTIONS(2593), + [anon_sym__Atomic] = ACTIONS(2593), + [anon_sym__Noreturn] = ACTIONS(2593), + [anon_sym_noreturn] = ACTIONS(2593), + [anon_sym__Nonnull] = ACTIONS(2593), + [anon_sym_mutable] = ACTIONS(2593), + [anon_sym_constinit] = ACTIONS(2593), + [anon_sym_consteval] = ACTIONS(2593), + [anon_sym_alignas] = ACTIONS(2593), + [anon_sym__Alignas] = ACTIONS(2593), + [sym_primitive_type] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [anon_sym_if] = ACTIONS(2593), + [anon_sym_switch] = ACTIONS(2593), + [anon_sym_case] = ACTIONS(2593), + [anon_sym_default] = ACTIONS(2593), + [anon_sym_while] = ACTIONS(2593), + [anon_sym_do] = ACTIONS(2593), + [anon_sym_for] = ACTIONS(2593), + [anon_sym_return] = ACTIONS(2593), + [anon_sym_break] = ACTIONS(2593), + [anon_sym_continue] = ACTIONS(2593), + [anon_sym_goto] = ACTIONS(2593), + [anon_sym___try] = ACTIONS(2593), + [anon_sym___leave] = ACTIONS(2593), + [anon_sym_not] = ACTIONS(2593), + [anon_sym_compl] = ACTIONS(2593), + [anon_sym_DASH_DASH] = ACTIONS(2595), + [anon_sym_PLUS_PLUS] = ACTIONS(2595), + [anon_sym_sizeof] = ACTIONS(2593), + [anon_sym___alignof__] = ACTIONS(2593), + [anon_sym___alignof] = ACTIONS(2593), + [anon_sym__alignof] = ACTIONS(2593), + [anon_sym_alignof] = ACTIONS(2593), + [anon_sym__Alignof] = ACTIONS(2593), + [anon_sym_offsetof] = ACTIONS(2593), + [anon_sym__Generic] = ACTIONS(2593), + [anon_sym_asm] = ACTIONS(2593), + [anon_sym___asm__] = ACTIONS(2593), + [anon_sym___asm] = ACTIONS(2593), + [sym_number_literal] = ACTIONS(2595), + [anon_sym_L_SQUOTE] = ACTIONS(2595), + [anon_sym_u_SQUOTE] = ACTIONS(2595), + [anon_sym_U_SQUOTE] = ACTIONS(2595), + [anon_sym_u8_SQUOTE] = ACTIONS(2595), + [anon_sym_SQUOTE] = ACTIONS(2595), + [anon_sym_L_DQUOTE] = ACTIONS(2595), + [anon_sym_u_DQUOTE] = ACTIONS(2595), + [anon_sym_U_DQUOTE] = ACTIONS(2595), + [anon_sym_u8_DQUOTE] = ACTIONS(2595), + [anon_sym_DQUOTE] = ACTIONS(2595), + [sym_true] = ACTIONS(2593), + [sym_false] = ACTIONS(2593), + [anon_sym_NULL] = ACTIONS(2593), + [anon_sym_nullptr] = ACTIONS(2593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2593), + [anon_sym_decltype] = ACTIONS(2593), + [anon_sym_explicit] = ACTIONS(2593), + [anon_sym_typename] = ACTIONS(2593), + [anon_sym_template] = ACTIONS(2593), + [anon_sym_operator] = ACTIONS(2593), + [anon_sym_try] = ACTIONS(2593), + [anon_sym_delete] = ACTIONS(2593), + [anon_sym_throw] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2593), + [anon_sym_static_assert] = ACTIONS(2593), + [anon_sym_concept] = ACTIONS(2593), + [anon_sym_co_return] = ACTIONS(2593), + [anon_sym_co_yield] = ACTIONS(2593), + [anon_sym_catch] = ACTIONS(3260), + [anon_sym_R_DQUOTE] = ACTIONS(2595), + [anon_sym_LR_DQUOTE] = ACTIONS(2595), + [anon_sym_uR_DQUOTE] = ACTIONS(2595), + [anon_sym_UR_DQUOTE] = ACTIONS(2595), + [anon_sym_u8R_DQUOTE] = ACTIONS(2595), + [anon_sym_co_await] = ACTIONS(2593), + [anon_sym_new] = ACTIONS(2593), + [anon_sym_requires] = ACTIONS(2593), + [sym_this] = ACTIONS(2593), + }, + [STATE(453)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -107989,47 +108877,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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___extension__] = ACTIONS(2567), + [anon_sym_typedef] = ACTIONS(2597), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), [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_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -108061,10 +108949,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(2569), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(2583), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -108076,79 +108964,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(454)] = { + [sym_catch_clause] = STATE(433), + [aux_sym_constructor_try_statement_repeat1] = STATE(433), + [sym_identifier] = ACTIONS(2589), + [aux_sym_preproc_include_token1] = ACTIONS(2589), + [aux_sym_preproc_def_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2591), + [anon_sym_BANG] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_AMP_AMP] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym___extension__] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_virtual] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym___attribute__] = ACTIONS(2589), + [anon_sym___attribute] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2591), + [anon_sym___declspec] = ACTIONS(2589), + [anon_sym___based] = ACTIONS(2589), + [anon_sym___cdecl] = ACTIONS(2589), + [anon_sym___clrcall] = ACTIONS(2589), + [anon_sym___stdcall] = ACTIONS(2589), + [anon_sym___fastcall] = ACTIONS(2589), + [anon_sym___thiscall] = ACTIONS(2589), + [anon_sym___vectorcall] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2591), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym___inline] = ACTIONS(2589), + [anon_sym___inline__] = ACTIONS(2589), + [anon_sym___forceinline] = ACTIONS(2589), + [anon_sym_thread_local] = ACTIONS(2589), + [anon_sym___thread] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym___restrict__] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym__Noreturn] = ACTIONS(2589), + [anon_sym_noreturn] = ACTIONS(2589), + [anon_sym__Nonnull] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_constinit] = ACTIONS(2589), + [anon_sym_consteval] = ACTIONS(2589), + [anon_sym_alignas] = ACTIONS(2589), + [anon_sym__Alignas] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_goto] = ACTIONS(2589), + [anon_sym___try] = ACTIONS(2589), + [anon_sym___leave] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_compl] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2591), + [anon_sym_PLUS_PLUS] = ACTIONS(2591), + [anon_sym_sizeof] = ACTIONS(2589), + [anon_sym___alignof__] = ACTIONS(2589), + [anon_sym___alignof] = ACTIONS(2589), + [anon_sym__alignof] = ACTIONS(2589), + [anon_sym_alignof] = ACTIONS(2589), + [anon_sym__Alignof] = ACTIONS(2589), + [anon_sym_offsetof] = ACTIONS(2589), + [anon_sym__Generic] = ACTIONS(2589), + [anon_sym_asm] = ACTIONS(2589), + [anon_sym___asm__] = ACTIONS(2589), + [anon_sym___asm] = ACTIONS(2589), + [sym_number_literal] = ACTIONS(2591), + [anon_sym_L_SQUOTE] = ACTIONS(2591), + [anon_sym_u_SQUOTE] = ACTIONS(2591), + [anon_sym_U_SQUOTE] = ACTIONS(2591), + [anon_sym_u8_SQUOTE] = ACTIONS(2591), + [anon_sym_SQUOTE] = ACTIONS(2591), + [anon_sym_L_DQUOTE] = ACTIONS(2591), + [anon_sym_u_DQUOTE] = ACTIONS(2591), + [anon_sym_U_DQUOTE] = ACTIONS(2591), + [anon_sym_u8_DQUOTE] = ACTIONS(2591), + [anon_sym_DQUOTE] = ACTIONS(2591), + [sym_true] = ACTIONS(2589), + [sym_false] = ACTIONS(2589), + [anon_sym_NULL] = ACTIONS(2589), + [anon_sym_nullptr] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2589), + [anon_sym_decltype] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_operator] = ACTIONS(2589), + [anon_sym_try] = ACTIONS(2589), + [anon_sym_delete] = ACTIONS(2589), + [anon_sym_throw] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_static_assert] = ACTIONS(2589), + [anon_sym_concept] = ACTIONS(2589), + [anon_sym_co_return] = ACTIONS(2589), + [anon_sym_co_yield] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(3260), + [anon_sym_R_DQUOTE] = ACTIONS(2591), + [anon_sym_LR_DQUOTE] = ACTIONS(2591), + [anon_sym_uR_DQUOTE] = ACTIONS(2591), + [anon_sym_UR_DQUOTE] = ACTIONS(2591), + [anon_sym_u8R_DQUOTE] = ACTIONS(2591), + [anon_sym_co_await] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_requires] = ACTIONS(2589), + [sym_this] = ACTIONS(2589), + }, + [STATE(455)] = { + [sym_type_qualifier] = STATE(3933), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4798), + [sym_sized_type_specifier] = STATE(2712), + [sym_enum_specifier] = STATE(2712), + [sym_struct_specifier] = STATE(2712), + [sym_union_specifier] = STATE(2712), + [sym_expression] = STATE(4567), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_type_descriptor] = STATE(7653), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_placeholder_type_specifier] = STATE(2712), + [sym_decltype_auto] = STATE(2711), + [sym_decltype] = STATE(2684), + [sym_class_specifier] = STATE(2712), + [sym__class_name] = STATE(7824), + [sym_dependent_type] = STATE(2712), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_type_parameter_pack_expansion] = STATE(7962), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5808), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3676), + [aux_sym__type_definition_type_repeat1] = STATE(3933), + [aux_sym_sized_type_specifier_repeat1] = STATE(4317), + [sym_identifier] = ACTIONS(3136), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3146), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_signed] = ACTIONS(3150), + [anon_sym_unsigned] = ACTIONS(3150), + [anon_sym_long] = ACTIONS(3150), + [anon_sym_short] = ACTIONS(3150), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -108164,519 +109191,102 @@ 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(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), + [sym_primitive_type] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_struct] = ACTIONS(3158), + [anon_sym_union] = ACTIONS(3160), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3184), + [anon_sym_decltype] = ACTIONS(3186), + [anon_sym_typename] = ACTIONS(3188), [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), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - [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(3099), - [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), - }, - [STATE(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), + [STATE(456)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -108684,47 +109294,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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___extension__] = ACTIONS(2567), + [anon_sym_typedef] = ACTIONS(3363), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), [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_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -108756,10 +109366,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(2569), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(2583), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -108771,190 +109381,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(457)] = { + [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(2717), + [anon_sym_RPAREN] = ACTIONS(2717), + [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(2717), + [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_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_export] = ACTIONS(1940), + [anon_sym_module] = ACTIONS(1940), + [anon_sym_import] = 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), }, - [STATE(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), + [STATE(458)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -108962,47 +109572,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(2567), + [anon_sym_typedef] = ACTIONS(2599), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), [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_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -109034,10 +109644,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(2569), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(2583), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -109049,190 +109659,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(455)] = { - [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), - [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), - }, - [STATE(456)] = { - [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), + [STATE(459)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -109240,47 +109711,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(2567), + [anon_sym_typedef] = ACTIONS(2603), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), [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_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(103), @@ -109312,10 +109783,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(2569), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(2583), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), @@ -109327,342 +109798,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(460)] = { + [sym_expression] = STATE(3616), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(3365), + [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(3368), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(3371), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), [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), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [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(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), + [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), }, - [STATE(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(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), + [STATE(461)] = { + [sym_else_clause] = STATE(634), + [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(3377), + [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(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), + [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), }, - [STATE(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), + [STATE(462)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4758), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8616), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -109670,7 +110140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -109691,7 +110161,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -109742,203 +110212,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), + [STATE(463)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4843), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8899), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -109946,7 +110278,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -109967,7 +110299,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -110018,203 +110350,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), + [STATE(464)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4680), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8851), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -110222,7 +110416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -110243,7 +110437,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -110294,65 +110488,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(465)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4773), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8479), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -110360,7 +110554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -110381,7 +110575,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -110432,65 +110626,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(466)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4811), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8809), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -110498,7 +110692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -110519,7 +110713,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -110570,65 +110764,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(467)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4657), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8610), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -110636,7 +110830,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -110657,7 +110851,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -110708,65 +110902,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(468)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4665), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8402), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -110774,7 +110968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -110795,7 +110989,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -110846,65 +111040,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(469)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4672), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8863), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -110912,7 +111106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -110933,7 +111127,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -110984,65 +111178,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(470)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4673), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8232), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -111050,7 +111244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -111071,7 +111265,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -111122,65 +111316,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(471)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4674), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8319), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -111188,7 +111382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3359), + [anon_sym___extension__] = ACTIONS(3381), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_signed] = ACTIONS(1808), [anon_sym_unsigned] = ACTIONS(1808), @@ -111209,7 +111403,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(3361), + [sym_primitive_type] = ACTIONS(3383), [anon_sym_enum] = ACTIONS(1814), [anon_sym_class] = ACTIONS(1816), [anon_sym_struct] = ACTIONS(1818), @@ -111260,7 +111454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(471)] = { + [STATE(472)] = { [sym_identifier] = ACTIONS(2611), [aux_sym_preproc_include_token1] = ACTIONS(2611), [aux_sym_preproc_def_token1] = ACTIONS(2611), @@ -111398,145 +111592,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2611), [sym_this] = ACTIONS(2611), }, - [STATE(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), + [STATE(473)] = { + [sym_else_clause] = STATE(582), + [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(3385), + [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), + }, + [STATE(474)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(2567), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [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(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), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), + [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), }, - [STATE(473)] = { + [STATE(475)] = { [sym_identifier] = ACTIONS(1936), [aux_sym_preproc_include_token1] = ACTIONS(1936), [aux_sym_preproc_def_token1] = ACTIONS(1936), @@ -111674,149 +112006,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1936), [sym_this] = ACTIONS(1936), }, - [STATE(474)] = { - [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(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), + [STATE(476)] = { + [sym_else_clause] = STATE(610), + [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(3377), + [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), }, - [STATE(475)] = { + [STATE(477)] = { [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), @@ -111847,7 +112180,6 @@ 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(1938), [anon_sym_signed] = ACTIONS(1940), [anon_sym_unsigned] = ACTIONS(1940), [anon_sym_long] = ACTIONS(1940), @@ -111950,288 +112282,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1940), [sym_this] = ACTIONS(1940), }, - [STATE(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), - }, - [STATE(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), + [STATE(478)] = { + [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(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), + [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), }, - [STATE(478)] = { + [STATE(479)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4832), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8477), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3381), + [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(3383), + [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(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), + }, + [STATE(480)] = { [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), @@ -112262,6 +112593,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(1938), [anon_sym_signed] = ACTIONS(1940), [anon_sym_unsigned] = ACTIONS(1940), [anon_sym_long] = ACTIONS(1940), @@ -112364,51 +112696,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1940), [sym_this] = ACTIONS(1940), }, - [STATE(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), + [STATE(481)] = { + [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), + }, + [STATE(482)] = { + [sym_type_qualifier] = STATE(3882), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4568), + [sym_sized_type_specifier] = STATE(1907), + [sym_enum_specifier] = STATE(1907), + [sym_struct_specifier] = STATE(1907), + [sym_union_specifier] = STATE(1907), + [sym_expression] = STATE(4837), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_type_descriptor] = STATE(8345), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_placeholder_type_specifier] = STATE(1907), + [sym_decltype_auto] = STATE(1904), + [sym_decltype] = STATE(1793), + [sym_class_specifier] = STATE(1907), + [sym__class_name] = STATE(7719), + [sym_dependent_type] = STATE(1907), + [sym_template_type] = STATE(5389), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5752), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(5404), + [sym_user_defined_literal] = STATE(3334), + [aux_sym__type_definition_type_repeat1] = STATE(3882), + [aux_sym_sized_type_specifier_repeat1] = STATE(4270), + [sym_identifier] = ACTIONS(3379), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -112416,46 +112900,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___extension__] = ACTIONS(3381), + [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(3383), + [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), @@ -112487,10 +112957,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(2569), - [anon_sym_decltype] = ACTIONS(2580), - [anon_sym_typename] = ACTIONS(2569), - [anon_sym_template] = ACTIONS(2583), + [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), @@ -112502,692 +112972,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, [STATE(483)] = { - [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_else_clause] = STATE(601), + [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(3385), + [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(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), + [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), }, [STATE(484)] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [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_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_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_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(2931), - [anon_sym_decltype] = ACTIONS(2931), - [anon_sym_explicit] = ACTIONS(2931), - [anon_sym_typename] = ACTIONS(2931), - [anon_sym_export] = ACTIONS(2931), - [anon_sym_module] = ACTIONS(2931), - [anon_sym_import] = 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), + [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), }, [STATE(485)] = { [ts_builtin_sym_end] = ACTIONS(2937), @@ -113327,6 +113385,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2935), }, [STATE(486)] = { + [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(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), + }, + [STATE(487)] = { + [ts_builtin_sym_end] = ACTIONS(2937), + [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_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_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_export] = ACTIONS(2935), + [anon_sym_module] = ACTIONS(2935), + [anon_sym_import] = 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), + }, + [STATE(488)] = { [ts_builtin_sym_end] = ACTIONS(2941), [sym_identifier] = ACTIONS(2939), [aux_sym_preproc_include_token1] = ACTIONS(2939), @@ -113463,144 +113795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2939), [sym_this] = ACTIONS(2939), }, - [STATE(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), - }, - [STATE(488)] = { + [STATE(489)] = { [ts_builtin_sym_end] = ACTIONS(2945), [sym_identifier] = ACTIONS(2943), [aux_sym_preproc_include_token1] = ACTIONS(2943), @@ -113737,7 +113932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2943), [sym_this] = ACTIONS(2943), }, - [STATE(489)] = { + [STATE(490)] = { [ts_builtin_sym_end] = ACTIONS(2949), [sym_identifier] = ACTIONS(2947), [aux_sym_preproc_include_token1] = ACTIONS(2947), @@ -113874,7 +114069,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2947), [sym_this] = ACTIONS(2947), }, - [STATE(490)] = { + [STATE(491)] = { + [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), + }, + [STATE(492)] = { [ts_builtin_sym_end] = ACTIONS(2953), [sym_identifier] = ACTIONS(2951), [aux_sym_preproc_include_token1] = ACTIONS(2951), @@ -114011,7 +114343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2951), [sym_this] = ACTIONS(2951), }, - [STATE(491)] = { + [STATE(493)] = { [ts_builtin_sym_end] = ACTIONS(2957), [sym_identifier] = ACTIONS(2955), [aux_sym_preproc_include_token1] = ACTIONS(2955), @@ -114148,144 +114480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2955), [sym_this] = ACTIONS(2955), }, - [STATE(492)] = { - [ts_builtin_sym_end] = ACTIONS(2817), - [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_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_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(2815), - [anon_sym_decltype] = ACTIONS(2815), - [anon_sym_explicit] = ACTIONS(2815), - [anon_sym_typename] = ACTIONS(2815), - [anon_sym_export] = ACTIONS(2815), - [anon_sym_module] = ACTIONS(2815), - [anon_sym_import] = 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), - }, - [STATE(493)] = { + [STATE(494)] = { [ts_builtin_sym_end] = ACTIONS(2961), [sym_identifier] = ACTIONS(2959), [aux_sym_preproc_include_token1] = ACTIONS(2959), @@ -114422,281 +114617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2959), [sym_this] = ACTIONS(2959), }, - [STATE(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(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), - }, [STATE(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(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), - }, - [STATE(496)] = { [ts_builtin_sym_end] = ACTIONS(2965), [sym_identifier] = ACTIONS(2963), [aux_sym_preproc_include_token1] = ACTIONS(2963), @@ -114833,281 +114754,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2963), [sym_this] = ACTIONS(2963), }, - [STATE(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), - }, - [STATE(498)] = { - [ts_builtin_sym_end] = ACTIONS(2841), - [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_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_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), + [STATE(496)] = { + [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(2839), - [anon_sym_decltype] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_typename] = ACTIONS(2839), - [anon_sym_export] = ACTIONS(2839), - [anon_sym_module] = ACTIONS(2839), - [anon_sym_import] = 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(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), }, - [STATE(499)] = { + [STATE(497)] = { [ts_builtin_sym_end] = ACTIONS(2969), [sym_identifier] = ACTIONS(2967), [aux_sym_preproc_include_token1] = ACTIONS(2967), @@ -115244,284 +115028,695 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2967), [sym_this] = ACTIONS(2967), }, - [STATE(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), + [STATE(498)] = { + [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(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(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), }, - [STATE(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), + [STATE(499)] = { + [ts_builtin_sym_end] = ACTIONS(3387), + [sym_identifier] = ACTIONS(3389), + [aux_sym_preproc_include_token1] = ACTIONS(3389), + [aux_sym_preproc_def_token1] = ACTIONS(3389), + [aux_sym_preproc_if_token1] = ACTIONS(3389), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3389), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3389), + [sym_preproc_directive] = ACTIONS(3389), + [anon_sym_LPAREN2] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym___extension__] = ACTIONS(3389), + [anon_sym_typedef] = ACTIONS(3389), + [anon_sym_virtual] = ACTIONS(3389), + [anon_sym_extern] = ACTIONS(3389), + [anon_sym___attribute__] = ACTIONS(3389), + [anon_sym___attribute] = ACTIONS(3389), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_COLON_COLON] = ACTIONS(3387), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3387), + [anon_sym___declspec] = ACTIONS(3389), + [anon_sym___based] = ACTIONS(3389), + [anon_sym___cdecl] = ACTIONS(3389), + [anon_sym___clrcall] = ACTIONS(3389), + [anon_sym___stdcall] = ACTIONS(3389), + [anon_sym___fastcall] = ACTIONS(3389), + [anon_sym___thiscall] = ACTIONS(3389), + [anon_sym___vectorcall] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_signed] = ACTIONS(3389), + [anon_sym_unsigned] = ACTIONS(3389), + [anon_sym_long] = ACTIONS(3389), + [anon_sym_short] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_register] = ACTIONS(3389), + [anon_sym_inline] = ACTIONS(3389), + [anon_sym___inline] = ACTIONS(3389), + [anon_sym___inline__] = ACTIONS(3389), + [anon_sym___forceinline] = ACTIONS(3389), + [anon_sym_thread_local] = ACTIONS(3389), + [anon_sym___thread] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3389), + [anon_sym_constexpr] = ACTIONS(3389), + [anon_sym_volatile] = ACTIONS(3389), + [anon_sym_restrict] = ACTIONS(3389), + [anon_sym___restrict__] = ACTIONS(3389), + [anon_sym__Atomic] = ACTIONS(3389), + [anon_sym__Noreturn] = ACTIONS(3389), + [anon_sym_noreturn] = ACTIONS(3389), + [anon_sym__Nonnull] = ACTIONS(3389), + [anon_sym_mutable] = ACTIONS(3389), + [anon_sym_constinit] = ACTIONS(3389), + [anon_sym_consteval] = ACTIONS(3389), + [anon_sym_alignas] = ACTIONS(3389), + [anon_sym__Alignas] = ACTIONS(3389), + [sym_primitive_type] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_struct] = ACTIONS(3389), + [anon_sym_union] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_case] = ACTIONS(3389), + [anon_sym_default] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_goto] = ACTIONS(3389), + [anon_sym_not] = ACTIONS(3389), + [anon_sym_compl] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_sizeof] = ACTIONS(3389), + [anon_sym___alignof__] = ACTIONS(3389), + [anon_sym___alignof] = ACTIONS(3389), + [anon_sym__alignof] = ACTIONS(3389), + [anon_sym_alignof] = ACTIONS(3389), + [anon_sym__Alignof] = ACTIONS(3389), + [anon_sym_offsetof] = ACTIONS(3389), + [anon_sym__Generic] = ACTIONS(3389), + [anon_sym_asm] = ACTIONS(3389), + [anon_sym___asm__] = ACTIONS(3389), + [anon_sym___asm] = ACTIONS(3389), + [sym_number_literal] = ACTIONS(3387), + [anon_sym_L_SQUOTE] = ACTIONS(3387), + [anon_sym_u_SQUOTE] = ACTIONS(3387), + [anon_sym_U_SQUOTE] = ACTIONS(3387), + [anon_sym_u8_SQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_L_DQUOTE] = ACTIONS(3387), + [anon_sym_u_DQUOTE] = ACTIONS(3387), + [anon_sym_U_DQUOTE] = ACTIONS(3387), + [anon_sym_u8_DQUOTE] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [anon_sym_NULL] = ACTIONS(3389), + [anon_sym_nullptr] = ACTIONS(3389), [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(3389), + [anon_sym_decltype] = ACTIONS(3389), + [anon_sym_explicit] = ACTIONS(3389), + [anon_sym_typename] = ACTIONS(3389), + [anon_sym_export] = ACTIONS(3389), + [anon_sym_module] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_template] = ACTIONS(3389), + [anon_sym_operator] = ACTIONS(3389), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_delete] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_namespace] = ACTIONS(3389), + [anon_sym_static_assert] = ACTIONS(3389), + [anon_sym_concept] = ACTIONS(3389), + [anon_sym_co_return] = ACTIONS(3389), + [anon_sym_co_yield] = ACTIONS(3389), + [anon_sym_R_DQUOTE] = ACTIONS(3387), + [anon_sym_LR_DQUOTE] = ACTIONS(3387), + [anon_sym_uR_DQUOTE] = ACTIONS(3387), + [anon_sym_UR_DQUOTE] = ACTIONS(3387), + [anon_sym_u8R_DQUOTE] = ACTIONS(3387), + [anon_sym_co_await] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_requires] = ACTIONS(3389), + [sym_this] = ACTIONS(3389), }, - [STATE(502)] = { - [ts_builtin_sym_end] = ACTIONS(2973), - [sym_identifier] = ACTIONS(2971), - [aux_sym_preproc_include_token1] = ACTIONS(2971), + [STATE(500)] = { + [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), + }, + [STATE(501)] = { + [ts_builtin_sym_end] = ACTIONS(3391), + [sym_identifier] = ACTIONS(3393), + [aux_sym_preproc_include_token1] = ACTIONS(3393), + [aux_sym_preproc_def_token1] = ACTIONS(3393), + [aux_sym_preproc_if_token1] = ACTIONS(3393), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3393), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3393), + [sym_preproc_directive] = ACTIONS(3393), + [anon_sym_LPAREN2] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3391), + [anon_sym_AMP] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3391), + [anon_sym___extension__] = ACTIONS(3393), + [anon_sym_typedef] = ACTIONS(3393), + [anon_sym_virtual] = ACTIONS(3393), + [anon_sym_extern] = ACTIONS(3393), + [anon_sym___attribute__] = ACTIONS(3393), + [anon_sym___attribute] = ACTIONS(3393), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_COLON_COLON] = ACTIONS(3391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3391), + [anon_sym___declspec] = ACTIONS(3393), + [anon_sym___based] = ACTIONS(3393), + [anon_sym___cdecl] = ACTIONS(3393), + [anon_sym___clrcall] = ACTIONS(3393), + [anon_sym___stdcall] = ACTIONS(3393), + [anon_sym___fastcall] = ACTIONS(3393), + [anon_sym___thiscall] = ACTIONS(3393), + [anon_sym___vectorcall] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_signed] = ACTIONS(3393), + [anon_sym_unsigned] = ACTIONS(3393), + [anon_sym_long] = ACTIONS(3393), + [anon_sym_short] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_register] = ACTIONS(3393), + [anon_sym_inline] = ACTIONS(3393), + [anon_sym___inline] = ACTIONS(3393), + [anon_sym___inline__] = ACTIONS(3393), + [anon_sym___forceinline] = ACTIONS(3393), + [anon_sym_thread_local] = ACTIONS(3393), + [anon_sym___thread] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_constexpr] = ACTIONS(3393), + [anon_sym_volatile] = ACTIONS(3393), + [anon_sym_restrict] = ACTIONS(3393), + [anon_sym___restrict__] = ACTIONS(3393), + [anon_sym__Atomic] = ACTIONS(3393), + [anon_sym__Noreturn] = ACTIONS(3393), + [anon_sym_noreturn] = ACTIONS(3393), + [anon_sym__Nonnull] = ACTIONS(3393), + [anon_sym_mutable] = ACTIONS(3393), + [anon_sym_constinit] = ACTIONS(3393), + [anon_sym_consteval] = ACTIONS(3393), + [anon_sym_alignas] = ACTIONS(3393), + [anon_sym__Alignas] = ACTIONS(3393), + [sym_primitive_type] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_struct] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_case] = ACTIONS(3393), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_goto] = ACTIONS(3393), + [anon_sym_not] = ACTIONS(3393), + [anon_sym_compl] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3391), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_sizeof] = ACTIONS(3393), + [anon_sym___alignof__] = ACTIONS(3393), + [anon_sym___alignof] = ACTIONS(3393), + [anon_sym__alignof] = ACTIONS(3393), + [anon_sym_alignof] = ACTIONS(3393), + [anon_sym__Alignof] = ACTIONS(3393), + [anon_sym_offsetof] = ACTIONS(3393), + [anon_sym__Generic] = ACTIONS(3393), + [anon_sym_asm] = ACTIONS(3393), + [anon_sym___asm__] = ACTIONS(3393), + [anon_sym___asm] = ACTIONS(3393), + [sym_number_literal] = ACTIONS(3391), + [anon_sym_L_SQUOTE] = ACTIONS(3391), + [anon_sym_u_SQUOTE] = ACTIONS(3391), + [anon_sym_U_SQUOTE] = ACTIONS(3391), + [anon_sym_u8_SQUOTE] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3391), + [anon_sym_L_DQUOTE] = ACTIONS(3391), + [anon_sym_u_DQUOTE] = ACTIONS(3391), + [anon_sym_U_DQUOTE] = ACTIONS(3391), + [anon_sym_u8_DQUOTE] = ACTIONS(3391), + [anon_sym_DQUOTE] = ACTIONS(3391), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [anon_sym_NULL] = ACTIONS(3393), + [anon_sym_nullptr] = ACTIONS(3393), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3393), + [anon_sym_decltype] = ACTIONS(3393), + [anon_sym_explicit] = ACTIONS(3393), + [anon_sym_typename] = ACTIONS(3393), + [anon_sym_export] = ACTIONS(3393), + [anon_sym_module] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_template] = ACTIONS(3393), + [anon_sym_operator] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_delete] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_namespace] = ACTIONS(3393), + [anon_sym_static_assert] = ACTIONS(3393), + [anon_sym_concept] = ACTIONS(3393), + [anon_sym_co_return] = ACTIONS(3393), + [anon_sym_co_yield] = ACTIONS(3393), + [anon_sym_R_DQUOTE] = ACTIONS(3391), + [anon_sym_LR_DQUOTE] = ACTIONS(3391), + [anon_sym_uR_DQUOTE] = ACTIONS(3391), + [anon_sym_UR_DQUOTE] = ACTIONS(3391), + [anon_sym_u8R_DQUOTE] = ACTIONS(3391), + [anon_sym_co_await] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_requires] = ACTIONS(3393), + [sym_this] = ACTIONS(3393), + }, + [STATE(502)] = { + [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), + }, + [STATE(503)] = { + [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), @@ -115655,143 +115850,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2971), [sym_this] = ACTIONS(2971), }, - [STATE(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), - }, [STATE(504)] = { [ts_builtin_sym_end] = ACTIONS(2977), [sym_identifier] = ACTIONS(2975), @@ -115930,965 +115988,828 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(2975), }, [STATE(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), - [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_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), + [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(2847), - [anon_sym_decltype] = ACTIONS(2847), - [anon_sym_explicit] = ACTIONS(2847), - [anon_sym_typename] = ACTIONS(2847), - [anon_sym_export] = ACTIONS(2847), - [anon_sym_module] = ACTIONS(2847), - [anon_sym_import] = 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(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), }, [STATE(506)] = { - [ts_builtin_sym_end] = ACTIONS(2853), - [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_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_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(2851), - [anon_sym_decltype] = ACTIONS(2851), - [anon_sym_explicit] = ACTIONS(2851), - [anon_sym_typename] = ACTIONS(2851), - [anon_sym_export] = ACTIONS(2851), - [anon_sym_module] = ACTIONS(2851), - [anon_sym_import] = 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), - }, - [STATE(507)] = { - [ts_builtin_sym_end] = ACTIONS(3383), - [sym_identifier] = ACTIONS(3385), - [aux_sym_preproc_include_token1] = ACTIONS(3385), - [aux_sym_preproc_def_token1] = ACTIONS(3385), - [aux_sym_preproc_if_token1] = ACTIONS(3385), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3385), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3385), - [sym_preproc_directive] = ACTIONS(3385), - [anon_sym_LPAREN2] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym___extension__] = ACTIONS(3385), - [anon_sym_typedef] = ACTIONS(3385), - [anon_sym_virtual] = ACTIONS(3385), - [anon_sym_extern] = ACTIONS(3385), - [anon_sym___attribute__] = ACTIONS(3385), - [anon_sym___attribute] = ACTIONS(3385), - [anon_sym_using] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(3383), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3383), - [anon_sym___declspec] = ACTIONS(3385), - [anon_sym___based] = ACTIONS(3385), - [anon_sym___cdecl] = ACTIONS(3385), - [anon_sym___clrcall] = ACTIONS(3385), - [anon_sym___stdcall] = ACTIONS(3385), - [anon_sym___fastcall] = ACTIONS(3385), - [anon_sym___thiscall] = ACTIONS(3385), - [anon_sym___vectorcall] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_signed] = ACTIONS(3385), - [anon_sym_unsigned] = ACTIONS(3385), - [anon_sym_long] = ACTIONS(3385), - [anon_sym_short] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_static] = ACTIONS(3385), - [anon_sym_register] = ACTIONS(3385), - [anon_sym_inline] = ACTIONS(3385), - [anon_sym___inline] = ACTIONS(3385), - [anon_sym___inline__] = ACTIONS(3385), - [anon_sym___forceinline] = ACTIONS(3385), - [anon_sym_thread_local] = ACTIONS(3385), - [anon_sym___thread] = ACTIONS(3385), - [anon_sym_const] = ACTIONS(3385), - [anon_sym_constexpr] = ACTIONS(3385), - [anon_sym_volatile] = ACTIONS(3385), - [anon_sym_restrict] = ACTIONS(3385), - [anon_sym___restrict__] = ACTIONS(3385), - [anon_sym__Atomic] = ACTIONS(3385), - [anon_sym__Noreturn] = ACTIONS(3385), - [anon_sym_noreturn] = ACTIONS(3385), - [anon_sym__Nonnull] = ACTIONS(3385), - [anon_sym_mutable] = ACTIONS(3385), - [anon_sym_constinit] = ACTIONS(3385), - [anon_sym_consteval] = ACTIONS(3385), - [anon_sym_alignas] = ACTIONS(3385), - [anon_sym__Alignas] = ACTIONS(3385), - [sym_primitive_type] = ACTIONS(3385), - [anon_sym_enum] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3385), - [anon_sym_union] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_switch] = ACTIONS(3385), - [anon_sym_case] = ACTIONS(3385), - [anon_sym_default] = ACTIONS(3385), - [anon_sym_while] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_for] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3385), - [anon_sym_break] = ACTIONS(3385), - [anon_sym_continue] = ACTIONS(3385), - [anon_sym_goto] = ACTIONS(3385), - [anon_sym_not] = ACTIONS(3385), - [anon_sym_compl] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_sizeof] = ACTIONS(3385), - [anon_sym___alignof__] = ACTIONS(3385), - [anon_sym___alignof] = ACTIONS(3385), - [anon_sym__alignof] = ACTIONS(3385), - [anon_sym_alignof] = ACTIONS(3385), - [anon_sym__Alignof] = ACTIONS(3385), - [anon_sym_offsetof] = ACTIONS(3385), - [anon_sym__Generic] = ACTIONS(3385), - [anon_sym_asm] = ACTIONS(3385), - [anon_sym___asm__] = ACTIONS(3385), - [anon_sym___asm] = ACTIONS(3385), - [sym_number_literal] = ACTIONS(3383), - [anon_sym_L_SQUOTE] = ACTIONS(3383), - [anon_sym_u_SQUOTE] = ACTIONS(3383), - [anon_sym_U_SQUOTE] = ACTIONS(3383), - [anon_sym_u8_SQUOTE] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_L_DQUOTE] = ACTIONS(3383), - [anon_sym_u_DQUOTE] = ACTIONS(3383), - [anon_sym_U_DQUOTE] = ACTIONS(3383), - [anon_sym_u8_DQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [sym_true] = ACTIONS(3385), - [sym_false] = ACTIONS(3385), - [anon_sym_NULL] = ACTIONS(3385), - [anon_sym_nullptr] = ACTIONS(3385), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3385), - [anon_sym_decltype] = ACTIONS(3385), - [anon_sym_explicit] = ACTIONS(3385), - [anon_sym_typename] = ACTIONS(3385), - [anon_sym_export] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_import] = ACTIONS(3385), - [anon_sym_template] = ACTIONS(3385), - [anon_sym_operator] = ACTIONS(3385), - [anon_sym_try] = ACTIONS(3385), - [anon_sym_delete] = ACTIONS(3385), - [anon_sym_throw] = ACTIONS(3385), - [anon_sym_namespace] = ACTIONS(3385), - [anon_sym_static_assert] = ACTIONS(3385), - [anon_sym_concept] = ACTIONS(3385), - [anon_sym_co_return] = ACTIONS(3385), - [anon_sym_co_yield] = ACTIONS(3385), - [anon_sym_R_DQUOTE] = ACTIONS(3383), - [anon_sym_LR_DQUOTE] = ACTIONS(3383), - [anon_sym_uR_DQUOTE] = ACTIONS(3383), - [anon_sym_UR_DQUOTE] = ACTIONS(3383), - [anon_sym_u8R_DQUOTE] = ACTIONS(3383), - [anon_sym_co_await] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_requires] = ACTIONS(3385), - [sym_this] = ACTIONS(3385), - }, - [STATE(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_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(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), + [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), }, - [STATE(509)] = { - [ts_builtin_sym_end] = ACTIONS(3387), - [sym_identifier] = ACTIONS(3389), - [aux_sym_preproc_include_token1] = ACTIONS(3389), - [aux_sym_preproc_def_token1] = ACTIONS(3389), - [aux_sym_preproc_if_token1] = ACTIONS(3389), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3389), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3389), - [sym_preproc_directive] = ACTIONS(3389), - [anon_sym_LPAREN2] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym___extension__] = ACTIONS(3389), - [anon_sym_typedef] = ACTIONS(3389), - [anon_sym_virtual] = ACTIONS(3389), - [anon_sym_extern] = ACTIONS(3389), - [anon_sym___attribute__] = ACTIONS(3389), - [anon_sym___attribute] = ACTIONS(3389), - [anon_sym_using] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3387), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3387), - [anon_sym___declspec] = ACTIONS(3389), - [anon_sym___based] = ACTIONS(3389), - [anon_sym___cdecl] = ACTIONS(3389), - [anon_sym___clrcall] = ACTIONS(3389), - [anon_sym___stdcall] = ACTIONS(3389), - [anon_sym___fastcall] = ACTIONS(3389), - [anon_sym___thiscall] = ACTIONS(3389), - [anon_sym___vectorcall] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_signed] = ACTIONS(3389), - [anon_sym_unsigned] = ACTIONS(3389), - [anon_sym_long] = ACTIONS(3389), - [anon_sym_short] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_static] = ACTIONS(3389), - [anon_sym_register] = ACTIONS(3389), - [anon_sym_inline] = ACTIONS(3389), - [anon_sym___inline] = ACTIONS(3389), - [anon_sym___inline__] = ACTIONS(3389), - [anon_sym___forceinline] = ACTIONS(3389), - [anon_sym_thread_local] = ACTIONS(3389), - [anon_sym___thread] = ACTIONS(3389), - [anon_sym_const] = ACTIONS(3389), - [anon_sym_constexpr] = ACTIONS(3389), - [anon_sym_volatile] = ACTIONS(3389), - [anon_sym_restrict] = ACTIONS(3389), - [anon_sym___restrict__] = ACTIONS(3389), - [anon_sym__Atomic] = ACTIONS(3389), - [anon_sym__Noreturn] = ACTIONS(3389), - [anon_sym_noreturn] = ACTIONS(3389), - [anon_sym__Nonnull] = ACTIONS(3389), - [anon_sym_mutable] = ACTIONS(3389), - [anon_sym_constinit] = ACTIONS(3389), - [anon_sym_consteval] = ACTIONS(3389), - [anon_sym_alignas] = ACTIONS(3389), - [anon_sym__Alignas] = ACTIONS(3389), - [sym_primitive_type] = ACTIONS(3389), - [anon_sym_enum] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3389), - [anon_sym_union] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3389), - [anon_sym_switch] = ACTIONS(3389), - [anon_sym_case] = ACTIONS(3389), - [anon_sym_default] = ACTIONS(3389), - [anon_sym_while] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_for] = ACTIONS(3389), - [anon_sym_return] = ACTIONS(3389), - [anon_sym_break] = ACTIONS(3389), - [anon_sym_continue] = ACTIONS(3389), - [anon_sym_goto] = ACTIONS(3389), - [anon_sym_not] = ACTIONS(3389), - [anon_sym_compl] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_sizeof] = ACTIONS(3389), - [anon_sym___alignof__] = ACTIONS(3389), - [anon_sym___alignof] = ACTIONS(3389), - [anon_sym__alignof] = ACTIONS(3389), - [anon_sym_alignof] = ACTIONS(3389), - [anon_sym__Alignof] = ACTIONS(3389), - [anon_sym_offsetof] = ACTIONS(3389), - [anon_sym__Generic] = ACTIONS(3389), - [anon_sym_asm] = ACTIONS(3389), - [anon_sym___asm__] = ACTIONS(3389), - [anon_sym___asm] = ACTIONS(3389), - [sym_number_literal] = ACTIONS(3387), - [anon_sym_L_SQUOTE] = ACTIONS(3387), - [anon_sym_u_SQUOTE] = ACTIONS(3387), - [anon_sym_U_SQUOTE] = ACTIONS(3387), - [anon_sym_u8_SQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_L_DQUOTE] = ACTIONS(3387), - [anon_sym_u_DQUOTE] = ACTIONS(3387), - [anon_sym_U_DQUOTE] = ACTIONS(3387), - [anon_sym_u8_DQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [sym_true] = ACTIONS(3389), - [sym_false] = ACTIONS(3389), - [anon_sym_NULL] = ACTIONS(3389), - [anon_sym_nullptr] = ACTIONS(3389), + [STATE(507)] = { + [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(3389), - [anon_sym_decltype] = ACTIONS(3389), - [anon_sym_explicit] = ACTIONS(3389), - [anon_sym_typename] = ACTIONS(3389), - [anon_sym_export] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_import] = ACTIONS(3389), - [anon_sym_template] = ACTIONS(3389), - [anon_sym_operator] = ACTIONS(3389), - [anon_sym_try] = ACTIONS(3389), - [anon_sym_delete] = ACTIONS(3389), - [anon_sym_throw] = ACTIONS(3389), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_static_assert] = ACTIONS(3389), - [anon_sym_concept] = ACTIONS(3389), - [anon_sym_co_return] = ACTIONS(3389), - [anon_sym_co_yield] = ACTIONS(3389), - [anon_sym_R_DQUOTE] = ACTIONS(3387), - [anon_sym_LR_DQUOTE] = ACTIONS(3387), - [anon_sym_uR_DQUOTE] = ACTIONS(3387), - [anon_sym_UR_DQUOTE] = ACTIONS(3387), - [anon_sym_u8R_DQUOTE] = ACTIONS(3387), - [anon_sym_co_await] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_requires] = ACTIONS(3389), - [sym_this] = ACTIONS(3389), + [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), + }, + [STATE(508)] = { + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_include_token1] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2979), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2979), + [sym_preproc_directive] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym___extension__] = ACTIONS(2979), + [anon_sym_typedef] = ACTIONS(2979), + [anon_sym_virtual] = ACTIONS(2979), + [anon_sym_extern] = ACTIONS(2979), + [anon_sym___attribute__] = ACTIONS(2979), + [anon_sym___attribute] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2981), + [anon_sym___declspec] = ACTIONS(2979), + [anon_sym___based] = ACTIONS(2979), + [anon_sym___cdecl] = ACTIONS(2979), + [anon_sym___clrcall] = ACTIONS(2979), + [anon_sym___stdcall] = ACTIONS(2979), + [anon_sym___fastcall] = ACTIONS(2979), + [anon_sym___thiscall] = ACTIONS(2979), + [anon_sym___vectorcall] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_signed] = ACTIONS(2979), + [anon_sym_unsigned] = ACTIONS(2979), + [anon_sym_long] = ACTIONS(2979), + [anon_sym_short] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_register] = ACTIONS(2979), + [anon_sym_inline] = ACTIONS(2979), + [anon_sym___inline] = ACTIONS(2979), + [anon_sym___inline__] = ACTIONS(2979), + [anon_sym___forceinline] = ACTIONS(2979), + [anon_sym_thread_local] = ACTIONS(2979), + [anon_sym___thread] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_constexpr] = ACTIONS(2979), + [anon_sym_volatile] = ACTIONS(2979), + [anon_sym_restrict] = ACTIONS(2979), + [anon_sym___restrict__] = ACTIONS(2979), + [anon_sym__Atomic] = ACTIONS(2979), + [anon_sym__Noreturn] = ACTIONS(2979), + [anon_sym_noreturn] = ACTIONS(2979), + [anon_sym__Nonnull] = ACTIONS(2979), + [anon_sym_mutable] = ACTIONS(2979), + [anon_sym_constinit] = ACTIONS(2979), + [anon_sym_consteval] = ACTIONS(2979), + [anon_sym_alignas] = ACTIONS(2979), + [anon_sym__Alignas] = ACTIONS(2979), + [sym_primitive_type] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), + [anon_sym_class] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_union] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_case] = ACTIONS(2979), + [anon_sym_default] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_goto] = ACTIONS(2979), + [anon_sym_not] = ACTIONS(2979), + [anon_sym_compl] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2979), + [anon_sym___alignof__] = ACTIONS(2979), + [anon_sym___alignof] = ACTIONS(2979), + [anon_sym__alignof] = ACTIONS(2979), + [anon_sym_alignof] = ACTIONS(2979), + [anon_sym__Alignof] = ACTIONS(2979), + [anon_sym_offsetof] = ACTIONS(2979), + [anon_sym__Generic] = ACTIONS(2979), + [anon_sym_asm] = ACTIONS(2979), + [anon_sym___asm__] = ACTIONS(2979), + [anon_sym___asm] = ACTIONS(2979), + [sym_number_literal] = ACTIONS(2981), + [anon_sym_L_SQUOTE] = ACTIONS(2981), + [anon_sym_u_SQUOTE] = ACTIONS(2981), + [anon_sym_U_SQUOTE] = ACTIONS(2981), + [anon_sym_u8_SQUOTE] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_L_DQUOTE] = ACTIONS(2981), + [anon_sym_u_DQUOTE] = ACTIONS(2981), + [anon_sym_U_DQUOTE] = ACTIONS(2981), + [anon_sym_u8_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [anon_sym_NULL] = ACTIONS(2979), + [anon_sym_nullptr] = ACTIONS(2979), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2979), + [anon_sym_decltype] = ACTIONS(2979), + [anon_sym_explicit] = ACTIONS(2979), + [anon_sym_typename] = ACTIONS(2979), + [anon_sym_export] = ACTIONS(2979), + [anon_sym_module] = ACTIONS(2979), + [anon_sym_import] = ACTIONS(2979), + [anon_sym_template] = ACTIONS(2979), + [anon_sym_operator] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_delete] = ACTIONS(2979), + [anon_sym_throw] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_static_assert] = ACTIONS(2979), + [anon_sym_concept] = ACTIONS(2979), + [anon_sym_co_return] = ACTIONS(2979), + [anon_sym_co_yield] = ACTIONS(2979), + [anon_sym_R_DQUOTE] = ACTIONS(2981), + [anon_sym_LR_DQUOTE] = ACTIONS(2981), + [anon_sym_uR_DQUOTE] = ACTIONS(2981), + [anon_sym_UR_DQUOTE] = ACTIONS(2981), + [anon_sym_u8R_DQUOTE] = ACTIONS(2981), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_requires] = ACTIONS(2979), + [sym_this] = ACTIONS(2979), + }, + [STATE(509)] = { + [ts_builtin_sym_end] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2983), + [aux_sym_preproc_include_token1] = ACTIONS(2983), + [aux_sym_preproc_def_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2983), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2983), + [sym_preproc_directive] = ACTIONS(2983), + [anon_sym_LPAREN2] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym___extension__] = ACTIONS(2983), + [anon_sym_typedef] = ACTIONS(2983), + [anon_sym_virtual] = ACTIONS(2983), + [anon_sym_extern] = ACTIONS(2983), + [anon_sym___attribute__] = ACTIONS(2983), + [anon_sym___attribute] = ACTIONS(2983), + [anon_sym_using] = ACTIONS(2983), + [anon_sym_COLON_COLON] = ACTIONS(2985), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2985), + [anon_sym___declspec] = ACTIONS(2983), + [anon_sym___based] = ACTIONS(2983), + [anon_sym___cdecl] = ACTIONS(2983), + [anon_sym___clrcall] = ACTIONS(2983), + [anon_sym___stdcall] = ACTIONS(2983), + [anon_sym___fastcall] = ACTIONS(2983), + [anon_sym___thiscall] = ACTIONS(2983), + [anon_sym___vectorcall] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_signed] = ACTIONS(2983), + [anon_sym_unsigned] = ACTIONS(2983), + [anon_sym_long] = ACTIONS(2983), + [anon_sym_short] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_static] = ACTIONS(2983), + [anon_sym_register] = ACTIONS(2983), + [anon_sym_inline] = ACTIONS(2983), + [anon_sym___inline] = ACTIONS(2983), + [anon_sym___inline__] = ACTIONS(2983), + [anon_sym___forceinline] = ACTIONS(2983), + [anon_sym_thread_local] = ACTIONS(2983), + [anon_sym___thread] = ACTIONS(2983), + [anon_sym_const] = ACTIONS(2983), + [anon_sym_constexpr] = ACTIONS(2983), + [anon_sym_volatile] = ACTIONS(2983), + [anon_sym_restrict] = ACTIONS(2983), + [anon_sym___restrict__] = ACTIONS(2983), + [anon_sym__Atomic] = ACTIONS(2983), + [anon_sym__Noreturn] = ACTIONS(2983), + [anon_sym_noreturn] = ACTIONS(2983), + [anon_sym__Nonnull] = ACTIONS(2983), + [anon_sym_mutable] = ACTIONS(2983), + [anon_sym_constinit] = ACTIONS(2983), + [anon_sym_consteval] = ACTIONS(2983), + [anon_sym_alignas] = ACTIONS(2983), + [anon_sym__Alignas] = ACTIONS(2983), + [sym_primitive_type] = ACTIONS(2983), + [anon_sym_enum] = ACTIONS(2983), + [anon_sym_class] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_union] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2983), + [anon_sym_case] = ACTIONS(2983), + [anon_sym_default] = ACTIONS(2983), + [anon_sym_while] = ACTIONS(2983), + [anon_sym_do] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_goto] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_sizeof] = ACTIONS(2983), + [anon_sym___alignof__] = ACTIONS(2983), + [anon_sym___alignof] = ACTIONS(2983), + [anon_sym__alignof] = ACTIONS(2983), + [anon_sym_alignof] = ACTIONS(2983), + [anon_sym__Alignof] = ACTIONS(2983), + [anon_sym_offsetof] = ACTIONS(2983), + [anon_sym__Generic] = ACTIONS(2983), + [anon_sym_asm] = ACTIONS(2983), + [anon_sym___asm__] = ACTIONS(2983), + [anon_sym___asm] = ACTIONS(2983), + [sym_number_literal] = ACTIONS(2985), + [anon_sym_L_SQUOTE] = ACTIONS(2985), + [anon_sym_u_SQUOTE] = ACTIONS(2985), + [anon_sym_U_SQUOTE] = ACTIONS(2985), + [anon_sym_u8_SQUOTE] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_L_DQUOTE] = ACTIONS(2985), + [anon_sym_u_DQUOTE] = ACTIONS(2985), + [anon_sym_U_DQUOTE] = ACTIONS(2985), + [anon_sym_u8_DQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [anon_sym_NULL] = ACTIONS(2983), + [anon_sym_nullptr] = ACTIONS(2983), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2983), + [anon_sym_decltype] = ACTIONS(2983), + [anon_sym_explicit] = ACTIONS(2983), + [anon_sym_typename] = ACTIONS(2983), + [anon_sym_export] = ACTIONS(2983), + [anon_sym_module] = ACTIONS(2983), + [anon_sym_import] = ACTIONS(2983), + [anon_sym_template] = ACTIONS(2983), + [anon_sym_operator] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2983), + [anon_sym_delete] = ACTIONS(2983), + [anon_sym_throw] = ACTIONS(2983), + [anon_sym_namespace] = ACTIONS(2983), + [anon_sym_static_assert] = ACTIONS(2983), + [anon_sym_concept] = ACTIONS(2983), + [anon_sym_co_return] = ACTIONS(2983), + [anon_sym_co_yield] = ACTIONS(2983), + [anon_sym_R_DQUOTE] = ACTIONS(2985), + [anon_sym_LR_DQUOTE] = ACTIONS(2985), + [anon_sym_uR_DQUOTE] = ACTIONS(2985), + [anon_sym_UR_DQUOTE] = ACTIONS(2985), + [anon_sym_u8R_DQUOTE] = ACTIONS(2985), + [anon_sym_co_await] = ACTIONS(2983), + [anon_sym_new] = ACTIONS(2983), + [anon_sym_requires] = ACTIONS(2983), + [sym_this] = ACTIONS(2983), }, [STATE(510)] = { - [ts_builtin_sym_end] = ACTIONS(3391), - [sym_identifier] = ACTIONS(3393), - [aux_sym_preproc_include_token1] = ACTIONS(3393), - [aux_sym_preproc_def_token1] = ACTIONS(3393), - [aux_sym_preproc_if_token1] = ACTIONS(3393), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3393), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3393), - [sym_preproc_directive] = ACTIONS(3393), - [anon_sym_LPAREN2] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3393), - [anon_sym_PLUS] = ACTIONS(3393), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3393), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym___extension__] = ACTIONS(3393), - [anon_sym_typedef] = ACTIONS(3393), - [anon_sym_virtual] = ACTIONS(3393), - [anon_sym_extern] = ACTIONS(3393), - [anon_sym___attribute__] = ACTIONS(3393), - [anon_sym___attribute] = ACTIONS(3393), - [anon_sym_using] = ACTIONS(3393), - [anon_sym_COLON_COLON] = ACTIONS(3391), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3391), - [anon_sym___declspec] = ACTIONS(3393), - [anon_sym___based] = ACTIONS(3393), - [anon_sym___cdecl] = ACTIONS(3393), - [anon_sym___clrcall] = ACTIONS(3393), - [anon_sym___stdcall] = ACTIONS(3393), - [anon_sym___fastcall] = ACTIONS(3393), - [anon_sym___thiscall] = ACTIONS(3393), - [anon_sym___vectorcall] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_signed] = ACTIONS(3393), - [anon_sym_unsigned] = ACTIONS(3393), - [anon_sym_long] = ACTIONS(3393), - [anon_sym_short] = ACTIONS(3393), - [anon_sym_LBRACK] = ACTIONS(3393), - [anon_sym_static] = ACTIONS(3393), - [anon_sym_register] = ACTIONS(3393), - [anon_sym_inline] = ACTIONS(3393), - [anon_sym___inline] = ACTIONS(3393), - [anon_sym___inline__] = ACTIONS(3393), - [anon_sym___forceinline] = ACTIONS(3393), - [anon_sym_thread_local] = ACTIONS(3393), - [anon_sym___thread] = ACTIONS(3393), - [anon_sym_const] = ACTIONS(3393), - [anon_sym_constexpr] = ACTIONS(3393), - [anon_sym_volatile] = ACTIONS(3393), - [anon_sym_restrict] = ACTIONS(3393), - [anon_sym___restrict__] = ACTIONS(3393), - [anon_sym__Atomic] = ACTIONS(3393), - [anon_sym__Noreturn] = ACTIONS(3393), - [anon_sym_noreturn] = ACTIONS(3393), - [anon_sym__Nonnull] = ACTIONS(3393), - [anon_sym_mutable] = ACTIONS(3393), - [anon_sym_constinit] = ACTIONS(3393), - [anon_sym_consteval] = ACTIONS(3393), - [anon_sym_alignas] = ACTIONS(3393), - [anon_sym__Alignas] = ACTIONS(3393), - [sym_primitive_type] = ACTIONS(3393), - [anon_sym_enum] = ACTIONS(3393), - [anon_sym_class] = ACTIONS(3393), - [anon_sym_struct] = ACTIONS(3393), - [anon_sym_union] = ACTIONS(3393), - [anon_sym_if] = ACTIONS(3393), - [anon_sym_switch] = ACTIONS(3393), - [anon_sym_case] = ACTIONS(3393), - [anon_sym_default] = ACTIONS(3393), - [anon_sym_while] = ACTIONS(3393), - [anon_sym_do] = ACTIONS(3393), - [anon_sym_for] = ACTIONS(3393), - [anon_sym_return] = ACTIONS(3393), - [anon_sym_break] = ACTIONS(3393), - [anon_sym_continue] = ACTIONS(3393), - [anon_sym_goto] = ACTIONS(3393), - [anon_sym_not] = ACTIONS(3393), - [anon_sym_compl] = ACTIONS(3393), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_sizeof] = ACTIONS(3393), - [anon_sym___alignof__] = ACTIONS(3393), - [anon_sym___alignof] = ACTIONS(3393), - [anon_sym__alignof] = ACTIONS(3393), - [anon_sym_alignof] = ACTIONS(3393), - [anon_sym__Alignof] = ACTIONS(3393), - [anon_sym_offsetof] = ACTIONS(3393), - [anon_sym__Generic] = ACTIONS(3393), - [anon_sym_asm] = ACTIONS(3393), - [anon_sym___asm__] = ACTIONS(3393), - [anon_sym___asm] = ACTIONS(3393), - [sym_number_literal] = ACTIONS(3391), - [anon_sym_L_SQUOTE] = ACTIONS(3391), - [anon_sym_u_SQUOTE] = ACTIONS(3391), - [anon_sym_U_SQUOTE] = ACTIONS(3391), - [anon_sym_u8_SQUOTE] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_L_DQUOTE] = ACTIONS(3391), - [anon_sym_u_DQUOTE] = ACTIONS(3391), - [anon_sym_U_DQUOTE] = ACTIONS(3391), - [anon_sym_u8_DQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym_true] = ACTIONS(3393), - [sym_false] = ACTIONS(3393), - [anon_sym_NULL] = ACTIONS(3393), - [anon_sym_nullptr] = ACTIONS(3393), + [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(3393), - [anon_sym_decltype] = ACTIONS(3393), - [anon_sym_explicit] = ACTIONS(3393), - [anon_sym_typename] = ACTIONS(3393), - [anon_sym_export] = ACTIONS(3393), - [anon_sym_module] = ACTIONS(3393), - [anon_sym_import] = ACTIONS(3393), - [anon_sym_template] = ACTIONS(3393), - [anon_sym_operator] = ACTIONS(3393), - [anon_sym_try] = ACTIONS(3393), - [anon_sym_delete] = ACTIONS(3393), - [anon_sym_throw] = ACTIONS(3393), - [anon_sym_namespace] = ACTIONS(3393), - [anon_sym_static_assert] = ACTIONS(3393), - [anon_sym_concept] = ACTIONS(3393), - [anon_sym_co_return] = ACTIONS(3393), - [anon_sym_co_yield] = ACTIONS(3393), - [anon_sym_R_DQUOTE] = ACTIONS(3391), - [anon_sym_LR_DQUOTE] = ACTIONS(3391), - [anon_sym_uR_DQUOTE] = ACTIONS(3391), - [anon_sym_UR_DQUOTE] = ACTIONS(3391), - [anon_sym_u8R_DQUOTE] = ACTIONS(3391), - [anon_sym_co_await] = ACTIONS(3393), - [anon_sym_new] = ACTIONS(3393), - [anon_sym_requires] = ACTIONS(3393), - [sym_this] = ACTIONS(3393), + [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), }, [STATE(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), - }, - [STATE(512)] = { [ts_builtin_sym_end] = ACTIONS(3395), [sym_identifier] = ACTIONS(3397), [aux_sym_preproc_include_token1] = ACTIONS(3397), @@ -117025,144 +116946,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3397), [sym_this] = ACTIONS(3397), }, + [STATE(512)] = { + [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), + }, [STATE(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), + [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(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(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), }, [STATE(514)] = { + [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), + }, + [STATE(515)] = { [ts_builtin_sym_end] = ACTIONS(3399), [sym_identifier] = ACTIONS(3401), [aux_sym_preproc_include_token1] = ACTIONS(3401), @@ -117299,7 +117494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3401), [sym_this] = ACTIONS(3401), }, - [STATE(515)] = { + [STATE(516)] = { [ts_builtin_sym_end] = ACTIONS(3403), [sym_identifier] = ACTIONS(3405), [aux_sym_preproc_include_token1] = ACTIONS(3405), @@ -117436,7 +117631,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3405), [sym_this] = ACTIONS(3405), }, - [STATE(516)] = { + [STATE(517)] = { + [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(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), + }, + [STATE(518)] = { [ts_builtin_sym_end] = ACTIONS(3407), [sym_identifier] = ACTIONS(3409), [aux_sym_preproc_include_token1] = ACTIONS(3409), @@ -117573,7 +117905,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3409), [sym_this] = ACTIONS(3409), }, - [STATE(517)] = { + [STATE(519)] = { + [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), + }, + [STATE(520)] = { [ts_builtin_sym_end] = ACTIONS(3411), [sym_identifier] = ACTIONS(3413), [aux_sym_preproc_include_token1] = ACTIONS(3413), @@ -117710,7 +118179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3413), [sym_this] = ACTIONS(3413), }, - [STATE(518)] = { + [STATE(521)] = { [ts_builtin_sym_end] = ACTIONS(3415), [sym_identifier] = ACTIONS(3417), [aux_sym_preproc_include_token1] = ACTIONS(3417), @@ -117847,7 +118316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3417), [sym_this] = ACTIONS(3417), }, - [STATE(519)] = { + [STATE(522)] = { [ts_builtin_sym_end] = ACTIONS(3419), [sym_identifier] = ACTIONS(3421), [aux_sym_preproc_include_token1] = ACTIONS(3421), @@ -117984,7 +118453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3421), [sym_this] = ACTIONS(3421), }, - [STATE(520)] = { + [STATE(523)] = { [ts_builtin_sym_end] = ACTIONS(3423), [sym_identifier] = ACTIONS(3425), [aux_sym_preproc_include_token1] = ACTIONS(3425), @@ -118121,479 +118590,479 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3425), [sym_this] = ACTIONS(3425), }, - [STATE(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), + [STATE(524)] = { + [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(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), - }, - [STATE(522)] = { - [ts_builtin_sym_end] = ACTIONS(3041), - [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_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_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(3039), - [anon_sym_decltype] = ACTIONS(3039), - [anon_sym_explicit] = ACTIONS(3039), - [anon_sym_typename] = ACTIONS(3039), - [anon_sym_export] = ACTIONS(3039), - [anon_sym_module] = ACTIONS(3039), - [anon_sym_import] = 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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(525)] = { + [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), + }, + [STATE(526)] = { + [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), + }, + [STATE(527)] = { + [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), @@ -118669,7 +119138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3047), [sym_this] = ACTIONS(3047), }, - [STATE(525)] = { + [STATE(528)] = { [ts_builtin_sym_end] = ACTIONS(3053), [sym_identifier] = ACTIONS(3051), [aux_sym_preproc_include_token1] = ACTIONS(3051), @@ -118806,1103 +119275,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3051), [sym_this] = ACTIONS(3051), }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(3057), + [sym_identifier] = ACTIONS(3055), + [aux_sym_preproc_include_token1] = ACTIONS(3055), + [aux_sym_preproc_def_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), + [sym_preproc_directive] = ACTIONS(3055), + [anon_sym_LPAREN2] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_virtual] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = ACTIONS(3055), + [anon_sym___attribute] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_COLON_COLON] = ACTIONS(3057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), + [anon_sym___declspec] = ACTIONS(3055), + [anon_sym___based] = ACTIONS(3055), + [anon_sym___cdecl] = ACTIONS(3055), + [anon_sym___clrcall] = ACTIONS(3055), + [anon_sym___stdcall] = ACTIONS(3055), + [anon_sym___fastcall] = ACTIONS(3055), + [anon_sym___thiscall] = ACTIONS(3055), + [anon_sym___vectorcall] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_signed] = ACTIONS(3055), + [anon_sym_unsigned] = ACTIONS(3055), + [anon_sym_long] = ACTIONS(3055), + [anon_sym_short] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_static] = ACTIONS(3055), + [anon_sym_register] = ACTIONS(3055), + [anon_sym_inline] = ACTIONS(3055), + [anon_sym___inline] = ACTIONS(3055), + [anon_sym___inline__] = ACTIONS(3055), + [anon_sym___forceinline] = ACTIONS(3055), + [anon_sym_thread_local] = ACTIONS(3055), + [anon_sym___thread] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_constexpr] = ACTIONS(3055), + [anon_sym_volatile] = ACTIONS(3055), + [anon_sym_restrict] = ACTIONS(3055), + [anon_sym___restrict__] = ACTIONS(3055), + [anon_sym__Atomic] = ACTIONS(3055), + [anon_sym__Noreturn] = ACTIONS(3055), + [anon_sym_noreturn] = ACTIONS(3055), + [anon_sym__Nonnull] = ACTIONS(3055), + [anon_sym_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = ACTIONS(3055), + [anon_sym_alignas] = ACTIONS(3055), + [anon_sym__Alignas] = ACTIONS(3055), + [sym_primitive_type] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_class] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3055), + [anon_sym_default] = ACTIONS(3055), + [anon_sym_while] = ACTIONS(3055), + [anon_sym_do] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym_not] = ACTIONS(3055), + [anon_sym_compl] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3057), + [anon_sym_sizeof] = ACTIONS(3055), + [anon_sym___alignof__] = ACTIONS(3055), + [anon_sym___alignof] = ACTIONS(3055), + [anon_sym__alignof] = ACTIONS(3055), + [anon_sym_alignof] = ACTIONS(3055), + [anon_sym__Alignof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3055), + [anon_sym__Generic] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), + [anon_sym___asm__] = ACTIONS(3055), + [anon_sym___asm] = ACTIONS(3055), + [sym_number_literal] = ACTIONS(3057), + [anon_sym_L_SQUOTE] = ACTIONS(3057), + [anon_sym_u_SQUOTE] = ACTIONS(3057), + [anon_sym_U_SQUOTE] = ACTIONS(3057), + [anon_sym_u8_SQUOTE] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3057), + [anon_sym_L_DQUOTE] = ACTIONS(3057), + [anon_sym_u_DQUOTE] = ACTIONS(3057), + [anon_sym_U_DQUOTE] = ACTIONS(3057), + [anon_sym_u8_DQUOTE] = ACTIONS(3057), + [anon_sym_DQUOTE] = ACTIONS(3057), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [anon_sym_NULL] = ACTIONS(3055), + [anon_sym_nullptr] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3055), + [anon_sym_decltype] = ACTIONS(3055), + [anon_sym_explicit] = ACTIONS(3055), + [anon_sym_typename] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3055), + [anon_sym_module] = ACTIONS(3055), + [anon_sym_import] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(3055), + [anon_sym_try] = ACTIONS(3055), + [anon_sym_delete] = ACTIONS(3055), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_namespace] = ACTIONS(3055), + [anon_sym_static_assert] = ACTIONS(3055), + [anon_sym_concept] = ACTIONS(3055), + [anon_sym_co_return] = ACTIONS(3055), + [anon_sym_co_yield] = ACTIONS(3055), + [anon_sym_R_DQUOTE] = ACTIONS(3057), + [anon_sym_LR_DQUOTE] = ACTIONS(3057), + [anon_sym_uR_DQUOTE] = ACTIONS(3057), + [anon_sym_UR_DQUOTE] = ACTIONS(3057), + [anon_sym_u8R_DQUOTE] = ACTIONS(3057), + [anon_sym_co_await] = ACTIONS(3055), + [anon_sym_new] = ACTIONS(3055), + [anon_sym_requires] = ACTIONS(3055), + [sym_this] = ACTIONS(3055), }, [STATE(530)] = { - [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(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), + [ts_builtin_sym_end] = ACTIONS(3061), + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_include_token1] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = ACTIONS(3059), + [anon_sym___attribute] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), + [anon_sym___declspec] = ACTIONS(3059), + [anon_sym___based] = ACTIONS(3059), + [anon_sym___cdecl] = ACTIONS(3059), + [anon_sym___clrcall] = ACTIONS(3059), + [anon_sym___stdcall] = ACTIONS(3059), + [anon_sym___fastcall] = ACTIONS(3059), + [anon_sym___thiscall] = ACTIONS(3059), + [anon_sym___vectorcall] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_signed] = ACTIONS(3059), + [anon_sym_unsigned] = ACTIONS(3059), + [anon_sym_long] = ACTIONS(3059), + [anon_sym_short] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_register] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym___inline] = ACTIONS(3059), + [anon_sym___inline__] = ACTIONS(3059), + [anon_sym___forceinline] = ACTIONS(3059), + [anon_sym_thread_local] = ACTIONS(3059), + [anon_sym___thread] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_constexpr] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(3059), + [anon_sym_restrict] = ACTIONS(3059), + [anon_sym___restrict__] = ACTIONS(3059), + [anon_sym__Atomic] = ACTIONS(3059), + [anon_sym__Noreturn] = ACTIONS(3059), + [anon_sym_noreturn] = ACTIONS(3059), + [anon_sym__Nonnull] = ACTIONS(3059), + [anon_sym_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(3059), + [anon_sym__Alignas] = ACTIONS(3059), + [sym_primitive_type] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_switch] = ACTIONS(3059), + [anon_sym_case] = ACTIONS(3059), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_do] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_goto] = ACTIONS(3059), + [anon_sym_not] = ACTIONS(3059), + [anon_sym_compl] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_sizeof] = ACTIONS(3059), + [anon_sym___alignof__] = ACTIONS(3059), + [anon_sym___alignof] = ACTIONS(3059), + [anon_sym__alignof] = ACTIONS(3059), + [anon_sym_alignof] = ACTIONS(3059), + [anon_sym__Alignof] = ACTIONS(3059), + [anon_sym_offsetof] = ACTIONS(3059), + [anon_sym__Generic] = ACTIONS(3059), + [anon_sym_asm] = ACTIONS(3059), + [anon_sym___asm__] = ACTIONS(3059), + [anon_sym___asm] = ACTIONS(3059), + [sym_number_literal] = ACTIONS(3061), + [anon_sym_L_SQUOTE] = ACTIONS(3061), + [anon_sym_u_SQUOTE] = ACTIONS(3061), + [anon_sym_U_SQUOTE] = ACTIONS(3061), + [anon_sym_u8_SQUOTE] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_L_DQUOTE] = ACTIONS(3061), + [anon_sym_u_DQUOTE] = ACTIONS(3061), + [anon_sym_U_DQUOTE] = ACTIONS(3061), + [anon_sym_u8_DQUOTE] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [anon_sym_NULL] = ACTIONS(3059), + [anon_sym_nullptr] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3059), + [anon_sym_decltype] = ACTIONS(3059), + [anon_sym_explicit] = ACTIONS(3059), + [anon_sym_typename] = ACTIONS(3059), + [anon_sym_export] = ACTIONS(3059), + [anon_sym_module] = ACTIONS(3059), + [anon_sym_import] = ACTIONS(3059), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_delete] = ACTIONS(3059), + [anon_sym_throw] = ACTIONS(3059), + [anon_sym_namespace] = ACTIONS(3059), + [anon_sym_static_assert] = ACTIONS(3059), + [anon_sym_concept] = ACTIONS(3059), + [anon_sym_co_return] = ACTIONS(3059), + [anon_sym_co_yield] = ACTIONS(3059), + [anon_sym_R_DQUOTE] = ACTIONS(3061), + [anon_sym_LR_DQUOTE] = ACTIONS(3061), + [anon_sym_uR_DQUOTE] = ACTIONS(3061), + [anon_sym_UR_DQUOTE] = ACTIONS(3061), + [anon_sym_u8R_DQUOTE] = ACTIONS(3061), + [anon_sym_co_await] = ACTIONS(3059), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_requires] = ACTIONS(3059), + [sym_this] = ACTIONS(3059), }, [STATE(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(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), + [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), }, [STATE(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), + [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(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), + [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), }, [STATE(533)] = { - [ts_builtin_sym_end] = ACTIONS(3081), - [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_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_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_export] = ACTIONS(3079), - [anon_sym_module] = ACTIONS(3079), - [anon_sym_import] = 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_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), }, [STATE(534)] = { + [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(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), + }, + [STATE(535)] = { [ts_builtin_sym_end] = ACTIONS(3085), [sym_identifier] = ACTIONS(3083), [aux_sym_preproc_include_token1] = ACTIONS(3083), @@ -120039,7 +120234,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3083), [sym_this] = ACTIONS(3083), }, - [STATE(535)] = { + [STATE(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), + }, + [STATE(537)] = { + [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), + }, + [STATE(538)] = { [ts_builtin_sym_end] = ACTIONS(3089), [sym_identifier] = ACTIONS(3087), [aux_sym_preproc_include_token1] = ACTIONS(3087), @@ -120176,1497 +120645,1360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3087), [sym_this] = ACTIONS(3087), }, - [STATE(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), + [STATE(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(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(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), }, - [STATE(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), + [STATE(540)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(541)] = { + [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(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(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), }, - [STATE(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), + [STATE(542)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(543)] = { + [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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - [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_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), + [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), }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(3101), + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym___attribute] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym__Nonnull] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym__Alignas] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [anon_sym___asm] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_export] = ACTIONS(3099), + [anon_sym_module] = ACTIONS(3099), + [anon_sym_import] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), }, [STATE(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_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(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), + [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), }, [STATE(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_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(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), + [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), + }, + [STATE(547)] = { + [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(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), + }, + [STATE(548)] = { + [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), @@ -121683,7 +122015,1103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3445), [sym_this] = ACTIONS(3445), }, - [STATE(547)] = { + [STATE(549)] = { + [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), + }, + [STATE(550)] = { + [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), + [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), + }, + [STATE(551)] = { + [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), + }, + [STATE(552)] = { + [ts_builtin_sym_end] = ACTIONS(3451), + [sym_identifier] = ACTIONS(3453), + [aux_sym_preproc_include_token1] = ACTIONS(3453), + [aux_sym_preproc_def_token1] = ACTIONS(3453), + [aux_sym_preproc_if_token1] = ACTIONS(3453), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3453), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3453), + [sym_preproc_directive] = ACTIONS(3453), + [anon_sym_LPAREN2] = ACTIONS(3451), + [anon_sym_BANG] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_STAR] = ACTIONS(3451), + [anon_sym_AMP_AMP] = ACTIONS(3451), + [anon_sym_AMP] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3451), + [anon_sym___extension__] = ACTIONS(3453), + [anon_sym_typedef] = ACTIONS(3453), + [anon_sym_virtual] = ACTIONS(3453), + [anon_sym_extern] = ACTIONS(3453), + [anon_sym___attribute__] = ACTIONS(3453), + [anon_sym___attribute] = ACTIONS(3453), + [anon_sym_using] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3451), + [anon_sym___declspec] = ACTIONS(3453), + [anon_sym___based] = ACTIONS(3453), + [anon_sym___cdecl] = ACTIONS(3453), + [anon_sym___clrcall] = ACTIONS(3453), + [anon_sym___stdcall] = ACTIONS(3453), + [anon_sym___fastcall] = ACTIONS(3453), + [anon_sym___thiscall] = ACTIONS(3453), + [anon_sym___vectorcall] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_signed] = ACTIONS(3453), + [anon_sym_unsigned] = ACTIONS(3453), + [anon_sym_long] = ACTIONS(3453), + [anon_sym_short] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_static] = ACTIONS(3453), + [anon_sym_register] = ACTIONS(3453), + [anon_sym_inline] = ACTIONS(3453), + [anon_sym___inline] = ACTIONS(3453), + [anon_sym___inline__] = ACTIONS(3453), + [anon_sym___forceinline] = ACTIONS(3453), + [anon_sym_thread_local] = ACTIONS(3453), + [anon_sym___thread] = ACTIONS(3453), + [anon_sym_const] = ACTIONS(3453), + [anon_sym_constexpr] = ACTIONS(3453), + [anon_sym_volatile] = ACTIONS(3453), + [anon_sym_restrict] = ACTIONS(3453), + [anon_sym___restrict__] = ACTIONS(3453), + [anon_sym__Atomic] = ACTIONS(3453), + [anon_sym__Noreturn] = ACTIONS(3453), + [anon_sym_noreturn] = ACTIONS(3453), + [anon_sym__Nonnull] = ACTIONS(3453), + [anon_sym_mutable] = ACTIONS(3453), + [anon_sym_constinit] = ACTIONS(3453), + [anon_sym_consteval] = ACTIONS(3453), + [anon_sym_alignas] = ACTIONS(3453), + [anon_sym__Alignas] = ACTIONS(3453), + [sym_primitive_type] = ACTIONS(3453), + [anon_sym_enum] = ACTIONS(3453), + [anon_sym_class] = ACTIONS(3453), + [anon_sym_struct] = ACTIONS(3453), + [anon_sym_union] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_switch] = ACTIONS(3453), + [anon_sym_case] = ACTIONS(3453), + [anon_sym_default] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_break] = ACTIONS(3453), + [anon_sym_continue] = ACTIONS(3453), + [anon_sym_goto] = ACTIONS(3453), + [anon_sym_not] = ACTIONS(3453), + [anon_sym_compl] = ACTIONS(3453), + [anon_sym_DASH_DASH] = ACTIONS(3451), + [anon_sym_PLUS_PLUS] = ACTIONS(3451), + [anon_sym_sizeof] = ACTIONS(3453), + [anon_sym___alignof__] = ACTIONS(3453), + [anon_sym___alignof] = ACTIONS(3453), + [anon_sym__alignof] = ACTIONS(3453), + [anon_sym_alignof] = ACTIONS(3453), + [anon_sym__Alignof] = ACTIONS(3453), + [anon_sym_offsetof] = ACTIONS(3453), + [anon_sym__Generic] = ACTIONS(3453), + [anon_sym_asm] = ACTIONS(3453), + [anon_sym___asm__] = ACTIONS(3453), + [anon_sym___asm] = ACTIONS(3453), + [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(3453), + [sym_false] = ACTIONS(3453), + [anon_sym_NULL] = ACTIONS(3453), + [anon_sym_nullptr] = ACTIONS(3453), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3453), + [anon_sym_decltype] = ACTIONS(3453), + [anon_sym_explicit] = ACTIONS(3453), + [anon_sym_typename] = ACTIONS(3453), + [anon_sym_export] = ACTIONS(3453), + [anon_sym_module] = ACTIONS(3453), + [anon_sym_import] = ACTIONS(3453), + [anon_sym_template] = ACTIONS(3453), + [anon_sym_operator] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_delete] = ACTIONS(3453), + [anon_sym_throw] = ACTIONS(3453), + [anon_sym_namespace] = ACTIONS(3453), + [anon_sym_static_assert] = ACTIONS(3453), + [anon_sym_concept] = ACTIONS(3453), + [anon_sym_co_return] = ACTIONS(3453), + [anon_sym_co_yield] = ACTIONS(3453), + [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(3453), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_requires] = ACTIONS(3453), + [sym_this] = ACTIONS(3453), + }, + [STATE(553)] = { + [ts_builtin_sym_end] = ACTIONS(3455), + [sym_identifier] = ACTIONS(3457), + [aux_sym_preproc_include_token1] = ACTIONS(3457), + [aux_sym_preproc_def_token1] = ACTIONS(3457), + [aux_sym_preproc_if_token1] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3457), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3457), + [sym_preproc_directive] = ACTIONS(3457), + [anon_sym_LPAREN2] = ACTIONS(3455), + [anon_sym_BANG] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3455), + [anon_sym_AMP_AMP] = ACTIONS(3455), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_SEMI] = ACTIONS(3455), + [anon_sym___extension__] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3457), + [anon_sym_virtual] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym___attribute__] = ACTIONS(3457), + [anon_sym___attribute] = ACTIONS(3457), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3455), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3455), + [anon_sym___declspec] = ACTIONS(3457), + [anon_sym___based] = ACTIONS(3457), + [anon_sym___cdecl] = ACTIONS(3457), + [anon_sym___clrcall] = ACTIONS(3457), + [anon_sym___stdcall] = ACTIONS(3457), + [anon_sym___fastcall] = ACTIONS(3457), + [anon_sym___thiscall] = ACTIONS(3457), + [anon_sym___vectorcall] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_signed] = ACTIONS(3457), + [anon_sym_unsigned] = ACTIONS(3457), + [anon_sym_long] = ACTIONS(3457), + [anon_sym_short] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_register] = ACTIONS(3457), + [anon_sym_inline] = ACTIONS(3457), + [anon_sym___inline] = ACTIONS(3457), + [anon_sym___inline__] = ACTIONS(3457), + [anon_sym___forceinline] = ACTIONS(3457), + [anon_sym_thread_local] = ACTIONS(3457), + [anon_sym___thread] = ACTIONS(3457), + [anon_sym_const] = ACTIONS(3457), + [anon_sym_constexpr] = ACTIONS(3457), + [anon_sym_volatile] = ACTIONS(3457), + [anon_sym_restrict] = ACTIONS(3457), + [anon_sym___restrict__] = ACTIONS(3457), + [anon_sym__Atomic] = ACTIONS(3457), + [anon_sym__Noreturn] = ACTIONS(3457), + [anon_sym_noreturn] = ACTIONS(3457), + [anon_sym__Nonnull] = ACTIONS(3457), + [anon_sym_mutable] = ACTIONS(3457), + [anon_sym_constinit] = ACTIONS(3457), + [anon_sym_consteval] = ACTIONS(3457), + [anon_sym_alignas] = ACTIONS(3457), + [anon_sym__Alignas] = ACTIONS(3457), + [sym_primitive_type] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_struct] = ACTIONS(3457), + [anon_sym_union] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_switch] = ACTIONS(3457), + [anon_sym_case] = ACTIONS(3457), + [anon_sym_default] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_goto] = ACTIONS(3457), + [anon_sym_not] = ACTIONS(3457), + [anon_sym_compl] = ACTIONS(3457), + [anon_sym_DASH_DASH] = ACTIONS(3455), + [anon_sym_PLUS_PLUS] = ACTIONS(3455), + [anon_sym_sizeof] = ACTIONS(3457), + [anon_sym___alignof__] = ACTIONS(3457), + [anon_sym___alignof] = ACTIONS(3457), + [anon_sym__alignof] = ACTIONS(3457), + [anon_sym_alignof] = ACTIONS(3457), + [anon_sym__Alignof] = ACTIONS(3457), + [anon_sym_offsetof] = ACTIONS(3457), + [anon_sym__Generic] = ACTIONS(3457), + [anon_sym_asm] = ACTIONS(3457), + [anon_sym___asm__] = ACTIONS(3457), + [anon_sym___asm] = ACTIONS(3457), + [sym_number_literal] = ACTIONS(3455), + [anon_sym_L_SQUOTE] = ACTIONS(3455), + [anon_sym_u_SQUOTE] = ACTIONS(3455), + [anon_sym_U_SQUOTE] = ACTIONS(3455), + [anon_sym_u8_SQUOTE] = ACTIONS(3455), + [anon_sym_SQUOTE] = ACTIONS(3455), + [anon_sym_L_DQUOTE] = ACTIONS(3455), + [anon_sym_u_DQUOTE] = ACTIONS(3455), + [anon_sym_U_DQUOTE] = ACTIONS(3455), + [anon_sym_u8_DQUOTE] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [sym_true] = ACTIONS(3457), + [sym_false] = ACTIONS(3457), + [anon_sym_NULL] = ACTIONS(3457), + [anon_sym_nullptr] = ACTIONS(3457), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3457), + [anon_sym_decltype] = ACTIONS(3457), + [anon_sym_explicit] = ACTIONS(3457), + [anon_sym_typename] = ACTIONS(3457), + [anon_sym_export] = ACTIONS(3457), + [anon_sym_module] = ACTIONS(3457), + [anon_sym_import] = ACTIONS(3457), + [anon_sym_template] = ACTIONS(3457), + [anon_sym_operator] = ACTIONS(3457), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_delete] = ACTIONS(3457), + [anon_sym_throw] = ACTIONS(3457), + [anon_sym_namespace] = ACTIONS(3457), + [anon_sym_static_assert] = ACTIONS(3457), + [anon_sym_concept] = ACTIONS(3457), + [anon_sym_co_return] = ACTIONS(3457), + [anon_sym_co_yield] = ACTIONS(3457), + [anon_sym_R_DQUOTE] = ACTIONS(3455), + [anon_sym_LR_DQUOTE] = ACTIONS(3455), + [anon_sym_uR_DQUOTE] = ACTIONS(3455), + [anon_sym_UR_DQUOTE] = ACTIONS(3455), + [anon_sym_u8R_DQUOTE] = ACTIONS(3455), + [anon_sym_co_await] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_requires] = ACTIONS(3457), + [sym_this] = ACTIONS(3457), + }, + [STATE(554)] = { + [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), + }, + [STATE(555)] = { + [ts_builtin_sym_end] = ACTIONS(3105), + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym___attribute] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym__Nonnull] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym__Alignas] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [anon_sym___asm] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_export] = ACTIONS(3103), + [anon_sym_module] = ACTIONS(3103), + [anon_sym_import] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), + }, + [STATE(556)] = { + [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), + }, + [STATE(557)] = { [sym_identifier] = ACTIONS(2775), [aux_sym_preproc_include_token1] = ACTIONS(2775), [aux_sym_preproc_def_token1] = ACTIONS(2775), @@ -121820,7 +123248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2775), [sym_this] = ACTIONS(2775), }, - [STATE(548)] = { + [STATE(558)] = { [sym_identifier] = ACTIONS(2713), [aux_sym_preproc_include_token1] = ACTIONS(2713), [aux_sym_preproc_def_token1] = ACTIONS(2713), @@ -121957,2199 +123385,2062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2713), [sym_this] = ACTIONS(2713), }, - [STATE(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), - }, - [STATE(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), + [STATE(559)] = { + [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), + [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_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(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), + [sym_auto] = ACTIONS(2847), + [anon_sym_decltype] = ACTIONS(2847), + [anon_sym_explicit] = ACTIONS(2847), + [anon_sym_typename] = ACTIONS(2847), + [anon_sym_export] = ACTIONS(2847), + [anon_sym_module] = ACTIONS(2847), + [anon_sym_import] = 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), }, - [STATE(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), + [STATE(560)] = { + [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), }, - [STATE(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), + [STATE(561)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(562)] = { + [ts_builtin_sym_end] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3333), + [aux_sym_preproc_include_token1] = ACTIONS(3333), + [aux_sym_preproc_def_token1] = ACTIONS(3333), + [aux_sym_preproc_if_token1] = ACTIONS(3333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), + [sym_preproc_directive] = ACTIONS(3333), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym___extension__] = ACTIONS(3333), + [anon_sym_typedef] = ACTIONS(3333), + [anon_sym_virtual] = ACTIONS(3333), + [anon_sym_extern] = ACTIONS(3333), + [anon_sym___attribute__] = ACTIONS(3333), + [anon_sym___attribute] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3336), + [anon_sym___declspec] = ACTIONS(3333), + [anon_sym___based] = ACTIONS(3333), + [anon_sym___cdecl] = ACTIONS(3333), + [anon_sym___clrcall] = ACTIONS(3333), + [anon_sym___stdcall] = ACTIONS(3333), + [anon_sym___fastcall] = ACTIONS(3333), + [anon_sym___thiscall] = ACTIONS(3333), + [anon_sym___vectorcall] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3333), + [anon_sym_unsigned] = ACTIONS(3333), + [anon_sym_long] = ACTIONS(3333), + [anon_sym_short] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_register] = ACTIONS(3333), + [anon_sym_inline] = ACTIONS(3333), + [anon_sym___inline] = ACTIONS(3333), + [anon_sym___inline__] = ACTIONS(3333), + [anon_sym___forceinline] = ACTIONS(3333), + [anon_sym_thread_local] = ACTIONS(3333), + [anon_sym___thread] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_constexpr] = ACTIONS(3333), + [anon_sym_volatile] = ACTIONS(3333), + [anon_sym_restrict] = ACTIONS(3333), + [anon_sym___restrict__] = ACTIONS(3333), + [anon_sym__Atomic] = ACTIONS(3333), + [anon_sym__Noreturn] = ACTIONS(3333), + [anon_sym_noreturn] = ACTIONS(3333), + [anon_sym__Nonnull] = ACTIONS(3333), + [anon_sym_mutable] = ACTIONS(3333), + [anon_sym_constinit] = ACTIONS(3333), + [anon_sym_consteval] = ACTIONS(3333), + [anon_sym_alignas] = ACTIONS(3333), + [anon_sym__Alignas] = ACTIONS(3333), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_struct] = ACTIONS(3333), + [anon_sym_union] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3333), + [anon_sym_default] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_goto] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3333), + [anon_sym_compl] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3333), + [anon_sym___alignof__] = ACTIONS(3333), + [anon_sym___alignof] = ACTIONS(3333), + [anon_sym__alignof] = ACTIONS(3333), + [anon_sym_alignof] = ACTIONS(3333), + [anon_sym__Alignof] = ACTIONS(3333), + [anon_sym_offsetof] = ACTIONS(3333), + [anon_sym__Generic] = ACTIONS(3333), + [anon_sym_asm] = ACTIONS(3333), + [anon_sym___asm__] = ACTIONS(3333), + [anon_sym___asm] = ACTIONS(3333), + [sym_number_literal] = ACTIONS(3336), + [anon_sym_L_SQUOTE] = ACTIONS(3336), + [anon_sym_u_SQUOTE] = ACTIONS(3336), + [anon_sym_U_SQUOTE] = ACTIONS(3336), + [anon_sym_u8_SQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_L_DQUOTE] = ACTIONS(3336), + [anon_sym_u_DQUOTE] = ACTIONS(3336), + [anon_sym_U_DQUOTE] = ACTIONS(3336), + [anon_sym_u8_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [anon_sym_NULL] = ACTIONS(3333), + [anon_sym_nullptr] = ACTIONS(3333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3333), + [anon_sym_decltype] = ACTIONS(3333), + [anon_sym_explicit] = ACTIONS(3333), + [anon_sym_typename] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_template] = ACTIONS(3333), + [anon_sym_operator] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_static_assert] = ACTIONS(3333), + [anon_sym_concept] = ACTIONS(3333), + [anon_sym_co_return] = ACTIONS(3333), + [anon_sym_co_yield] = ACTIONS(3333), + [anon_sym_R_DQUOTE] = ACTIONS(3336), + [anon_sym_LR_DQUOTE] = ACTIONS(3336), + [anon_sym_uR_DQUOTE] = ACTIONS(3336), + [anon_sym_UR_DQUOTE] = ACTIONS(3336), + [anon_sym_u8R_DQUOTE] = ACTIONS(3336), + [anon_sym_co_await] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_requires] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + }, + [STATE(563)] = { + [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(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(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), }, - [STATE(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), + [STATE(564)] = { + [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(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(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), }, - [STATE(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), - [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), + [STATE(565)] = { + [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(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(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), }, - [STATE(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), + [STATE(566)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(567)] = { + [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), }, - [STATE(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), + [STATE(568)] = { + [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(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(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), }, - [STATE(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), + [STATE(569)] = { + [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), }, - [STATE(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), + [STATE(570)] = { + [ts_builtin_sym_end] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3462), + [aux_sym_preproc_include_token1] = ACTIONS(3462), + [aux_sym_preproc_def_token1] = ACTIONS(3462), + [aux_sym_preproc_if_token1] = ACTIONS(3462), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3462), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3462), + [sym_preproc_directive] = ACTIONS(3462), + [anon_sym_LPAREN2] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym___extension__] = ACTIONS(3462), + [anon_sym_typedef] = ACTIONS(3462), + [anon_sym_virtual] = ACTIONS(3462), + [anon_sym_extern] = ACTIONS(3462), + [anon_sym___attribute__] = ACTIONS(3462), + [anon_sym___attribute] = ACTIONS(3462), + [anon_sym_using] = ACTIONS(3462), + [anon_sym_COLON_COLON] = ACTIONS(3459), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3459), + [anon_sym___declspec] = ACTIONS(3462), + [anon_sym___based] = ACTIONS(3462), + [anon_sym___cdecl] = ACTIONS(3462), + [anon_sym___clrcall] = ACTIONS(3462), + [anon_sym___stdcall] = ACTIONS(3462), + [anon_sym___fastcall] = ACTIONS(3462), + [anon_sym___thiscall] = ACTIONS(3462), + [anon_sym___vectorcall] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_signed] = ACTIONS(3462), + [anon_sym_unsigned] = ACTIONS(3462), + [anon_sym_long] = ACTIONS(3462), + [anon_sym_short] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_register] = ACTIONS(3462), + [anon_sym_inline] = ACTIONS(3462), + [anon_sym___inline] = ACTIONS(3462), + [anon_sym___inline__] = ACTIONS(3462), + [anon_sym___forceinline] = ACTIONS(3462), + [anon_sym_thread_local] = ACTIONS(3462), + [anon_sym___thread] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_constexpr] = ACTIONS(3462), + [anon_sym_volatile] = ACTIONS(3462), + [anon_sym_restrict] = ACTIONS(3462), + [anon_sym___restrict__] = ACTIONS(3462), + [anon_sym__Atomic] = ACTIONS(3462), + [anon_sym__Noreturn] = ACTIONS(3462), + [anon_sym_noreturn] = ACTIONS(3462), + [anon_sym__Nonnull] = ACTIONS(3462), + [anon_sym_mutable] = ACTIONS(3462), + [anon_sym_constinit] = ACTIONS(3462), + [anon_sym_consteval] = ACTIONS(3462), + [anon_sym_alignas] = ACTIONS(3462), + [anon_sym__Alignas] = ACTIONS(3462), + [sym_primitive_type] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_struct] = ACTIONS(3462), + [anon_sym_union] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_goto] = ACTIONS(3462), + [anon_sym_not] = ACTIONS(3462), + [anon_sym_compl] = ACTIONS(3462), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_sizeof] = ACTIONS(3462), + [anon_sym___alignof__] = ACTIONS(3462), + [anon_sym___alignof] = ACTIONS(3462), + [anon_sym__alignof] = ACTIONS(3462), + [anon_sym_alignof] = ACTIONS(3462), + [anon_sym__Alignof] = ACTIONS(3462), + [anon_sym_offsetof] = ACTIONS(3462), + [anon_sym__Generic] = ACTIONS(3462), + [anon_sym_asm] = ACTIONS(3462), + [anon_sym___asm__] = ACTIONS(3462), + [anon_sym___asm] = ACTIONS(3462), + [sym_number_literal] = ACTIONS(3459), + [anon_sym_L_SQUOTE] = ACTIONS(3459), + [anon_sym_u_SQUOTE] = ACTIONS(3459), + [anon_sym_U_SQUOTE] = ACTIONS(3459), + [anon_sym_u8_SQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_L_DQUOTE] = ACTIONS(3459), + [anon_sym_u_DQUOTE] = ACTIONS(3459), + [anon_sym_U_DQUOTE] = ACTIONS(3459), + [anon_sym_u8_DQUOTE] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [anon_sym_NULL] = ACTIONS(3462), + [anon_sym_nullptr] = ACTIONS(3462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3462), + [anon_sym_decltype] = ACTIONS(3462), + [anon_sym_explicit] = ACTIONS(3462), + [anon_sym_typename] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_template] = ACTIONS(3462), + [anon_sym_operator] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_static_assert] = ACTIONS(3462), + [anon_sym_concept] = ACTIONS(3462), + [anon_sym_co_return] = ACTIONS(3462), + [anon_sym_co_yield] = ACTIONS(3462), + [anon_sym_R_DQUOTE] = ACTIONS(3459), + [anon_sym_LR_DQUOTE] = ACTIONS(3459), + [anon_sym_uR_DQUOTE] = ACTIONS(3459), + [anon_sym_UR_DQUOTE] = ACTIONS(3459), + [anon_sym_u8R_DQUOTE] = ACTIONS(3459), + [anon_sym_co_await] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_requires] = ACTIONS(3462), + [sym_this] = ACTIONS(3462), }, - [STATE(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), - }, - [STATE(562)] = { - [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_RBRACE] = 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), + [STATE(571)] = { + [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(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(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), }, - [STATE(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), + [STATE(572)] = { + [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), [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(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), }, - [STATE(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), + [STATE(573)] = { + [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(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(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), }, - [STATE(565)] = { + [STATE(574)] = { [ts_builtin_sym_end] = ACTIONS(2833), [sym_identifier] = ACTIONS(2831), [aux_sym_preproc_include_token1] = ACTIONS(2831), @@ -124286,1377 +125577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2831), [sym_this] = ACTIONS(2831), }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, [STATE(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(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), - }, - [STATE(576)] = { [ts_builtin_sym_end] = ACTIONS(3465), [sym_identifier] = ACTIONS(3467), [aux_sym_preproc_include_token1] = ACTIONS(3467), @@ -125793,144 +125714,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3467), [sym_this] = ACTIONS(3467), }, - [STATE(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_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_RBRACE] = 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_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), + [STATE(576)] = { + [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), + }, + [STATE(577)] = { + [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), }, [STATE(578)] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2717), + [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(2717), + [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), + }, + [STATE(579)] = { [ts_builtin_sym_end] = ACTIONS(3469), [sym_identifier] = ACTIONS(3471), [aux_sym_preproc_include_token1] = ACTIONS(3471), @@ -126067,1514 +126262,418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3471), [sym_this] = ACTIONS(3471), }, - [STATE(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), - }, [STATE(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), + [ts_builtin_sym_end] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3475), + [aux_sym_preproc_include_token1] = ACTIONS(3475), + [aux_sym_preproc_def_token1] = ACTIONS(3475), + [aux_sym_preproc_if_token1] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3475), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3475), + [sym_preproc_directive] = ACTIONS(3475), + [anon_sym_LPAREN2] = ACTIONS(3473), + [anon_sym_BANG] = ACTIONS(3473), + [anon_sym_TILDE] = ACTIONS(3473), + [anon_sym_DASH] = ACTIONS(3475), + [anon_sym_PLUS] = ACTIONS(3475), + [anon_sym_STAR] = ACTIONS(3473), + [anon_sym_AMP_AMP] = ACTIONS(3473), + [anon_sym_AMP] = ACTIONS(3475), + [anon_sym_SEMI] = ACTIONS(3473), + [anon_sym___extension__] = ACTIONS(3475), + [anon_sym_typedef] = ACTIONS(3475), + [anon_sym_virtual] = ACTIONS(3475), + [anon_sym_extern] = ACTIONS(3475), + [anon_sym___attribute__] = ACTIONS(3475), + [anon_sym___attribute] = ACTIONS(3475), + [anon_sym_using] = ACTIONS(3475), + [anon_sym_COLON_COLON] = ACTIONS(3473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3473), + [anon_sym___declspec] = ACTIONS(3475), + [anon_sym___based] = ACTIONS(3475), + [anon_sym___cdecl] = ACTIONS(3475), + [anon_sym___clrcall] = ACTIONS(3475), + [anon_sym___stdcall] = ACTIONS(3475), + [anon_sym___fastcall] = ACTIONS(3475), + [anon_sym___thiscall] = ACTIONS(3475), + [anon_sym___vectorcall] = ACTIONS(3475), + [anon_sym_LBRACE] = ACTIONS(3473), + [anon_sym_signed] = ACTIONS(3475), + [anon_sym_unsigned] = ACTIONS(3475), + [anon_sym_long] = ACTIONS(3475), + [anon_sym_short] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3475), + [anon_sym_static] = ACTIONS(3475), + [anon_sym_register] = ACTIONS(3475), + [anon_sym_inline] = ACTIONS(3475), + [anon_sym___inline] = ACTIONS(3475), + [anon_sym___inline__] = ACTIONS(3475), + [anon_sym___forceinline] = ACTIONS(3475), + [anon_sym_thread_local] = ACTIONS(3475), + [anon_sym___thread] = ACTIONS(3475), + [anon_sym_const] = ACTIONS(3475), + [anon_sym_constexpr] = ACTIONS(3475), + [anon_sym_volatile] = ACTIONS(3475), + [anon_sym_restrict] = ACTIONS(3475), + [anon_sym___restrict__] = ACTIONS(3475), + [anon_sym__Atomic] = ACTIONS(3475), + [anon_sym__Noreturn] = ACTIONS(3475), + [anon_sym_noreturn] = ACTIONS(3475), + [anon_sym__Nonnull] = ACTIONS(3475), + [anon_sym_mutable] = ACTIONS(3475), + [anon_sym_constinit] = ACTIONS(3475), + [anon_sym_consteval] = ACTIONS(3475), + [anon_sym_alignas] = ACTIONS(3475), + [anon_sym__Alignas] = ACTIONS(3475), + [sym_primitive_type] = ACTIONS(3475), + [anon_sym_enum] = ACTIONS(3475), + [anon_sym_class] = ACTIONS(3475), + [anon_sym_struct] = ACTIONS(3475), + [anon_sym_union] = ACTIONS(3475), + [anon_sym_if] = ACTIONS(3475), + [anon_sym_switch] = ACTIONS(3475), + [anon_sym_case] = ACTIONS(3475), + [anon_sym_default] = ACTIONS(3475), + [anon_sym_while] = ACTIONS(3475), + [anon_sym_do] = ACTIONS(3475), + [anon_sym_for] = ACTIONS(3475), + [anon_sym_return] = ACTIONS(3475), + [anon_sym_break] = ACTIONS(3475), + [anon_sym_continue] = ACTIONS(3475), + [anon_sym_goto] = ACTIONS(3475), + [anon_sym_not] = ACTIONS(3475), + [anon_sym_compl] = ACTIONS(3475), + [anon_sym_DASH_DASH] = ACTIONS(3473), + [anon_sym_PLUS_PLUS] = ACTIONS(3473), + [anon_sym_sizeof] = ACTIONS(3475), + [anon_sym___alignof__] = ACTIONS(3475), + [anon_sym___alignof] = ACTIONS(3475), + [anon_sym__alignof] = ACTIONS(3475), + [anon_sym_alignof] = ACTIONS(3475), + [anon_sym__Alignof] = ACTIONS(3475), + [anon_sym_offsetof] = ACTIONS(3475), + [anon_sym__Generic] = ACTIONS(3475), + [anon_sym_asm] = ACTIONS(3475), + [anon_sym___asm__] = ACTIONS(3475), + [anon_sym___asm] = ACTIONS(3475), + [sym_number_literal] = ACTIONS(3473), + [anon_sym_L_SQUOTE] = ACTIONS(3473), + [anon_sym_u_SQUOTE] = ACTIONS(3473), + [anon_sym_U_SQUOTE] = ACTIONS(3473), + [anon_sym_u8_SQUOTE] = ACTIONS(3473), + [anon_sym_SQUOTE] = ACTIONS(3473), + [anon_sym_L_DQUOTE] = ACTIONS(3473), + [anon_sym_u_DQUOTE] = ACTIONS(3473), + [anon_sym_U_DQUOTE] = ACTIONS(3473), + [anon_sym_u8_DQUOTE] = ACTIONS(3473), + [anon_sym_DQUOTE] = ACTIONS(3473), + [sym_true] = ACTIONS(3475), + [sym_false] = ACTIONS(3475), + [anon_sym_NULL] = ACTIONS(3475), + [anon_sym_nullptr] = ACTIONS(3475), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3475), + [anon_sym_decltype] = ACTIONS(3475), + [anon_sym_explicit] = ACTIONS(3475), + [anon_sym_typename] = ACTIONS(3475), + [anon_sym_export] = ACTIONS(3475), + [anon_sym_module] = ACTIONS(3475), + [anon_sym_import] = ACTIONS(3475), + [anon_sym_template] = ACTIONS(3475), + [anon_sym_operator] = ACTIONS(3475), + [anon_sym_try] = ACTIONS(3475), + [anon_sym_delete] = ACTIONS(3475), + [anon_sym_throw] = ACTIONS(3475), + [anon_sym_namespace] = ACTIONS(3475), + [anon_sym_static_assert] = ACTIONS(3475), + [anon_sym_concept] = ACTIONS(3475), + [anon_sym_co_return] = ACTIONS(3475), + [anon_sym_co_yield] = ACTIONS(3475), + [anon_sym_R_DQUOTE] = ACTIONS(3473), + [anon_sym_LR_DQUOTE] = ACTIONS(3473), + [anon_sym_uR_DQUOTE] = ACTIONS(3473), + [anon_sym_UR_DQUOTE] = ACTIONS(3473), + [anon_sym_u8R_DQUOTE] = ACTIONS(3473), + [anon_sym_co_await] = ACTIONS(3475), + [anon_sym_new] = ACTIONS(3475), + [anon_sym_requires] = ACTIONS(3475), + [sym_this] = ACTIONS(3475), }, [STATE(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), + [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(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(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), }, [STATE(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_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(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), + [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), }, [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - [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_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), - }, - [STATE(588)] = { - [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_RBRACE] = 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_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), - }, - [STATE(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(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), - }, - [STATE(590)] = { [sym_identifier] = ACTIONS(2763), [aux_sym_preproc_include_token1] = ACTIONS(2763), [aux_sym_preproc_def_token1] = ACTIONS(2763), @@ -127711,2062 +126810,1788 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2763), [sym_this] = ACTIONS(2763), }, - [STATE(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), + [STATE(584)] = { + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3479), + [aux_sym_preproc_include_token1] = ACTIONS(3479), + [aux_sym_preproc_def_token1] = ACTIONS(3479), + [aux_sym_preproc_if_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3479), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3479), + [sym_preproc_directive] = ACTIONS(3479), + [anon_sym_LPAREN2] = ACTIONS(3477), + [anon_sym_BANG] = ACTIONS(3477), + [anon_sym_TILDE] = ACTIONS(3477), + [anon_sym_DASH] = ACTIONS(3479), + [anon_sym_PLUS] = ACTIONS(3479), + [anon_sym_STAR] = ACTIONS(3477), + [anon_sym_AMP_AMP] = ACTIONS(3477), + [anon_sym_AMP] = ACTIONS(3479), + [anon_sym_SEMI] = ACTIONS(3477), + [anon_sym___extension__] = ACTIONS(3479), + [anon_sym_typedef] = ACTIONS(3479), + [anon_sym_virtual] = ACTIONS(3479), + [anon_sym_extern] = ACTIONS(3479), + [anon_sym___attribute__] = ACTIONS(3479), + [anon_sym___attribute] = ACTIONS(3479), + [anon_sym_using] = ACTIONS(3479), + [anon_sym_COLON_COLON] = ACTIONS(3477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3477), + [anon_sym___declspec] = ACTIONS(3479), + [anon_sym___based] = ACTIONS(3479), + [anon_sym___cdecl] = ACTIONS(3479), + [anon_sym___clrcall] = ACTIONS(3479), + [anon_sym___stdcall] = ACTIONS(3479), + [anon_sym___fastcall] = ACTIONS(3479), + [anon_sym___thiscall] = ACTIONS(3479), + [anon_sym___vectorcall] = ACTIONS(3479), + [anon_sym_LBRACE] = ACTIONS(3477), + [anon_sym_signed] = ACTIONS(3479), + [anon_sym_unsigned] = ACTIONS(3479), + [anon_sym_long] = ACTIONS(3479), + [anon_sym_short] = ACTIONS(3479), + [anon_sym_LBRACK] = ACTIONS(3479), + [anon_sym_static] = ACTIONS(3479), + [anon_sym_register] = ACTIONS(3479), + [anon_sym_inline] = ACTIONS(3479), + [anon_sym___inline] = ACTIONS(3479), + [anon_sym___inline__] = ACTIONS(3479), + [anon_sym___forceinline] = ACTIONS(3479), + [anon_sym_thread_local] = ACTIONS(3479), + [anon_sym___thread] = ACTIONS(3479), + [anon_sym_const] = ACTIONS(3479), + [anon_sym_constexpr] = ACTIONS(3479), + [anon_sym_volatile] = ACTIONS(3479), + [anon_sym_restrict] = ACTIONS(3479), + [anon_sym___restrict__] = ACTIONS(3479), + [anon_sym__Atomic] = ACTIONS(3479), + [anon_sym__Noreturn] = ACTIONS(3479), + [anon_sym_noreturn] = ACTIONS(3479), + [anon_sym__Nonnull] = ACTIONS(3479), + [anon_sym_mutable] = ACTIONS(3479), + [anon_sym_constinit] = ACTIONS(3479), + [anon_sym_consteval] = ACTIONS(3479), + [anon_sym_alignas] = ACTIONS(3479), + [anon_sym__Alignas] = ACTIONS(3479), + [sym_primitive_type] = ACTIONS(3479), + [anon_sym_enum] = ACTIONS(3479), + [anon_sym_class] = ACTIONS(3479), + [anon_sym_struct] = ACTIONS(3479), + [anon_sym_union] = ACTIONS(3479), + [anon_sym_if] = ACTIONS(3479), + [anon_sym_switch] = ACTIONS(3479), + [anon_sym_case] = ACTIONS(3479), + [anon_sym_default] = ACTIONS(3479), + [anon_sym_while] = ACTIONS(3479), + [anon_sym_do] = ACTIONS(3479), + [anon_sym_for] = ACTIONS(3479), + [anon_sym_return] = ACTIONS(3479), + [anon_sym_break] = ACTIONS(3479), + [anon_sym_continue] = ACTIONS(3479), + [anon_sym_goto] = ACTIONS(3479), + [anon_sym_not] = ACTIONS(3479), + [anon_sym_compl] = ACTIONS(3479), + [anon_sym_DASH_DASH] = ACTIONS(3477), + [anon_sym_PLUS_PLUS] = ACTIONS(3477), + [anon_sym_sizeof] = ACTIONS(3479), + [anon_sym___alignof__] = ACTIONS(3479), + [anon_sym___alignof] = ACTIONS(3479), + [anon_sym__alignof] = ACTIONS(3479), + [anon_sym_alignof] = ACTIONS(3479), + [anon_sym__Alignof] = ACTIONS(3479), + [anon_sym_offsetof] = ACTIONS(3479), + [anon_sym__Generic] = ACTIONS(3479), + [anon_sym_asm] = ACTIONS(3479), + [anon_sym___asm__] = ACTIONS(3479), + [anon_sym___asm] = ACTIONS(3479), + [sym_number_literal] = ACTIONS(3477), + [anon_sym_L_SQUOTE] = ACTIONS(3477), + [anon_sym_u_SQUOTE] = ACTIONS(3477), + [anon_sym_U_SQUOTE] = ACTIONS(3477), + [anon_sym_u8_SQUOTE] = ACTIONS(3477), + [anon_sym_SQUOTE] = ACTIONS(3477), + [anon_sym_L_DQUOTE] = ACTIONS(3477), + [anon_sym_u_DQUOTE] = ACTIONS(3477), + [anon_sym_U_DQUOTE] = ACTIONS(3477), + [anon_sym_u8_DQUOTE] = ACTIONS(3477), + [anon_sym_DQUOTE] = ACTIONS(3477), + [sym_true] = ACTIONS(3479), + [sym_false] = ACTIONS(3479), + [anon_sym_NULL] = ACTIONS(3479), + [anon_sym_nullptr] = ACTIONS(3479), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3479), + [anon_sym_decltype] = ACTIONS(3479), + [anon_sym_explicit] = ACTIONS(3479), + [anon_sym_typename] = ACTIONS(3479), + [anon_sym_export] = ACTIONS(3479), + [anon_sym_module] = ACTIONS(3479), + [anon_sym_import] = ACTIONS(3479), + [anon_sym_template] = ACTIONS(3479), + [anon_sym_operator] = ACTIONS(3479), + [anon_sym_try] = ACTIONS(3479), + [anon_sym_delete] = ACTIONS(3479), + [anon_sym_throw] = ACTIONS(3479), + [anon_sym_namespace] = ACTIONS(3479), + [anon_sym_static_assert] = ACTIONS(3479), + [anon_sym_concept] = ACTIONS(3479), + [anon_sym_co_return] = ACTIONS(3479), + [anon_sym_co_yield] = ACTIONS(3479), + [anon_sym_R_DQUOTE] = ACTIONS(3477), + [anon_sym_LR_DQUOTE] = ACTIONS(3477), + [anon_sym_uR_DQUOTE] = ACTIONS(3477), + [anon_sym_UR_DQUOTE] = ACTIONS(3477), + [anon_sym_u8R_DQUOTE] = ACTIONS(3477), + [anon_sym_co_await] = ACTIONS(3479), + [anon_sym_new] = ACTIONS(3479), + [anon_sym_requires] = ACTIONS(3479), + [sym_this] = ACTIONS(3479), }, - [STATE(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), + [STATE(585)] = { + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3483), + [aux_sym_preproc_include_token1] = ACTIONS(3483), + [aux_sym_preproc_def_token1] = ACTIONS(3483), + [aux_sym_preproc_if_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3483), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3483), + [sym_preproc_directive] = ACTIONS(3483), + [anon_sym_LPAREN2] = ACTIONS(3481), + [anon_sym_BANG] = ACTIONS(3481), + [anon_sym_TILDE] = ACTIONS(3481), + [anon_sym_DASH] = ACTIONS(3483), + [anon_sym_PLUS] = ACTIONS(3483), + [anon_sym_STAR] = ACTIONS(3481), + [anon_sym_AMP_AMP] = ACTIONS(3481), + [anon_sym_AMP] = ACTIONS(3483), + [anon_sym_SEMI] = ACTIONS(3481), + [anon_sym___extension__] = ACTIONS(3483), + [anon_sym_typedef] = ACTIONS(3483), + [anon_sym_virtual] = ACTIONS(3483), + [anon_sym_extern] = ACTIONS(3483), + [anon_sym___attribute__] = ACTIONS(3483), + [anon_sym___attribute] = ACTIONS(3483), + [anon_sym_using] = ACTIONS(3483), + [anon_sym_COLON_COLON] = ACTIONS(3481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3481), + [anon_sym___declspec] = ACTIONS(3483), + [anon_sym___based] = ACTIONS(3483), + [anon_sym___cdecl] = ACTIONS(3483), + [anon_sym___clrcall] = ACTIONS(3483), + [anon_sym___stdcall] = ACTIONS(3483), + [anon_sym___fastcall] = ACTIONS(3483), + [anon_sym___thiscall] = ACTIONS(3483), + [anon_sym___vectorcall] = ACTIONS(3483), + [anon_sym_LBRACE] = ACTIONS(3481), + [anon_sym_signed] = ACTIONS(3483), + [anon_sym_unsigned] = ACTIONS(3483), + [anon_sym_long] = ACTIONS(3483), + [anon_sym_short] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3483), + [anon_sym_static] = ACTIONS(3483), + [anon_sym_register] = ACTIONS(3483), + [anon_sym_inline] = ACTIONS(3483), + [anon_sym___inline] = ACTIONS(3483), + [anon_sym___inline__] = ACTIONS(3483), + [anon_sym___forceinline] = ACTIONS(3483), + [anon_sym_thread_local] = ACTIONS(3483), + [anon_sym___thread] = ACTIONS(3483), + [anon_sym_const] = ACTIONS(3483), + [anon_sym_constexpr] = ACTIONS(3483), + [anon_sym_volatile] = ACTIONS(3483), + [anon_sym_restrict] = ACTIONS(3483), + [anon_sym___restrict__] = ACTIONS(3483), + [anon_sym__Atomic] = ACTIONS(3483), + [anon_sym__Noreturn] = ACTIONS(3483), + [anon_sym_noreturn] = ACTIONS(3483), + [anon_sym__Nonnull] = ACTIONS(3483), + [anon_sym_mutable] = ACTIONS(3483), + [anon_sym_constinit] = ACTIONS(3483), + [anon_sym_consteval] = ACTIONS(3483), + [anon_sym_alignas] = ACTIONS(3483), + [anon_sym__Alignas] = ACTIONS(3483), + [sym_primitive_type] = ACTIONS(3483), + [anon_sym_enum] = ACTIONS(3483), + [anon_sym_class] = ACTIONS(3483), + [anon_sym_struct] = ACTIONS(3483), + [anon_sym_union] = ACTIONS(3483), + [anon_sym_if] = ACTIONS(3483), + [anon_sym_switch] = ACTIONS(3483), + [anon_sym_case] = ACTIONS(3483), + [anon_sym_default] = ACTIONS(3483), + [anon_sym_while] = ACTIONS(3483), + [anon_sym_do] = ACTIONS(3483), + [anon_sym_for] = ACTIONS(3483), + [anon_sym_return] = ACTIONS(3483), + [anon_sym_break] = ACTIONS(3483), + [anon_sym_continue] = ACTIONS(3483), + [anon_sym_goto] = ACTIONS(3483), + [anon_sym_not] = ACTIONS(3483), + [anon_sym_compl] = ACTIONS(3483), + [anon_sym_DASH_DASH] = ACTIONS(3481), + [anon_sym_PLUS_PLUS] = ACTIONS(3481), + [anon_sym_sizeof] = ACTIONS(3483), + [anon_sym___alignof__] = ACTIONS(3483), + [anon_sym___alignof] = ACTIONS(3483), + [anon_sym__alignof] = ACTIONS(3483), + [anon_sym_alignof] = ACTIONS(3483), + [anon_sym__Alignof] = ACTIONS(3483), + [anon_sym_offsetof] = ACTIONS(3483), + [anon_sym__Generic] = ACTIONS(3483), + [anon_sym_asm] = ACTIONS(3483), + [anon_sym___asm__] = ACTIONS(3483), + [anon_sym___asm] = ACTIONS(3483), + [sym_number_literal] = ACTIONS(3481), + [anon_sym_L_SQUOTE] = ACTIONS(3481), + [anon_sym_u_SQUOTE] = ACTIONS(3481), + [anon_sym_U_SQUOTE] = ACTIONS(3481), + [anon_sym_u8_SQUOTE] = ACTIONS(3481), + [anon_sym_SQUOTE] = ACTIONS(3481), + [anon_sym_L_DQUOTE] = ACTIONS(3481), + [anon_sym_u_DQUOTE] = ACTIONS(3481), + [anon_sym_U_DQUOTE] = ACTIONS(3481), + [anon_sym_u8_DQUOTE] = ACTIONS(3481), + [anon_sym_DQUOTE] = ACTIONS(3481), + [sym_true] = ACTIONS(3483), + [sym_false] = ACTIONS(3483), + [anon_sym_NULL] = ACTIONS(3483), + [anon_sym_nullptr] = ACTIONS(3483), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3483), + [anon_sym_decltype] = ACTIONS(3483), + [anon_sym_explicit] = ACTIONS(3483), + [anon_sym_typename] = ACTIONS(3483), + [anon_sym_export] = ACTIONS(3483), + [anon_sym_module] = ACTIONS(3483), + [anon_sym_import] = ACTIONS(3483), + [anon_sym_template] = ACTIONS(3483), + [anon_sym_operator] = ACTIONS(3483), + [anon_sym_try] = ACTIONS(3483), + [anon_sym_delete] = ACTIONS(3483), + [anon_sym_throw] = ACTIONS(3483), + [anon_sym_namespace] = ACTIONS(3483), + [anon_sym_static_assert] = ACTIONS(3483), + [anon_sym_concept] = ACTIONS(3483), + [anon_sym_co_return] = ACTIONS(3483), + [anon_sym_co_yield] = ACTIONS(3483), + [anon_sym_R_DQUOTE] = ACTIONS(3481), + [anon_sym_LR_DQUOTE] = ACTIONS(3481), + [anon_sym_uR_DQUOTE] = ACTIONS(3481), + [anon_sym_UR_DQUOTE] = ACTIONS(3481), + [anon_sym_u8R_DQUOTE] = ACTIONS(3481), + [anon_sym_co_await] = ACTIONS(3483), + [anon_sym_new] = ACTIONS(3483), + [anon_sym_requires] = ACTIONS(3483), + [sym_this] = ACTIONS(3483), }, - [STATE(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), + [STATE(586)] = { + [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(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(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), }, - [STATE(594)] = { - [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), + [STATE(587)] = { + [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(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), + [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), }, - [STATE(595)] = { - [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(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(2729), - [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), + [STATE(588)] = { + [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(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(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), }, - [STATE(596)] = { - [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_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_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_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), + [STATE(589)] = { + [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(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(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), }, - [STATE(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), + [STATE(590)] = { + [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(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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(591)] = { + [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), }, - [STATE(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), + [STATE(592)] = { + [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), }, - [STATE(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), + [STATE(593)] = { + [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(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(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), }, - [STATE(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), + [STATE(594)] = { + [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), }, - [STATE(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), - }, - [STATE(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), + [STATE(595)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(596)] = { + [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_RBRACE] = 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(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), + [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), }, - [STATE(606)] = { + [STATE(597)] = { [ts_builtin_sym_end] = ACTIONS(2909), [sym_identifier] = ACTIONS(2907), [aux_sym_preproc_include_token1] = ACTIONS(2907), @@ -129903,9455 +128728,3848 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2907), [sym_this] = ACTIONS(2907), }, - [STATE(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), + [STATE(598)] = { + [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_RBRACE] = 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(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), + [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), }, - [STATE(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), + [STATE(599)] = { + [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(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(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), }, - [STATE(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), + [STATE(600)] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2717), + [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(2717), + [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(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(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), }, - [STATE(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), + [STATE(601)] = { + [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(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(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), }, - [STATE(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), + [STATE(602)] = { + [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(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(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), }, - [STATE(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(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), + [STATE(603)] = { + [ts_builtin_sym_end] = ACTIONS(3111), + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_include_token1] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym___extension__] = ACTIONS(3109), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym___attribute] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym___cdecl] = ACTIONS(3109), + [anon_sym___clrcall] = ACTIONS(3109), + [anon_sym___stdcall] = ACTIONS(3109), + [anon_sym___fastcall] = ACTIONS(3109), + [anon_sym___thiscall] = ACTIONS(3109), + [anon_sym___vectorcall] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym___inline] = ACTIONS(3109), + [anon_sym___inline__] = ACTIONS(3109), + [anon_sym___forceinline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym___thread] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym__Nonnull] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_alignas] = ACTIONS(3109), + [anon_sym__Alignas] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym___alignof__] = ACTIONS(3109), + [anon_sym___alignof] = ACTIONS(3109), + [anon_sym__alignof] = ACTIONS(3109), + [anon_sym_alignof] = ACTIONS(3109), + [anon_sym__Alignof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [anon_sym___asm] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_export] = ACTIONS(3109), + [anon_sym_module] = ACTIONS(3109), + [anon_sym_import] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), + [anon_sym_concept] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), }, - [STATE(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), + [STATE(604)] = { + [ts_builtin_sym_end] = ACTIONS(3115), + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_include_token1] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym___attribute] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym___cdecl] = ACTIONS(3113), + [anon_sym___clrcall] = ACTIONS(3113), + [anon_sym___stdcall] = ACTIONS(3113), + [anon_sym___fastcall] = ACTIONS(3113), + [anon_sym___thiscall] = ACTIONS(3113), + [anon_sym___vectorcall] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym___inline] = ACTIONS(3113), + [anon_sym___inline__] = ACTIONS(3113), + [anon_sym___forceinline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym___thread] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym__Nonnull] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_alignas] = ACTIONS(3113), + [anon_sym__Alignas] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym___alignof__] = ACTIONS(3113), + [anon_sym___alignof] = ACTIONS(3113), + [anon_sym__alignof] = ACTIONS(3113), + [anon_sym_alignof] = ACTIONS(3113), + [anon_sym__Alignof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [anon_sym___asm] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_export] = ACTIONS(3113), + [anon_sym_module] = ACTIONS(3113), + [anon_sym_import] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), + [anon_sym_concept] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), }, - [STATE(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), + [STATE(605)] = { + [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(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), + [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), }, - [STATE(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(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), + [STATE(606)] = { + [sym_preproc_def] = STATE(606), + [sym_preproc_function_def] = STATE(606), + [sym_preproc_call] = STATE(606), + [sym_preproc_if_in_field_declaration_list] = STATE(606), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(606), + [sym_type_definition] = STATE(606), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5691), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(606), + [sym_field_declaration] = STATE(606), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(606), + [sym_operator_cast] = STATE(6976), + [sym_inline_method_definition] = STATE(606), + [sym__constructor_specifiers] = STATE(1798), + [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_access_specifier] = STATE(8813), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(606), + [sym_alias_declaration] = STATE(606), + [sym_static_assert_declaration] = STATE(606), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(606), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7204), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(3485), + [aux_sym_preproc_def_token1] = ACTIONS(3488), + [aux_sym_preproc_if_token1] = ACTIONS(3491), + [aux_sym_preproc_if_token2] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3496), + [aux_sym_preproc_else_token1] = ACTIONS(3494), + [aux_sym_preproc_elif_token1] = ACTIONS(3494), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3494), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3494), + [sym_preproc_directive] = ACTIONS(3499), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3508), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3517), + [anon_sym___extension__] = ACTIONS(3520), + [anon_sym_typedef] = ACTIONS(3523), + [anon_sym_virtual] = ACTIONS(3526), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3532), + [anon_sym___attribute] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3535), + [anon_sym_COLON_COLON] = ACTIONS(3538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3541), + [anon_sym___declspec] = ACTIONS(3544), + [anon_sym___based] = ACTIONS(3547), + [anon_sym_signed] = ACTIONS(3550), + [anon_sym_unsigned] = ACTIONS(3550), + [anon_sym_long] = ACTIONS(3550), + [anon_sym_short] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3553), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_constexpr] = ACTIONS(3559), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_restrict] = ACTIONS(3556), + [anon_sym___restrict__] = ACTIONS(3556), + [anon_sym__Atomic] = ACTIONS(3556), + [anon_sym__Noreturn] = ACTIONS(3556), + [anon_sym_noreturn] = ACTIONS(3556), + [anon_sym__Nonnull] = ACTIONS(3556), + [anon_sym_mutable] = ACTIONS(3556), + [anon_sym_constinit] = ACTIONS(3556), + [anon_sym_consteval] = ACTIONS(3556), + [anon_sym_alignas] = ACTIONS(3562), + [anon_sym__Alignas] = ACTIONS(3562), + [sym_primitive_type] = ACTIONS(3565), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_struct] = ACTIONS(3574), + [anon_sym_union] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3583), + [anon_sym_explicit] = ACTIONS(3586), + [anon_sym_typename] = ACTIONS(3589), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_template] = ACTIONS(3595), + [anon_sym_operator] = ACTIONS(3598), + [anon_sym_friend] = ACTIONS(3601), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_static_assert] = ACTIONS(3604), }, - [STATE(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), + [STATE(607)] = { + [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_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_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_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(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(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), }, - [STATE(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), + [STATE(608)] = { + [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(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(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), }, - [STATE(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), + [STATE(609)] = { + [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(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(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), }, - [STATE(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), + [STATE(610)] = { + [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_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_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), + [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(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(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), }, - [STATE(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), + [STATE(611)] = { + [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(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(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), }, - [STATE(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), + [STATE(612)] = { + [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(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(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), }, - [STATE(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), + [STATE(613)] = { + [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(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(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), }, - [STATE(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), + [STATE(614)] = { + [ts_builtin_sym_end] = ACTIONS(2853), + [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_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_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(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(2851), + [anon_sym_decltype] = ACTIONS(2851), + [anon_sym_explicit] = ACTIONS(2851), + [anon_sym_typename] = ACTIONS(2851), + [anon_sym_export] = ACTIONS(2851), + [anon_sym_module] = ACTIONS(2851), + [anon_sym_import] = 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), }, - [STATE(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), + [STATE(615)] = { + [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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(616)] = { + [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(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(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), }, - [STATE(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), + [STATE(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(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(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), }, - [STATE(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), + [STATE(618)] = { + [ts_builtin_sym_end] = ACTIONS(2817), + [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_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_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(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(2815), + [anon_sym_decltype] = ACTIONS(2815), + [anon_sym_explicit] = ACTIONS(2815), + [anon_sym_typename] = ACTIONS(2815), + [anon_sym_export] = ACTIONS(2815), + [anon_sym_module] = ACTIONS(2815), + [anon_sym_import] = 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), }, - [STATE(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), + [STATE(619)] = { + [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(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(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), }, - [STATE(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), + [STATE(620)] = { + [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(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(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), }, - [STATE(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), + [STATE(621)] = { + [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(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(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), }, - [STATE(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), + [STATE(622)] = { + [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(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(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), }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(642)] = { - [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_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_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), - [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(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), - }, - [STATE(643)] = { - [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), - }, - [STATE(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(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), - }, - [STATE(645)] = { - [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), - }, - [STATE(646)] = { - [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), - }, - [STATE(647)] = { - [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), - }, - [STATE(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), - }, - [STATE(649)] = { - [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), - }, - [STATE(650)] = { - [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(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), - }, - [STATE(651)] = { - [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), - }, - [STATE(652)] = { - [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(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), - }, - [STATE(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), - }, - [STATE(654)] = { - [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), - }, - [STATE(655)] = { - [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), - }, - [STATE(656)] = { - [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), - }, - [STATE(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(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), - }, - [STATE(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), - [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(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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_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_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), - }, - [STATE(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), - }, - [STATE(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_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_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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(672)] = { - [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(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), - }, - [STATE(673)] = { - [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), - }, - [STATE(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), + [STATE(623)] = { + [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_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(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), }, - [STATE(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), - [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), + [STATE(624)] = { + [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(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(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), }, - [STATE(676)] = { + [STATE(625)] = { + [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_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), + }, + [STATE(626)] = { + [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_if_token2] = ACTIONS(2887), [aux_sym_preproc_ifdef_token1] = ACTIONS(2887), [aux_sym_preproc_ifdef_token2] = ACTIONS(2887), [sym_preproc_directive] = ACTIONS(2887), @@ -139425,8 +132643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -139462,6 +132678,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -139482,5044 +132701,5629 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2887), [sym_this] = ACTIONS(2887), }, - [STATE(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), + [STATE(627)] = { + [ts_builtin_sym_end] = ACTIONS(2933), + [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_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_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(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(2931), + [anon_sym_decltype] = ACTIONS(2931), + [anon_sym_explicit] = ACTIONS(2931), + [anon_sym_typename] = ACTIONS(2931), + [anon_sym_export] = ACTIONS(2931), + [anon_sym_module] = ACTIONS(2931), + [anon_sym_import] = 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), }, - [STATE(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), + [STATE(628)] = { + [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_RBRACE] = 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(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(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), + }, + [STATE(629)] = { + [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), + }, + [STATE(630)] = { + [ts_builtin_sym_end] = ACTIONS(2933), + [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_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_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_export] = ACTIONS(2931), + [anon_sym_module] = ACTIONS(2931), + [anon_sym_import] = 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), }, - [STATE(679)] = { - [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_if_token2] = 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___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), + [STATE(631)] = { + [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(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(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), }, - [STATE(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), + [STATE(632)] = { + [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(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(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), }, - [STATE(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), + [STATE(633)] = { + [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(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(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), }, - [STATE(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), + [STATE(634)] = { + [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(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(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), }, - [STATE(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_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), + [STATE(635)] = { + [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(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(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), }, - [STATE(684)] = { - [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), + [STATE(636)] = { + [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(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(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), }, - [STATE(685)] = { - [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), + [STATE(637)] = { + [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(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(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), }, - [STATE(686)] = { - [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), + [STATE(638)] = { + [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(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(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), }, - [STATE(687)] = { - [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), + [STATE(639)] = { + [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(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(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), }, - [STATE(688)] = { - [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), + [STATE(640)] = { + [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(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(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), }, - [STATE(689)] = { - [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), + [STATE(641)] = { + [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), + [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(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(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = 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), + }, + [STATE(642)] = { + [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), }, - [STATE(690)] = { - [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), + [STATE(643)] = { + [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(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(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), }, - [STATE(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), + [STATE(644)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(645)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(646)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(647)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(648)] = { + [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(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(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), }, - [STATE(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), + [STATE(649)] = { + [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(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), - }, - [STATE(697)] = { - [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_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_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_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(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(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), }, - [STATE(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), + [STATE(650)] = { + [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_RBRACE] = 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_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), }, - [STATE(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), + [STATE(651)] = { + [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(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), + [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), }, - [STATE(700)] = { - [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), + [STATE(652)] = { + [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), }, - [STATE(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), + [STATE(653)] = { + [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), }, - [STATE(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), + [STATE(654)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(655)] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_include_token1] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2717), + [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(2717), + [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(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(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), }, - [STATE(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(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), + [STATE(656)] = { + [ts_builtin_sym_end] = ACTIONS(3130), + [sym_identifier] = ACTIONS(3128), + [aux_sym_preproc_include_token1] = ACTIONS(3128), + [aux_sym_preproc_def_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), + [sym_preproc_directive] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_AMP_AMP] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_typedef] = ACTIONS(3128), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym___cdecl] = ACTIONS(3128), + [anon_sym___clrcall] = ACTIONS(3128), + [anon_sym___stdcall] = ACTIONS(3128), + [anon_sym___fastcall] = ACTIONS(3128), + [anon_sym___thiscall] = ACTIONS(3128), + [anon_sym___vectorcall] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_case] = ACTIONS(3128), + [anon_sym_default] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_goto] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3128), + [anon_sym_compl] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3130), + [anon_sym_sizeof] = ACTIONS(3128), + [anon_sym___alignof__] = ACTIONS(3128), + [anon_sym___alignof] = ACTIONS(3128), + [anon_sym__alignof] = ACTIONS(3128), + [anon_sym_alignof] = ACTIONS(3128), + [anon_sym__Alignof] = ACTIONS(3128), + [anon_sym_offsetof] = ACTIONS(3128), + [anon_sym__Generic] = ACTIONS(3128), + [anon_sym_asm] = ACTIONS(3128), + [anon_sym___asm__] = ACTIONS(3128), + [anon_sym___asm] = ACTIONS(3128), + [sym_number_literal] = ACTIONS(3130), + [anon_sym_L_SQUOTE] = ACTIONS(3130), + [anon_sym_u_SQUOTE] = ACTIONS(3130), + [anon_sym_U_SQUOTE] = ACTIONS(3130), + [anon_sym_u8_SQUOTE] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3130), + [anon_sym_L_DQUOTE] = ACTIONS(3130), + [anon_sym_u_DQUOTE] = ACTIONS(3130), + [anon_sym_U_DQUOTE] = ACTIONS(3130), + [anon_sym_u8_DQUOTE] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(3130), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [anon_sym_NULL] = ACTIONS(3128), + [anon_sym_nullptr] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3128), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_typename] = ACTIONS(3128), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_import] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3128), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_static_assert] = ACTIONS(3128), + [anon_sym_concept] = ACTIONS(3128), + [anon_sym_co_return] = ACTIONS(3128), + [anon_sym_co_yield] = ACTIONS(3128), + [anon_sym_R_DQUOTE] = ACTIONS(3130), + [anon_sym_LR_DQUOTE] = ACTIONS(3130), + [anon_sym_uR_DQUOTE] = ACTIONS(3130), + [anon_sym_UR_DQUOTE] = ACTIONS(3130), + [anon_sym_u8R_DQUOTE] = ACTIONS(3130), + [anon_sym_co_await] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), }, - [STATE(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), + [STATE(657)] = { + [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(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), }, - [STATE(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), + [STATE(658)] = { + [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(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(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), }, - [STATE(707)] = { - [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_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_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___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), + [STATE(659)] = { + [ts_builtin_sym_end] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_include_token1] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), + [sym_preproc_directive] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3132), + [anon_sym_virtual] = ACTIONS(3132), + [anon_sym_extern] = ACTIONS(3132), + [anon_sym___attribute__] = ACTIONS(3132), + [anon_sym___attribute] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), + [anon_sym___declspec] = ACTIONS(3132), + [anon_sym___based] = ACTIONS(3132), + [anon_sym___cdecl] = ACTIONS(3132), + [anon_sym___clrcall] = ACTIONS(3132), + [anon_sym___stdcall] = ACTIONS(3132), + [anon_sym___fastcall] = ACTIONS(3132), + [anon_sym___thiscall] = ACTIONS(3132), + [anon_sym___vectorcall] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3134), + [anon_sym_signed] = ACTIONS(3132), + [anon_sym_unsigned] = ACTIONS(3132), + [anon_sym_long] = ACTIONS(3132), + [anon_sym_short] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_register] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym___inline] = ACTIONS(3132), + [anon_sym___inline__] = ACTIONS(3132), + [anon_sym___forceinline] = ACTIONS(3132), + [anon_sym_thread_local] = ACTIONS(3132), + [anon_sym___thread] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_constexpr] = ACTIONS(3132), + [anon_sym_volatile] = ACTIONS(3132), + [anon_sym_restrict] = ACTIONS(3132), + [anon_sym___restrict__] = ACTIONS(3132), + [anon_sym__Atomic] = ACTIONS(3132), + [anon_sym__Noreturn] = ACTIONS(3132), + [anon_sym_noreturn] = ACTIONS(3132), + [anon_sym__Nonnull] = ACTIONS(3132), + [anon_sym_mutable] = ACTIONS(3132), + [anon_sym_constinit] = ACTIONS(3132), + [anon_sym_consteval] = ACTIONS(3132), + [anon_sym_alignas] = ACTIONS(3132), + [anon_sym__Alignas] = ACTIONS(3132), + [sym_primitive_type] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3132), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_goto] = ACTIONS(3132), + [anon_sym_not] = ACTIONS(3132), + [anon_sym_compl] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3134), + [anon_sym_sizeof] = ACTIONS(3132), + [anon_sym___alignof__] = ACTIONS(3132), + [anon_sym___alignof] = ACTIONS(3132), + [anon_sym__alignof] = ACTIONS(3132), + [anon_sym_alignof] = ACTIONS(3132), + [anon_sym__Alignof] = ACTIONS(3132), + [anon_sym_offsetof] = ACTIONS(3132), + [anon_sym__Generic] = ACTIONS(3132), + [anon_sym_asm] = ACTIONS(3132), + [anon_sym___asm__] = ACTIONS(3132), + [anon_sym___asm] = ACTIONS(3132), + [sym_number_literal] = ACTIONS(3134), + [anon_sym_L_SQUOTE] = ACTIONS(3134), + [anon_sym_u_SQUOTE] = ACTIONS(3134), + [anon_sym_U_SQUOTE] = ACTIONS(3134), + [anon_sym_u8_SQUOTE] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(3134), + [anon_sym_L_DQUOTE] = ACTIONS(3134), + [anon_sym_u_DQUOTE] = ACTIONS(3134), + [anon_sym_U_DQUOTE] = ACTIONS(3134), + [anon_sym_u8_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE] = ACTIONS(3134), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [anon_sym_NULL] = ACTIONS(3132), + [anon_sym_nullptr] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3132), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3132), + [anon_sym_typename] = ACTIONS(3132), + [anon_sym_export] = ACTIONS(3132), + [anon_sym_module] = ACTIONS(3132), + [anon_sym_import] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_static_assert] = ACTIONS(3132), + [anon_sym_concept] = ACTIONS(3132), + [anon_sym_co_return] = ACTIONS(3132), + [anon_sym_co_yield] = ACTIONS(3132), + [anon_sym_R_DQUOTE] = ACTIONS(3134), + [anon_sym_LR_DQUOTE] = ACTIONS(3134), + [anon_sym_uR_DQUOTE] = ACTIONS(3134), + [anon_sym_UR_DQUOTE] = ACTIONS(3134), + [anon_sym_u8R_DQUOTE] = ACTIONS(3134), + [anon_sym_co_await] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_requires] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), + }, + [STATE(660)] = { + [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(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), + [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), }, - [STATE(708)] = { - [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_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_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___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), + [STATE(661)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(662)] = { + [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_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(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(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), }, - [STATE(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), + [STATE(663)] = { + [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(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(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), }, - [STATE(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), + [STATE(664)] = { + [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(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), - }, - [STATE(712)] = { - [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_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_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___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_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), + }, + [STATE(665)] = { + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3617), + [aux_sym_preproc_include_token1] = ACTIONS(3617), + [aux_sym_preproc_def_token1] = ACTIONS(3617), + [aux_sym_preproc_if_token1] = ACTIONS(3617), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3617), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3617), + [sym_preproc_directive] = ACTIONS(3617), + [anon_sym_LPAREN2] = ACTIONS(3615), + [anon_sym_BANG] = ACTIONS(3615), + [anon_sym_TILDE] = ACTIONS(3615), + [anon_sym_DASH] = ACTIONS(3617), + [anon_sym_PLUS] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_AMP] = ACTIONS(3617), + [anon_sym_SEMI] = ACTIONS(3615), + [anon_sym___extension__] = ACTIONS(3617), + [anon_sym_typedef] = ACTIONS(3617), + [anon_sym_virtual] = ACTIONS(3617), + [anon_sym_extern] = ACTIONS(3617), + [anon_sym___attribute__] = ACTIONS(3617), + [anon_sym___attribute] = ACTIONS(3617), + [anon_sym_using] = ACTIONS(3617), + [anon_sym_COLON_COLON] = ACTIONS(3615), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3615), + [anon_sym___declspec] = ACTIONS(3617), + [anon_sym___based] = ACTIONS(3617), + [anon_sym___cdecl] = ACTIONS(3617), + [anon_sym___clrcall] = ACTIONS(3617), + [anon_sym___stdcall] = ACTIONS(3617), + [anon_sym___fastcall] = ACTIONS(3617), + [anon_sym___thiscall] = ACTIONS(3617), + [anon_sym___vectorcall] = ACTIONS(3617), + [anon_sym_LBRACE] = ACTIONS(3615), + [anon_sym_signed] = ACTIONS(3617), + [anon_sym_unsigned] = ACTIONS(3617), + [anon_sym_long] = ACTIONS(3617), + [anon_sym_short] = ACTIONS(3617), + [anon_sym_LBRACK] = ACTIONS(3617), + [anon_sym_static] = ACTIONS(3617), + [anon_sym_register] = ACTIONS(3617), + [anon_sym_inline] = ACTIONS(3617), + [anon_sym___inline] = ACTIONS(3617), + [anon_sym___inline__] = ACTIONS(3617), + [anon_sym___forceinline] = ACTIONS(3617), + [anon_sym_thread_local] = ACTIONS(3617), + [anon_sym___thread] = ACTIONS(3617), + [anon_sym_const] = ACTIONS(3617), + [anon_sym_constexpr] = ACTIONS(3617), + [anon_sym_volatile] = ACTIONS(3617), + [anon_sym_restrict] = ACTIONS(3617), + [anon_sym___restrict__] = ACTIONS(3617), + [anon_sym__Atomic] = ACTIONS(3617), + [anon_sym__Noreturn] = ACTIONS(3617), + [anon_sym_noreturn] = ACTIONS(3617), + [anon_sym__Nonnull] = ACTIONS(3617), + [anon_sym_mutable] = ACTIONS(3617), + [anon_sym_constinit] = ACTIONS(3617), + [anon_sym_consteval] = ACTIONS(3617), + [anon_sym_alignas] = ACTIONS(3617), + [anon_sym__Alignas] = ACTIONS(3617), + [sym_primitive_type] = ACTIONS(3617), + [anon_sym_enum] = ACTIONS(3617), + [anon_sym_class] = ACTIONS(3617), + [anon_sym_struct] = ACTIONS(3617), + [anon_sym_union] = ACTIONS(3617), + [anon_sym_if] = ACTIONS(3617), + [anon_sym_switch] = ACTIONS(3617), + [anon_sym_case] = ACTIONS(3617), + [anon_sym_default] = ACTIONS(3617), + [anon_sym_while] = ACTIONS(3617), + [anon_sym_do] = ACTIONS(3617), + [anon_sym_for] = ACTIONS(3617), + [anon_sym_return] = ACTIONS(3617), + [anon_sym_break] = ACTIONS(3617), + [anon_sym_continue] = ACTIONS(3617), + [anon_sym_goto] = ACTIONS(3617), + [anon_sym_not] = ACTIONS(3617), + [anon_sym_compl] = ACTIONS(3617), + [anon_sym_DASH_DASH] = ACTIONS(3615), + [anon_sym_PLUS_PLUS] = ACTIONS(3615), + [anon_sym_sizeof] = ACTIONS(3617), + [anon_sym___alignof__] = ACTIONS(3617), + [anon_sym___alignof] = ACTIONS(3617), + [anon_sym__alignof] = ACTIONS(3617), + [anon_sym_alignof] = ACTIONS(3617), + [anon_sym__Alignof] = ACTIONS(3617), + [anon_sym_offsetof] = ACTIONS(3617), + [anon_sym__Generic] = ACTIONS(3617), + [anon_sym_asm] = ACTIONS(3617), + [anon_sym___asm__] = ACTIONS(3617), + [anon_sym___asm] = ACTIONS(3617), + [sym_number_literal] = ACTIONS(3615), + [anon_sym_L_SQUOTE] = ACTIONS(3615), + [anon_sym_u_SQUOTE] = ACTIONS(3615), + [anon_sym_U_SQUOTE] = ACTIONS(3615), + [anon_sym_u8_SQUOTE] = ACTIONS(3615), + [anon_sym_SQUOTE] = ACTIONS(3615), + [anon_sym_L_DQUOTE] = ACTIONS(3615), + [anon_sym_u_DQUOTE] = ACTIONS(3615), + [anon_sym_U_DQUOTE] = ACTIONS(3615), + [anon_sym_u8_DQUOTE] = ACTIONS(3615), + [anon_sym_DQUOTE] = ACTIONS(3615), + [sym_true] = ACTIONS(3617), + [sym_false] = ACTIONS(3617), + [anon_sym_NULL] = ACTIONS(3617), + [anon_sym_nullptr] = ACTIONS(3617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3617), + [anon_sym_decltype] = ACTIONS(3617), + [anon_sym_explicit] = ACTIONS(3617), + [anon_sym_typename] = ACTIONS(3617), + [anon_sym_export] = ACTIONS(3617), + [anon_sym_module] = ACTIONS(3617), + [anon_sym_import] = ACTIONS(3617), + [anon_sym_template] = ACTIONS(3617), + [anon_sym_operator] = ACTIONS(3617), + [anon_sym_try] = ACTIONS(3617), + [anon_sym_delete] = ACTIONS(3617), + [anon_sym_throw] = ACTIONS(3617), + [anon_sym_namespace] = ACTIONS(3617), + [anon_sym_static_assert] = ACTIONS(3617), + [anon_sym_concept] = ACTIONS(3617), + [anon_sym_co_return] = ACTIONS(3617), + [anon_sym_co_yield] = ACTIONS(3617), + [anon_sym_R_DQUOTE] = ACTIONS(3615), + [anon_sym_LR_DQUOTE] = ACTIONS(3615), + [anon_sym_uR_DQUOTE] = ACTIONS(3615), + [anon_sym_UR_DQUOTE] = ACTIONS(3615), + [anon_sym_u8R_DQUOTE] = ACTIONS(3615), + [anon_sym_co_await] = ACTIONS(3617), + [anon_sym_new] = ACTIONS(3617), + [anon_sym_requires] = ACTIONS(3617), + [sym_this] = ACTIONS(3617), + }, + [STATE(666)] = { + [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(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(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), }, - [STATE(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), + [STATE(667)] = { + [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(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(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), }, - [STATE(714)] = { + [STATE(668)] = { + [ts_builtin_sym_end] = ACTIONS(2841), [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), @@ -144593,608 +138397,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [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(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(2839), + [anon_sym_decltype] = ACTIONS(2839), + [anon_sym_explicit] = ACTIONS(2839), + [anon_sym_typename] = ACTIONS(2839), + [anon_sym_export] = ACTIONS(2839), + [anon_sym_module] = ACTIONS(2839), + [anon_sym_import] = 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), }, - [STATE(719)] = { + [STATE(669)] = { + [ts_builtin_sym_end] = ACTIONS(3619), + [sym_identifier] = ACTIONS(3621), + [aux_sym_preproc_include_token1] = ACTIONS(3621), + [aux_sym_preproc_def_token1] = ACTIONS(3621), + [aux_sym_preproc_if_token1] = ACTIONS(3621), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3621), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3621), + [sym_preproc_directive] = ACTIONS(3621), + [anon_sym_LPAREN2] = ACTIONS(3619), + [anon_sym_BANG] = ACTIONS(3619), + [anon_sym_TILDE] = ACTIONS(3619), + [anon_sym_DASH] = ACTIONS(3621), + [anon_sym_PLUS] = ACTIONS(3621), + [anon_sym_STAR] = ACTIONS(3619), + [anon_sym_AMP_AMP] = ACTIONS(3619), + [anon_sym_AMP] = ACTIONS(3621), + [anon_sym_SEMI] = ACTIONS(3619), + [anon_sym___extension__] = ACTIONS(3621), + [anon_sym_typedef] = ACTIONS(3621), + [anon_sym_virtual] = ACTIONS(3621), + [anon_sym_extern] = ACTIONS(3621), + [anon_sym___attribute__] = ACTIONS(3621), + [anon_sym___attribute] = ACTIONS(3621), + [anon_sym_using] = ACTIONS(3621), + [anon_sym_COLON_COLON] = ACTIONS(3619), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3619), + [anon_sym___declspec] = ACTIONS(3621), + [anon_sym___based] = ACTIONS(3621), + [anon_sym___cdecl] = ACTIONS(3621), + [anon_sym___clrcall] = ACTIONS(3621), + [anon_sym___stdcall] = ACTIONS(3621), + [anon_sym___fastcall] = ACTIONS(3621), + [anon_sym___thiscall] = ACTIONS(3621), + [anon_sym___vectorcall] = ACTIONS(3621), + [anon_sym_LBRACE] = ACTIONS(3619), + [anon_sym_signed] = ACTIONS(3621), + [anon_sym_unsigned] = ACTIONS(3621), + [anon_sym_long] = ACTIONS(3621), + [anon_sym_short] = ACTIONS(3621), + [anon_sym_LBRACK] = ACTIONS(3621), + [anon_sym_static] = ACTIONS(3621), + [anon_sym_register] = ACTIONS(3621), + [anon_sym_inline] = ACTIONS(3621), + [anon_sym___inline] = ACTIONS(3621), + [anon_sym___inline__] = ACTIONS(3621), + [anon_sym___forceinline] = ACTIONS(3621), + [anon_sym_thread_local] = ACTIONS(3621), + [anon_sym___thread] = ACTIONS(3621), + [anon_sym_const] = ACTIONS(3621), + [anon_sym_constexpr] = ACTIONS(3621), + [anon_sym_volatile] = ACTIONS(3621), + [anon_sym_restrict] = ACTIONS(3621), + [anon_sym___restrict__] = ACTIONS(3621), + [anon_sym__Atomic] = ACTIONS(3621), + [anon_sym__Noreturn] = ACTIONS(3621), + [anon_sym_noreturn] = ACTIONS(3621), + [anon_sym__Nonnull] = ACTIONS(3621), + [anon_sym_mutable] = ACTIONS(3621), + [anon_sym_constinit] = ACTIONS(3621), + [anon_sym_consteval] = ACTIONS(3621), + [anon_sym_alignas] = ACTIONS(3621), + [anon_sym__Alignas] = ACTIONS(3621), + [sym_primitive_type] = ACTIONS(3621), + [anon_sym_enum] = ACTIONS(3621), + [anon_sym_class] = ACTIONS(3621), + [anon_sym_struct] = ACTIONS(3621), + [anon_sym_union] = ACTIONS(3621), + [anon_sym_if] = ACTIONS(3621), + [anon_sym_switch] = ACTIONS(3621), + [anon_sym_case] = ACTIONS(3621), + [anon_sym_default] = ACTIONS(3621), + [anon_sym_while] = ACTIONS(3621), + [anon_sym_do] = ACTIONS(3621), + [anon_sym_for] = ACTIONS(3621), + [anon_sym_return] = ACTIONS(3621), + [anon_sym_break] = ACTIONS(3621), + [anon_sym_continue] = ACTIONS(3621), + [anon_sym_goto] = ACTIONS(3621), + [anon_sym_not] = ACTIONS(3621), + [anon_sym_compl] = ACTIONS(3621), + [anon_sym_DASH_DASH] = ACTIONS(3619), + [anon_sym_PLUS_PLUS] = ACTIONS(3619), + [anon_sym_sizeof] = ACTIONS(3621), + [anon_sym___alignof__] = ACTIONS(3621), + [anon_sym___alignof] = ACTIONS(3621), + [anon_sym__alignof] = ACTIONS(3621), + [anon_sym_alignof] = ACTIONS(3621), + [anon_sym__Alignof] = ACTIONS(3621), + [anon_sym_offsetof] = ACTIONS(3621), + [anon_sym__Generic] = ACTIONS(3621), + [anon_sym_asm] = ACTIONS(3621), + [anon_sym___asm__] = ACTIONS(3621), + [anon_sym___asm] = ACTIONS(3621), + [sym_number_literal] = ACTIONS(3619), + [anon_sym_L_SQUOTE] = ACTIONS(3619), + [anon_sym_u_SQUOTE] = ACTIONS(3619), + [anon_sym_U_SQUOTE] = ACTIONS(3619), + [anon_sym_u8_SQUOTE] = ACTIONS(3619), + [anon_sym_SQUOTE] = ACTIONS(3619), + [anon_sym_L_DQUOTE] = ACTIONS(3619), + [anon_sym_u_DQUOTE] = ACTIONS(3619), + [anon_sym_U_DQUOTE] = ACTIONS(3619), + [anon_sym_u8_DQUOTE] = ACTIONS(3619), + [anon_sym_DQUOTE] = ACTIONS(3619), + [sym_true] = ACTIONS(3621), + [sym_false] = ACTIONS(3621), + [anon_sym_NULL] = ACTIONS(3621), + [anon_sym_nullptr] = ACTIONS(3621), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3621), + [anon_sym_decltype] = ACTIONS(3621), + [anon_sym_explicit] = ACTIONS(3621), + [anon_sym_typename] = ACTIONS(3621), + [anon_sym_export] = ACTIONS(3621), + [anon_sym_module] = ACTIONS(3621), + [anon_sym_import] = ACTIONS(3621), + [anon_sym_template] = ACTIONS(3621), + [anon_sym_operator] = ACTIONS(3621), + [anon_sym_try] = ACTIONS(3621), + [anon_sym_delete] = ACTIONS(3621), + [anon_sym_throw] = ACTIONS(3621), + [anon_sym_namespace] = ACTIONS(3621), + [anon_sym_static_assert] = ACTIONS(3621), + [anon_sym_concept] = ACTIONS(3621), + [anon_sym_co_return] = ACTIONS(3621), + [anon_sym_co_yield] = ACTIONS(3621), + [anon_sym_R_DQUOTE] = ACTIONS(3619), + [anon_sym_LR_DQUOTE] = ACTIONS(3619), + [anon_sym_uR_DQUOTE] = ACTIONS(3619), + [anon_sym_UR_DQUOTE] = ACTIONS(3619), + [anon_sym_u8R_DQUOTE] = ACTIONS(3619), + [anon_sym_co_await] = ACTIONS(3621), + [anon_sym_new] = ACTIONS(3621), + [anon_sym_requires] = ACTIONS(3621), + [sym_this] = ACTIONS(3621), + }, + [STATE(670)] = { + [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), + }, + [STATE(671)] = { [sym_identifier] = ACTIONS(2867), [aux_sym_preproc_include_token1] = ACTIONS(2867), [aux_sym_preproc_def_token1] = ACTIONS(2867), @@ -145330,7 +138864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2867), [sym_this] = ACTIONS(2867), }, - [STATE(720)] = { + [STATE(672)] = { [sym_identifier] = ACTIONS(2871), [aux_sym_preproc_include_token1] = ACTIONS(2871), [aux_sym_preproc_def_token1] = ACTIONS(2871), @@ -145466,7 +139000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2871), [sym_this] = ACTIONS(2871), }, - [STATE(721)] = { + [STATE(673)] = { [sym_identifier] = ACTIONS(2875), [aux_sym_preproc_include_token1] = ACTIONS(2875), [aux_sym_preproc_def_token1] = ACTIONS(2875), @@ -145602,143 +139136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2875), [sym_this] = ACTIONS(2875), }, - [STATE(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(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), - }, - [STATE(723)] = { + [STATE(674)] = { [sym_identifier] = ACTIONS(2879), [aux_sym_preproc_include_token1] = ACTIONS(2879), [aux_sym_preproc_def_token1] = ACTIONS(2879), @@ -145874,555 +139272,964 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2879), [sym_this] = ACTIONS(2879), }, - [STATE(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), + [STATE(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), + [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), [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(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), + }, + [STATE(676)] = { + [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), + }, + [STATE(677)] = { + [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(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), + }, + [STATE(678)] = { + [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), }, - [STATE(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), + [STATE(679)] = { + [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(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(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), }, - [STATE(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), + [STATE(680)] = { + [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(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(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), }, - [STATE(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), + [STATE(681)] = { + [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(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(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), }, - [STATE(728)] = { + [STATE(682)] = { [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), @@ -146453,7 +140260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -146554,11 +140360,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2943), [sym_this] = ACTIONS(2943), }, - [STATE(729)] = { + [STATE(683)] = { [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), @@ -146589,7 +140396,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -146690,11 +140496,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2947), [sym_this] = ACTIONS(2947), }, - [STATE(730)] = { + [STATE(684)] = { [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), @@ -146725,7 +140532,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -146826,11 +140632,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2951), [sym_this] = ACTIONS(2951), }, - [STATE(731)] = { + [STATE(685)] = { [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), @@ -146861,7 +140668,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -146938,36 +140744,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), + }, + [STATE(686)] = { + [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), + }, + [STATE(687)] = { + [sym_identifier] = ACTIONS(3055), + [aux_sym_preproc_include_token1] = ACTIONS(3055), + [aux_sym_preproc_def_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token2] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), + [sym_preproc_directive] = ACTIONS(3055), + [anon_sym_LPAREN2] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_virtual] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = ACTIONS(3055), + [anon_sym___attribute] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_COLON_COLON] = ACTIONS(3057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), + [anon_sym___declspec] = ACTIONS(3055), + [anon_sym___based] = ACTIONS(3055), + [anon_sym___cdecl] = ACTIONS(3055), + [anon_sym___clrcall] = ACTIONS(3055), + [anon_sym___stdcall] = ACTIONS(3055), + [anon_sym___fastcall] = ACTIONS(3055), + [anon_sym___thiscall] = ACTIONS(3055), + [anon_sym___vectorcall] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_signed] = ACTIONS(3055), + [anon_sym_unsigned] = ACTIONS(3055), + [anon_sym_long] = ACTIONS(3055), + [anon_sym_short] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_static] = ACTIONS(3055), + [anon_sym_register] = ACTIONS(3055), + [anon_sym_inline] = ACTIONS(3055), + [anon_sym___inline] = ACTIONS(3055), + [anon_sym___inline__] = ACTIONS(3055), + [anon_sym___forceinline] = ACTIONS(3055), + [anon_sym_thread_local] = ACTIONS(3055), + [anon_sym___thread] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_constexpr] = ACTIONS(3055), + [anon_sym_volatile] = ACTIONS(3055), + [anon_sym_restrict] = ACTIONS(3055), + [anon_sym___restrict__] = ACTIONS(3055), + [anon_sym__Atomic] = ACTIONS(3055), + [anon_sym__Noreturn] = ACTIONS(3055), + [anon_sym_noreturn] = ACTIONS(3055), + [anon_sym__Nonnull] = ACTIONS(3055), + [anon_sym_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = ACTIONS(3055), + [anon_sym_alignas] = ACTIONS(3055), + [anon_sym__Alignas] = ACTIONS(3055), + [sym_primitive_type] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_class] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3055), + [anon_sym_default] = ACTIONS(3055), + [anon_sym_while] = ACTIONS(3055), + [anon_sym_do] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym___try] = ACTIONS(3055), + [anon_sym___leave] = ACTIONS(3055), + [anon_sym_not] = ACTIONS(3055), + [anon_sym_compl] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3057), + [anon_sym_sizeof] = ACTIONS(3055), + [anon_sym___alignof__] = ACTIONS(3055), + [anon_sym___alignof] = ACTIONS(3055), + [anon_sym__alignof] = ACTIONS(3055), + [anon_sym_alignof] = ACTIONS(3055), + [anon_sym__Alignof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3055), + [anon_sym__Generic] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), + [anon_sym___asm__] = ACTIONS(3055), + [anon_sym___asm] = ACTIONS(3055), + [sym_number_literal] = ACTIONS(3057), + [anon_sym_L_SQUOTE] = ACTIONS(3057), + [anon_sym_u_SQUOTE] = ACTIONS(3057), + [anon_sym_U_SQUOTE] = ACTIONS(3057), + [anon_sym_u8_SQUOTE] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3057), + [anon_sym_L_DQUOTE] = ACTIONS(3057), + [anon_sym_u_DQUOTE] = ACTIONS(3057), + [anon_sym_U_DQUOTE] = ACTIONS(3057), + [anon_sym_u8_DQUOTE] = ACTIONS(3057), + [anon_sym_DQUOTE] = ACTIONS(3057), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [anon_sym_NULL] = ACTIONS(3055), + [anon_sym_nullptr] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3055), + [anon_sym_decltype] = ACTIONS(3055), + [anon_sym_explicit] = ACTIONS(3055), + [anon_sym_typename] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(3055), + [anon_sym_try] = ACTIONS(3055), + [anon_sym_delete] = ACTIONS(3055), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_namespace] = ACTIONS(3055), + [anon_sym_static_assert] = ACTIONS(3055), + [anon_sym_concept] = ACTIONS(3055), + [anon_sym_co_return] = ACTIONS(3055), + [anon_sym_co_yield] = ACTIONS(3055), + [anon_sym_R_DQUOTE] = ACTIONS(3057), + [anon_sym_LR_DQUOTE] = ACTIONS(3057), + [anon_sym_uR_DQUOTE] = ACTIONS(3057), + [anon_sym_UR_DQUOTE] = ACTIONS(3057), + [anon_sym_u8R_DQUOTE] = ACTIONS(3057), + [anon_sym_co_await] = ACTIONS(3055), + [anon_sym_new] = ACTIONS(3055), + [anon_sym_requires] = ACTIONS(3055), + [sym_this] = ACTIONS(3055), + }, + [STATE(688)] = { + [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), }, - [STATE(732)] = { + [STATE(689)] = { [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), @@ -146998,6 +141211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -147098,12 +141312,691 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2931), [sym_this] = ACTIONS(2931), }, - [STATE(733)] = { + [STATE(690)] = { + [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), + }, + [STATE(691)] = { + [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), + }, + [STATE(692)] = { + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_include_token1] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym___extension__] = ACTIONS(3109), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym___attribute] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym___cdecl] = ACTIONS(3109), + [anon_sym___clrcall] = ACTIONS(3109), + [anon_sym___stdcall] = ACTIONS(3109), + [anon_sym___fastcall] = ACTIONS(3109), + [anon_sym___thiscall] = ACTIONS(3109), + [anon_sym___vectorcall] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym___inline] = ACTIONS(3109), + [anon_sym___inline__] = ACTIONS(3109), + [anon_sym___forceinline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym___thread] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym__Nonnull] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_alignas] = ACTIONS(3109), + [anon_sym__Alignas] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym___try] = ACTIONS(3109), + [anon_sym___leave] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym___alignof__] = ACTIONS(3109), + [anon_sym___alignof] = ACTIONS(3109), + [anon_sym__alignof] = ACTIONS(3109), + [anon_sym_alignof] = ACTIONS(3109), + [anon_sym__Alignof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [anon_sym___asm] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), + [anon_sym_concept] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), + }, + [STATE(693)] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym___attribute] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym__Nonnull] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym__Alignas] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym___try] = ACTIONS(3103), + [anon_sym___leave] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [anon_sym___asm] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), + }, + [STATE(694)] = { + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_include_token1] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym___attribute] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym___cdecl] = ACTIONS(3113), + [anon_sym___clrcall] = ACTIONS(3113), + [anon_sym___stdcall] = ACTIONS(3113), + [anon_sym___fastcall] = ACTIONS(3113), + [anon_sym___thiscall] = ACTIONS(3113), + [anon_sym___vectorcall] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym___inline] = ACTIONS(3113), + [anon_sym___inline__] = ACTIONS(3113), + [anon_sym___forceinline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym___thread] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym__Nonnull] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_alignas] = ACTIONS(3113), + [anon_sym__Alignas] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym___try] = ACTIONS(3113), + [anon_sym___leave] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym___alignof__] = ACTIONS(3113), + [anon_sym___alignof] = ACTIONS(3113), + [anon_sym__alignof] = ACTIONS(3113), + [anon_sym_alignof] = ACTIONS(3113), + [anon_sym__Alignof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [anon_sym___asm] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), + [anon_sym_concept] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), + }, + [STATE(695)] = { [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), @@ -147134,6 +142027,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -147234,12 +142128,963 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2935), [sym_this] = ACTIONS(2935), }, - [STATE(734)] = { + [STATE(696)] = { + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_include_token1] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token2] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym___extension__] = ACTIONS(3109), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym___attribute] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym___cdecl] = ACTIONS(3109), + [anon_sym___clrcall] = ACTIONS(3109), + [anon_sym___stdcall] = ACTIONS(3109), + [anon_sym___fastcall] = ACTIONS(3109), + [anon_sym___thiscall] = ACTIONS(3109), + [anon_sym___vectorcall] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym___inline] = ACTIONS(3109), + [anon_sym___inline__] = ACTIONS(3109), + [anon_sym___forceinline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym___thread] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym__Nonnull] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_alignas] = ACTIONS(3109), + [anon_sym__Alignas] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_goto] = ACTIONS(3109), + [anon_sym___try] = ACTIONS(3109), + [anon_sym___leave] = ACTIONS(3109), + [anon_sym_not] = ACTIONS(3109), + [anon_sym_compl] = ACTIONS(3109), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_sizeof] = ACTIONS(3109), + [anon_sym___alignof__] = ACTIONS(3109), + [anon_sym___alignof] = ACTIONS(3109), + [anon_sym__alignof] = ACTIONS(3109), + [anon_sym_alignof] = ACTIONS(3109), + [anon_sym__Alignof] = ACTIONS(3109), + [anon_sym_offsetof] = ACTIONS(3109), + [anon_sym__Generic] = ACTIONS(3109), + [anon_sym_asm] = ACTIONS(3109), + [anon_sym___asm__] = ACTIONS(3109), + [anon_sym___asm] = ACTIONS(3109), + [sym_number_literal] = ACTIONS(3111), + [anon_sym_L_SQUOTE] = ACTIONS(3111), + [anon_sym_u_SQUOTE] = ACTIONS(3111), + [anon_sym_U_SQUOTE] = ACTIONS(3111), + [anon_sym_u8_SQUOTE] = ACTIONS(3111), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_L_DQUOTE] = ACTIONS(3111), + [anon_sym_u_DQUOTE] = ACTIONS(3111), + [anon_sym_U_DQUOTE] = ACTIONS(3111), + [anon_sym_u8_DQUOTE] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(3111), + [sym_true] = ACTIONS(3109), + [sym_false] = ACTIONS(3109), + [anon_sym_NULL] = ACTIONS(3109), + [anon_sym_nullptr] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_delete] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_namespace] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), + [anon_sym_concept] = ACTIONS(3109), + [anon_sym_co_return] = ACTIONS(3109), + [anon_sym_co_yield] = ACTIONS(3109), + [anon_sym_R_DQUOTE] = ACTIONS(3111), + [anon_sym_LR_DQUOTE] = ACTIONS(3111), + [anon_sym_uR_DQUOTE] = ACTIONS(3111), + [anon_sym_UR_DQUOTE] = ACTIONS(3111), + [anon_sym_u8R_DQUOTE] = ACTIONS(3111), + [anon_sym_co_await] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_requires] = ACTIONS(3109), + [sym_this] = ACTIONS(3109), + }, + [STATE(697)] = { + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_include_token1] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token2] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym___attribute] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym___cdecl] = ACTIONS(3113), + [anon_sym___clrcall] = ACTIONS(3113), + [anon_sym___stdcall] = ACTIONS(3113), + [anon_sym___fastcall] = ACTIONS(3113), + [anon_sym___thiscall] = ACTIONS(3113), + [anon_sym___vectorcall] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym___inline] = ACTIONS(3113), + [anon_sym___inline__] = ACTIONS(3113), + [anon_sym___forceinline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym___thread] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym__Nonnull] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_alignas] = ACTIONS(3113), + [anon_sym__Alignas] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_goto] = ACTIONS(3113), + [anon_sym___try] = ACTIONS(3113), + [anon_sym___leave] = ACTIONS(3113), + [anon_sym_not] = ACTIONS(3113), + [anon_sym_compl] = ACTIONS(3113), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_sizeof] = ACTIONS(3113), + [anon_sym___alignof__] = ACTIONS(3113), + [anon_sym___alignof] = ACTIONS(3113), + [anon_sym__alignof] = ACTIONS(3113), + [anon_sym_alignof] = ACTIONS(3113), + [anon_sym__Alignof] = ACTIONS(3113), + [anon_sym_offsetof] = ACTIONS(3113), + [anon_sym__Generic] = ACTIONS(3113), + [anon_sym_asm] = ACTIONS(3113), + [anon_sym___asm__] = ACTIONS(3113), + [anon_sym___asm] = ACTIONS(3113), + [sym_number_literal] = ACTIONS(3115), + [anon_sym_L_SQUOTE] = ACTIONS(3115), + [anon_sym_u_SQUOTE] = ACTIONS(3115), + [anon_sym_U_SQUOTE] = ACTIONS(3115), + [anon_sym_u8_SQUOTE] = ACTIONS(3115), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_L_DQUOTE] = ACTIONS(3115), + [anon_sym_u_DQUOTE] = ACTIONS(3115), + [anon_sym_U_DQUOTE] = ACTIONS(3115), + [anon_sym_u8_DQUOTE] = ACTIONS(3115), + [anon_sym_DQUOTE] = ACTIONS(3115), + [sym_true] = ACTIONS(3113), + [sym_false] = ACTIONS(3113), + [anon_sym_NULL] = ACTIONS(3113), + [anon_sym_nullptr] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_delete] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), + [anon_sym_concept] = ACTIONS(3113), + [anon_sym_co_return] = ACTIONS(3113), + [anon_sym_co_yield] = ACTIONS(3113), + [anon_sym_R_DQUOTE] = ACTIONS(3115), + [anon_sym_LR_DQUOTE] = ACTIONS(3115), + [anon_sym_uR_DQUOTE] = ACTIONS(3115), + [anon_sym_UR_DQUOTE] = ACTIONS(3115), + [anon_sym_u8R_DQUOTE] = ACTIONS(3115), + [anon_sym_co_await] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_requires] = ACTIONS(3113), + [sym_this] = ACTIONS(3113), + }, + [STATE(698)] = { + [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), + }, + [STATE(699)] = { + [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), + }, + [STATE(700)] = { + [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), + }, + [STATE(701)] = { + [sym_identifier] = ACTIONS(3128), + [aux_sym_preproc_include_token1] = ACTIONS(3128), + [aux_sym_preproc_def_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token2] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), + [sym_preproc_directive] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_AMP_AMP] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_typedef] = ACTIONS(3128), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym___cdecl] = ACTIONS(3128), + [anon_sym___clrcall] = ACTIONS(3128), + [anon_sym___stdcall] = ACTIONS(3128), + [anon_sym___fastcall] = ACTIONS(3128), + [anon_sym___thiscall] = ACTIONS(3128), + [anon_sym___vectorcall] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_case] = ACTIONS(3128), + [anon_sym_default] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_goto] = ACTIONS(3128), + [anon_sym___try] = ACTIONS(3128), + [anon_sym___leave] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3128), + [anon_sym_compl] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3130), + [anon_sym_sizeof] = ACTIONS(3128), + [anon_sym___alignof__] = ACTIONS(3128), + [anon_sym___alignof] = ACTIONS(3128), + [anon_sym__alignof] = ACTIONS(3128), + [anon_sym_alignof] = ACTIONS(3128), + [anon_sym__Alignof] = ACTIONS(3128), + [anon_sym_offsetof] = ACTIONS(3128), + [anon_sym__Generic] = ACTIONS(3128), + [anon_sym_asm] = ACTIONS(3128), + [anon_sym___asm__] = ACTIONS(3128), + [anon_sym___asm] = ACTIONS(3128), + [sym_number_literal] = ACTIONS(3130), + [anon_sym_L_SQUOTE] = ACTIONS(3130), + [anon_sym_u_SQUOTE] = ACTIONS(3130), + [anon_sym_U_SQUOTE] = ACTIONS(3130), + [anon_sym_u8_SQUOTE] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3130), + [anon_sym_L_DQUOTE] = ACTIONS(3130), + [anon_sym_u_DQUOTE] = ACTIONS(3130), + [anon_sym_U_DQUOTE] = ACTIONS(3130), + [anon_sym_u8_DQUOTE] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(3130), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [anon_sym_NULL] = ACTIONS(3128), + [anon_sym_nullptr] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3128), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_typename] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3128), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_static_assert] = ACTIONS(3128), + [anon_sym_concept] = ACTIONS(3128), + [anon_sym_co_return] = ACTIONS(3128), + [anon_sym_co_yield] = ACTIONS(3128), + [anon_sym_R_DQUOTE] = ACTIONS(3130), + [anon_sym_LR_DQUOTE] = ACTIONS(3130), + [anon_sym_uR_DQUOTE] = ACTIONS(3130), + [anon_sym_UR_DQUOTE] = ACTIONS(3130), + [anon_sym_u8R_DQUOTE] = ACTIONS(3130), + [anon_sym_co_await] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), + }, + [STATE(702)] = { + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_include_token1] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token2] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), + [sym_preproc_directive] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3132), + [anon_sym_virtual] = ACTIONS(3132), + [anon_sym_extern] = ACTIONS(3132), + [anon_sym___attribute__] = ACTIONS(3132), + [anon_sym___attribute] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), + [anon_sym___declspec] = ACTIONS(3132), + [anon_sym___based] = ACTIONS(3132), + [anon_sym___cdecl] = ACTIONS(3132), + [anon_sym___clrcall] = ACTIONS(3132), + [anon_sym___stdcall] = ACTIONS(3132), + [anon_sym___fastcall] = ACTIONS(3132), + [anon_sym___thiscall] = ACTIONS(3132), + [anon_sym___vectorcall] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3134), + [anon_sym_signed] = ACTIONS(3132), + [anon_sym_unsigned] = ACTIONS(3132), + [anon_sym_long] = ACTIONS(3132), + [anon_sym_short] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_register] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym___inline] = ACTIONS(3132), + [anon_sym___inline__] = ACTIONS(3132), + [anon_sym___forceinline] = ACTIONS(3132), + [anon_sym_thread_local] = ACTIONS(3132), + [anon_sym___thread] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_constexpr] = ACTIONS(3132), + [anon_sym_volatile] = ACTIONS(3132), + [anon_sym_restrict] = ACTIONS(3132), + [anon_sym___restrict__] = ACTIONS(3132), + [anon_sym__Atomic] = ACTIONS(3132), + [anon_sym__Noreturn] = ACTIONS(3132), + [anon_sym_noreturn] = ACTIONS(3132), + [anon_sym__Nonnull] = ACTIONS(3132), + [anon_sym_mutable] = ACTIONS(3132), + [anon_sym_constinit] = ACTIONS(3132), + [anon_sym_consteval] = ACTIONS(3132), + [anon_sym_alignas] = ACTIONS(3132), + [anon_sym__Alignas] = ACTIONS(3132), + [sym_primitive_type] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3132), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_goto] = ACTIONS(3132), + [anon_sym___try] = ACTIONS(3132), + [anon_sym___leave] = ACTIONS(3132), + [anon_sym_not] = ACTIONS(3132), + [anon_sym_compl] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3134), + [anon_sym_sizeof] = ACTIONS(3132), + [anon_sym___alignof__] = ACTIONS(3132), + [anon_sym___alignof] = ACTIONS(3132), + [anon_sym__alignof] = ACTIONS(3132), + [anon_sym_alignof] = ACTIONS(3132), + [anon_sym__Alignof] = ACTIONS(3132), + [anon_sym_offsetof] = ACTIONS(3132), + [anon_sym__Generic] = ACTIONS(3132), + [anon_sym_asm] = ACTIONS(3132), + [anon_sym___asm__] = ACTIONS(3132), + [anon_sym___asm] = ACTIONS(3132), + [sym_number_literal] = ACTIONS(3134), + [anon_sym_L_SQUOTE] = ACTIONS(3134), + [anon_sym_u_SQUOTE] = ACTIONS(3134), + [anon_sym_U_SQUOTE] = ACTIONS(3134), + [anon_sym_u8_SQUOTE] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(3134), + [anon_sym_L_DQUOTE] = ACTIONS(3134), + [anon_sym_u_DQUOTE] = ACTIONS(3134), + [anon_sym_U_DQUOTE] = ACTIONS(3134), + [anon_sym_u8_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE] = ACTIONS(3134), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [anon_sym_NULL] = ACTIONS(3132), + [anon_sym_nullptr] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3132), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3132), + [anon_sym_typename] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_static_assert] = ACTIONS(3132), + [anon_sym_concept] = ACTIONS(3132), + [anon_sym_co_return] = ACTIONS(3132), + [anon_sym_co_yield] = ACTIONS(3132), + [anon_sym_R_DQUOTE] = ACTIONS(3134), + [anon_sym_LR_DQUOTE] = ACTIONS(3134), + [anon_sym_uR_DQUOTE] = ACTIONS(3134), + [anon_sym_UR_DQUOTE] = ACTIONS(3134), + [anon_sym_u8R_DQUOTE] = ACTIONS(3134), + [anon_sym_co_await] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_requires] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), + }, + [STATE(703)] = { [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), @@ -147270,6 +143115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -147294,224 +143140,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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), - }, - [STATE(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), + [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(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), + [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), }, - [STATE(736)] = { + [STATE(704)] = { [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), @@ -147542,6 +143251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -147642,12 +143352,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2943), [sym_this] = ACTIONS(2943), }, - [STATE(737)] = { + [STATE(705)] = { [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), @@ -147678,6 +143387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -147778,12 +143488,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2947), [sym_this] = ACTIONS(2947), }, - [STATE(738)] = { + [STATE(706)] = { [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), @@ -147814,6 +143523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -147914,143 +143624,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2951), [sym_this] = ACTIONS(2951), }, - [STATE(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), + [STATE(707)] = { + [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(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), + [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), }, - [STATE(740)] = { + [STATE(708)] = { + [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(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), + }, + [STATE(709)] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym___attribute] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym__Nonnull] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym__Alignas] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym___try] = ACTIONS(3099), + [anon_sym___leave] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [anon_sym___asm] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), + }, + [STATE(710)] = { + [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), + }, + [STATE(711)] = { [sym_identifier] = ACTIONS(2963), [aux_sym_preproc_include_token1] = ACTIONS(2963), [aux_sym_preproc_def_token1] = ACTIONS(2963), @@ -148186,7 +144304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2963), [sym_this] = ACTIONS(2963), }, - [STATE(741)] = { + [STATE(712)] = { [sym_identifier] = ACTIONS(2967), [aux_sym_preproc_include_token1] = ACTIONS(2967), [aux_sym_preproc_def_token1] = ACTIONS(2967), @@ -148322,415 +144440,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2967), [sym_this] = ACTIONS(2967), }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), + [STATE(713)] = { + [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(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), }, - [STATE(745)] = { + [STATE(714)] = { [sym_identifier] = ACTIONS(2971), [aux_sym_preproc_include_token1] = ACTIONS(2971), [aux_sym_preproc_def_token1] = ACTIONS(2971), @@ -148866,7 +144712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2971), [sym_this] = ACTIONS(2971), }, - [STATE(746)] = { + [STATE(715)] = { [sym_identifier] = ACTIONS(2975), [aux_sym_preproc_include_token1] = ACTIONS(2975), [aux_sym_preproc_def_token1] = ACTIONS(2975), @@ -149002,1367 +144848,1095 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2975), [sym_this] = ACTIONS(2975), }, - [STATE(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), + [STATE(716)] = { + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_include_token1] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2979), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2979), + [sym_preproc_directive] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym___extension__] = ACTIONS(2979), + [anon_sym_typedef] = ACTIONS(2979), + [anon_sym_virtual] = ACTIONS(2979), + [anon_sym_extern] = ACTIONS(2979), + [anon_sym___attribute__] = ACTIONS(2979), + [anon_sym___attribute] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2981), + [anon_sym___declspec] = ACTIONS(2979), + [anon_sym___based] = ACTIONS(2979), + [anon_sym___cdecl] = ACTIONS(2979), + [anon_sym___clrcall] = ACTIONS(2979), + [anon_sym___stdcall] = ACTIONS(2979), + [anon_sym___fastcall] = ACTIONS(2979), + [anon_sym___thiscall] = ACTIONS(2979), + [anon_sym___vectorcall] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_signed] = ACTIONS(2979), + [anon_sym_unsigned] = ACTIONS(2979), + [anon_sym_long] = ACTIONS(2979), + [anon_sym_short] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_register] = ACTIONS(2979), + [anon_sym_inline] = ACTIONS(2979), + [anon_sym___inline] = ACTIONS(2979), + [anon_sym___inline__] = ACTIONS(2979), + [anon_sym___forceinline] = ACTIONS(2979), + [anon_sym_thread_local] = ACTIONS(2979), + [anon_sym___thread] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_constexpr] = ACTIONS(2979), + [anon_sym_volatile] = ACTIONS(2979), + [anon_sym_restrict] = ACTIONS(2979), + [anon_sym___restrict__] = ACTIONS(2979), + [anon_sym__Atomic] = ACTIONS(2979), + [anon_sym__Noreturn] = ACTIONS(2979), + [anon_sym_noreturn] = ACTIONS(2979), + [anon_sym__Nonnull] = ACTIONS(2979), + [anon_sym_mutable] = ACTIONS(2979), + [anon_sym_constinit] = ACTIONS(2979), + [anon_sym_consteval] = ACTIONS(2979), + [anon_sym_alignas] = ACTIONS(2979), + [anon_sym__Alignas] = ACTIONS(2979), + [sym_primitive_type] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), + [anon_sym_class] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_union] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_case] = ACTIONS(2979), + [anon_sym_default] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_goto] = ACTIONS(2979), + [anon_sym___try] = ACTIONS(2979), + [anon_sym___leave] = ACTIONS(2979), + [anon_sym_not] = ACTIONS(2979), + [anon_sym_compl] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2979), + [anon_sym___alignof__] = ACTIONS(2979), + [anon_sym___alignof] = ACTIONS(2979), + [anon_sym__alignof] = ACTIONS(2979), + [anon_sym_alignof] = ACTIONS(2979), + [anon_sym__Alignof] = ACTIONS(2979), + [anon_sym_offsetof] = ACTIONS(2979), + [anon_sym__Generic] = ACTIONS(2979), + [anon_sym_asm] = ACTIONS(2979), + [anon_sym___asm__] = ACTIONS(2979), + [anon_sym___asm] = ACTIONS(2979), + [sym_number_literal] = ACTIONS(2981), + [anon_sym_L_SQUOTE] = ACTIONS(2981), + [anon_sym_u_SQUOTE] = ACTIONS(2981), + [anon_sym_U_SQUOTE] = ACTIONS(2981), + [anon_sym_u8_SQUOTE] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_L_DQUOTE] = ACTIONS(2981), + [anon_sym_u_DQUOTE] = ACTIONS(2981), + [anon_sym_U_DQUOTE] = ACTIONS(2981), + [anon_sym_u8_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [anon_sym_NULL] = ACTIONS(2979), + [anon_sym_nullptr] = ACTIONS(2979), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2979), + [anon_sym_decltype] = ACTIONS(2979), + [anon_sym_explicit] = ACTIONS(2979), + [anon_sym_typename] = ACTIONS(2979), + [anon_sym_template] = ACTIONS(2979), + [anon_sym_operator] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_delete] = ACTIONS(2979), + [anon_sym_throw] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_static_assert] = ACTIONS(2979), + [anon_sym_concept] = ACTIONS(2979), + [anon_sym_co_return] = ACTIONS(2979), + [anon_sym_co_yield] = ACTIONS(2979), + [anon_sym_R_DQUOTE] = ACTIONS(2981), + [anon_sym_LR_DQUOTE] = ACTIONS(2981), + [anon_sym_uR_DQUOTE] = ACTIONS(2981), + [anon_sym_UR_DQUOTE] = ACTIONS(2981), + [anon_sym_u8R_DQUOTE] = ACTIONS(2981), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_requires] = ACTIONS(2979), + [sym_this] = ACTIONS(2979), }, - [STATE(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), + [STATE(717)] = { + [sym_identifier] = ACTIONS(2983), + [aux_sym_preproc_include_token1] = ACTIONS(2983), + [aux_sym_preproc_def_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2983), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2983), + [sym_preproc_directive] = ACTIONS(2983), + [anon_sym_LPAREN2] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym___extension__] = ACTIONS(2983), + [anon_sym_typedef] = ACTIONS(2983), + [anon_sym_virtual] = ACTIONS(2983), + [anon_sym_extern] = ACTIONS(2983), + [anon_sym___attribute__] = ACTIONS(2983), + [anon_sym___attribute] = ACTIONS(2983), + [anon_sym_using] = ACTIONS(2983), + [anon_sym_COLON_COLON] = ACTIONS(2985), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2985), + [anon_sym___declspec] = ACTIONS(2983), + [anon_sym___based] = ACTIONS(2983), + [anon_sym___cdecl] = ACTIONS(2983), + [anon_sym___clrcall] = ACTIONS(2983), + [anon_sym___stdcall] = ACTIONS(2983), + [anon_sym___fastcall] = ACTIONS(2983), + [anon_sym___thiscall] = ACTIONS(2983), + [anon_sym___vectorcall] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_signed] = ACTIONS(2983), + [anon_sym_unsigned] = ACTIONS(2983), + [anon_sym_long] = ACTIONS(2983), + [anon_sym_short] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_static] = ACTIONS(2983), + [anon_sym_register] = ACTIONS(2983), + [anon_sym_inline] = ACTIONS(2983), + [anon_sym___inline] = ACTIONS(2983), + [anon_sym___inline__] = ACTIONS(2983), + [anon_sym___forceinline] = ACTIONS(2983), + [anon_sym_thread_local] = ACTIONS(2983), + [anon_sym___thread] = ACTIONS(2983), + [anon_sym_const] = ACTIONS(2983), + [anon_sym_constexpr] = ACTIONS(2983), + [anon_sym_volatile] = ACTIONS(2983), + [anon_sym_restrict] = ACTIONS(2983), + [anon_sym___restrict__] = ACTIONS(2983), + [anon_sym__Atomic] = ACTIONS(2983), + [anon_sym__Noreturn] = ACTIONS(2983), + [anon_sym_noreturn] = ACTIONS(2983), + [anon_sym__Nonnull] = ACTIONS(2983), + [anon_sym_mutable] = ACTIONS(2983), + [anon_sym_constinit] = ACTIONS(2983), + [anon_sym_consteval] = ACTIONS(2983), + [anon_sym_alignas] = ACTIONS(2983), + [anon_sym__Alignas] = ACTIONS(2983), + [sym_primitive_type] = ACTIONS(2983), + [anon_sym_enum] = ACTIONS(2983), + [anon_sym_class] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_union] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2983), + [anon_sym_case] = ACTIONS(2983), + [anon_sym_default] = ACTIONS(2983), + [anon_sym_while] = ACTIONS(2983), + [anon_sym_do] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_goto] = ACTIONS(2983), + [anon_sym___try] = ACTIONS(2983), + [anon_sym___leave] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_sizeof] = ACTIONS(2983), + [anon_sym___alignof__] = ACTIONS(2983), + [anon_sym___alignof] = ACTIONS(2983), + [anon_sym__alignof] = ACTIONS(2983), + [anon_sym_alignof] = ACTIONS(2983), + [anon_sym__Alignof] = ACTIONS(2983), + [anon_sym_offsetof] = ACTIONS(2983), + [anon_sym__Generic] = ACTIONS(2983), + [anon_sym_asm] = ACTIONS(2983), + [anon_sym___asm__] = ACTIONS(2983), + [anon_sym___asm] = ACTIONS(2983), + [sym_number_literal] = ACTIONS(2985), + [anon_sym_L_SQUOTE] = ACTIONS(2985), + [anon_sym_u_SQUOTE] = ACTIONS(2985), + [anon_sym_U_SQUOTE] = ACTIONS(2985), + [anon_sym_u8_SQUOTE] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_L_DQUOTE] = ACTIONS(2985), + [anon_sym_u_DQUOTE] = ACTIONS(2985), + [anon_sym_U_DQUOTE] = ACTIONS(2985), + [anon_sym_u8_DQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [anon_sym_NULL] = ACTIONS(2983), + [anon_sym_nullptr] = ACTIONS(2983), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2983), + [anon_sym_decltype] = ACTIONS(2983), + [anon_sym_explicit] = ACTIONS(2983), + [anon_sym_typename] = ACTIONS(2983), + [anon_sym_template] = ACTIONS(2983), + [anon_sym_operator] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2983), + [anon_sym_delete] = ACTIONS(2983), + [anon_sym_throw] = ACTIONS(2983), + [anon_sym_namespace] = ACTIONS(2983), + [anon_sym_static_assert] = ACTIONS(2983), + [anon_sym_concept] = ACTIONS(2983), + [anon_sym_co_return] = ACTIONS(2983), + [anon_sym_co_yield] = ACTIONS(2983), + [anon_sym_R_DQUOTE] = ACTIONS(2985), + [anon_sym_LR_DQUOTE] = ACTIONS(2985), + [anon_sym_uR_DQUOTE] = ACTIONS(2985), + [anon_sym_UR_DQUOTE] = ACTIONS(2985), + [anon_sym_u8R_DQUOTE] = ACTIONS(2985), + [anon_sym_co_await] = ACTIONS(2983), + [anon_sym_new] = ACTIONS(2983), + [anon_sym_requires] = ACTIONS(2983), + [sym_this] = ACTIONS(2983), }, - [STATE(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(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), + [STATE(718)] = { + [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(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), }, - [STATE(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), + [STATE(719)] = { + [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), }, - [STATE(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), + [STATE(720)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(721)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(722)] = { + [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(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), - }, - [STATE(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(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(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), }, - [STATE(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), + [STATE(723)] = { + [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(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), - }, - [STATE(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), + [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), }, - [STATE(757)] = { + [STATE(724)] = { [sym_identifier] = ACTIONS(3047), [aux_sym_preproc_include_token1] = ACTIONS(3047), [aux_sym_preproc_def_token1] = ACTIONS(3047), @@ -150498,7 +146072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3047), [sym_this] = ACTIONS(3047), }, - [STATE(758)] = { + [STATE(725)] = { [sym_identifier] = ACTIONS(3051), [aux_sym_preproc_include_token1] = ACTIONS(3051), [aux_sym_preproc_def_token1] = ACTIONS(3051), @@ -150634,415 +146208,959 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3051), [sym_this] = ACTIONS(3051), }, - [STATE(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(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), + [STATE(726)] = { + [sym_identifier] = ACTIONS(3055), + [aux_sym_preproc_include_token1] = ACTIONS(3055), + [aux_sym_preproc_def_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), + [sym_preproc_directive] = ACTIONS(3055), + [anon_sym_LPAREN2] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3055), + [anon_sym_PLUS] = ACTIONS(3055), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_virtual] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = ACTIONS(3055), + [anon_sym___attribute] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_COLON_COLON] = ACTIONS(3057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), + [anon_sym___declspec] = ACTIONS(3055), + [anon_sym___based] = ACTIONS(3055), + [anon_sym___cdecl] = ACTIONS(3055), + [anon_sym___clrcall] = ACTIONS(3055), + [anon_sym___stdcall] = ACTIONS(3055), + [anon_sym___fastcall] = ACTIONS(3055), + [anon_sym___thiscall] = ACTIONS(3055), + [anon_sym___vectorcall] = ACTIONS(3055), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3057), + [anon_sym_signed] = ACTIONS(3055), + [anon_sym_unsigned] = ACTIONS(3055), + [anon_sym_long] = ACTIONS(3055), + [anon_sym_short] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_static] = ACTIONS(3055), + [anon_sym_register] = ACTIONS(3055), + [anon_sym_inline] = ACTIONS(3055), + [anon_sym___inline] = ACTIONS(3055), + [anon_sym___inline__] = ACTIONS(3055), + [anon_sym___forceinline] = ACTIONS(3055), + [anon_sym_thread_local] = ACTIONS(3055), + [anon_sym___thread] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_constexpr] = ACTIONS(3055), + [anon_sym_volatile] = ACTIONS(3055), + [anon_sym_restrict] = ACTIONS(3055), + [anon_sym___restrict__] = ACTIONS(3055), + [anon_sym__Atomic] = ACTIONS(3055), + [anon_sym__Noreturn] = ACTIONS(3055), + [anon_sym_noreturn] = ACTIONS(3055), + [anon_sym__Nonnull] = ACTIONS(3055), + [anon_sym_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = ACTIONS(3055), + [anon_sym_alignas] = ACTIONS(3055), + [anon_sym__Alignas] = ACTIONS(3055), + [sym_primitive_type] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_class] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_switch] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3055), + [anon_sym_default] = ACTIONS(3055), + [anon_sym_while] = ACTIONS(3055), + [anon_sym_do] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_goto] = ACTIONS(3055), + [anon_sym___try] = ACTIONS(3055), + [anon_sym___leave] = ACTIONS(3055), + [anon_sym_not] = ACTIONS(3055), + [anon_sym_compl] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3057), + [anon_sym_sizeof] = ACTIONS(3055), + [anon_sym___alignof__] = ACTIONS(3055), + [anon_sym___alignof] = ACTIONS(3055), + [anon_sym__alignof] = ACTIONS(3055), + [anon_sym_alignof] = ACTIONS(3055), + [anon_sym__Alignof] = ACTIONS(3055), + [anon_sym_offsetof] = ACTIONS(3055), + [anon_sym__Generic] = ACTIONS(3055), + [anon_sym_asm] = ACTIONS(3055), + [anon_sym___asm__] = ACTIONS(3055), + [anon_sym___asm] = ACTIONS(3055), + [sym_number_literal] = ACTIONS(3057), + [anon_sym_L_SQUOTE] = ACTIONS(3057), + [anon_sym_u_SQUOTE] = ACTIONS(3057), + [anon_sym_U_SQUOTE] = ACTIONS(3057), + [anon_sym_u8_SQUOTE] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3057), + [anon_sym_L_DQUOTE] = ACTIONS(3057), + [anon_sym_u_DQUOTE] = ACTIONS(3057), + [anon_sym_U_DQUOTE] = ACTIONS(3057), + [anon_sym_u8_DQUOTE] = ACTIONS(3057), + [anon_sym_DQUOTE] = ACTIONS(3057), + [sym_true] = ACTIONS(3055), + [sym_false] = ACTIONS(3055), + [anon_sym_NULL] = ACTIONS(3055), + [anon_sym_nullptr] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3055), + [anon_sym_decltype] = ACTIONS(3055), + [anon_sym_explicit] = ACTIONS(3055), + [anon_sym_typename] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(3055), + [anon_sym_try] = ACTIONS(3055), + [anon_sym_delete] = ACTIONS(3055), + [anon_sym_throw] = ACTIONS(3055), + [anon_sym_namespace] = ACTIONS(3055), + [anon_sym_static_assert] = ACTIONS(3055), + [anon_sym_concept] = ACTIONS(3055), + [anon_sym_co_return] = ACTIONS(3055), + [anon_sym_co_yield] = ACTIONS(3055), + [anon_sym_R_DQUOTE] = ACTIONS(3057), + [anon_sym_LR_DQUOTE] = ACTIONS(3057), + [anon_sym_uR_DQUOTE] = ACTIONS(3057), + [anon_sym_UR_DQUOTE] = ACTIONS(3057), + [anon_sym_u8R_DQUOTE] = ACTIONS(3057), + [anon_sym_co_await] = ACTIONS(3055), + [anon_sym_new] = ACTIONS(3055), + [anon_sym_requires] = ACTIONS(3055), + [sym_this] = ACTIONS(3055), }, - [STATE(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(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), + [STATE(727)] = { + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_include_token1] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = ACTIONS(3059), + [anon_sym___attribute] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), + [anon_sym___declspec] = ACTIONS(3059), + [anon_sym___based] = ACTIONS(3059), + [anon_sym___cdecl] = ACTIONS(3059), + [anon_sym___clrcall] = ACTIONS(3059), + [anon_sym___stdcall] = ACTIONS(3059), + [anon_sym___fastcall] = ACTIONS(3059), + [anon_sym___thiscall] = ACTIONS(3059), + [anon_sym___vectorcall] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_signed] = ACTIONS(3059), + [anon_sym_unsigned] = ACTIONS(3059), + [anon_sym_long] = ACTIONS(3059), + [anon_sym_short] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_register] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym___inline] = ACTIONS(3059), + [anon_sym___inline__] = ACTIONS(3059), + [anon_sym___forceinline] = ACTIONS(3059), + [anon_sym_thread_local] = ACTIONS(3059), + [anon_sym___thread] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_constexpr] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(3059), + [anon_sym_restrict] = ACTIONS(3059), + [anon_sym___restrict__] = ACTIONS(3059), + [anon_sym__Atomic] = ACTIONS(3059), + [anon_sym__Noreturn] = ACTIONS(3059), + [anon_sym_noreturn] = ACTIONS(3059), + [anon_sym__Nonnull] = ACTIONS(3059), + [anon_sym_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(3059), + [anon_sym__Alignas] = ACTIONS(3059), + [sym_primitive_type] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_switch] = ACTIONS(3059), + [anon_sym_case] = ACTIONS(3059), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_do] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_goto] = ACTIONS(3059), + [anon_sym___try] = ACTIONS(3059), + [anon_sym___leave] = ACTIONS(3059), + [anon_sym_not] = ACTIONS(3059), + [anon_sym_compl] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_sizeof] = ACTIONS(3059), + [anon_sym___alignof__] = ACTIONS(3059), + [anon_sym___alignof] = ACTIONS(3059), + [anon_sym__alignof] = ACTIONS(3059), + [anon_sym_alignof] = ACTIONS(3059), + [anon_sym__Alignof] = ACTIONS(3059), + [anon_sym_offsetof] = ACTIONS(3059), + [anon_sym__Generic] = ACTIONS(3059), + [anon_sym_asm] = ACTIONS(3059), + [anon_sym___asm__] = ACTIONS(3059), + [anon_sym___asm] = ACTIONS(3059), + [sym_number_literal] = ACTIONS(3061), + [anon_sym_L_SQUOTE] = ACTIONS(3061), + [anon_sym_u_SQUOTE] = ACTIONS(3061), + [anon_sym_U_SQUOTE] = ACTIONS(3061), + [anon_sym_u8_SQUOTE] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_L_DQUOTE] = ACTIONS(3061), + [anon_sym_u_DQUOTE] = ACTIONS(3061), + [anon_sym_U_DQUOTE] = ACTIONS(3061), + [anon_sym_u8_DQUOTE] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [anon_sym_NULL] = ACTIONS(3059), + [anon_sym_nullptr] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3059), + [anon_sym_decltype] = ACTIONS(3059), + [anon_sym_explicit] = ACTIONS(3059), + [anon_sym_typename] = ACTIONS(3059), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_delete] = ACTIONS(3059), + [anon_sym_throw] = ACTIONS(3059), + [anon_sym_namespace] = ACTIONS(3059), + [anon_sym_static_assert] = ACTIONS(3059), + [anon_sym_concept] = ACTIONS(3059), + [anon_sym_co_return] = ACTIONS(3059), + [anon_sym_co_yield] = ACTIONS(3059), + [anon_sym_R_DQUOTE] = ACTIONS(3061), + [anon_sym_LR_DQUOTE] = ACTIONS(3061), + [anon_sym_uR_DQUOTE] = ACTIONS(3061), + [anon_sym_UR_DQUOTE] = ACTIONS(3061), + [anon_sym_u8R_DQUOTE] = ACTIONS(3061), + [anon_sym_co_await] = ACTIONS(3059), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_requires] = ACTIONS(3059), + [sym_this] = ACTIONS(3059), }, - [STATE(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(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), + [STATE(728)] = { + [sym_identifier] = ACTIONS(3333), + [aux_sym_preproc_include_token1] = ACTIONS(3333), + [aux_sym_preproc_def_token1] = ACTIONS(3333), + [aux_sym_preproc_if_token1] = ACTIONS(3333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), + [sym_preproc_directive] = ACTIONS(3333), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym___extension__] = ACTIONS(3333), + [anon_sym_typedef] = ACTIONS(3333), + [anon_sym_virtual] = ACTIONS(3333), + [anon_sym_extern] = ACTIONS(3333), + [anon_sym___attribute__] = ACTIONS(3333), + [anon_sym___attribute] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3336), + [anon_sym___declspec] = ACTIONS(3333), + [anon_sym___based] = ACTIONS(3333), + [anon_sym___cdecl] = ACTIONS(3333), + [anon_sym___clrcall] = ACTIONS(3333), + [anon_sym___stdcall] = ACTIONS(3333), + [anon_sym___fastcall] = ACTIONS(3333), + [anon_sym___thiscall] = ACTIONS(3333), + [anon_sym___vectorcall] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3333), + [anon_sym_unsigned] = ACTIONS(3333), + [anon_sym_long] = ACTIONS(3333), + [anon_sym_short] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_register] = ACTIONS(3333), + [anon_sym_inline] = ACTIONS(3333), + [anon_sym___inline] = ACTIONS(3333), + [anon_sym___inline__] = ACTIONS(3333), + [anon_sym___forceinline] = ACTIONS(3333), + [anon_sym_thread_local] = ACTIONS(3333), + [anon_sym___thread] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_constexpr] = ACTIONS(3333), + [anon_sym_volatile] = ACTIONS(3333), + [anon_sym_restrict] = ACTIONS(3333), + [anon_sym___restrict__] = ACTIONS(3333), + [anon_sym__Atomic] = ACTIONS(3333), + [anon_sym__Noreturn] = ACTIONS(3333), + [anon_sym_noreturn] = ACTIONS(3333), + [anon_sym__Nonnull] = ACTIONS(3333), + [anon_sym_mutable] = ACTIONS(3333), + [anon_sym_constinit] = ACTIONS(3333), + [anon_sym_consteval] = ACTIONS(3333), + [anon_sym_alignas] = ACTIONS(3333), + [anon_sym__Alignas] = ACTIONS(3333), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_struct] = ACTIONS(3333), + [anon_sym_union] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3333), + [anon_sym_default] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_goto] = ACTIONS(3333), + [anon_sym___try] = ACTIONS(3333), + [anon_sym___leave] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3333), + [anon_sym_compl] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3333), + [anon_sym___alignof__] = ACTIONS(3333), + [anon_sym___alignof] = ACTIONS(3333), + [anon_sym__alignof] = ACTIONS(3333), + [anon_sym_alignof] = ACTIONS(3333), + [anon_sym__Alignof] = ACTIONS(3333), + [anon_sym_offsetof] = ACTIONS(3333), + [anon_sym__Generic] = ACTIONS(3333), + [anon_sym_asm] = ACTIONS(3333), + [anon_sym___asm__] = ACTIONS(3333), + [anon_sym___asm] = ACTIONS(3333), + [sym_number_literal] = ACTIONS(3336), + [anon_sym_L_SQUOTE] = ACTIONS(3336), + [anon_sym_u_SQUOTE] = ACTIONS(3336), + [anon_sym_U_SQUOTE] = ACTIONS(3336), + [anon_sym_u8_SQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_L_DQUOTE] = ACTIONS(3336), + [anon_sym_u_DQUOTE] = ACTIONS(3336), + [anon_sym_U_DQUOTE] = ACTIONS(3336), + [anon_sym_u8_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [anon_sym_NULL] = ACTIONS(3333), + [anon_sym_nullptr] = ACTIONS(3333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3333), + [anon_sym_decltype] = ACTIONS(3333), + [anon_sym_explicit] = ACTIONS(3333), + [anon_sym_typename] = ACTIONS(3333), + [anon_sym_template] = ACTIONS(3333), + [anon_sym_operator] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_static_assert] = ACTIONS(3333), + [anon_sym_concept] = ACTIONS(3333), + [anon_sym_co_return] = ACTIONS(3333), + [anon_sym_co_yield] = ACTIONS(3333), + [anon_sym_R_DQUOTE] = ACTIONS(3336), + [anon_sym_LR_DQUOTE] = ACTIONS(3336), + [anon_sym_uR_DQUOTE] = ACTIONS(3336), + [anon_sym_UR_DQUOTE] = ACTIONS(3336), + [anon_sym_u8R_DQUOTE] = ACTIONS(3336), + [anon_sym_co_await] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_requires] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), }, - [STATE(762)] = { + [STATE(729)] = { + [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), + }, + [STATE(730)] = { + [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), + }, + [STATE(731)] = { + [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(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), + }, + [STATE(732)] = { + [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), + [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), + }, + [STATE(733)] = { [sym_identifier] = ACTIONS(3083), [aux_sym_preproc_include_token1] = ACTIONS(3083), [aux_sym_preproc_def_token1] = ACTIONS(3083), @@ -151154,31 +147272,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), + [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), + }, + [STATE(734)] = { + [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), }, - [STATE(763)] = { + [STATE(735)] = { [sym_identifier] = ACTIONS(3087), [aux_sym_preproc_include_token1] = ACTIONS(3087), [aux_sym_preproc_def_token1] = ACTIONS(3087), @@ -151314,7 +147568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3087), [sym_this] = ACTIONS(3087), }, - [STATE(764)] = { + [STATE(736)] = { [sym_identifier] = ACTIONS(3091), [aux_sym_preproc_include_token1] = ACTIONS(3091), [aux_sym_preproc_def_token1] = ACTIONS(3091), @@ -151450,143 +147704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(3091), [sym_this] = ACTIONS(3091), }, - [STATE(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(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), - }, - [STATE(766)] = { + [STATE(737)] = { [sym_identifier] = ACTIONS(3095), [aux_sym_preproc_include_token1] = ACTIONS(3095), [aux_sym_preproc_def_token1] = ACTIONS(3095), @@ -151698,307 +147816,1668 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [STATE(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), + [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), + }, + [STATE(738)] = { + [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(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), + }, + [STATE(739)] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_include_token1] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym___attribute] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym___cdecl] = ACTIONS(3099), + [anon_sym___clrcall] = ACTIONS(3099), + [anon_sym___stdcall] = ACTIONS(3099), + [anon_sym___fastcall] = ACTIONS(3099), + [anon_sym___thiscall] = ACTIONS(3099), + [anon_sym___vectorcall] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym__Nonnull] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym__Alignas] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_do] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym___try] = ACTIONS(3099), + [anon_sym___leave] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [anon_sym___asm] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_throw] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + [anon_sym_concept] = ACTIONS(3099), + [anon_sym_co_return] = ACTIONS(3099), + [anon_sym_co_yield] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), + }, + [STATE(740)] = { + [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), + }, + [STATE(741)] = { + [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), + }, + [STATE(742)] = { + [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), + }, + [STATE(743)] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_include_token1] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym___attribute] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym___cdecl] = ACTIONS(3103), + [anon_sym___clrcall] = ACTIONS(3103), + [anon_sym___stdcall] = ACTIONS(3103), + [anon_sym___fastcall] = ACTIONS(3103), + [anon_sym___thiscall] = ACTIONS(3103), + [anon_sym___vectorcall] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym__Nonnull] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym__Alignas] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_do] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym___try] = ACTIONS(3103), + [anon_sym___leave] = ACTIONS(3103), + [anon_sym_not] = ACTIONS(3103), + [anon_sym_compl] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3105), + [anon_sym_sizeof] = ACTIONS(3103), + [anon_sym___alignof__] = ACTIONS(3103), + [anon_sym___alignof] = ACTIONS(3103), + [anon_sym__alignof] = ACTIONS(3103), + [anon_sym_alignof] = ACTIONS(3103), + [anon_sym__Alignof] = ACTIONS(3103), + [anon_sym_offsetof] = ACTIONS(3103), + [anon_sym__Generic] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym___asm__] = ACTIONS(3103), + [anon_sym___asm] = ACTIONS(3103), + [sym_number_literal] = ACTIONS(3105), + [anon_sym_L_SQUOTE] = ACTIONS(3105), + [anon_sym_u_SQUOTE] = ACTIONS(3105), + [anon_sym_U_SQUOTE] = ACTIONS(3105), + [anon_sym_u8_SQUOTE] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3105), + [anon_sym_L_DQUOTE] = ACTIONS(3105), + [anon_sym_u_DQUOTE] = ACTIONS(3105), + [anon_sym_U_DQUOTE] = ACTIONS(3105), + [anon_sym_u8_DQUOTE] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(3105), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [anon_sym_NULL] = ACTIONS(3103), + [anon_sym_nullptr] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [anon_sym_delete] = ACTIONS(3103), + [anon_sym_throw] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + [anon_sym_concept] = ACTIONS(3103), + [anon_sym_co_return] = ACTIONS(3103), + [anon_sym_co_yield] = ACTIONS(3103), + [anon_sym_R_DQUOTE] = ACTIONS(3105), + [anon_sym_LR_DQUOTE] = ACTIONS(3105), + [anon_sym_uR_DQUOTE] = ACTIONS(3105), + [anon_sym_UR_DQUOTE] = ACTIONS(3105), + [anon_sym_u8R_DQUOTE] = ACTIONS(3105), + [anon_sym_co_await] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_requires] = ACTIONS(3103), + [sym_this] = ACTIONS(3103), + }, + [STATE(744)] = { + [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), + }, + [STATE(745)] = { + [sym_identifier] = ACTIONS(3128), + [aux_sym_preproc_include_token1] = ACTIONS(3128), + [aux_sym_preproc_def_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), + [sym_preproc_directive] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_AMP_AMP] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_typedef] = ACTIONS(3128), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym___cdecl] = ACTIONS(3128), + [anon_sym___clrcall] = ACTIONS(3128), + [anon_sym___stdcall] = ACTIONS(3128), + [anon_sym___fastcall] = ACTIONS(3128), + [anon_sym___thiscall] = ACTIONS(3128), + [anon_sym___vectorcall] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_case] = ACTIONS(3128), + [anon_sym_default] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_goto] = ACTIONS(3128), + [anon_sym___try] = ACTIONS(3128), + [anon_sym___leave] = ACTIONS(3128), + [anon_sym_not] = ACTIONS(3128), + [anon_sym_compl] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3130), + [anon_sym_sizeof] = ACTIONS(3128), + [anon_sym___alignof__] = ACTIONS(3128), + [anon_sym___alignof] = ACTIONS(3128), + [anon_sym__alignof] = ACTIONS(3128), + [anon_sym_alignof] = ACTIONS(3128), + [anon_sym__Alignof] = ACTIONS(3128), + [anon_sym_offsetof] = ACTIONS(3128), + [anon_sym__Generic] = ACTIONS(3128), + [anon_sym_asm] = ACTIONS(3128), + [anon_sym___asm__] = ACTIONS(3128), + [anon_sym___asm] = ACTIONS(3128), + [sym_number_literal] = ACTIONS(3130), + [anon_sym_L_SQUOTE] = ACTIONS(3130), + [anon_sym_u_SQUOTE] = ACTIONS(3130), + [anon_sym_U_SQUOTE] = ACTIONS(3130), + [anon_sym_u8_SQUOTE] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3130), + [anon_sym_L_DQUOTE] = ACTIONS(3130), + [anon_sym_u_DQUOTE] = ACTIONS(3130), + [anon_sym_U_DQUOTE] = ACTIONS(3130), + [anon_sym_u8_DQUOTE] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(3130), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [anon_sym_NULL] = ACTIONS(3128), + [anon_sym_nullptr] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3128), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_typename] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3128), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_static_assert] = ACTIONS(3128), + [anon_sym_concept] = ACTIONS(3128), + [anon_sym_co_return] = ACTIONS(3128), + [anon_sym_co_yield] = ACTIONS(3128), + [anon_sym_R_DQUOTE] = ACTIONS(3130), + [anon_sym_LR_DQUOTE] = ACTIONS(3130), + [anon_sym_uR_DQUOTE] = ACTIONS(3130), + [anon_sym_UR_DQUOTE] = ACTIONS(3130), + [anon_sym_u8R_DQUOTE] = ACTIONS(3130), + [anon_sym_co_await] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_requires] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), + }, + [STATE(746)] = { + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_include_token1] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), + [sym_preproc_directive] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3132), + [anon_sym_virtual] = ACTIONS(3132), + [anon_sym_extern] = ACTIONS(3132), + [anon_sym___attribute__] = ACTIONS(3132), + [anon_sym___attribute] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), + [anon_sym___declspec] = ACTIONS(3132), + [anon_sym___based] = ACTIONS(3132), + [anon_sym___cdecl] = ACTIONS(3132), + [anon_sym___clrcall] = ACTIONS(3132), + [anon_sym___stdcall] = ACTIONS(3132), + [anon_sym___fastcall] = ACTIONS(3132), + [anon_sym___thiscall] = ACTIONS(3132), + [anon_sym___vectorcall] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3134), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_signed] = ACTIONS(3132), + [anon_sym_unsigned] = ACTIONS(3132), + [anon_sym_long] = ACTIONS(3132), + [anon_sym_short] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_register] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym___inline] = ACTIONS(3132), + [anon_sym___inline__] = ACTIONS(3132), + [anon_sym___forceinline] = ACTIONS(3132), + [anon_sym_thread_local] = ACTIONS(3132), + [anon_sym___thread] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_constexpr] = ACTIONS(3132), + [anon_sym_volatile] = ACTIONS(3132), + [anon_sym_restrict] = ACTIONS(3132), + [anon_sym___restrict__] = ACTIONS(3132), + [anon_sym__Atomic] = ACTIONS(3132), + [anon_sym__Noreturn] = ACTIONS(3132), + [anon_sym_noreturn] = ACTIONS(3132), + [anon_sym__Nonnull] = ACTIONS(3132), + [anon_sym_mutable] = ACTIONS(3132), + [anon_sym_constinit] = ACTIONS(3132), + [anon_sym_consteval] = ACTIONS(3132), + [anon_sym_alignas] = ACTIONS(3132), + [anon_sym__Alignas] = ACTIONS(3132), + [sym_primitive_type] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3132), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_goto] = ACTIONS(3132), + [anon_sym___try] = ACTIONS(3132), + [anon_sym___leave] = ACTIONS(3132), + [anon_sym_not] = ACTIONS(3132), + [anon_sym_compl] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3134), + [anon_sym_sizeof] = ACTIONS(3132), + [anon_sym___alignof__] = ACTIONS(3132), + [anon_sym___alignof] = ACTIONS(3132), + [anon_sym__alignof] = ACTIONS(3132), + [anon_sym_alignof] = ACTIONS(3132), + [anon_sym__Alignof] = ACTIONS(3132), + [anon_sym_offsetof] = ACTIONS(3132), + [anon_sym__Generic] = ACTIONS(3132), + [anon_sym_asm] = ACTIONS(3132), + [anon_sym___asm__] = ACTIONS(3132), + [anon_sym___asm] = ACTIONS(3132), + [sym_number_literal] = ACTIONS(3134), + [anon_sym_L_SQUOTE] = ACTIONS(3134), + [anon_sym_u_SQUOTE] = ACTIONS(3134), + [anon_sym_U_SQUOTE] = ACTIONS(3134), + [anon_sym_u8_SQUOTE] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(3134), + [anon_sym_L_DQUOTE] = ACTIONS(3134), + [anon_sym_u_DQUOTE] = ACTIONS(3134), + [anon_sym_U_DQUOTE] = ACTIONS(3134), + [anon_sym_u8_DQUOTE] = ACTIONS(3134), + [anon_sym_DQUOTE] = ACTIONS(3134), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [anon_sym_NULL] = ACTIONS(3132), + [anon_sym_nullptr] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3132), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3132), + [anon_sym_typename] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_static_assert] = ACTIONS(3132), + [anon_sym_concept] = ACTIONS(3132), + [anon_sym_co_return] = ACTIONS(3132), + [anon_sym_co_yield] = ACTIONS(3132), + [anon_sym_R_DQUOTE] = ACTIONS(3134), + [anon_sym_LR_DQUOTE] = ACTIONS(3134), + [anon_sym_uR_DQUOTE] = ACTIONS(3134), + [anon_sym_UR_DQUOTE] = ACTIONS(3134), + [anon_sym_u8R_DQUOTE] = ACTIONS(3134), + [anon_sym_co_await] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_requires] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), + }, + [STATE(747)] = { + [sym_identifier] = ACTIONS(3333), + [aux_sym_preproc_include_token1] = ACTIONS(3333), + [aux_sym_preproc_def_token1] = ACTIONS(3333), + [aux_sym_preproc_if_token1] = ACTIONS(3333), + [aux_sym_preproc_if_token2] = ACTIONS(3333), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3333), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3333), + [sym_preproc_directive] = ACTIONS(3333), + [anon_sym_LPAREN2] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym___extension__] = ACTIONS(3333), + [anon_sym_typedef] = ACTIONS(3333), + [anon_sym_virtual] = ACTIONS(3333), + [anon_sym_extern] = ACTIONS(3333), + [anon_sym___attribute__] = ACTIONS(3333), + [anon_sym___attribute] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_COLON_COLON] = ACTIONS(3336), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3336), + [anon_sym___declspec] = ACTIONS(3333), + [anon_sym___based] = ACTIONS(3333), + [anon_sym___cdecl] = ACTIONS(3333), + [anon_sym___clrcall] = ACTIONS(3333), + [anon_sym___stdcall] = ACTIONS(3333), + [anon_sym___fastcall] = ACTIONS(3333), + [anon_sym___thiscall] = ACTIONS(3333), + [anon_sym___vectorcall] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_signed] = ACTIONS(3333), + [anon_sym_unsigned] = ACTIONS(3333), + [anon_sym_long] = ACTIONS(3333), + [anon_sym_short] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_register] = ACTIONS(3333), + [anon_sym_inline] = ACTIONS(3333), + [anon_sym___inline] = ACTIONS(3333), + [anon_sym___inline__] = ACTIONS(3333), + [anon_sym___forceinline] = ACTIONS(3333), + [anon_sym_thread_local] = ACTIONS(3333), + [anon_sym___thread] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_constexpr] = ACTIONS(3333), + [anon_sym_volatile] = ACTIONS(3333), + [anon_sym_restrict] = ACTIONS(3333), + [anon_sym___restrict__] = ACTIONS(3333), + [anon_sym__Atomic] = ACTIONS(3333), + [anon_sym__Noreturn] = ACTIONS(3333), + [anon_sym_noreturn] = ACTIONS(3333), + [anon_sym__Nonnull] = ACTIONS(3333), + [anon_sym_mutable] = ACTIONS(3333), + [anon_sym_constinit] = ACTIONS(3333), + [anon_sym_consteval] = ACTIONS(3333), + [anon_sym_alignas] = ACTIONS(3333), + [anon_sym__Alignas] = ACTIONS(3333), + [sym_primitive_type] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_struct] = ACTIONS(3333), + [anon_sym_union] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3333), + [anon_sym_default] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_goto] = ACTIONS(3333), + [anon_sym___try] = ACTIONS(3333), + [anon_sym___leave] = ACTIONS(3333), + [anon_sym_not] = ACTIONS(3333), + [anon_sym_compl] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_sizeof] = ACTIONS(3333), + [anon_sym___alignof__] = ACTIONS(3333), + [anon_sym___alignof] = ACTIONS(3333), + [anon_sym__alignof] = ACTIONS(3333), + [anon_sym_alignof] = ACTIONS(3333), + [anon_sym__Alignof] = ACTIONS(3333), + [anon_sym_offsetof] = ACTIONS(3333), + [anon_sym__Generic] = ACTIONS(3333), + [anon_sym_asm] = ACTIONS(3333), + [anon_sym___asm__] = ACTIONS(3333), + [anon_sym___asm] = ACTIONS(3333), + [sym_number_literal] = ACTIONS(3336), + [anon_sym_L_SQUOTE] = ACTIONS(3336), + [anon_sym_u_SQUOTE] = ACTIONS(3336), + [anon_sym_U_SQUOTE] = ACTIONS(3336), + [anon_sym_u8_SQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [anon_sym_L_DQUOTE] = ACTIONS(3336), + [anon_sym_u_DQUOTE] = ACTIONS(3336), + [anon_sym_U_DQUOTE] = ACTIONS(3336), + [anon_sym_u8_DQUOTE] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [anon_sym_NULL] = ACTIONS(3333), + [anon_sym_nullptr] = ACTIONS(3333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3333), + [anon_sym_decltype] = ACTIONS(3333), + [anon_sym_explicit] = ACTIONS(3333), + [anon_sym_typename] = ACTIONS(3333), + [anon_sym_template] = ACTIONS(3333), + [anon_sym_operator] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_static_assert] = ACTIONS(3333), + [anon_sym_concept] = ACTIONS(3333), + [anon_sym_co_return] = ACTIONS(3333), + [anon_sym_co_yield] = ACTIONS(3333), + [anon_sym_R_DQUOTE] = ACTIONS(3336), + [anon_sym_LR_DQUOTE] = ACTIONS(3336), + [anon_sym_uR_DQUOTE] = ACTIONS(3336), + [anon_sym_UR_DQUOTE] = ACTIONS(3336), + [anon_sym_u8R_DQUOTE] = ACTIONS(3336), + [anon_sym_co_await] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_requires] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + }, + [STATE(748)] = { + [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), }, - [STATE(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), + [STATE(749)] = { + [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), }, - [STATE(769)] = { + [STATE(750)] = { [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), @@ -152029,7 +149508,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), @@ -152130,5179 +149608,5588 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(2783), [sym_this] = ACTIONS(2783), }, - [STATE(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), + [STATE(751)] = { + [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), + [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), }, - [STATE(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), + [STATE(752)] = { + [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), + [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), }, - [STATE(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), + [STATE(753)] = { + [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), [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), + [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), + }, + [STATE(754)] = { + [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), + }, + [STATE(755)] = { + [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(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), }, - [STATE(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), + [STATE(756)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(757)] = { + [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(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(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), }, - [STATE(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), + [STATE(758)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(759)] = { + [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(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(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), }, - [STATE(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), + [STATE(760)] = { + [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(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(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), }, - [STATE(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), + [STATE(761)] = { + [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(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(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), }, - [STATE(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), + [STATE(762)] = { + [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(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(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), }, - [STATE(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), + [STATE(763)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(764)] = { + [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(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), }, - [STATE(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), + [STATE(765)] = { + [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), }, - [STATE(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), + [STATE(766)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(767)] = { + [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(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(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), + }, + [STATE(768)] = { + [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), }, - [STATE(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), + [STATE(769)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(770)] = { + [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(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(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), }, - [STATE(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), + [STATE(771)] = { + [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(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(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), }, - [STATE(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), + [STATE(772)] = { + [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_if_token2] = 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___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(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(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), }, - [STATE(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), + [STATE(773)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(774)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(775)] = { + [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(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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(776)] = { + [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(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(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), }, - [STATE(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), + [STATE(777)] = { + [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(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(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), }, - [STATE(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), + [STATE(778)] = { + [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(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(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), }, - [STATE(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), - [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), + [STATE(779)] = { + [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(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), + }, + [STATE(780)] = { + [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(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(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), }, - [STATE(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), + [STATE(781)] = { + [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(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(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), }, - [STATE(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), - [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), + [STATE(782)] = { + [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_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(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), }, - [STATE(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), - [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), + [STATE(783)] = { + [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_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(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), }, - [STATE(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), - [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), + [STATE(784)] = { + [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(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(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), }, - [STATE(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), - [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), + [STATE(785)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(786)] = { + [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(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(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), }, - [STATE(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), + [STATE(787)] = { + [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(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(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), }, - [STATE(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), - [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), + [STATE(788)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(789)] = { + [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(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(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), }, - [STATE(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), + [STATE(790)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(791)] = { + [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(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(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), }, - [STATE(808)] = { + [STATE(792)] = { [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), @@ -157333,7 +155220,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -157410,3053 +155296,3657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(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), + }, + [STATE(793)] = { + [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), }, - [STATE(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), + [STATE(794)] = { + [sym_identifier] = ACTIONS(2979), + [aux_sym_preproc_include_token1] = ACTIONS(2979), + [aux_sym_preproc_def_token1] = ACTIONS(2979), + [aux_sym_preproc_if_token1] = ACTIONS(2979), + [aux_sym_preproc_if_token2] = ACTIONS(2979), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2979), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2979), + [sym_preproc_directive] = ACTIONS(2979), + [anon_sym_LPAREN2] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2979), + [anon_sym_PLUS] = ACTIONS(2979), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_AMP_AMP] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym___extension__] = ACTIONS(2979), + [anon_sym_typedef] = ACTIONS(2979), + [anon_sym_virtual] = ACTIONS(2979), + [anon_sym_extern] = ACTIONS(2979), + [anon_sym___attribute__] = ACTIONS(2979), + [anon_sym___attribute] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2979), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2981), + [anon_sym___declspec] = ACTIONS(2979), + [anon_sym___based] = ACTIONS(2979), + [anon_sym___cdecl] = ACTIONS(2979), + [anon_sym___clrcall] = ACTIONS(2979), + [anon_sym___stdcall] = ACTIONS(2979), + [anon_sym___fastcall] = ACTIONS(2979), + [anon_sym___thiscall] = ACTIONS(2979), + [anon_sym___vectorcall] = ACTIONS(2979), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_signed] = ACTIONS(2979), + [anon_sym_unsigned] = ACTIONS(2979), + [anon_sym_long] = ACTIONS(2979), + [anon_sym_short] = ACTIONS(2979), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_register] = ACTIONS(2979), + [anon_sym_inline] = ACTIONS(2979), + [anon_sym___inline] = ACTIONS(2979), + [anon_sym___inline__] = ACTIONS(2979), + [anon_sym___forceinline] = ACTIONS(2979), + [anon_sym_thread_local] = ACTIONS(2979), + [anon_sym___thread] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_constexpr] = ACTIONS(2979), + [anon_sym_volatile] = ACTIONS(2979), + [anon_sym_restrict] = ACTIONS(2979), + [anon_sym___restrict__] = ACTIONS(2979), + [anon_sym__Atomic] = ACTIONS(2979), + [anon_sym__Noreturn] = ACTIONS(2979), + [anon_sym_noreturn] = ACTIONS(2979), + [anon_sym__Nonnull] = ACTIONS(2979), + [anon_sym_mutable] = ACTIONS(2979), + [anon_sym_constinit] = ACTIONS(2979), + [anon_sym_consteval] = ACTIONS(2979), + [anon_sym_alignas] = ACTIONS(2979), + [anon_sym__Alignas] = ACTIONS(2979), + [sym_primitive_type] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), + [anon_sym_class] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_union] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2979), + [anon_sym_case] = ACTIONS(2979), + [anon_sym_default] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_do] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_goto] = ACTIONS(2979), + [anon_sym___try] = ACTIONS(2979), + [anon_sym___leave] = ACTIONS(2979), + [anon_sym_not] = ACTIONS(2979), + [anon_sym_compl] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2981), + [anon_sym_sizeof] = ACTIONS(2979), + [anon_sym___alignof__] = ACTIONS(2979), + [anon_sym___alignof] = ACTIONS(2979), + [anon_sym__alignof] = ACTIONS(2979), + [anon_sym_alignof] = ACTIONS(2979), + [anon_sym__Alignof] = ACTIONS(2979), + [anon_sym_offsetof] = ACTIONS(2979), + [anon_sym__Generic] = ACTIONS(2979), + [anon_sym_asm] = ACTIONS(2979), + [anon_sym___asm__] = ACTIONS(2979), + [anon_sym___asm] = ACTIONS(2979), + [sym_number_literal] = ACTIONS(2981), + [anon_sym_L_SQUOTE] = ACTIONS(2981), + [anon_sym_u_SQUOTE] = ACTIONS(2981), + [anon_sym_U_SQUOTE] = ACTIONS(2981), + [anon_sym_u8_SQUOTE] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2981), + [anon_sym_L_DQUOTE] = ACTIONS(2981), + [anon_sym_u_DQUOTE] = ACTIONS(2981), + [anon_sym_U_DQUOTE] = ACTIONS(2981), + [anon_sym_u8_DQUOTE] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2981), + [sym_true] = ACTIONS(2979), + [sym_false] = ACTIONS(2979), + [anon_sym_NULL] = ACTIONS(2979), + [anon_sym_nullptr] = ACTIONS(2979), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2979), + [anon_sym_decltype] = ACTIONS(2979), + [anon_sym_explicit] = ACTIONS(2979), + [anon_sym_typename] = ACTIONS(2979), + [anon_sym_template] = ACTIONS(2979), + [anon_sym_operator] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [anon_sym_delete] = ACTIONS(2979), + [anon_sym_throw] = ACTIONS(2979), + [anon_sym_namespace] = ACTIONS(2979), + [anon_sym_static_assert] = ACTIONS(2979), + [anon_sym_concept] = ACTIONS(2979), + [anon_sym_co_return] = ACTIONS(2979), + [anon_sym_co_yield] = ACTIONS(2979), + [anon_sym_R_DQUOTE] = ACTIONS(2981), + [anon_sym_LR_DQUOTE] = ACTIONS(2981), + [anon_sym_uR_DQUOTE] = ACTIONS(2981), + [anon_sym_UR_DQUOTE] = ACTIONS(2981), + [anon_sym_u8R_DQUOTE] = ACTIONS(2981), + [anon_sym_co_await] = ACTIONS(2979), + [anon_sym_new] = ACTIONS(2979), + [anon_sym_requires] = ACTIONS(2979), + [sym_this] = ACTIONS(2979), + }, + [STATE(795)] = { + [sym_identifier] = ACTIONS(2983), + [aux_sym_preproc_include_token1] = ACTIONS(2983), + [aux_sym_preproc_def_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token1] = ACTIONS(2983), + [aux_sym_preproc_if_token2] = ACTIONS(2983), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2983), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2983), + [sym_preproc_directive] = ACTIONS(2983), + [anon_sym_LPAREN2] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2983), + [anon_sym_PLUS] = ACTIONS(2983), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym___extension__] = ACTIONS(2983), + [anon_sym_typedef] = ACTIONS(2983), + [anon_sym_virtual] = ACTIONS(2983), + [anon_sym_extern] = ACTIONS(2983), + [anon_sym___attribute__] = ACTIONS(2983), + [anon_sym___attribute] = ACTIONS(2983), + [anon_sym_using] = ACTIONS(2983), + [anon_sym_COLON_COLON] = ACTIONS(2985), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2985), + [anon_sym___declspec] = ACTIONS(2983), + [anon_sym___based] = ACTIONS(2983), + [anon_sym___cdecl] = ACTIONS(2983), + [anon_sym___clrcall] = ACTIONS(2983), + [anon_sym___stdcall] = ACTIONS(2983), + [anon_sym___fastcall] = ACTIONS(2983), + [anon_sym___thiscall] = ACTIONS(2983), + [anon_sym___vectorcall] = ACTIONS(2983), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_signed] = ACTIONS(2983), + [anon_sym_unsigned] = ACTIONS(2983), + [anon_sym_long] = ACTIONS(2983), + [anon_sym_short] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_static] = ACTIONS(2983), + [anon_sym_register] = ACTIONS(2983), + [anon_sym_inline] = ACTIONS(2983), + [anon_sym___inline] = ACTIONS(2983), + [anon_sym___inline__] = ACTIONS(2983), + [anon_sym___forceinline] = ACTIONS(2983), + [anon_sym_thread_local] = ACTIONS(2983), + [anon_sym___thread] = ACTIONS(2983), + [anon_sym_const] = ACTIONS(2983), + [anon_sym_constexpr] = ACTIONS(2983), + [anon_sym_volatile] = ACTIONS(2983), + [anon_sym_restrict] = ACTIONS(2983), + [anon_sym___restrict__] = ACTIONS(2983), + [anon_sym__Atomic] = ACTIONS(2983), + [anon_sym__Noreturn] = ACTIONS(2983), + [anon_sym_noreturn] = ACTIONS(2983), + [anon_sym__Nonnull] = ACTIONS(2983), + [anon_sym_mutable] = ACTIONS(2983), + [anon_sym_constinit] = ACTIONS(2983), + [anon_sym_consteval] = ACTIONS(2983), + [anon_sym_alignas] = ACTIONS(2983), + [anon_sym__Alignas] = ACTIONS(2983), + [sym_primitive_type] = ACTIONS(2983), + [anon_sym_enum] = ACTIONS(2983), + [anon_sym_class] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_union] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2983), + [anon_sym_case] = ACTIONS(2983), + [anon_sym_default] = ACTIONS(2983), + [anon_sym_while] = ACTIONS(2983), + [anon_sym_do] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_goto] = ACTIONS(2983), + [anon_sym___try] = ACTIONS(2983), + [anon_sym___leave] = ACTIONS(2983), + [anon_sym_not] = ACTIONS(2983), + [anon_sym_compl] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_sizeof] = ACTIONS(2983), + [anon_sym___alignof__] = ACTIONS(2983), + [anon_sym___alignof] = ACTIONS(2983), + [anon_sym__alignof] = ACTIONS(2983), + [anon_sym_alignof] = ACTIONS(2983), + [anon_sym__Alignof] = ACTIONS(2983), + [anon_sym_offsetof] = ACTIONS(2983), + [anon_sym__Generic] = ACTIONS(2983), + [anon_sym_asm] = ACTIONS(2983), + [anon_sym___asm__] = ACTIONS(2983), + [anon_sym___asm] = ACTIONS(2983), + [sym_number_literal] = ACTIONS(2985), + [anon_sym_L_SQUOTE] = ACTIONS(2985), + [anon_sym_u_SQUOTE] = ACTIONS(2985), + [anon_sym_U_SQUOTE] = ACTIONS(2985), + [anon_sym_u8_SQUOTE] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2985), + [anon_sym_L_DQUOTE] = ACTIONS(2985), + [anon_sym_u_DQUOTE] = ACTIONS(2985), + [anon_sym_U_DQUOTE] = ACTIONS(2985), + [anon_sym_u8_DQUOTE] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2985), + [sym_true] = ACTIONS(2983), + [sym_false] = ACTIONS(2983), + [anon_sym_NULL] = ACTIONS(2983), + [anon_sym_nullptr] = ACTIONS(2983), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2983), + [anon_sym_decltype] = ACTIONS(2983), + [anon_sym_explicit] = ACTIONS(2983), + [anon_sym_typename] = ACTIONS(2983), + [anon_sym_template] = ACTIONS(2983), + [anon_sym_operator] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2983), + [anon_sym_delete] = ACTIONS(2983), + [anon_sym_throw] = ACTIONS(2983), + [anon_sym_namespace] = ACTIONS(2983), + [anon_sym_static_assert] = ACTIONS(2983), + [anon_sym_concept] = ACTIONS(2983), + [anon_sym_co_return] = ACTIONS(2983), + [anon_sym_co_yield] = ACTIONS(2983), + [anon_sym_R_DQUOTE] = ACTIONS(2985), + [anon_sym_LR_DQUOTE] = ACTIONS(2985), + [anon_sym_uR_DQUOTE] = ACTIONS(2985), + [anon_sym_UR_DQUOTE] = ACTIONS(2985), + [anon_sym_u8R_DQUOTE] = ACTIONS(2985), + [anon_sym_co_await] = ACTIONS(2983), + [anon_sym_new] = ACTIONS(2983), + [anon_sym_requires] = ACTIONS(2983), + [sym_this] = ACTIONS(2983), + }, + [STATE(796)] = { + [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(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(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), }, - [STATE(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), - [aux_sym_preproc_if_token2] = ACTIONS(1944), - [aux_sym_preproc_else_token1] = ACTIONS(1944), - [aux_sym_preproc_elif_token1] = ACTIONS(1942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1944), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1944), - [anon_sym_LPAREN2] = ACTIONS(1944), - [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), - [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___extension__] = ACTIONS(3619), - [anon_sym_COLON_COLON] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_LBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(1944), - [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), - [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(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_DOT] = ACTIONS(1942), - [anon_sym_DOT_STAR] = ACTIONS(1944), - [anon_sym_DASH_GT] = ACTIONS(1944), - [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), + [STATE(797)] = { + [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), - [anon_sym_decltype] = ACTIONS(1978), - [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), + [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), }, - [STATE(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(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(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(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), + [STATE(798)] = { + [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), [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), + [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), }, - [STATE(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(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(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(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(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), + [STATE(799)] = { + [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), + }, + [STATE(800)] = { + [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(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), + [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), }, - [STATE(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(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(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(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), + [STATE(801)] = { + [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(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), - }, - [STATE(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), + [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), }, - [STATE(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(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(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(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(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), + [STATE(802)] = { + [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(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), + [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), }, - [STATE(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(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(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(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), + [STATE(803)] = { + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_include_token1] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token2] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3059), + [anon_sym_PLUS] = ACTIONS(3059), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = ACTIONS(3059), + [anon_sym___attribute] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), + [anon_sym___declspec] = ACTIONS(3059), + [anon_sym___based] = ACTIONS(3059), + [anon_sym___cdecl] = ACTIONS(3059), + [anon_sym___clrcall] = ACTIONS(3059), + [anon_sym___stdcall] = ACTIONS(3059), + [anon_sym___fastcall] = ACTIONS(3059), + [anon_sym___thiscall] = ACTIONS(3059), + [anon_sym___vectorcall] = ACTIONS(3059), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_signed] = ACTIONS(3059), + [anon_sym_unsigned] = ACTIONS(3059), + [anon_sym_long] = ACTIONS(3059), + [anon_sym_short] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_register] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym___inline] = ACTIONS(3059), + [anon_sym___inline__] = ACTIONS(3059), + [anon_sym___forceinline] = ACTIONS(3059), + [anon_sym_thread_local] = ACTIONS(3059), + [anon_sym___thread] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_constexpr] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(3059), + [anon_sym_restrict] = ACTIONS(3059), + [anon_sym___restrict__] = ACTIONS(3059), + [anon_sym__Atomic] = ACTIONS(3059), + [anon_sym__Noreturn] = ACTIONS(3059), + [anon_sym_noreturn] = ACTIONS(3059), + [anon_sym__Nonnull] = ACTIONS(3059), + [anon_sym_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(3059), + [anon_sym__Alignas] = ACTIONS(3059), + [sym_primitive_type] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_switch] = ACTIONS(3059), + [anon_sym_case] = ACTIONS(3059), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_do] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_goto] = ACTIONS(3059), + [anon_sym___try] = ACTIONS(3059), + [anon_sym___leave] = ACTIONS(3059), + [anon_sym_not] = ACTIONS(3059), + [anon_sym_compl] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_sizeof] = ACTIONS(3059), + [anon_sym___alignof__] = ACTIONS(3059), + [anon_sym___alignof] = ACTIONS(3059), + [anon_sym__alignof] = ACTIONS(3059), + [anon_sym_alignof] = ACTIONS(3059), + [anon_sym__Alignof] = ACTIONS(3059), + [anon_sym_offsetof] = ACTIONS(3059), + [anon_sym__Generic] = ACTIONS(3059), + [anon_sym_asm] = ACTIONS(3059), + [anon_sym___asm__] = ACTIONS(3059), + [anon_sym___asm] = ACTIONS(3059), + [sym_number_literal] = ACTIONS(3061), + [anon_sym_L_SQUOTE] = ACTIONS(3061), + [anon_sym_u_SQUOTE] = ACTIONS(3061), + [anon_sym_U_SQUOTE] = ACTIONS(3061), + [anon_sym_u8_SQUOTE] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3061), + [anon_sym_L_DQUOTE] = ACTIONS(3061), + [anon_sym_u_DQUOTE] = ACTIONS(3061), + [anon_sym_U_DQUOTE] = ACTIONS(3061), + [anon_sym_u8_DQUOTE] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3061), + [sym_true] = ACTIONS(3059), + [sym_false] = ACTIONS(3059), + [anon_sym_NULL] = ACTIONS(3059), + [anon_sym_nullptr] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3059), + [anon_sym_decltype] = ACTIONS(3059), + [anon_sym_explicit] = ACTIONS(3059), + [anon_sym_typename] = ACTIONS(3059), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [anon_sym_delete] = ACTIONS(3059), + [anon_sym_throw] = ACTIONS(3059), + [anon_sym_namespace] = ACTIONS(3059), + [anon_sym_static_assert] = ACTIONS(3059), + [anon_sym_concept] = ACTIONS(3059), + [anon_sym_co_return] = ACTIONS(3059), + [anon_sym_co_yield] = ACTIONS(3059), + [anon_sym_R_DQUOTE] = ACTIONS(3061), + [anon_sym_LR_DQUOTE] = ACTIONS(3061), + [anon_sym_uR_DQUOTE] = ACTIONS(3061), + [anon_sym_UR_DQUOTE] = ACTIONS(3061), + [anon_sym_u8R_DQUOTE] = ACTIONS(3061), + [anon_sym_co_await] = ACTIONS(3059), + [anon_sym_new] = ACTIONS(3059), + [anon_sym_requires] = ACTIONS(3059), + [sym_this] = ACTIONS(3059), + }, + [STATE(804)] = { + [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(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), + [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), }, - [STATE(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(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(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(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), + [STATE(805)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(806)] = { + [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(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), + [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), }, - [STATE(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(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(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(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), + [STATE(807)] = { + [sym_identifier] = ACTIONS(3329), + [aux_sym_preproc_include_token1] = ACTIONS(3329), + [aux_sym_preproc_def_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token2] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), + [sym_preproc_directive] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_AMP_AMP] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym___extension__] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3329), + [anon_sym_virtual] = ACTIONS(3329), + [anon_sym_extern] = ACTIONS(3329), + [anon_sym___attribute__] = ACTIONS(3329), + [anon_sym___attribute] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_COLON_COLON] = ACTIONS(3331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), + [anon_sym___declspec] = ACTIONS(3329), + [anon_sym___based] = ACTIONS(3329), + [anon_sym___cdecl] = ACTIONS(3329), + [anon_sym___clrcall] = ACTIONS(3329), + [anon_sym___stdcall] = ACTIONS(3329), + [anon_sym___fastcall] = ACTIONS(3329), + [anon_sym___thiscall] = ACTIONS(3329), + [anon_sym___vectorcall] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_signed] = ACTIONS(3329), + [anon_sym_unsigned] = ACTIONS(3329), + [anon_sym_long] = ACTIONS(3329), + [anon_sym_short] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_register] = ACTIONS(3329), + [anon_sym_inline] = ACTIONS(3329), + [anon_sym___inline] = ACTIONS(3329), + [anon_sym___inline__] = ACTIONS(3329), + [anon_sym___forceinline] = ACTIONS(3329), + [anon_sym_thread_local] = ACTIONS(3329), + [anon_sym___thread] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_constexpr] = ACTIONS(3329), + [anon_sym_volatile] = ACTIONS(3329), + [anon_sym_restrict] = ACTIONS(3329), + [anon_sym___restrict__] = ACTIONS(3329), + [anon_sym__Atomic] = ACTIONS(3329), + [anon_sym__Noreturn] = ACTIONS(3329), + [anon_sym_noreturn] = ACTIONS(3329), + [anon_sym__Nonnull] = ACTIONS(3329), + [anon_sym_mutable] = ACTIONS(3329), + [anon_sym_constinit] = ACTIONS(3329), + [anon_sym_consteval] = ACTIONS(3329), + [anon_sym_alignas] = ACTIONS(3329), + [anon_sym__Alignas] = ACTIONS(3329), + [sym_primitive_type] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_case] = ACTIONS(3329), + [anon_sym_default] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_goto] = ACTIONS(3329), + [anon_sym___try] = ACTIONS(3329), + [anon_sym___leave] = ACTIONS(3329), + [anon_sym_not] = ACTIONS(3329), + [anon_sym_compl] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3329), + [anon_sym___alignof__] = ACTIONS(3329), + [anon_sym___alignof] = ACTIONS(3329), + [anon_sym__alignof] = ACTIONS(3329), + [anon_sym_alignof] = ACTIONS(3329), + [anon_sym__Alignof] = ACTIONS(3329), + [anon_sym_offsetof] = ACTIONS(3329), + [anon_sym__Generic] = ACTIONS(3329), + [anon_sym_asm] = ACTIONS(3329), + [anon_sym___asm__] = ACTIONS(3329), + [anon_sym___asm] = ACTIONS(3329), + [sym_number_literal] = ACTIONS(3331), + [anon_sym_L_SQUOTE] = ACTIONS(3331), + [anon_sym_u_SQUOTE] = ACTIONS(3331), + [anon_sym_U_SQUOTE] = ACTIONS(3331), + [anon_sym_u8_SQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_L_DQUOTE] = ACTIONS(3331), + [anon_sym_u_DQUOTE] = ACTIONS(3331), + [anon_sym_U_DQUOTE] = ACTIONS(3331), + [anon_sym_u8_DQUOTE] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [anon_sym_NULL] = ACTIONS(3329), + [anon_sym_nullptr] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3329), + [anon_sym_decltype] = ACTIONS(3329), + [anon_sym_explicit] = ACTIONS(3329), + [anon_sym_typename] = ACTIONS(3329), + [anon_sym_template] = ACTIONS(3329), + [anon_sym_operator] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_static_assert] = ACTIONS(3329), + [anon_sym_concept] = ACTIONS(3329), + [anon_sym_co_return] = ACTIONS(3329), + [anon_sym_co_yield] = ACTIONS(3329), + [anon_sym_R_DQUOTE] = ACTIONS(3331), + [anon_sym_LR_DQUOTE] = ACTIONS(3331), + [anon_sym_uR_DQUOTE] = ACTIONS(3331), + [anon_sym_UR_DQUOTE] = ACTIONS(3331), + [anon_sym_u8R_DQUOTE] = ACTIONS(3331), + [anon_sym_co_await] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_requires] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + }, + [STATE(808)] = { + [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_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_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___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(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), + [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), }, - [STATE(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(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(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(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(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), + [STATE(809)] = { + [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(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), + [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), }, - [STATE(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(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(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_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(3749), - [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), + [STATE(810)] = { + [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_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_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___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(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(3751), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3753), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3755), + [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), }, - [STATE(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(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(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(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), + [STATE(811)] = { + [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(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), - }, - [STATE(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), + [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), }, - [STATE(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(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(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(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(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), + [STATE(812)] = { + [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(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), + [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), }, - [STATE(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(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(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(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), + [STATE(813)] = { + [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(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), + [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), }, - [STATE(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(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(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(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), + [STATE(814)] = { + [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_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_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___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(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), + [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), }, - [STATE(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(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(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(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), + [STATE(815)] = { + [sym_identifier] = ACTIONS(3329), + [aux_sym_preproc_include_token1] = ACTIONS(3329), + [aux_sym_preproc_def_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), + [sym_preproc_directive] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_AMP_AMP] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym___extension__] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3329), + [anon_sym_virtual] = ACTIONS(3329), + [anon_sym_extern] = ACTIONS(3329), + [anon_sym___attribute__] = ACTIONS(3329), + [anon_sym___attribute] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_COLON_COLON] = ACTIONS(3331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), + [anon_sym___declspec] = ACTIONS(3329), + [anon_sym___based] = ACTIONS(3329), + [anon_sym___cdecl] = ACTIONS(3329), + [anon_sym___clrcall] = ACTIONS(3329), + [anon_sym___stdcall] = ACTIONS(3329), + [anon_sym___fastcall] = ACTIONS(3329), + [anon_sym___thiscall] = ACTIONS(3329), + [anon_sym___vectorcall] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_signed] = ACTIONS(3329), + [anon_sym_unsigned] = ACTIONS(3329), + [anon_sym_long] = ACTIONS(3329), + [anon_sym_short] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_register] = ACTIONS(3329), + [anon_sym_inline] = ACTIONS(3329), + [anon_sym___inline] = ACTIONS(3329), + [anon_sym___inline__] = ACTIONS(3329), + [anon_sym___forceinline] = ACTIONS(3329), + [anon_sym_thread_local] = ACTIONS(3329), + [anon_sym___thread] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_constexpr] = ACTIONS(3329), + [anon_sym_volatile] = ACTIONS(3329), + [anon_sym_restrict] = ACTIONS(3329), + [anon_sym___restrict__] = ACTIONS(3329), + [anon_sym__Atomic] = ACTIONS(3329), + [anon_sym__Noreturn] = ACTIONS(3329), + [anon_sym_noreturn] = ACTIONS(3329), + [anon_sym__Nonnull] = ACTIONS(3329), + [anon_sym_mutable] = ACTIONS(3329), + [anon_sym_constinit] = ACTIONS(3329), + [anon_sym_consteval] = ACTIONS(3329), + [anon_sym_alignas] = ACTIONS(3329), + [anon_sym__Alignas] = ACTIONS(3329), + [sym_primitive_type] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_case] = ACTIONS(3329), + [anon_sym_default] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_goto] = ACTIONS(3329), + [anon_sym___try] = ACTIONS(3329), + [anon_sym___leave] = ACTIONS(3329), + [anon_sym_not] = ACTIONS(3329), + [anon_sym_compl] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_sizeof] = ACTIONS(3329), + [anon_sym___alignof__] = ACTIONS(3329), + [anon_sym___alignof] = ACTIONS(3329), + [anon_sym__alignof] = ACTIONS(3329), + [anon_sym_alignof] = ACTIONS(3329), + [anon_sym__Alignof] = ACTIONS(3329), + [anon_sym_offsetof] = ACTIONS(3329), + [anon_sym__Generic] = ACTIONS(3329), + [anon_sym_asm] = ACTIONS(3329), + [anon_sym___asm__] = ACTIONS(3329), + [anon_sym___asm] = ACTIONS(3329), + [sym_number_literal] = ACTIONS(3331), + [anon_sym_L_SQUOTE] = ACTIONS(3331), + [anon_sym_u_SQUOTE] = ACTIONS(3331), + [anon_sym_U_SQUOTE] = ACTIONS(3331), + [anon_sym_u8_SQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_L_DQUOTE] = ACTIONS(3331), + [anon_sym_u_DQUOTE] = ACTIONS(3331), + [anon_sym_U_DQUOTE] = ACTIONS(3331), + [anon_sym_u8_DQUOTE] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [anon_sym_NULL] = ACTIONS(3329), + [anon_sym_nullptr] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3329), + [anon_sym_decltype] = ACTIONS(3329), + [anon_sym_explicit] = ACTIONS(3329), + [anon_sym_typename] = ACTIONS(3329), + [anon_sym_template] = ACTIONS(3329), + [anon_sym_operator] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_static_assert] = ACTIONS(3329), + [anon_sym_concept] = ACTIONS(3329), + [anon_sym_co_return] = ACTIONS(3329), + [anon_sym_co_yield] = ACTIONS(3329), + [anon_sym_R_DQUOTE] = ACTIONS(3331), + [anon_sym_LR_DQUOTE] = ACTIONS(3331), + [anon_sym_uR_DQUOTE] = ACTIONS(3331), + [anon_sym_UR_DQUOTE] = ACTIONS(3331), + [anon_sym_u8R_DQUOTE] = ACTIONS(3331), + [anon_sym_co_await] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_requires] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), }, - [STATE(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(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(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(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(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), + [STATE(816)] = { + [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(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), + [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), }, - [STATE(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(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(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(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(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), + [STATE(817)] = { + [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(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), + [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), }, - [STATE(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(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(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(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), + [STATE(818)] = { + [sym_expression] = STATE(3802), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(1942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1944), + [aux_sym_preproc_if_token2] = ACTIONS(1944), + [aux_sym_preproc_else_token1] = ACTIONS(1944), + [aux_sym_preproc_elif_token1] = ACTIONS(1942), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1944), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(3623), + [anon_sym_TILDE] = ACTIONS(3625), + [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___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_QMARK] = ACTIONS(1944), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [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(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(819)] = { + [sym_preproc_def] = STATE(835), + [sym_preproc_function_def] = STATE(835), + [sym_preproc_call] = STATE(835), + [sym_preproc_if_in_field_declaration_list] = STATE(835), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(835), + [sym_type_definition] = STATE(835), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(835), + [sym_field_declaration] = STATE(835), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(835), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(835), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(835), + [sym_operator_cast_declaration] = STATE(835), + [sym_constructor_or_destructor_definition] = STATE(835), + [sym_constructor_or_destructor_declaration] = STATE(835), + [sym_friend_declaration] = STATE(835), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(835), + [sym_alias_declaration] = STATE(835), + [sym_static_assert_declaration] = STATE(835), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(835), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3819), - [anon_sym___extension__] = ACTIONS(3743), - [anon_sym_typedef] = ACTIONS(3745), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3659), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3747), - [anon_sym_COLON_COLON] = ACTIONS(3013), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3667), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160466,7 +158956,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(3749), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160479,117 +158969,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(3751), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3753), - [anon_sym_public] = ACTIONS(3031), - [anon_sym_protected] = ACTIONS(3031), - [anon_sym_static_assert] = ACTIONS(3755), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(820)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [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_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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(3679), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160599,7 +159089,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(3661), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160612,117 +159102,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [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), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(821)] = { + [sym_preproc_def] = STATE(824), + [sym_preproc_function_def] = STATE(824), + [sym_preproc_call] = STATE(824), + [sym_preproc_if_in_field_declaration_list] = STATE(824), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(824), + [sym_type_definition] = STATE(824), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(824), + [sym_field_declaration] = STATE(824), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(824), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(824), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(824), + [sym_operator_cast_declaration] = STATE(824), + [sym_constructor_or_destructor_definition] = STATE(824), + [sym_constructor_or_destructor_declaration] = STATE(824), + [sym_friend_declaration] = STATE(824), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(824), + [sym_alias_declaration] = STATE(824), + [sym_static_assert_declaration] = STATE(824), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(824), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3823), - [anon_sym___extension__] = ACTIONS(3653), - [anon_sym_typedef] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3681), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3825), + [anon_sym_RBRACE] = ACTIONS(3683), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160732,7 +159222,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(3661), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160745,117 +159235,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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [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), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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(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(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(6942), - [sym_inline_method_definition] = STATE(817), - [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(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(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(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), + [STATE(822)] = { + [sym_preproc_def] = STATE(827), + [sym_preproc_function_def] = STATE(827), + [sym_preproc_call] = STATE(827), + [sym_preproc_if_in_field_declaration_list] = STATE(827), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(827), + [sym_type_definition] = STATE(827), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(827), + [sym_field_declaration] = STATE(827), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(827), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(827), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(827), + [sym_operator_cast_declaration] = STATE(827), + [sym_constructor_or_destructor_definition] = STATE(827), + [sym_constructor_or_destructor_declaration] = STATE(827), + [sym_friend_declaration] = STATE(827), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(827), + [sym_alias_declaration] = STATE(827), + [sym_static_assert_declaration] = STATE(827), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(827), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym_SEMI] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3653), - [anon_sym_typedef] = ACTIONS(3655), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3685), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(3829), + [anon_sym_RBRACE] = ACTIONS(3687), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -160865,7 +159355,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(3661), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -160878,866 +159368,118 @@ 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(3019), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_class] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3027), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [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), - }, - [STATE(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), - }, - [STATE(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(3835), - [anon_sym_TILDE] = ACTIONS(3837), - [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(3839), - [anon_sym___attribute__] = ACTIONS(1942), - [anon_sym___attribute] = ACTIONS(1942), - [anon_sym_COLON_COLON] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_LBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(1944), - [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), - [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(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_DOT] = ACTIONS(1942), - [anon_sym_DOT_STAR] = ACTIONS(1944), - [anon_sym_DASH_GT] = ACTIONS(1944), - [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), - }, - [STATE(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_LPAREN2] = ACTIONS(1944), - [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), - [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___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(2171), - [anon_sym_QMARK] = ACTIONS(1944), - [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), - [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(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_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(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), - }, - [STATE(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(3134), - [anon_sym_TILDE] = ACTIONS(3132), - [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(3877), - [anon_sym_COLON_COLON] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3879), - [anon_sym_LBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(3881), - [anon_sym_QMARK] = ACTIONS(1944), - [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), - [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(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(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_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), - }, - [STATE(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(3885), - [anon_sym_TILDE] = ACTIONS(3887), - [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___extension__] = ACTIONS(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_RBRACK] = ACTIONS(1944), - [sym_primitive_type] = ACTIONS(2171), - [anon_sym_QMARK] = ACTIONS(1944), - [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), - [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(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_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(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), - }, - [STATE(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(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(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), - [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(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), - [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), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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(3913), + [STATE(823)] = { + [sym_preproc_def] = STATE(820), + [sym_preproc_function_def] = STATE(820), + [sym_preproc_call] = STATE(820), + [sym_preproc_if_in_field_declaration_list] = STATE(820), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(820), + [sym_type_definition] = STATE(820), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(820), + [sym_field_declaration] = STATE(820), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(820), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(820), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(820), + [sym_operator_cast_declaration] = STATE(820), + [sym_constructor_or_destructor_definition] = STATE(820), + [sym_constructor_or_destructor_declaration] = STATE(820), + [sym_friend_declaration] = STATE(820), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(820), + [sym_alias_declaration] = STATE(820), + [sym_static_assert_declaration] = STATE(820), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(820), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3689), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3691), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(3911), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), @@ -161746,7 +159488,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(67), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161759,110 +159501,118 @@ 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(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_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [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), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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(3913), + [STATE(824)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3693), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(3937), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), @@ -161871,7 +159621,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(67), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -161884,752 +159634,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(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_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(125), [anon_sym_decltype] = ACTIONS(127), - [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), - }, - [STATE(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), - }, - [STATE(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(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(825)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(826), + [sym_field_declaration] = STATE(826), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(826), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(826), + [sym__constructor_specifiers] = STATE(1807), + [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(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(826), + [sym_alias_declaration] = STATE(826), + [sym_static_assert_declaration] = STATE(826), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(826), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3695), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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(3979), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3697), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -162639,7 +159754,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(3981), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -162652,105 +159767,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(3983), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3985), - [anon_sym_concept] = ACTIONS(241), - [anon_sym_requires] = ACTIONS(3987), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(826)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3989), - [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3699), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -162760,7 +159887,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(3991), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -162773,105 +159900,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(3993), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3995), - [anon_sym_concept] = ACTIONS(153), - [anon_sym_requires] = ACTIONS(3987), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(827)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3701), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -162881,7 +160020,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(3999), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -162894,105 +160033,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4003), - [anon_sym_concept] = ACTIONS(337), - [anon_sym_requires] = ACTIONS(3987), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(828)] = { + [sym_preproc_def] = STATE(829), + [sym_preproc_function_def] = STATE(829), + [sym_preproc_call] = STATE(829), + [sym_preproc_if_in_field_declaration_list] = STATE(829), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(829), + [sym_type_definition] = STATE(829), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(829), + [sym_field_declaration] = STATE(829), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(829), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(829), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(829), + [sym_operator_cast_declaration] = STATE(829), + [sym_constructor_or_destructor_definition] = STATE(829), + [sym_constructor_or_destructor_declaration] = STATE(829), + [sym_friend_declaration] = STATE(829), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(829), + [sym_alias_declaration] = STATE(829), + [sym_static_assert_declaration] = STATE(829), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(829), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3703), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3705), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -163002,7 +160153,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(3661), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -163015,105 +160166,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3665), - [anon_sym_concept] = ACTIONS(4007), - [anon_sym_requires] = ACTIONS(3987), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(829)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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(3979), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3707), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -163123,7 +160286,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(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -163136,105 +160299,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(4013), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4015), - [anon_sym_concept] = ACTIONS(934), - [anon_sym_requires] = ACTIONS(3987), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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(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), + [STATE(830)] = { + [sym_preproc_def] = STATE(837), + [sym_preproc_function_def] = STATE(837), + [sym_preproc_call] = STATE(837), + [sym_preproc_if_in_field_declaration_list] = STATE(837), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(837), + [sym_type_definition] = STATE(837), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(837), + [sym_field_declaration] = STATE(837), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(837), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(837), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(837), + [sym_operator_cast_declaration] = STATE(837), + [sym_constructor_or_destructor_definition] = STATE(837), + [sym_constructor_or_destructor_declaration] = STATE(837), + [sym_friend_declaration] = STATE(837), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(837), + [sym_alias_declaration] = STATE(837), + [sym_static_assert_declaration] = STATE(837), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(837), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3709), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4017), - [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3711), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -163244,7 +160419,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(3017), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -163257,105 +160432,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(3033), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(4019), - [anon_sym_requires] = ACTIONS(3987), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(831)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4021), - [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3713), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -163365,7 +160552,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(3749), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -163378,104 +160565,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(3751), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3753), - [anon_sym_concept] = ACTIONS(4023), - [anon_sym_requires] = ACTIONS(3987), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(832)] = { + [sym_preproc_def] = STATE(833), + [sym_preproc_function_def] = STATE(833), + [sym_preproc_call] = STATE(833), + [sym_preproc_if_in_field_declaration_list] = STATE(833), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(833), + [sym_type_definition] = STATE(833), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(833), + [sym_field_declaration] = STATE(833), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(833), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(833), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(833), + [sym_operator_cast_declaration] = STATE(833), + [sym_constructor_or_destructor_definition] = STATE(833), + [sym_constructor_or_destructor_declaration] = STATE(833), + [sym_friend_declaration] = STATE(833), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(833), + [sym_alias_declaration] = STATE(833), + [sym_static_assert_declaration] = STATE(833), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(833), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3717), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -163485,7 +160685,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(3661), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -163498,579 +160698,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3665), - [anon_sym_concept] = ACTIONS(4007), - }, - [STATE(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(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), - [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), - }, - [STATE(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(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), - [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), - }, - [STATE(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(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), - [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), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), - }, - [STATE(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), + [STATE(833)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_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(3015), + [anon_sym_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -164080,7 +160818,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(3999), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -164093,698 +160831,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4003), - [anon_sym_concept] = ACTIONS(337), - }, - [STATE(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(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), - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(834)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(3485), + [aux_sym_preproc_def_token1] = ACTIONS(3721), + [aux_sym_preproc_if_token1] = ACTIONS(3724), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3727), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3727), + [sym_preproc_directive] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3508), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3733), + [anon_sym___extension__] = ACTIONS(3736), + [anon_sym_typedef] = ACTIONS(3739), + [anon_sym_virtual] = ACTIONS(3526), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3532), + [anon_sym___attribute] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3541), + [anon_sym___declspec] = ACTIONS(3544), + [anon_sym___based] = ACTIONS(3547), + [anon_sym_RBRACE] = ACTIONS(3745), + [anon_sym_signed] = ACTIONS(3550), + [anon_sym_unsigned] = ACTIONS(3550), + [anon_sym_long] = ACTIONS(3550), + [anon_sym_short] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3553), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_constexpr] = ACTIONS(3747), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_restrict] = ACTIONS(3556), + [anon_sym___restrict__] = ACTIONS(3556), + [anon_sym__Atomic] = ACTIONS(3556), + [anon_sym__Noreturn] = ACTIONS(3556), + [anon_sym_noreturn] = ACTIONS(3556), + [anon_sym__Nonnull] = ACTIONS(3556), + [anon_sym_mutable] = ACTIONS(3556), + [anon_sym_constinit] = ACTIONS(3556), + [anon_sym_consteval] = ACTIONS(3556), + [anon_sym_alignas] = ACTIONS(3562), + [anon_sym__Alignas] = ACTIONS(3562), + [sym_primitive_type] = ACTIONS(3565), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_struct] = ACTIONS(3574), + [anon_sym_union] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3583), + [anon_sym_explicit] = ACTIONS(3586), + [anon_sym_typename] = ACTIONS(3589), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3598), + [anon_sym_friend] = ACTIONS(3753), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_static_assert] = ACTIONS(3756), }, - [STATE(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), + [STATE(835)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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(3979), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3759), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -164794,7 +161084,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(3981), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -164807,579 +161097,516 @@ 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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(3983), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3985), - [anon_sym_concept] = ACTIONS(241), - }, - [STATE(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(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), - [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), - }, - [STATE(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(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), - [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), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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(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), - [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), + [STATE(836)] = { + [sym_preproc_def] = STATE(839), + [sym_preproc_function_def] = STATE(839), + [sym_preproc_call] = STATE(839), + [sym_preproc_if_in_field_declaration_list] = STATE(839), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(839), + [sym_type_definition] = STATE(839), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(839), + [sym_field_declaration] = STATE(839), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(839), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(839), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(839), + [sym_operator_cast_declaration] = STATE(839), + [sym_constructor_or_destructor_definition] = STATE(839), + [sym_constructor_or_destructor_declaration] = STATE(839), + [sym_friend_declaration] = STATE(839), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(839), + [sym_alias_declaration] = STATE(839), + [sym_static_assert_declaration] = STATE(839), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(839), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3761), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3763), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3023), + [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(3669), + [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(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(837)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(3765), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3023), + [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(3669), + [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(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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), + [STATE(838)] = { + [sym_preproc_def] = STATE(838), + [sym_preproc_function_def] = STATE(838), + [sym_preproc_call] = STATE(838), + [sym_preproc_if_in_field_declaration_list] = STATE(838), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(838), + [sym_type_definition] = STATE(838), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5616), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6381), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(838), + [sym_field_declaration] = STATE(838), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1812), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(838), [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_inline_method_definition] = STATE(838), + [sym__constructor_specifiers] = STATE(1812), + [sym_operator_cast_definition] = STATE(838), + [sym_operator_cast_declaration] = STATE(838), + [sym_constructor_or_destructor_definition] = STATE(838), + [sym_constructor_or_destructor_declaration] = STATE(838), + [sym_friend_declaration] = STATE(838), + [sym_access_specifier] = STATE(8663), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(838), + [sym_alias_declaration] = STATE(838), + [sym_static_assert_declaration] = STATE(838), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), [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), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(838), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7230), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1812), + [sym_identifier] = ACTIONS(3485), + [aux_sym_preproc_def_token1] = ACTIONS(3767), + [aux_sym_preproc_if_token1] = ACTIONS(3770), + [aux_sym_preproc_if_token2] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3773), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3773), + [sym_preproc_directive] = ACTIONS(3776), + [anon_sym_LPAREN2] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3505), + [anon_sym_STAR] = ACTIONS(3508), + [anon_sym_AMP_AMP] = ACTIONS(3511), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3779), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3785), + [anon_sym_virtual] = ACTIONS(3526), + [anon_sym_extern] = ACTIONS(3529), + [anon_sym___attribute__] = ACTIONS(3532), + [anon_sym___attribute] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3788), + [anon_sym_COLON_COLON] = ACTIONS(3538), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3541), + [anon_sym___declspec] = ACTIONS(3544), + [anon_sym___based] = ACTIONS(3547), + [anon_sym_signed] = ACTIONS(3550), + [anon_sym_unsigned] = ACTIONS(3550), + [anon_sym_long] = ACTIONS(3550), + [anon_sym_short] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3553), + [anon_sym_static] = ACTIONS(3529), + [anon_sym_register] = ACTIONS(3529), + [anon_sym_inline] = ACTIONS(3529), + [anon_sym___inline] = ACTIONS(3529), + [anon_sym___inline__] = ACTIONS(3529), + [anon_sym___forceinline] = ACTIONS(3529), + [anon_sym_thread_local] = ACTIONS(3529), + [anon_sym___thread] = ACTIONS(3529), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_constexpr] = ACTIONS(3791), + [anon_sym_volatile] = ACTIONS(3556), + [anon_sym_restrict] = ACTIONS(3556), + [anon_sym___restrict__] = ACTIONS(3556), + [anon_sym__Atomic] = ACTIONS(3556), + [anon_sym__Noreturn] = ACTIONS(3556), + [anon_sym_noreturn] = ACTIONS(3556), + [anon_sym__Nonnull] = ACTIONS(3556), + [anon_sym_mutable] = ACTIONS(3556), + [anon_sym_constinit] = ACTIONS(3556), + [anon_sym_consteval] = ACTIONS(3556), + [anon_sym_alignas] = ACTIONS(3562), + [anon_sym__Alignas] = ACTIONS(3562), + [sym_primitive_type] = ACTIONS(3565), + [anon_sym_enum] = ACTIONS(3568), + [anon_sym_class] = ACTIONS(3571), + [anon_sym_struct] = ACTIONS(3574), + [anon_sym_union] = ACTIONS(3577), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3580), + [anon_sym_decltype] = ACTIONS(3583), + [anon_sym_explicit] = ACTIONS(3586), + [anon_sym_typename] = ACTIONS(3589), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_template] = ACTIONS(3794), + [anon_sym_operator] = ACTIONS(3598), + [anon_sym_friend] = ACTIONS(3797), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_static_assert] = ACTIONS(3800), + }, + [STATE(839)] = { + [sym_preproc_def] = STATE(834), + [sym_preproc_function_def] = STATE(834), + [sym_preproc_call] = STATE(834), + [sym_preproc_if_in_field_declaration_list] = STATE(834), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(834), + [sym_type_definition] = STATE(834), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(834), + [sym_field_declaration] = STATE(834), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(834), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(834), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(834), + [sym_operator_cast_declaration] = STATE(834), + [sym_constructor_or_destructor_definition] = STATE(834), + [sym_constructor_or_destructor_declaration] = STATE(834), + [sym_friend_declaration] = STATE(834), + [sym_access_specifier] = STATE(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(834), + [sym_alias_declaration] = STATE(834), + [sym_static_assert_declaration] = STATE(834), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(834), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3677), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [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(3979), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3803), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -165389,7 +161616,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(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -165402,222 +161629,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(4013), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(4015), - [anon_sym_concept] = ACTIONS(934), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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(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), - [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), + [STATE(840)] = { + [sym_preproc_def] = STATE(838), + [sym_preproc_function_def] = STATE(838), + [sym_preproc_call] = STATE(838), + [sym_preproc_if_in_field_declaration_list] = STATE(838), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(838), + [sym_type_definition] = STATE(838), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5616), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6381), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(838), + [sym_field_declaration] = STATE(838), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1812), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(838), + [sym_operator_cast] = STATE(6933), + [sym_inline_method_definition] = STATE(838), + [sym__constructor_specifiers] = STATE(1812), + [sym_operator_cast_definition] = STATE(838), + [sym_operator_cast_declaration] = STATE(838), + [sym_constructor_or_destructor_definition] = STATE(838), + [sym_constructor_or_destructor_declaration] = STATE(838), + [sym_friend_declaration] = STATE(838), + [sym_access_specifier] = STATE(8663), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(838), + [sym_alias_declaration] = STATE(838), + [sym_static_assert_declaration] = STATE(838), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6933), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(838), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7230), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1812), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3805), + [aux_sym_preproc_if_token1] = ACTIONS(3807), + [aux_sym_preproc_if_token2] = ACTIONS(3809), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3811), + [sym_preproc_directive] = ACTIONS(3813), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3815), + [anon_sym___extension__] = ACTIONS(3817), + [anon_sym_typedef] = ACTIONS(3819), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3021), + [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(3023), + [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(3823), + [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(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3825), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3827), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3829), }, - [STATE(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), + [STATE(841)] = { + [sym_preproc_def] = STATE(840), + [sym_preproc_function_def] = STATE(840), + [sym_preproc_call] = STATE(840), + [sym_preproc_if_in_field_declaration_list] = STATE(840), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(840), + [sym_type_definition] = STATE(840), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(5616), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6381), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(840), + [sym_field_declaration] = STATE(840), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1812), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(840), + [sym_operator_cast] = STATE(6933), + [sym_inline_method_definition] = STATE(840), + [sym__constructor_specifiers] = STATE(1812), + [sym_operator_cast_definition] = STATE(840), + [sym_operator_cast_declaration] = STATE(840), + [sym_constructor_or_destructor_definition] = STATE(840), + [sym_constructor_or_destructor_declaration] = STATE(840), + [sym_friend_declaration] = STATE(840), + [sym_access_specifier] = STATE(8663), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(840), + [sym_alias_declaration] = STATE(840), + [sym_static_assert_declaration] = STATE(840), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6933), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(840), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7230), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1812), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3805), + [aux_sym_preproc_if_token1] = ACTIONS(3807), + [aux_sym_preproc_if_token2] = ACTIONS(3831), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3811), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3811), + [sym_preproc_directive] = ACTIONS(3813), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3833), + [anon_sym___extension__] = ACTIONS(3817), + [anon_sym_typedef] = ACTIONS(3819), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4017), - [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_using] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -165627,7 +161882,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(3017), + [anon_sym_constexpr] = ACTIONS(3823), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -165640,341 +161895,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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(3033), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3825), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3035), - [anon_sym_concept] = ACTIONS(4019), - }, - [STATE(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), - [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), - }, - [STATE(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), + [anon_sym_friend] = ACTIONS(3827), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3829), }, - [STATE(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), + [STATE(842)] = { + [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(3196), + [sym__declaration_specifiers] = STATE(5594), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3047), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__field_declaration_list_item] = STATE(831), + [sym_field_declaration] = STATE(831), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(831), + [sym_operator_cast] = STATE(6936), + [sym_inline_method_definition] = STATE(831), + [sym__constructor_specifiers] = STATE(1807), + [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(8732), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_using_declaration] = STATE(831), + [sym_alias_declaration] = STATE(831), + [sym_static_assert_declaration] = STATE(831), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5570), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(831), + [aux_sym__declaration_specifiers_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(7159), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(2987), + [aux_sym_preproc_def_token1] = ACTIONS(3651), + [aux_sym_preproc_if_token1] = ACTIONS(3653), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3655), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3655), + [sym_preproc_directive] = ACTIONS(3657), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3003), - [anon_sym___extension__] = ACTIONS(67), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3835), + [anon_sym___extension__] = ACTIONS(3661), + [anon_sym_typedef] = ACTIONS(3663), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4021), - [anon_sym_COLON_COLON] = ACTIONS(3979), + [anon_sym_using] = ACTIONS(3665), + [anon_sym_COLON_COLON] = ACTIONS(3021), [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_RBRACE] = ACTIONS(3837), [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_LBRACK] = ACTIONS(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -165984,7 +162015,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(3749), + [anon_sym_constexpr] = ACTIONS(3669), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -165997,101 +162028,114 @@ 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(3019), - [anon_sym_enum] = ACTIONS(73), - [anon_sym_class] = ACTIONS(75), - [anon_sym_struct] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), + [sym_primitive_type] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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(3751), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3039), + [anon_sym_template] = ACTIONS(3671), [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3753), - [anon_sym_concept] = ACTIONS(4023), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_public] = ACTIONS(3039), + [anon_sym_protected] = ACTIONS(3039), + [anon_sym_static_assert] = ACTIONS(3675), }, - [STATE(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(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), + [STATE(843)] = { + [sym_expression] = STATE(3802), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(3841), + [anon_sym_TILDE] = ACTIONS(3843), + [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(3845), + [anon_sym___attribute__] = ACTIONS(1942), + [anon_sym___attribute] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(1944), [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_QMARK] = ACTIONS(1944), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [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(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -166102,17 +162146,20 @@ 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), + [anon_sym_DOT] = ACTIONS(1942), + [anon_sym_DOT_STAR] = ACTIONS(1944), + [anon_sym_DASH_GT] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -166120,97 +162167,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(844)] = { + [sym_expression] = STATE(3802), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [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(3631), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), [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_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), @@ -166221,6 +162278,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(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), @@ -166239,216 +162299,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(845)] = { + [sym_expression] = STATE(4592), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_initializer_list] = STATE(4858), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3140), + [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(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3869), + [anon_sym_LBRACK] = ACTIONS(1944), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_QMARK] = ACTIONS(1944), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [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(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [anon_sym_DOT] = ACTIONS(1942), + [anon_sym_DOT_STAR] = ACTIONS(1944), + [anon_sym_DASH_GT] = ACTIONS(1944), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), [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), + [anon_sym_GT2] = ACTIONS(1944), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), + [STATE(846)] = { + [sym_expression] = STATE(3802), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(3875), + [anon_sym_TILDE] = ACTIONS(3877), + [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___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_RBRACK] = ACTIONS(1944), [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_QMARK] = ACTIONS(1944), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [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(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -166459,6 +162538,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(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), @@ -166477,97 +162559,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3885), [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_co_await] = ACTIONS(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(847)] = { + [sym_expression] = STATE(4600), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1944), + [anon_sym_COMMA] = ACTIONS(1944), + [anon_sym_LPAREN2] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(3893), + [anon_sym_TILDE] = ACTIONS(3895), + [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___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(1944), [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_QMARK] = ACTIONS(1944), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [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(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -166578,6 +162668,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(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), @@ -166596,216 +162689,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3903), [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_co_await] = ACTIONS(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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(3989), - [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(3991), - [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(3993), - [anon_sym_operator] = ACTIONS(141), - [anon_sym_friend] = ACTIONS(3995), - [anon_sym_concept] = ACTIONS(153), - }, - [STATE(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), + [STATE(848)] = { + [sym_expression] = STATE(4744), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3907), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3875), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(3911), + [anon_sym_PERCENT] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3907), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE] = ACTIONS(3911), + [anon_sym_CARET] = ACTIONS(3907), + [anon_sym_AMP] = ACTIONS(1258), + [anon_sym_EQ_EQ] = ACTIONS(3907), + [anon_sym_BANG_EQ] = ACTIONS(3907), + [anon_sym_GT] = ACTIONS(3911), + [anon_sym_GT_EQ] = ACTIONS(3907), + [anon_sym_LT_EQ] = ACTIONS(3911), + [anon_sym_LT] = ACTIONS(3911), + [anon_sym_LT_LT] = ACTIONS(3907), + [anon_sym_GT_GT] = ACTIONS(3907), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [anon_sym_LBRACK] = ACTIONS(2020), - [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), + [anon_sym_RBRACK] = ACTIONS(3907), [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_QMARK] = ACTIONS(3907), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_LT_EQ_GT] = ACTIONS(3907), + [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(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -166816,6 +162795,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(3911), + [anon_sym_DOT_STAR] = ACTIONS(3907), + [anon_sym_DASH_GT] = ACTIONS(3907), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -166834,2984 +162816,469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3885), [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(849)] = { + [sym__declaration_modifiers] = STATE(2060), + [sym__declaration_specifiers] = STATE(6430), + [sym_attribute_specifier] = STATE(2060), + [sym_attribute_declaration] = STATE(2060), + [sym_ms_declspec_modifier] = STATE(2060), + [sym_storage_class_specifier] = STATE(2060), + [sym_type_qualifier] = STATE(2060), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4071), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6757), + [sym_qualified_type_identifier] = STATE(2854), + [aux_sym__declaration_specifiers_repeat1] = STATE(2060), + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3917), + [anon_sym_BANG] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3917), + [anon_sym_DASH] = ACTIONS(3919), + [anon_sym_PLUS] = ACTIONS(3919), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_SLASH] = ACTIONS(3919), + [anon_sym_PERCENT] = ACTIONS(3919), + [anon_sym_PIPE_PIPE] = ACTIONS(3917), + [anon_sym_AMP_AMP] = ACTIONS(3917), + [anon_sym_PIPE] = ACTIONS(3919), + [anon_sym_CARET] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_EQ_EQ] = ACTIONS(3917), + [anon_sym_BANG_EQ] = ACTIONS(3917), + [anon_sym_GT] = ACTIONS(3919), + [anon_sym_GT_EQ] = ACTIONS(3917), + [anon_sym_LT_EQ] = ACTIONS(3919), + [anon_sym_LT] = ACTIONS(3919), + [anon_sym_LT_LT] = ACTIONS(3919), + [anon_sym_GT_GT] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(3925), + [anon_sym_unsigned] = ACTIONS(3925), + [anon_sym_long] = ACTIONS(3925), + [anon_sym_short] = ACTIONS(3925), + [anon_sym_static] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(3919), + [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(3927), + [anon_sym_enum] = ACTIONS(3929), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3933), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_STAR_EQ] = ACTIONS(3917), + [anon_sym_SLASH_EQ] = ACTIONS(3917), + [anon_sym_PERCENT_EQ] = ACTIONS(3917), + [anon_sym_PLUS_EQ] = ACTIONS(3917), + [anon_sym_DASH_EQ] = ACTIONS(3917), + [anon_sym_LT_LT_EQ] = ACTIONS(3917), + [anon_sym_GT_GT_EQ] = ACTIONS(3917), + [anon_sym_AMP_EQ] = ACTIONS(3917), + [anon_sym_CARET_EQ] = ACTIONS(3917), + [anon_sym_PIPE_EQ] = ACTIONS(3917), + [anon_sym_and_eq] = ACTIONS(3919), + [anon_sym_or_eq] = ACTIONS(3919), + [anon_sym_xor_eq] = ACTIONS(3919), + [anon_sym_not] = ACTIONS(3919), + [anon_sym_compl] = ACTIONS(3919), + [anon_sym_LT_EQ_GT] = ACTIONS(3917), + [anon_sym_or] = ACTIONS(3919), + [anon_sym_and] = ACTIONS(3919), + [anon_sym_bitor] = ACTIONS(3919), + [anon_sym_xor] = ACTIONS(3919), + [anon_sym_bitand] = ACTIONS(3919), + [anon_sym_not_eq] = ACTIONS(3919), + [anon_sym_DASH_DASH] = ACTIONS(3917), + [anon_sym_PLUS_PLUS] = ACTIONS(3917), + [anon_sym_DASH_GT] = ACTIONS(3919), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(3937), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3939), + [anon_sym_co_await] = ACTIONS(3919), + [anon_sym_new] = ACTIONS(3939), + [anon_sym_DASH_GT_STAR] = ACTIONS(3917), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3917), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3917), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3941), }, - [STATE(904)] = { - [sym_identifier] = ACTIONS(3943), - [anon_sym_LPAREN2] = ACTIONS(3945), + [STATE(850)] = { + [sym__declaration_modifiers] = STATE(2060), + [sym__declaration_specifiers] = STATE(6430), + [sym_attribute_specifier] = STATE(2060), + [sym_attribute_declaration] = STATE(2060), + [sym_ms_declspec_modifier] = STATE(2060), + [sym_storage_class_specifier] = STATE(2060), + [sym_type_qualifier] = STATE(2060), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4071), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6757), + [sym_qualified_type_identifier] = STATE(2854), + [aux_sym__declaration_specifiers_repeat1] = STATE(2060), + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(3915), + [anon_sym_COMMA] = ACTIONS(3943), [anon_sym_BANG] = ACTIONS(3945), - [anon_sym_TILDE] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS] = ACTIONS(3943), + [anon_sym_TILDE] = ACTIONS(3943), + [anon_sym_DASH] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3945), [anon_sym_STAR] = ACTIONS(3945), + [anon_sym_SLASH] = ACTIONS(3945), + [anon_sym_PERCENT] = ACTIONS(3945), + [anon_sym_PIPE_PIPE] = ACTIONS(3943), + [anon_sym_AMP_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_CARET] = 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), - }, - [STATE(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), + [anon_sym_EQ_EQ] = ACTIONS(3943), + [anon_sym_BANG_EQ] = ACTIONS(3943), + [anon_sym_GT] = ACTIONS(3945), + [anon_sym_GT_EQ] = ACTIONS(3943), + [anon_sym_LT_EQ] = ACTIONS(3945), + [anon_sym_LT] = ACTIONS(3945), + [anon_sym_LT_LT] = ACTIONS(3945), + [anon_sym_GT_GT] = ACTIONS(3945), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(3925), + [anon_sym_unsigned] = ACTIONS(3925), + [anon_sym_long] = ACTIONS(3925), + [anon_sym_short] = ACTIONS(3925), + [anon_sym_static] = ACTIONS(63), + [anon_sym_EQ] = ACTIONS(3945), + [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(3927), + [anon_sym_enum] = ACTIONS(3929), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3933), + [anon_sym_union] = ACTIONS(3935), + [anon_sym_STAR_EQ] = ACTIONS(3943), + [anon_sym_SLASH_EQ] = ACTIONS(3943), + [anon_sym_PERCENT_EQ] = ACTIONS(3943), + [anon_sym_PLUS_EQ] = ACTIONS(3943), + [anon_sym_DASH_EQ] = ACTIONS(3943), + [anon_sym_LT_LT_EQ] = ACTIONS(3943), + [anon_sym_GT_GT_EQ] = ACTIONS(3943), + [anon_sym_AMP_EQ] = ACTIONS(3943), + [anon_sym_CARET_EQ] = ACTIONS(3943), + [anon_sym_PIPE_EQ] = ACTIONS(3943), + [anon_sym_and_eq] = ACTIONS(3945), + [anon_sym_or_eq] = ACTIONS(3945), + [anon_sym_xor_eq] = ACTIONS(3945), + [anon_sym_not] = ACTIONS(3945), + [anon_sym_compl] = ACTIONS(3945), + [anon_sym_LT_EQ_GT] = ACTIONS(3943), + [anon_sym_or] = ACTIONS(3945), + [anon_sym_and] = ACTIONS(3945), + [anon_sym_bitor] = ACTIONS(3945), + [anon_sym_xor] = ACTIONS(3945), + [anon_sym_bitand] = ACTIONS(3945), + [anon_sym_not_eq] = ACTIONS(3945), + [anon_sym_DASH_DASH] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3943), + [anon_sym_DASH_GT] = ACTIONS(3945), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(3937), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3947), + [anon_sym_co_await] = ACTIONS(3945), + [anon_sym_new] = ACTIONS(3947), + [anon_sym_DASH_GT_STAR] = ACTIONS(3943), + [anon_sym_LPAREN_RPAREN] = ACTIONS(3943), + [anon_sym_LBRACK_RBRACK] = ACTIONS(3943), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(3949), }, - [STATE(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), + [STATE(851)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(2550), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(2567), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [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_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), - }, - [STATE(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), - }, - [STATE(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), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), + [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), }, - [STATE(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), + [STATE(852)] = { + [sym_expression] = STATE(3183), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(3951), + [anon_sym_LPAREN2] = ACTIONS(2018), [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1792), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3957), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(3960), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), [anon_sym_not] = ACTIONS(1796), [anon_sym_compl] = ACTIONS(1796), [anon_sym_DASH_DASH] = ACTIONS(1822), @@ -169843,9 +163310,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), [anon_sym_delete] = ACTIONS(1852), [anon_sym_R_DQUOTE] = ACTIONS(1854), [anon_sym_LR_DQUOTE] = ACTIONS(1854), @@ -169857,5082 +163325,7984 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(853)] = { + [sym_identifier] = ACTIONS(3963), + [anon_sym_COMMA] = ACTIONS(3965), + [anon_sym_RPAREN] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3965), + [anon_sym_BANG] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3963), + [anon_sym_STAR] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3963), + [anon_sym_SEMI] = ACTIONS(3965), + [anon_sym___extension__] = ACTIONS(3963), + [anon_sym_virtual] = ACTIONS(3963), + [anon_sym_extern] = ACTIONS(3963), + [anon_sym___attribute__] = ACTIONS(3963), + [anon_sym___attribute] = ACTIONS(3963), + [anon_sym_using] = ACTIONS(3963), + [anon_sym_COLON_COLON] = ACTIONS(3965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3965), + [anon_sym___declspec] = ACTIONS(3963), + [anon_sym___based] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_signed] = ACTIONS(3963), + [anon_sym_unsigned] = ACTIONS(3963), + [anon_sym_long] = ACTIONS(3963), + [anon_sym_short] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3963), + [anon_sym_static] = ACTIONS(3963), + [anon_sym_RBRACK] = ACTIONS(3965), + [anon_sym_EQ] = ACTIONS(3965), + [anon_sym_register] = ACTIONS(3963), + [anon_sym_inline] = ACTIONS(3963), + [anon_sym___inline] = ACTIONS(3963), + [anon_sym___inline__] = ACTIONS(3963), + [anon_sym___forceinline] = ACTIONS(3963), + [anon_sym_thread_local] = ACTIONS(3963), + [anon_sym___thread] = ACTIONS(3963), + [anon_sym_const] = ACTIONS(3963), + [anon_sym_constexpr] = ACTIONS(3963), + [anon_sym_volatile] = ACTIONS(3963), + [anon_sym_restrict] = ACTIONS(3963), + [anon_sym___restrict__] = ACTIONS(3963), + [anon_sym__Atomic] = ACTIONS(3963), + [anon_sym__Noreturn] = ACTIONS(3963), + [anon_sym_noreturn] = ACTIONS(3963), + [anon_sym__Nonnull] = ACTIONS(3963), + [anon_sym_mutable] = ACTIONS(3963), + [anon_sym_constinit] = ACTIONS(3963), + [anon_sym_consteval] = ACTIONS(3963), + [anon_sym_alignas] = ACTIONS(3963), + [anon_sym__Alignas] = ACTIONS(3963), + [sym_primitive_type] = ACTIONS(3963), + [anon_sym_enum] = ACTIONS(3963), + [anon_sym_class] = ACTIONS(3963), + [anon_sym_struct] = ACTIONS(3963), + [anon_sym_union] = ACTIONS(3963), + [anon_sym_if] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_case] = ACTIONS(3963), + [anon_sym_default] = ACTIONS(3963), + [anon_sym_while] = ACTIONS(3963), + [anon_sym_do] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3963), + [anon_sym_return] = ACTIONS(3963), + [anon_sym_break] = ACTIONS(3963), + [anon_sym_continue] = ACTIONS(3963), + [anon_sym_goto] = ACTIONS(3963), + [anon_sym___try] = ACTIONS(3963), + [anon_sym___leave] = ACTIONS(3963), + [anon_sym_not] = ACTIONS(3963), + [anon_sym_compl] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3965), + [anon_sym_PLUS_PLUS] = ACTIONS(3965), + [anon_sym_sizeof] = ACTIONS(3963), + [anon_sym___alignof__] = ACTIONS(3963), + [anon_sym___alignof] = ACTIONS(3963), + [anon_sym__alignof] = ACTIONS(3963), + [anon_sym_alignof] = ACTIONS(3963), + [anon_sym__Alignof] = ACTIONS(3963), + [anon_sym_offsetof] = ACTIONS(3963), + [anon_sym__Generic] = ACTIONS(3963), + [anon_sym_asm] = ACTIONS(3963), + [anon_sym___asm__] = ACTIONS(3963), + [anon_sym___asm] = ACTIONS(3963), + [sym_number_literal] = ACTIONS(3965), + [anon_sym_L_SQUOTE] = ACTIONS(3965), + [anon_sym_u_SQUOTE] = ACTIONS(3965), + [anon_sym_U_SQUOTE] = ACTIONS(3965), + [anon_sym_u8_SQUOTE] = ACTIONS(3965), + [anon_sym_SQUOTE] = ACTIONS(3965), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3963), + [sym_false] = ACTIONS(3963), + [anon_sym_NULL] = ACTIONS(3963), + [anon_sym_nullptr] = ACTIONS(3963), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3963), + [anon_sym_decltype] = ACTIONS(3963), + [anon_sym_explicit] = ACTIONS(3963), + [anon_sym_typename] = ACTIONS(3963), + [anon_sym_template] = ACTIONS(3963), + [anon_sym_GT2] = ACTIONS(3965), + [anon_sym_operator] = ACTIONS(3963), + [anon_sym_try] = ACTIONS(3963), + [anon_sym_delete] = ACTIONS(3963), + [anon_sym_throw] = ACTIONS(3963), + [anon_sym_co_return] = ACTIONS(3963), + [anon_sym_co_yield] = ACTIONS(3963), + [anon_sym_R_DQUOTE] = ACTIONS(3965), + [anon_sym_LR_DQUOTE] = ACTIONS(3965), + [anon_sym_uR_DQUOTE] = ACTIONS(3965), + [anon_sym_UR_DQUOTE] = ACTIONS(3965), + [anon_sym_u8R_DQUOTE] = ACTIONS(3965), + [anon_sym_co_await] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3963), + [anon_sym_requires] = ACTIONS(3963), + [sym_this] = ACTIONS(3963), }, - [STATE(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), + [STATE(854)] = { + [sym_identifier] = ACTIONS(3967), + [anon_sym_COMMA] = ACTIONS(3969), + [anon_sym_RPAREN] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3969), + [anon_sym_BANG] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3967), + [anon_sym_PLUS] = ACTIONS(3967), + [anon_sym_STAR] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3969), + [anon_sym___extension__] = ACTIONS(3967), + [anon_sym_virtual] = ACTIONS(3967), + [anon_sym_extern] = ACTIONS(3967), + [anon_sym___attribute__] = ACTIONS(3967), + [anon_sym___attribute] = ACTIONS(3967), + [anon_sym_using] = ACTIONS(3967), + [anon_sym_COLON_COLON] = ACTIONS(3969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3969), + [anon_sym___declspec] = ACTIONS(3967), + [anon_sym___based] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_signed] = ACTIONS(3967), + [anon_sym_unsigned] = ACTIONS(3967), + [anon_sym_long] = ACTIONS(3967), + [anon_sym_short] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3967), + [anon_sym_static] = ACTIONS(3967), + [anon_sym_RBRACK] = ACTIONS(3969), + [anon_sym_EQ] = ACTIONS(3969), + [anon_sym_register] = ACTIONS(3967), + [anon_sym_inline] = ACTIONS(3967), + [anon_sym___inline] = ACTIONS(3967), + [anon_sym___inline__] = ACTIONS(3967), + [anon_sym___forceinline] = ACTIONS(3967), + [anon_sym_thread_local] = ACTIONS(3967), + [anon_sym___thread] = ACTIONS(3967), + [anon_sym_const] = ACTIONS(3967), + [anon_sym_constexpr] = ACTIONS(3967), + [anon_sym_volatile] = ACTIONS(3967), + [anon_sym_restrict] = ACTIONS(3967), + [anon_sym___restrict__] = ACTIONS(3967), + [anon_sym__Atomic] = ACTIONS(3967), + [anon_sym__Noreturn] = ACTIONS(3967), + [anon_sym_noreturn] = ACTIONS(3967), + [anon_sym__Nonnull] = ACTIONS(3967), + [anon_sym_mutable] = ACTIONS(3967), + [anon_sym_constinit] = ACTIONS(3967), + [anon_sym_consteval] = ACTIONS(3967), + [anon_sym_alignas] = ACTIONS(3967), + [anon_sym__Alignas] = ACTIONS(3967), + [sym_primitive_type] = ACTIONS(3967), + [anon_sym_enum] = ACTIONS(3967), + [anon_sym_class] = ACTIONS(3967), + [anon_sym_struct] = ACTIONS(3967), + [anon_sym_union] = ACTIONS(3967), + [anon_sym_if] = ACTIONS(3967), + [anon_sym_switch] = ACTIONS(3967), + [anon_sym_case] = ACTIONS(3967), + [anon_sym_default] = ACTIONS(3967), + [anon_sym_while] = ACTIONS(3967), + [anon_sym_do] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3967), + [anon_sym_return] = ACTIONS(3967), + [anon_sym_break] = ACTIONS(3967), + [anon_sym_continue] = ACTIONS(3967), + [anon_sym_goto] = ACTIONS(3967), + [anon_sym___try] = ACTIONS(3967), + [anon_sym___leave] = ACTIONS(3967), + [anon_sym_not] = ACTIONS(3967), + [anon_sym_compl] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3969), + [anon_sym_PLUS_PLUS] = ACTIONS(3969), + [anon_sym_sizeof] = ACTIONS(3967), + [anon_sym___alignof__] = ACTIONS(3967), + [anon_sym___alignof] = ACTIONS(3967), + [anon_sym__alignof] = ACTIONS(3967), + [anon_sym_alignof] = ACTIONS(3967), + [anon_sym__Alignof] = ACTIONS(3967), + [anon_sym_offsetof] = ACTIONS(3967), + [anon_sym__Generic] = ACTIONS(3967), + [anon_sym_asm] = ACTIONS(3967), + [anon_sym___asm__] = ACTIONS(3967), + [anon_sym___asm] = ACTIONS(3967), + [sym_number_literal] = ACTIONS(3969), + [anon_sym_L_SQUOTE] = ACTIONS(3969), + [anon_sym_u_SQUOTE] = ACTIONS(3969), + [anon_sym_U_SQUOTE] = ACTIONS(3969), + [anon_sym_u8_SQUOTE] = ACTIONS(3969), + [anon_sym_SQUOTE] = ACTIONS(3969), + [anon_sym_L_DQUOTE] = ACTIONS(3969), + [anon_sym_u_DQUOTE] = ACTIONS(3969), + [anon_sym_U_DQUOTE] = ACTIONS(3969), + [anon_sym_u8_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3967), + [anon_sym_nullptr] = ACTIONS(3967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3967), + [anon_sym_decltype] = ACTIONS(3967), + [anon_sym_explicit] = ACTIONS(3967), + [anon_sym_typename] = ACTIONS(3967), + [anon_sym_template] = ACTIONS(3967), + [anon_sym_GT2] = ACTIONS(3969), + [anon_sym_operator] = ACTIONS(3967), + [anon_sym_try] = ACTIONS(3967), + [anon_sym_delete] = ACTIONS(3967), + [anon_sym_throw] = ACTIONS(3967), + [anon_sym_co_return] = ACTIONS(3967), + [anon_sym_co_yield] = ACTIONS(3967), + [anon_sym_R_DQUOTE] = ACTIONS(3969), + [anon_sym_LR_DQUOTE] = ACTIONS(3969), + [anon_sym_uR_DQUOTE] = ACTIONS(3969), + [anon_sym_UR_DQUOTE] = ACTIONS(3969), + [anon_sym_u8R_DQUOTE] = ACTIONS(3969), + [anon_sym_co_await] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3967), + [anon_sym_requires] = ACTIONS(3967), + [sym_this] = ACTIONS(3967), }, - [STATE(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), + [STATE(855)] = { + [sym_expression] = STATE(4584), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3971), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3974), + [anon_sym_COLON_COLON] = ACTIONS(3977), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(3980), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(856)] = { + [sym_function_definition] = STATE(306), + [sym_declaration] = STATE(306), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6344), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(306), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1789), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(306), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1789), + [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(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(306), + [sym_concept_definition] = STATE(306), + [sym_requires_clause] = STATE(867), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(3987), + [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(3023), + [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(3989), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3991), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3993), + [anon_sym_concept] = ACTIONS(337), + [anon_sym_requires] = ACTIONS(3995), }, - [STATE(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), + [STATE(857)] = { + [sym_function_definition] = STATE(668), + [sym_declaration] = STATE(668), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4661), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6375), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2798), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(668), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1800), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(668), + [sym_operator_cast] = STATE(6932), + [sym__constructor_specifiers] = STATE(1800), + [sym_operator_cast_definition] = STATE(668), + [sym_operator_cast_declaration] = STATE(668), + [sym_constructor_or_destructor_definition] = STATE(668), + [sym_constructor_or_destructor_declaration] = STATE(668), + [sym_friend_declaration] = STATE(668), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(668), + [sym_concept_definition] = STATE(668), + [sym_requires_clause] = STATE(866), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6932), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(3987), + [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(3023), + [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(3027), + [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(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), + [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(153), + [anon_sym_requires] = ACTIONS(3995), + }, + [STATE(858)] = { + [sym_function_definition] = STATE(749), + [sym_declaration] = STATE(749), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6319), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(749), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1776), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(749), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1776), + [sym_operator_cast_definition] = STATE(749), + [sym_operator_cast_declaration] = STATE(749), + [sym_constructor_or_destructor_definition] = STATE(749), + [sym_constructor_or_destructor_declaration] = STATE(749), + [sym_friend_declaration] = STATE(749), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(749), + [sym_concept_definition] = STATE(749), + [sym_requires_clause] = STATE(875), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1776), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(3987), + [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(3023), + [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(4007), + [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(3027), + [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(4009), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(4011), + [anon_sym_concept] = ACTIONS(241), + [anon_sym_requires] = ACTIONS(3995), }, - [STATE(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), + [STATE(859)] = { + [sym_function_definition] = STATE(2090), + [sym_declaration] = STATE(2090), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4761), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1988), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2807), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(2090), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(2090), + [sym_operator_cast] = STATE(6936), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(2090), + [sym_operator_cast_declaration] = STATE(2090), + [sym_constructor_or_destructor_definition] = STATE(2090), + [sym_constructor_or_destructor_declaration] = STATE(2090), + [sym_friend_declaration] = STATE(2090), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(2090), + [sym_concept_definition] = STATE(2090), + [sym_requires_clause] = STATE(883), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(4013), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [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(3023), + [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(3669), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3671), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_concept] = ACTIONS(4015), + [anon_sym_requires] = ACTIONS(3995), }, - [STATE(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), + [STATE(860)] = { + [sym_function_definition] = STATE(816), + [sym_declaration] = STATE(816), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4756), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1987), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6345), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2806), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(816), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1803), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(816), + [sym_operator_cast] = STATE(6958), + [sym__constructor_specifiers] = STATE(1803), + [sym_operator_cast_definition] = STATE(816), + [sym_operator_cast_declaration] = STATE(816), + [sym_constructor_or_destructor_definition] = STATE(816), + [sym_constructor_or_destructor_declaration] = STATE(816), + [sym_friend_declaration] = STATE(816), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(816), + [sym_concept_definition] = STATE(816), + [sym_requires_clause] = STATE(863), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6958), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1803), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(4017), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [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(3023), + [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(4019), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(4023), + [anon_sym_concept] = ACTIONS(1042), + [anon_sym_requires] = ACTIONS(3995), }, - [STATE(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), + [STATE(861)] = { + [sym_function_definition] = STATE(2223), + [sym_declaration] = STATE(2223), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4772), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1990), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6381), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2809), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(2223), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1812), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(2223), + [sym_operator_cast] = STATE(6933), + [sym__constructor_specifiers] = STATE(1812), + [sym_operator_cast_definition] = STATE(2223), + [sym_operator_cast_declaration] = STATE(2223), + [sym_constructor_or_destructor_definition] = STATE(2223), + [sym_constructor_or_destructor_declaration] = STATE(2223), + [sym_friend_declaration] = STATE(2223), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(2223), + [sym_concept_definition] = STATE(2223), + [sym_requires_clause] = STATE(880), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6933), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1812), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(4025), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [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(3023), + [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(3823), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3825), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3827), + [anon_sym_concept] = ACTIONS(4027), + [anon_sym_requires] = ACTIONS(3995), }, - [STATE(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), + [STATE(862)] = { + [sym_function_definition] = STATE(1746), + [sym_declaration] = STATE(1746), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4765), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2808), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(1746), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(1746), + [sym_operator_cast] = STATE(6976), + [sym__constructor_specifiers] = STATE(1798), + [sym_operator_cast_definition] = STATE(1746), + [sym_operator_cast_declaration] = STATE(1746), + [sym_constructor_or_destructor_definition] = STATE(1746), + [sym_constructor_or_destructor_declaration] = STATE(1746), + [sym_friend_declaration] = STATE(1746), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(1746), + [sym_concept_definition] = STATE(1746), + [sym_requires_clause] = STATE(878), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(4029), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [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(3023), + [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(3025), + [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(3027), + [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(3041), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(4031), + [anon_sym_requires] = ACTIONS(3995), }, - [STATE(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), + [STATE(863)] = { + [sym_function_definition] = STATE(679), + [sym_declaration] = STATE(679), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4756), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1987), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6345), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2806), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(679), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1803), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(679), + [sym_operator_cast] = STATE(6958), + [sym__constructor_specifiers] = STATE(1803), + [sym_operator_cast_definition] = STATE(679), + [sym_operator_cast_declaration] = STATE(679), + [sym_constructor_or_destructor_definition] = STATE(679), + [sym_constructor_or_destructor_declaration] = STATE(679), + [sym_friend_declaration] = STATE(679), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(679), + [sym_concept_definition] = STATE(679), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6958), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1803), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(4017), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [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(3023), + [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(4019), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4021), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(4023), + [anon_sym_concept] = ACTIONS(1042), }, - [STATE(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), + [STATE(864)] = { + [sym_type_qualifier] = STATE(870), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4757), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(870), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4033), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4037), + [anon_sym_RBRACK] = ACTIONS(4039), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(865)] = { + [sym_type_qualifier] = STATE(881), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4764), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(881), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4045), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4047), + [anon_sym_RBRACK] = ACTIONS(4049), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(866)] = { + [sym_function_definition] = STATE(617), + [sym_declaration] = STATE(617), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4661), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1965), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6375), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2798), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(617), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1800), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(617), + [sym_operator_cast] = STATE(6932), + [sym__constructor_specifiers] = STATE(1800), + [sym_operator_cast_definition] = STATE(617), + [sym_operator_cast_declaration] = STATE(617), + [sym_constructor_or_destructor_definition] = STATE(617), + [sym_constructor_or_destructor_declaration] = STATE(617), + [sym_friend_declaration] = STATE(617), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(617), + [sym_concept_definition] = STATE(617), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6932), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1800), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(3987), + [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(3023), + [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(3027), + [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(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), + [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(153), }, - [STATE(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), + [STATE(867)] = { + [sym_function_definition] = STATE(329), + [sym_declaration] = STATE(329), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4740), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1985), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6344), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2802), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(329), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1789), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(329), + [sym_operator_cast] = STATE(6970), + [sym__constructor_specifiers] = STATE(1789), + [sym_operator_cast_definition] = STATE(329), + [sym_operator_cast_declaration] = STATE(329), + [sym_constructor_or_destructor_definition] = STATE(329), + [sym_constructor_or_destructor_declaration] = STATE(329), + [sym_friend_declaration] = STATE(329), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(329), + [sym_concept_definition] = STATE(329), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6970), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1789), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(3987), + [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(3023), + [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(3989), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3991), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3993), + [anon_sym_concept] = ACTIONS(337), }, - [STATE(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), + [STATE(868)] = { + [sym_type_qualifier] = STATE(869), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4806), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(869), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4053), + [anon_sym_RBRACK] = ACTIONS(4055), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(869)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4656), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4057), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4061), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(870)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4814), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4063), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4065), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(871)] = { + [sym_type_qualifier] = STATE(879), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4663), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4069), + [anon_sym_RBRACK] = ACTIONS(4071), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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(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(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), + [STATE(872)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4834), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4073), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4075), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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_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), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(873)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4658), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4077), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4079), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(874)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4805), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4081), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4083), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(875)] = { + [sym_function_definition] = STATE(678), + [sym_declaration] = STATE(678), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4682), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1984), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6319), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2793), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(678), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1776), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(678), + [sym_operator_cast] = STATE(6972), + [sym__constructor_specifiers] = STATE(1776), + [sym_operator_cast_definition] = STATE(678), + [sym_operator_cast_declaration] = STATE(678), + [sym_constructor_or_destructor_definition] = STATE(678), + [sym_constructor_or_destructor_declaration] = STATE(678), + [sym_friend_declaration] = STATE(678), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(678), + [sym_concept_definition] = STATE(678), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6972), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1776), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(3987), + [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(3023), + [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(4007), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(4009), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(4011), + [anon_sym_concept] = ACTIONS(241), }, - [STATE(931)] = { - [sym_identifier] = 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] = ACTIONS(2697), - [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_COLON_COLON] = ACTIONS(2697), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), - [anon_sym___declspec] = 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_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), + [STATE(876)] = { + [sym_identifier] = ACTIONS(4085), + [anon_sym_LPAREN2] = ACTIONS(4088), + [anon_sym_BANG] = ACTIONS(4091), + [anon_sym_TILDE] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AMP_AMP] = ACTIONS(4095), + [anon_sym_AMP] = ACTIONS(4085), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym___extension__] = ACTIONS(4085), + [anon_sym_virtual] = ACTIONS(4097), + [anon_sym_extern] = ACTIONS(4097), + [anon_sym___attribute__] = ACTIONS(4097), + [anon_sym___attribute] = ACTIONS(4097), + [anon_sym_using] = ACTIONS(4093), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4097), + [anon_sym___based] = ACTIONS(4097), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_signed] = ACTIONS(4097), + [anon_sym_unsigned] = ACTIONS(4097), + [anon_sym_long] = ACTIONS(4097), + [anon_sym_short] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(4085), + [anon_sym_static] = ACTIONS(4097), + [anon_sym_register] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym___inline] = ACTIONS(4097), + [anon_sym___inline__] = ACTIONS(4097), + [anon_sym___forceinline] = ACTIONS(4097), + [anon_sym_thread_local] = ACTIONS(4097), + [anon_sym___thread] = ACTIONS(4097), + [anon_sym_const] = ACTIONS(4097), + [anon_sym_constexpr] = ACTIONS(4097), + [anon_sym_volatile] = ACTIONS(4097), + [anon_sym_restrict] = ACTIONS(4097), + [anon_sym___restrict__] = ACTIONS(4097), + [anon_sym__Atomic] = ACTIONS(4097), + [anon_sym__Noreturn] = ACTIONS(4097), + [anon_sym_noreturn] = ACTIONS(4097), + [anon_sym__Nonnull] = ACTIONS(4097), + [anon_sym_mutable] = ACTIONS(4097), + [anon_sym_constinit] = ACTIONS(4097), + [anon_sym_consteval] = ACTIONS(4097), + [anon_sym_alignas] = ACTIONS(4097), + [anon_sym__Alignas] = ACTIONS(4097), + [sym_primitive_type] = ACTIONS(4085), + [anon_sym_enum] = ACTIONS(4097), + [anon_sym_class] = ACTIONS(4097), + [anon_sym_struct] = ACTIONS(4097), + [anon_sym_union] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_switch] = ACTIONS(4093), + [anon_sym_case] = ACTIONS(4093), + [anon_sym_default] = ACTIONS(4093), + [anon_sym_while] = ACTIONS(4093), + [anon_sym_do] = ACTIONS(4093), + [anon_sym_for] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_goto] = ACTIONS(4093), + [anon_sym___try] = ACTIONS(4093), + [anon_sym___leave] = ACTIONS(4093), + [anon_sym_not] = ACTIONS(4093), + [anon_sym_compl] = ACTIONS(4093), + [anon_sym_DASH_DASH] = ACTIONS(4091), + [anon_sym_PLUS_PLUS] = ACTIONS(4091), + [anon_sym_sizeof] = ACTIONS(4093), + [anon_sym___alignof__] = ACTIONS(4093), + [anon_sym___alignof] = ACTIONS(4093), + [anon_sym__alignof] = ACTIONS(4093), + [anon_sym_alignof] = ACTIONS(4093), + [anon_sym__Alignof] = ACTIONS(4093), + [anon_sym_offsetof] = ACTIONS(4093), + [anon_sym__Generic] = ACTIONS(4093), + [anon_sym_asm] = ACTIONS(4093), + [anon_sym___asm__] = ACTIONS(4093), + [anon_sym___asm] = ACTIONS(4093), + [sym_number_literal] = ACTIONS(4091), + [anon_sym_L_SQUOTE] = ACTIONS(4091), + [anon_sym_u_SQUOTE] = ACTIONS(4091), + [anon_sym_U_SQUOTE] = ACTIONS(4091), + [anon_sym_u8_SQUOTE] = ACTIONS(4091), + [anon_sym_SQUOTE] = ACTIONS(4091), + [anon_sym_L_DQUOTE] = ACTIONS(4091), + [anon_sym_u_DQUOTE] = ACTIONS(4091), + [anon_sym_U_DQUOTE] = ACTIONS(4091), + [anon_sym_u8_DQUOTE] = ACTIONS(4091), + [anon_sym_DQUOTE] = ACTIONS(4091), + [sym_true] = ACTIONS(4093), + [sym_false] = ACTIONS(4093), + [anon_sym_NULL] = ACTIONS(4093), + [anon_sym_nullptr] = ACTIONS(4093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4097), + [anon_sym_decltype] = ACTIONS(4085), + [anon_sym_explicit] = ACTIONS(4097), + [anon_sym_typename] = ACTIONS(4097), + [anon_sym_template] = ACTIONS(4085), + [anon_sym_operator] = ACTIONS(4097), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_delete] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_co_return] = ACTIONS(4093), + [anon_sym_co_yield] = ACTIONS(4093), + [anon_sym_R_DQUOTE] = ACTIONS(4091), + [anon_sym_LR_DQUOTE] = ACTIONS(4091), + [anon_sym_uR_DQUOTE] = ACTIONS(4091), + [anon_sym_UR_DQUOTE] = ACTIONS(4091), + [anon_sym_u8R_DQUOTE] = ACTIONS(4091), + [anon_sym_co_await] = ACTIONS(4093), + [anon_sym_new] = ACTIONS(4093), + [anon_sym_requires] = ACTIONS(4093), + [sym_this] = ACTIONS(4093), + }, + [STATE(877)] = { + [sym_type_qualifier] = STATE(872), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4671), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(872), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4099), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4101), + [anon_sym_RBRACK] = ACTIONS(4103), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(2695), - [anon_sym_decltype] = ACTIONS(2695), - [anon_sym_typename] = ACTIONS(2695), - [anon_sym_template] = ACTIONS(2695), - [anon_sym_try] = ACTIONS(2695), - [anon_sym_delete] = ACTIONS(2695), - [anon_sym_throw] = 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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(878)] = { + [sym_function_definition] = STATE(1767), + [sym_declaration] = STATE(1767), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4765), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1989), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6316), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2808), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(1767), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1798), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(1767), + [sym_operator_cast] = STATE(6976), + [sym__constructor_specifiers] = STATE(1798), + [sym_operator_cast_definition] = STATE(1767), + [sym_operator_cast_declaration] = STATE(1767), + [sym_constructor_or_destructor_definition] = STATE(1767), + [sym_constructor_or_destructor_declaration] = STATE(1767), + [sym_friend_declaration] = STATE(1767), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(1767), + [sym_concept_definition] = STATE(1767), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6976), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1798), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(4029), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [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(3023), + [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(3025), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3041), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3043), + [anon_sym_concept] = ACTIONS(4031), }, - [STATE(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), + [STATE(879)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4701), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4105), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4107), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(880)] = { + [sym_function_definition] = STATE(2144), + [sym_declaration] = STATE(2144), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4772), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1990), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6381), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2809), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(2144), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1812), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(2144), + [sym_operator_cast] = STATE(6933), + [sym__constructor_specifiers] = STATE(1812), + [sym_operator_cast_definition] = STATE(2144), + [sym_operator_cast_declaration] = STATE(2144), + [sym_constructor_or_destructor_definition] = STATE(2144), + [sym_constructor_or_destructor_declaration] = STATE(2144), + [sym_friend_declaration] = STATE(2144), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(2144), + [sym_concept_definition] = STATE(2144), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6933), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1812), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(4025), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [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(3023), + [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(3823), + [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(3027), + [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(3825), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3827), + [anon_sym_concept] = ACTIONS(4027), + }, + [STATE(881)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4716), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4109), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4111), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(882)] = { + [sym_type_qualifier] = STATE(879), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4663), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(4113), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4067), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4069), + [anon_sym_RBRACK] = ACTIONS(4071), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(883)] = { + [sym_function_definition] = STATE(2174), + [sym_declaration] = STATE(2174), + [sym__declaration_modifiers] = STATE(3196), + [sym__declaration_specifiers] = STATE(4761), + [sym_attribute_specifier] = STATE(3196), + [sym_attribute_declaration] = STATE(3196), + [sym_ms_declspec_modifier] = STATE(3196), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(1988), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6378), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3196), + [sym_type_qualifier] = STATE(3196), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2807), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym__empty_declaration] = STATE(2174), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_explicit_function_specifier] = STATE(1807), + [sym_dependent_type] = STATE(2452), + [sym_template_declaration] = STATE(2174), + [sym_operator_cast] = STATE(6936), + [sym__constructor_specifiers] = STATE(1807), + [sym_operator_cast_definition] = STATE(2174), + [sym_operator_cast_declaration] = STATE(2174), + [sym_constructor_or_destructor_definition] = STATE(2174), + [sym_constructor_or_destructor_declaration] = STATE(2174), + [sym_friend_declaration] = STATE(2174), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_alias_declaration] = STATE(2174), + [sym_concept_definition] = STATE(2174), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5577), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_qualified_operator_cast_identifier] = STATE(6936), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [aux_sym_operator_cast_definition_repeat1] = STATE(1807), + [sym_identifier] = ACTIONS(3983), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(4013), + [anon_sym_COLON_COLON] = ACTIONS(3987), + [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(3023), + [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(3669), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(3671), + [anon_sym_operator] = ACTIONS(141), + [anon_sym_friend] = ACTIONS(3673), + [anon_sym_concept] = ACTIONS(4015), }, - [STATE(936)] = { - [sym_identifier] = 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] = ACTIONS(2637), - [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_COLON_COLON] = ACTIONS(2637), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), - [anon_sym___declspec] = 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_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), + [STATE(884)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4799), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4115), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4117), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(2635), - [anon_sym_decltype] = ACTIONS(2635), - [anon_sym_typename] = ACTIONS(2635), - [anon_sym_template] = ACTIONS(2635), - [anon_sym_try] = ACTIONS(2635), - [anon_sym_delete] = ACTIONS(2635), - [anon_sym_throw] = 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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(937)] = { - [sym_identifier] = 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] = ACTIONS(2737), - [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_COLON_COLON] = ACTIONS(2737), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), - [anon_sym___declspec] = 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_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), + [STATE(885)] = { + [sym_type_qualifier] = STATE(888), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4667), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(888), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4119), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4121), + [anon_sym_RBRACK] = ACTIONS(4123), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(886)] = { + [sym_type_qualifier] = STATE(884), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4712), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(884), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4125), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4127), + [anon_sym_RBRACK] = ACTIONS(4129), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(887)] = { + [sym_type_qualifier] = STATE(873), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4807), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(873), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4131), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4133), + [anon_sym_RBRACK] = ACTIONS(4135), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(940)] = { - [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), + [STATE(888)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4679), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4137), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4139), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(889)] = { + [sym_type_qualifier] = STATE(874), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4749), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(874), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4141), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4143), + [anon_sym_RBRACK] = ACTIONS(4145), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(890)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4783), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4147), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4059), + [anon_sym_RBRACK] = ACTIONS(4149), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(891)] = { + [sym_type_qualifier] = STATE(890), + [sym_alignas_qualifier] = STATE(1910), + [sym_expression] = STATE(4782), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [aux_sym_array_declarator_repeat1] = STATE(890), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4151), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(4035), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(4153), + [anon_sym_RBRACK] = ACTIONS(4155), + [anon_sym_const] = ACTIONS(4041), + [anon_sym_constexpr] = ACTIONS(4041), + [anon_sym_volatile] = ACTIONS(4041), + [anon_sym_restrict] = ACTIONS(4041), + [anon_sym___restrict__] = ACTIONS(4041), + [anon_sym__Atomic] = ACTIONS(4041), + [anon_sym__Noreturn] = ACTIONS(4041), + [anon_sym_noreturn] = ACTIONS(4041), + [anon_sym__Nonnull] = ACTIONS(4041), + [anon_sym_mutable] = ACTIONS(4041), + [anon_sym_constinit] = ACTIONS(4041), + [anon_sym_consteval] = ACTIONS(4041), + [anon_sym_alignas] = ACTIONS(4043), + [anon_sym__Alignas] = ACTIONS(4043), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(892)] = { + [sym_catch_clause] = STATE(896), + [aux_sym_constructor_try_statement_repeat1] = STATE(896), + [sym_identifier] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_BANG] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym___extension__] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym___attribute] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2543), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym___inline] = ACTIONS(2541), + [anon_sym___inline__] = ACTIONS(2541), + [anon_sym___forceinline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym___thread] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym___restrict__] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym__Noreturn] = ACTIONS(2541), + [anon_sym_noreturn] = ACTIONS(2541), + [anon_sym__Nonnull] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_alignas] = ACTIONS(2541), + [anon_sym__Alignas] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [anon_sym_if] = ACTIONS(2541), + [anon_sym_else] = ACTIONS(2541), + [anon_sym_switch] = ACTIONS(2541), + [anon_sym_while] = ACTIONS(2541), + [anon_sym_do] = ACTIONS(2541), + [anon_sym_for] = ACTIONS(2541), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_break] = ACTIONS(2541), + [anon_sym_continue] = ACTIONS(2541), + [anon_sym_goto] = ACTIONS(2541), + [anon_sym___try] = ACTIONS(2541), + [anon_sym___leave] = ACTIONS(2541), + [anon_sym_not] = ACTIONS(2541), + [anon_sym_compl] = ACTIONS(2541), + [anon_sym_DASH_DASH] = ACTIONS(2543), + [anon_sym_PLUS_PLUS] = ACTIONS(2543), + [anon_sym_sizeof] = ACTIONS(2541), + [anon_sym___alignof__] = ACTIONS(2541), + [anon_sym___alignof] = ACTIONS(2541), + [anon_sym__alignof] = ACTIONS(2541), + [anon_sym_alignof] = ACTIONS(2541), + [anon_sym__Alignof] = ACTIONS(2541), + [anon_sym_offsetof] = ACTIONS(2541), + [anon_sym__Generic] = ACTIONS(2541), + [anon_sym_asm] = ACTIONS(2541), + [anon_sym___asm__] = ACTIONS(2541), + [anon_sym___asm] = ACTIONS(2541), + [sym_number_literal] = ACTIONS(2543), + [anon_sym_L_SQUOTE] = ACTIONS(2543), + [anon_sym_u_SQUOTE] = ACTIONS(2543), + [anon_sym_U_SQUOTE] = ACTIONS(2543), + [anon_sym_u8_SQUOTE] = ACTIONS(2543), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_L_DQUOTE] = ACTIONS(2543), + [anon_sym_u_DQUOTE] = ACTIONS(2543), + [anon_sym_U_DQUOTE] = ACTIONS(2543), + [anon_sym_u8_DQUOTE] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym_true] = ACTIONS(2541), + [sym_false] = ACTIONS(2541), + [anon_sym_NULL] = ACTIONS(2541), + [anon_sym_nullptr] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2541), + [anon_sym_throw] = ACTIONS(2541), + [anon_sym_co_return] = ACTIONS(2541), + [anon_sym_co_yield] = ACTIONS(2541), + [anon_sym_catch] = ACTIONS(4157), + [anon_sym_R_DQUOTE] = ACTIONS(2543), + [anon_sym_LR_DQUOTE] = ACTIONS(2543), + [anon_sym_uR_DQUOTE] = ACTIONS(2543), + [anon_sym_UR_DQUOTE] = ACTIONS(2543), + [anon_sym_u8R_DQUOTE] = ACTIONS(2543), + [anon_sym_co_await] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2541), + [anon_sym_requires] = ACTIONS(2541), + [sym_this] = ACTIONS(2541), + }, + [STATE(893)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1637), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(894)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1636), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4188), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4163), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4192), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(895)] = { + [sym_expression] = STATE(3004), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(4201), + [anon_sym_LPAREN2] = ACTIONS(4204), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_PLUS] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym___extension__] = ACTIONS(4210), + [anon_sym_COLON_COLON] = ACTIONS(4213), + [anon_sym___based] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [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(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), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2572), + [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), }, - [STATE(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), + [STATE(896)] = { + [sym_catch_clause] = STATE(896), + [aux_sym_constructor_try_statement_repeat1] = STATE(896), + [sym_identifier] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_BANG] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_virtual] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_mutable] = ACTIONS(2490), + [anon_sym_constinit] = ACTIONS(2490), + [anon_sym_consteval] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_switch] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_goto] = ACTIONS(2490), + [anon_sym___try] = ACTIONS(2490), + [anon_sym___leave] = ACTIONS(2490), + [anon_sym_not] = ACTIONS(2490), + [anon_sym_compl] = ACTIONS(2490), + [anon_sym_DASH_DASH] = ACTIONS(2492), + [anon_sym_PLUS_PLUS] = ACTIONS(2492), + [anon_sym_sizeof] = ACTIONS(2490), + [anon_sym___alignof__] = ACTIONS(2490), + [anon_sym___alignof] = ACTIONS(2490), + [anon_sym__alignof] = ACTIONS(2490), + [anon_sym_alignof] = ACTIONS(2490), + [anon_sym__Alignof] = ACTIONS(2490), + [anon_sym_offsetof] = ACTIONS(2490), + [anon_sym__Generic] = ACTIONS(2490), + [anon_sym_asm] = ACTIONS(2490), + [anon_sym___asm__] = ACTIONS(2490), + [anon_sym___asm] = ACTIONS(2490), + [sym_number_literal] = ACTIONS(2492), + [anon_sym_L_SQUOTE] = ACTIONS(2492), + [anon_sym_u_SQUOTE] = ACTIONS(2492), + [anon_sym_U_SQUOTE] = ACTIONS(2492), + [anon_sym_u8_SQUOTE] = ACTIONS(2492), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_L_DQUOTE] = ACTIONS(2492), + [anon_sym_u_DQUOTE] = ACTIONS(2492), + [anon_sym_U_DQUOTE] = ACTIONS(2492), + [anon_sym_u8_DQUOTE] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym_true] = ACTIONS(2490), + [sym_false] = ACTIONS(2490), + [anon_sym_NULL] = ACTIONS(2490), + [anon_sym_nullptr] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2490), + [anon_sym_decltype] = ACTIONS(2490), + [anon_sym_typename] = ACTIONS(2490), + [anon_sym_template] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_delete] = ACTIONS(2490), + [anon_sym_throw] = ACTIONS(2490), + [anon_sym_co_return] = ACTIONS(2490), + [anon_sym_co_yield] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(4219), + [anon_sym_R_DQUOTE] = ACTIONS(2492), + [anon_sym_LR_DQUOTE] = ACTIONS(2492), + [anon_sym_uR_DQUOTE] = ACTIONS(2492), + [anon_sym_UR_DQUOTE] = ACTIONS(2492), + [anon_sym_u8R_DQUOTE] = ACTIONS(2492), + [anon_sym_co_await] = ACTIONS(2490), + [anon_sym_new] = ACTIONS(2490), + [anon_sym_requires] = ACTIONS(2490), + [sym_this] = ACTIONS(2490), + }, + [STATE(897)] = { + [sym_expression] = STATE(3183), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(3951), + [anon_sym_LPAREN2] = ACTIONS(4222), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(4231), + [anon_sym___extension__] = ACTIONS(3954), + [anon_sym_COLON_COLON] = ACTIONS(3957), + [anon_sym___based] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [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), - [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(2583), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_operator] = ACTIONS(2572), + [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), }, - [STATE(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), + [STATE(898)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1637), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(899)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1636), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4188), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4163), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(900)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1636), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4188), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4163), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4236), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(901)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1637), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(902)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1637), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(903)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1637), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(904)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1636), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4188), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4163), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(905)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1637), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4242), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(906)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1637), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4236), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(907)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1636), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4188), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4163), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(908)] = { + [sym_expression] = STATE(4627), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(4244), + [anon_sym_LPAREN2] = ACTIONS(4247), + [anon_sym_BANG] = ACTIONS(4250), + [anon_sym_TILDE] = ACTIONS(4250), + [anon_sym_DASH] = ACTIONS(4253), + [anon_sym_PLUS] = ACTIONS(4253), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym___extension__] = ACTIONS(4256), + [anon_sym_COLON_COLON] = ACTIONS(4259), + [anon_sym_LBRACK] = ACTIONS(4216), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_RBRACK] = ACTIONS(2562), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2580), + [anon_sym_not] = ACTIONS(4253), + [anon_sym_compl] = ACTIONS(4253), + [anon_sym_DASH_DASH] = ACTIONS(4262), + [anon_sym_PLUS_PLUS] = ACTIONS(4262), + [anon_sym_sizeof] = ACTIONS(4265), + [anon_sym___alignof__] = ACTIONS(4268), + [anon_sym___alignof] = ACTIONS(4268), + [anon_sym__alignof] = ACTIONS(4268), + [anon_sym_alignof] = ACTIONS(4268), + [anon_sym__Alignof] = ACTIONS(4268), + [anon_sym_offsetof] = ACTIONS(4271), + [anon_sym__Generic] = ACTIONS(4274), + [anon_sym_asm] = ACTIONS(4277), + [anon_sym___asm__] = ACTIONS(4277), + [anon_sym___asm] = ACTIONS(4277), + [sym_number_literal] = ACTIONS(4280), + [anon_sym_L_SQUOTE] = ACTIONS(4283), + [anon_sym_u_SQUOTE] = ACTIONS(4283), + [anon_sym_U_SQUOTE] = ACTIONS(4283), + [anon_sym_u8_SQUOTE] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4283), + [anon_sym_L_DQUOTE] = ACTIONS(4286), + [anon_sym_u_DQUOTE] = ACTIONS(4286), + [anon_sym_U_DQUOTE] = ACTIONS(4286), + [anon_sym_u8_DQUOTE] = ACTIONS(4286), + [anon_sym_DQUOTE] = ACTIONS(4286), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [anon_sym_NULL] = ACTIONS(4292), + [anon_sym_nullptr] = ACTIONS(4292), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2586), + [anon_sym_delete] = ACTIONS(4295), + [anon_sym_R_DQUOTE] = ACTIONS(4298), + [anon_sym_LR_DQUOTE] = ACTIONS(4298), + [anon_sym_uR_DQUOTE] = ACTIONS(4298), + [anon_sym_UR_DQUOTE] = ACTIONS(4298), + [anon_sym_u8R_DQUOTE] = ACTIONS(4298), + [anon_sym_co_await] = ACTIONS(4301), + [anon_sym_new] = ACTIONS(4304), + [anon_sym_requires] = ACTIONS(4307), + [sym_this] = ACTIONS(4289), + }, + [STATE(909)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(910)] = { + [sym_else_clause] = STATE(927), + [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(4310), + [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(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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(911)] = { + [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(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), + [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), }, - [STATE(949)] = { - [sym_identifier] = 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] = ACTIONS(2645), - [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_COLON_COLON] = ACTIONS(2645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), - [anon_sym___declspec] = ACTIONS(2643), - [anon_sym_LBRACE] = 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_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(2643), - [anon_sym_decltype] = ACTIONS(2643), - [anon_sym_typename] = ACTIONS(2643), - [anon_sym_template] = ACTIONS(2643), - [anon_sym_try] = ACTIONS(2643), - [anon_sym_delete] = ACTIONS(2643), - [anon_sym_throw] = 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), + [STATE(912)] = { + [sym_identifier] = ACTIONS(3963), + [anon_sym_LPAREN2] = ACTIONS(3965), + [anon_sym_BANG] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3965), + [anon_sym_DASH] = ACTIONS(3963), + [anon_sym_PLUS] = ACTIONS(3963), + [anon_sym_STAR] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3965), + [anon_sym_SEMI] = ACTIONS(3965), + [anon_sym___extension__] = ACTIONS(3963), + [anon_sym_virtual] = ACTIONS(3963), + [anon_sym_extern] = ACTIONS(3963), + [anon_sym___attribute__] = ACTIONS(3963), + [anon_sym___attribute] = ACTIONS(3963), + [anon_sym_using] = ACTIONS(3963), + [anon_sym_COLON_COLON] = ACTIONS(3965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3965), + [anon_sym___declspec] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_signed] = ACTIONS(3963), + [anon_sym_unsigned] = ACTIONS(3963), + [anon_sym_long] = ACTIONS(3963), + [anon_sym_short] = ACTIONS(3963), + [anon_sym_LBRACK] = ACTIONS(3963), + [anon_sym_static] = ACTIONS(3963), + [anon_sym_register] = ACTIONS(3963), + [anon_sym_inline] = ACTIONS(3963), + [anon_sym___inline] = ACTIONS(3963), + [anon_sym___inline__] = ACTIONS(3963), + [anon_sym___forceinline] = ACTIONS(3963), + [anon_sym_thread_local] = ACTIONS(3963), + [anon_sym___thread] = ACTIONS(3963), + [anon_sym_const] = ACTIONS(3963), + [anon_sym_constexpr] = ACTIONS(3963), + [anon_sym_volatile] = ACTIONS(3963), + [anon_sym_restrict] = ACTIONS(3963), + [anon_sym___restrict__] = ACTIONS(3963), + [anon_sym__Atomic] = ACTIONS(3963), + [anon_sym__Noreturn] = ACTIONS(3963), + [anon_sym_noreturn] = ACTIONS(3963), + [anon_sym__Nonnull] = ACTIONS(3963), + [anon_sym_mutable] = ACTIONS(3963), + [anon_sym_constinit] = ACTIONS(3963), + [anon_sym_consteval] = ACTIONS(3963), + [anon_sym_alignas] = ACTIONS(3963), + [anon_sym__Alignas] = ACTIONS(3963), + [sym_primitive_type] = ACTIONS(3963), + [anon_sym_enum] = ACTIONS(3963), + [anon_sym_class] = ACTIONS(3963), + [anon_sym_struct] = ACTIONS(3963), + [anon_sym_union] = ACTIONS(3963), + [anon_sym_if] = ACTIONS(3963), + [anon_sym_switch] = ACTIONS(3963), + [anon_sym_case] = ACTIONS(3963), + [anon_sym_default] = ACTIONS(3963), + [anon_sym_while] = ACTIONS(3963), + [anon_sym_do] = ACTIONS(3963), + [anon_sym_for] = ACTIONS(3963), + [anon_sym_return] = ACTIONS(3963), + [anon_sym_break] = ACTIONS(3963), + [anon_sym_continue] = ACTIONS(3963), + [anon_sym_goto] = ACTIONS(3963), + [anon_sym___try] = ACTIONS(3963), + [anon_sym___leave] = ACTIONS(3963), + [anon_sym_not] = ACTIONS(3963), + [anon_sym_compl] = ACTIONS(3963), + [anon_sym_DASH_DASH] = ACTIONS(3965), + [anon_sym_PLUS_PLUS] = ACTIONS(3965), + [anon_sym_sizeof] = ACTIONS(3963), + [anon_sym___alignof__] = ACTIONS(3963), + [anon_sym___alignof] = ACTIONS(3963), + [anon_sym__alignof] = ACTIONS(3963), + [anon_sym_alignof] = ACTIONS(3963), + [anon_sym__Alignof] = ACTIONS(3963), + [anon_sym_offsetof] = ACTIONS(3963), + [anon_sym__Generic] = ACTIONS(3963), + [anon_sym_asm] = ACTIONS(3963), + [anon_sym___asm__] = ACTIONS(3963), + [anon_sym___asm] = ACTIONS(3963), + [sym_number_literal] = ACTIONS(3965), + [anon_sym_L_SQUOTE] = ACTIONS(3965), + [anon_sym_u_SQUOTE] = ACTIONS(3965), + [anon_sym_U_SQUOTE] = ACTIONS(3965), + [anon_sym_u8_SQUOTE] = ACTIONS(3965), + [anon_sym_SQUOTE] = ACTIONS(3965), + [anon_sym_L_DQUOTE] = ACTIONS(3965), + [anon_sym_u_DQUOTE] = ACTIONS(3965), + [anon_sym_U_DQUOTE] = ACTIONS(3965), + [anon_sym_u8_DQUOTE] = ACTIONS(3965), + [anon_sym_DQUOTE] = ACTIONS(3965), + [sym_true] = ACTIONS(3963), + [sym_false] = ACTIONS(3963), + [anon_sym_NULL] = ACTIONS(3963), + [anon_sym_nullptr] = ACTIONS(3963), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3963), + [anon_sym_decltype] = ACTIONS(3963), + [anon_sym_typename] = ACTIONS(3963), + [anon_sym_template] = ACTIONS(3963), + [anon_sym_try] = ACTIONS(3963), + [anon_sym_delete] = ACTIONS(3963), + [anon_sym_throw] = ACTIONS(3963), + [anon_sym_co_return] = ACTIONS(3963), + [anon_sym_co_yield] = ACTIONS(3963), + [anon_sym_R_DQUOTE] = ACTIONS(3965), + [anon_sym_LR_DQUOTE] = ACTIONS(3965), + [anon_sym_uR_DQUOTE] = ACTIONS(3965), + [anon_sym_UR_DQUOTE] = ACTIONS(3965), + [anon_sym_u8R_DQUOTE] = ACTIONS(3965), + [anon_sym_co_await] = ACTIONS(3963), + [anon_sym_new] = ACTIONS(3963), + [anon_sym_requires] = ACTIONS(3963), + [sym_this] = ACTIONS(3963), }, - [STATE(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), + [STATE(913)] = { + [sym_identifier] = ACTIONS(3967), + [anon_sym_LPAREN2] = ACTIONS(3969), + [anon_sym_BANG] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3969), + [anon_sym_DASH] = ACTIONS(3967), + [anon_sym_PLUS] = ACTIONS(3967), + [anon_sym_STAR] = ACTIONS(3969), + [anon_sym_AMP] = ACTIONS(3969), + [anon_sym_SEMI] = ACTIONS(3969), + [anon_sym___extension__] = ACTIONS(3967), + [anon_sym_virtual] = ACTIONS(3967), + [anon_sym_extern] = ACTIONS(3967), + [anon_sym___attribute__] = ACTIONS(3967), + [anon_sym___attribute] = ACTIONS(3967), + [anon_sym_using] = ACTIONS(3967), + [anon_sym_COLON_COLON] = ACTIONS(3969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3969), + [anon_sym___declspec] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_signed] = ACTIONS(3967), + [anon_sym_unsigned] = ACTIONS(3967), + [anon_sym_long] = ACTIONS(3967), + [anon_sym_short] = ACTIONS(3967), + [anon_sym_LBRACK] = ACTIONS(3967), + [anon_sym_static] = ACTIONS(3967), + [anon_sym_register] = ACTIONS(3967), + [anon_sym_inline] = ACTIONS(3967), + [anon_sym___inline] = ACTIONS(3967), + [anon_sym___inline__] = ACTIONS(3967), + [anon_sym___forceinline] = ACTIONS(3967), + [anon_sym_thread_local] = ACTIONS(3967), + [anon_sym___thread] = ACTIONS(3967), + [anon_sym_const] = ACTIONS(3967), + [anon_sym_constexpr] = ACTIONS(3967), + [anon_sym_volatile] = ACTIONS(3967), + [anon_sym_restrict] = ACTIONS(3967), + [anon_sym___restrict__] = ACTIONS(3967), + [anon_sym__Atomic] = ACTIONS(3967), + [anon_sym__Noreturn] = ACTIONS(3967), + [anon_sym_noreturn] = ACTIONS(3967), + [anon_sym__Nonnull] = ACTIONS(3967), + [anon_sym_mutable] = ACTIONS(3967), + [anon_sym_constinit] = ACTIONS(3967), + [anon_sym_consteval] = ACTIONS(3967), + [anon_sym_alignas] = ACTIONS(3967), + [anon_sym__Alignas] = ACTIONS(3967), + [sym_primitive_type] = ACTIONS(3967), + [anon_sym_enum] = ACTIONS(3967), + [anon_sym_class] = ACTIONS(3967), + [anon_sym_struct] = ACTIONS(3967), + [anon_sym_union] = ACTIONS(3967), + [anon_sym_if] = ACTIONS(3967), + [anon_sym_switch] = ACTIONS(3967), + [anon_sym_case] = ACTIONS(3967), + [anon_sym_default] = ACTIONS(3967), + [anon_sym_while] = ACTIONS(3967), + [anon_sym_do] = ACTIONS(3967), + [anon_sym_for] = ACTIONS(3967), + [anon_sym_return] = ACTIONS(3967), + [anon_sym_break] = ACTIONS(3967), + [anon_sym_continue] = ACTIONS(3967), + [anon_sym_goto] = ACTIONS(3967), + [anon_sym___try] = ACTIONS(3967), + [anon_sym___leave] = ACTIONS(3967), + [anon_sym_not] = ACTIONS(3967), + [anon_sym_compl] = ACTIONS(3967), + [anon_sym_DASH_DASH] = ACTIONS(3969), + [anon_sym_PLUS_PLUS] = ACTIONS(3969), + [anon_sym_sizeof] = ACTIONS(3967), + [anon_sym___alignof__] = ACTIONS(3967), + [anon_sym___alignof] = ACTIONS(3967), + [anon_sym__alignof] = ACTIONS(3967), + [anon_sym_alignof] = ACTIONS(3967), + [anon_sym__Alignof] = ACTIONS(3967), + [anon_sym_offsetof] = ACTIONS(3967), + [anon_sym__Generic] = ACTIONS(3967), + [anon_sym_asm] = ACTIONS(3967), + [anon_sym___asm__] = ACTIONS(3967), + [anon_sym___asm] = ACTIONS(3967), + [sym_number_literal] = ACTIONS(3969), + [anon_sym_L_SQUOTE] = ACTIONS(3969), + [anon_sym_u_SQUOTE] = ACTIONS(3969), + [anon_sym_U_SQUOTE] = ACTIONS(3969), + [anon_sym_u8_SQUOTE] = ACTIONS(3969), + [anon_sym_SQUOTE] = ACTIONS(3969), + [anon_sym_L_DQUOTE] = ACTIONS(3969), + [anon_sym_u_DQUOTE] = ACTIONS(3969), + [anon_sym_U_DQUOTE] = ACTIONS(3969), + [anon_sym_u8_DQUOTE] = ACTIONS(3969), + [anon_sym_DQUOTE] = ACTIONS(3969), + [sym_true] = ACTIONS(3967), + [sym_false] = ACTIONS(3967), + [anon_sym_NULL] = ACTIONS(3967), + [anon_sym_nullptr] = ACTIONS(3967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3967), + [anon_sym_decltype] = ACTIONS(3967), + [anon_sym_typename] = ACTIONS(3967), + [anon_sym_template] = ACTIONS(3967), + [anon_sym_try] = ACTIONS(3967), + [anon_sym_delete] = ACTIONS(3967), + [anon_sym_throw] = ACTIONS(3967), + [anon_sym_co_return] = ACTIONS(3967), + [anon_sym_co_yield] = ACTIONS(3967), + [anon_sym_R_DQUOTE] = ACTIONS(3969), + [anon_sym_LR_DQUOTE] = ACTIONS(3969), + [anon_sym_uR_DQUOTE] = ACTIONS(3969), + [anon_sym_UR_DQUOTE] = ACTIONS(3969), + [anon_sym_u8R_DQUOTE] = ACTIONS(3969), + [anon_sym_co_await] = ACTIONS(3967), + [anon_sym_new] = ACTIONS(3967), + [anon_sym_requires] = ACTIONS(3967), + [sym_this] = ACTIONS(3967), }, - [STATE(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), + [STATE(914)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(915)] = { + [sym_else_clause] = STATE(937), + [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(4310), + [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), + }, + [STATE(916)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1636), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4188), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4312), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4236), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym___cdecl] = ACTIONS(4159), + [anon_sym___clrcall] = ACTIONS(4159), + [anon_sym___stdcall] = ACTIONS(4159), + [anon_sym___fastcall] = ACTIONS(4159), + [anon_sym___thiscall] = ACTIONS(4159), + [anon_sym___vectorcall] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(917)] = { + [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(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(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), }, - [STATE(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), + [STATE(918)] = { + [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), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1850), + [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), }, - [STATE(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), + [STATE(919)] = { + [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(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), + }, + [STATE(920)] = { + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6589), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_expression] = STATE(3181), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3338), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5884), + [sym_qualified_identifier] = STATE(3408), + [sym_qualified_type_identifier] = STATE(7887), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(3357), + [anon_sym_LPAREN2] = ACTIONS(1790), [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1794), [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_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_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), + [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), @@ -174949,7 +171319,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -174968,9 +171337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), @@ -174981,1828 +171349,1328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(921)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(922)] = { + [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), [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), + [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), }, - [STATE(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), + [STATE(923)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(924)] = { + [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), - [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), + [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), }, - [STATE(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(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), + [STATE(925)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(926)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(927)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(928)] = { + [sym_identifier] = 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] = ACTIONS(2637), + [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_COLON_COLON] = ACTIONS(2637), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2637), + [anon_sym___declspec] = 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_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), - [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), + [sym_auto] = ACTIONS(2635), + [anon_sym_decltype] = ACTIONS(2635), + [anon_sym_typename] = ACTIONS(2635), + [anon_sym_template] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2635), + [anon_sym_delete] = ACTIONS(2635), + [anon_sym_throw] = 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), }, - [STATE(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), + [STATE(929)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(930)] = { + [sym_identifier] = 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] = ACTIONS(2645), + [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_COLON_COLON] = ACTIONS(2645), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2645), + [anon_sym___declspec] = ACTIONS(2643), + [anon_sym_LBRACE] = 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_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), - [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), + [sym_auto] = ACTIONS(2643), + [anon_sym_decltype] = ACTIONS(2643), + [anon_sym_typename] = ACTIONS(2643), + [anon_sym_template] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [anon_sym_delete] = ACTIONS(2643), + [anon_sym_throw] = 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), }, - [STATE(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), + [STATE(931)] = { + [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), + }, + [STATE(932)] = { + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6589), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3339), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5838), + [sym_qualified_identifier] = STATE(3340), + [sym_qualified_type_identifier] = STATE(7778), + [sym_operator_name] = STATE(6137), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(3339), + [anon_sym_LPAREN2] = ACTIONS(3341), [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_TILDE] = ACTIONS(3343), [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_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_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), + [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), @@ -176819,7 +172687,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(4322), [sym_number_literal] = ACTIONS(2002), [anon_sym_L_SQUOTE] = ACTIONS(2004), [anon_sym_u_SQUOTE] = ACTIONS(2004), @@ -176838,9 +172705,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), [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), @@ -176851,3154 +172717,3378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(933)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(934)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(935)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(936)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(937)] = { + [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), - [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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(938)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(939)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(940)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(941)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(942)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(943)] = { + [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), + }, + [STATE(944)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(945)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(946)] = { + [sym_identifier] = ACTIONS(4085), + [anon_sym_LPAREN2] = ACTIONS(4091), + [anon_sym_BANG] = ACTIONS(4091), + [anon_sym_TILDE] = ACTIONS(4091), + [anon_sym_DASH] = ACTIONS(4093), + [anon_sym_PLUS] = ACTIONS(4093), + [anon_sym_STAR] = ACTIONS(4091), + [anon_sym_AMP] = ACTIONS(4091), + [anon_sym_SEMI] = ACTIONS(4091), + [anon_sym___extension__] = ACTIONS(4085), + [anon_sym_virtual] = ACTIONS(4097), + [anon_sym_extern] = ACTIONS(4097), + [anon_sym___attribute__] = ACTIONS(4097), + [anon_sym___attribute] = ACTIONS(4097), + [anon_sym_COLON_COLON] = ACTIONS(4088), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4088), + [anon_sym___declspec] = ACTIONS(4097), + [anon_sym_LBRACE] = ACTIONS(4091), + [anon_sym_signed] = ACTIONS(4097), + [anon_sym_unsigned] = ACTIONS(4097), + [anon_sym_long] = ACTIONS(4097), + [anon_sym_short] = ACTIONS(4097), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_static] = ACTIONS(4097), + [anon_sym_register] = ACTIONS(4097), + [anon_sym_inline] = ACTIONS(4097), + [anon_sym___inline] = ACTIONS(4097), + [anon_sym___inline__] = ACTIONS(4097), + [anon_sym___forceinline] = ACTIONS(4097), + [anon_sym_thread_local] = ACTIONS(4097), + [anon_sym___thread] = ACTIONS(4097), + [anon_sym_const] = ACTIONS(4097), + [anon_sym_constexpr] = ACTIONS(4097), + [anon_sym_volatile] = ACTIONS(4097), + [anon_sym_restrict] = ACTIONS(4097), + [anon_sym___restrict__] = ACTIONS(4097), + [anon_sym__Atomic] = ACTIONS(4097), + [anon_sym__Noreturn] = ACTIONS(4097), + [anon_sym_noreturn] = ACTIONS(4097), + [anon_sym__Nonnull] = ACTIONS(4097), + [anon_sym_mutable] = ACTIONS(4097), + [anon_sym_constinit] = ACTIONS(4097), + [anon_sym_consteval] = ACTIONS(4097), + [anon_sym_alignas] = ACTIONS(4097), + [anon_sym__Alignas] = ACTIONS(4097), + [sym_primitive_type] = ACTIONS(4085), + [anon_sym_enum] = ACTIONS(4097), + [anon_sym_class] = ACTIONS(4097), + [anon_sym_struct] = ACTIONS(4097), + [anon_sym_union] = ACTIONS(4097), + [anon_sym_if] = ACTIONS(4093), + [anon_sym_switch] = ACTIONS(4093), + [anon_sym_case] = ACTIONS(4093), + [anon_sym_default] = ACTIONS(4093), + [anon_sym_while] = ACTIONS(4093), + [anon_sym_do] = ACTIONS(4093), + [anon_sym_for] = ACTIONS(4093), + [anon_sym_return] = ACTIONS(4093), + [anon_sym_break] = ACTIONS(4093), + [anon_sym_continue] = ACTIONS(4093), + [anon_sym_goto] = ACTIONS(4093), + [anon_sym___try] = ACTIONS(4093), + [anon_sym___leave] = ACTIONS(4093), + [anon_sym_not] = ACTIONS(4093), + [anon_sym_compl] = ACTIONS(4093), + [anon_sym_DASH_DASH] = ACTIONS(4091), + [anon_sym_PLUS_PLUS] = ACTIONS(4091), + [anon_sym_sizeof] = ACTIONS(4093), + [anon_sym___alignof__] = ACTIONS(4093), + [anon_sym___alignof] = ACTIONS(4093), + [anon_sym__alignof] = ACTIONS(4093), + [anon_sym_alignof] = ACTIONS(4093), + [anon_sym__Alignof] = ACTIONS(4093), + [anon_sym_offsetof] = ACTIONS(4093), + [anon_sym__Generic] = ACTIONS(4093), + [anon_sym_asm] = ACTIONS(4093), + [anon_sym___asm__] = ACTIONS(4093), + [anon_sym___asm] = ACTIONS(4093), + [sym_number_literal] = ACTIONS(4091), + [anon_sym_L_SQUOTE] = ACTIONS(4091), + [anon_sym_u_SQUOTE] = ACTIONS(4091), + [anon_sym_U_SQUOTE] = ACTIONS(4091), + [anon_sym_u8_SQUOTE] = ACTIONS(4091), + [anon_sym_SQUOTE] = ACTIONS(4091), + [anon_sym_L_DQUOTE] = ACTIONS(4091), + [anon_sym_u_DQUOTE] = ACTIONS(4091), + [anon_sym_U_DQUOTE] = ACTIONS(4091), + [anon_sym_u8_DQUOTE] = ACTIONS(4091), + [anon_sym_DQUOTE] = ACTIONS(4091), + [sym_true] = ACTIONS(4093), + [sym_false] = ACTIONS(4093), + [anon_sym_NULL] = ACTIONS(4093), + [anon_sym_nullptr] = ACTIONS(4093), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4097), + [anon_sym_decltype] = ACTIONS(4085), + [anon_sym_typename] = ACTIONS(4097), + [anon_sym_template] = ACTIONS(4085), + [anon_sym_try] = ACTIONS(4093), + [anon_sym_delete] = ACTIONS(4093), + [anon_sym_throw] = ACTIONS(4093), + [anon_sym_co_return] = ACTIONS(4093), + [anon_sym_co_yield] = ACTIONS(4093), + [anon_sym_R_DQUOTE] = ACTIONS(4091), + [anon_sym_LR_DQUOTE] = ACTIONS(4091), + [anon_sym_uR_DQUOTE] = ACTIONS(4091), + [anon_sym_UR_DQUOTE] = ACTIONS(4091), + [anon_sym_u8R_DQUOTE] = ACTIONS(4091), + [anon_sym_co_await] = ACTIONS(4093), + [anon_sym_new] = ACTIONS(4093), + [anon_sym_requires] = ACTIONS(4093), + [sym_this] = ACTIONS(4093), + }, + [STATE(947)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(948)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(949)] = { + [sym_identifier] = 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] = ACTIONS(2737), + [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_COLON_COLON] = ACTIONS(2737), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2737), + [anon_sym___declspec] = 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_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), - [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), + [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), }, - [STATE(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), + [STATE(950)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(951)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(952)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(953)] = { + [sym_identifier] = 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] = ACTIONS(2697), + [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_COLON_COLON] = ACTIONS(2697), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2697), + [anon_sym___declspec] = 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_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), - [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), + [sym_auto] = ACTIONS(2695), + [anon_sym_decltype] = ACTIONS(2695), + [anon_sym_typename] = ACTIONS(2695), + [anon_sym_template] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2695), + [anon_sym_delete] = ACTIONS(2695), + [anon_sym_throw] = 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), }, - [STATE(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(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), + [STATE(954)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(955)] = { + [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), - [anon_sym_decltype] = ACTIONS(1978), - [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), + [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), }, - [STATE(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), + [STATE(956)] = { + [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), + }, + [STATE(957)] = { + [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), + }, + [STATE(958)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(959)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(960)] = { + [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), - [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), + [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), }, - [STATE(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(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(4500), - [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), + [STATE(961)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_call_modifier] = STATE(4789), + [sym__declarator] = STATE(6818), + [sym__abstract_declarator] = STATE(6980), + [sym_parenthesized_declarator] = STATE(6137), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_function_declarator] = STATE(6137), + [sym_abstract_function_declarator] = STATE(6117), + [sym_array_declarator] = STATE(6137), + [sym_abstract_array_declarator] = STATE(6117), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_list] = STATE(3134), + [sym_parameter_declaration] = STATE(7405), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7405), + [sym_variadic_parameter_declaration] = STATE(7405), + [sym_reference_declarator] = STATE(6137), + [sym_abstract_reference_declarator] = STATE(6117), + [sym_structured_binding_declarator] = STATE(6137), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5852), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(4314), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), + [anon_sym_RPAREN] = ACTIONS(4316), + [anon_sym_LPAREN2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4322), + [anon_sym_AMP] = ACTIONS(4324), + [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(4326), + [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(4328), + [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(3027), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1890), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_typename] = ACTIONS(4332), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(1914), [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), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(962)] = { + [sym_expression] = STATE(4623), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [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_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), [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), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -180009,7 +176099,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(4322), + [anon_sym_DASH_GT] = ACTIONS(4330), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -180028,510 +176118,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3885), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(963)] = { + [sym_expression] = STATE(2937), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4330), + [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_SEMI] = ACTIONS(4326), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), - [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), - [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), - }, - [STATE(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), - }, - [STATE(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_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), [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), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [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(4330), + [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(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), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [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), }, - [STATE(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), + [STATE(964)] = { + [sym_expression] = STATE(4467), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7414), + [sym_initializer_pair] = STATE(7414), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), - }, - [STATE(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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4336), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -180539,12 +176300,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4338), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -180561,6 +176321,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), @@ -180578,7 +176339,6 @@ static const uint16_t 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(4332), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -180591,57 +176351,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(965)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -180649,11 +176409,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4328), - [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4346), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -180688,7 +176448,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(4332), + [anon_sym_typename] = ACTIONS(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -180701,184 +176461,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), + [STATE(966)] = { + [sym_expression] = STATE(4211), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), [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_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -180889,18 +176539,18 @@ 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), - [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), + [anon_sym_DASH_GT] = ACTIONS(4330), + [sym_number_literal] = ACTIONS(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -180908,68 +176558,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(967)] = { + [sym_expression] = STATE(3226), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [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(4330), + [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(4332), + [anon_sym_throw] = ACTIONS(4332), + [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), + }, + [STATE(968)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(977), + [sym_compound_requirement] = STATE(977), + [sym__requirement] = STATE(977), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(977), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -180977,11 +176739,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(4521), - [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4356), + [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -180998,7 +176761,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), @@ -181016,6 +176778,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -181028,57 +176791,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(969)] = { + [sym_expression] = STATE(4461), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(7572), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -181088,9 +176852,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4358), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -181137,57 +176901,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(970)] = { + [sym_expression] = STATE(4399), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7589), + [sym_initializer_pair] = STATE(7589), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4360), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -181197,9 +176962,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(4525), - [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4362), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -181246,57 +177011,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(971)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -181304,11 +177069,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(4527), - [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(4344), + [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), @@ -181325,7 +177091,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), @@ -181343,6 +177108,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -181355,57 +177121,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(972)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(1011), + [sym_compound_requirement] = STATE(1011), + [sym__requirement] = STATE(1011), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(1011), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -181413,11 +177179,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [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), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4366), + [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -181434,7 +177201,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), @@ -181452,6 +177218,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -181464,75 +177231,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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(4531), - [anon_sym_LBRACK] = ACTIONS(4376), + [STATE(973)] = { + [sym_expression] = STATE(4382), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -181543,18 +177309,18 @@ 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), - [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), + [anon_sym_DASH_GT] = ACTIONS(4330), + [sym_number_literal] = ACTIONS(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -181562,68 +177328,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3857), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(974)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(981), + [sym_compound_requirement] = STATE(981), + [sym__requirement] = STATE(981), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(981), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -181631,11 +177399,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4372), + [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -181652,7 +177421,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), @@ -181670,6 +177438,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -181682,75 +177451,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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(4535), - [anon_sym_LBRACK] = ACTIONS(4376), + [STATE(975)] = { + [sym_expression] = STATE(4558), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -181761,7 +177529,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), + [anon_sym_DASH_GT] = ACTIONS(4330), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -181780,86 +177548,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(976)] = { + [sym_expression] = STATE(4560), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -181870,7 +177639,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), + [anon_sym_DASH_GT] = ACTIONS(4330), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -181889,68 +177658,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(977)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -181958,11 +177729,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(4537), - [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -181979,7 +177751,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), @@ -181997,6 +177768,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -182009,69 +177781,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(978)] = { + [sym_expression] = STATE(3719), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(4330), + [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(4330), + [anon_sym___extension__] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(2621), + [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(4330), + [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(1268), + [anon_sym_delete] = ACTIONS(1916), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [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), + }, + [STATE(979)] = { + [sym_expression] = STATE(4378), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(4330), [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(4330), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(4539), - [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -182088,7 +177969,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), + [anon_sym_DASH_GT] = ACTIONS(4330), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -182108,6 +177989,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -182118,57 +178001,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(980)] = { + [sym_expression] = STATE(2850), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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(4330), + [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(4332), + [anon_sym_throw] = ACTIONS(4332), + [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), + }, + [STATE(981)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -182176,10 +178169,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_LBRACK] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4382), + [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -182196,7 +178191,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), @@ -182214,6 +178208,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -182226,286 +178221,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - [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), - [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), + [STATE(982)] = { + [sym_expression] = STATE(4596), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [anon_sym_DASH_GT] = ACTIONS(4330), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), [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(4553), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), - [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), - [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), + [STATE(983)] = { + [sym_expression] = STATE(2852), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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(4330), + [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(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(4553), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [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), }, - [STATE(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), + [STATE(984)] = { + [sym_expression] = STATE(4351), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -182516,17 +178519,18 @@ 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(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), + [anon_sym_DASH_GT] = ACTIONS(4330), + [sym_number_literal] = ACTIONS(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -182534,169 +178538,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3857), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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_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(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), + [STATE(985)] = { + [sym_expression] = STATE(3320), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [anon_sym_DASH_GT] = ACTIONS(4330), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), [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), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), }, - [STATE(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), + [STATE(986)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(990), + [sym_compound_requirement] = STATE(990), + [sym__requirement] = STATE(990), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(990), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -182704,10 +178719,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4567), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4386), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -182742,6 +178758,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -182754,54 +178771,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(987)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -182809,9 +178829,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4388), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -182846,6 +178868,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -182858,54 +178881,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(988)] = { + [sym_expression] = STATE(3223), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [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(4330), + [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(4332), + [anon_sym_throw] = ACTIONS(4332), + [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), + }, + [STATE(989)] = { + [sym_expression] = STATE(4507), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [anon_sym_DASH_GT] = ACTIONS(4330), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(990)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -182913,9 +179159,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4390), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -182950,6 +179198,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -182962,54 +179211,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(991)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(971), + [sym_compound_requirement] = STATE(971), + [sym__requirement] = STATE(971), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(971), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -183017,9 +179269,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4392), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -183054,6 +179308,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -183066,53 +179321,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(992)] = { + [sym_expression] = STATE(4455), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7673), + [sym_initializer_pair] = STATE(7673), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(173), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -183120,11 +179380,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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(3623), - [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4394), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -183141,6 +179401,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), @@ -183170,158 +179431,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - [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(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), + [STATE(993)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(4396), + [anon_sym_LPAREN2] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4402), + [anon_sym_TILDE] = ACTIONS(4402), + [anon_sym_DASH] = ACTIONS(4405), + [anon_sym_PLUS] = ACTIONS(4405), + [anon_sym_STAR] = ACTIONS(4408), + [anon_sym_AMP] = ACTIONS(4408), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym___extension__] = ACTIONS(4414), + [anon_sym_COLON_COLON] = ACTIONS(4417), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_RBRACE] = ACTIONS(4423), + [anon_sym_LBRACK] = ACTIONS(4425), + [sym_primitive_type] = ACTIONS(4428), + [anon_sym_not] = ACTIONS(4405), + [anon_sym_compl] = ACTIONS(4405), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_sizeof] = ACTIONS(4434), + [anon_sym___alignof__] = ACTIONS(4437), + [anon_sym___alignof] = ACTIONS(4437), + [anon_sym__alignof] = ACTIONS(4437), + [anon_sym_alignof] = ACTIONS(4437), + [anon_sym__Alignof] = ACTIONS(4437), + [anon_sym_offsetof] = ACTIONS(4440), + [anon_sym__Generic] = ACTIONS(4443), + [anon_sym_asm] = ACTIONS(4446), + [anon_sym___asm__] = ACTIONS(4446), + [anon_sym___asm] = ACTIONS(4446), + [sym_number_literal] = ACTIONS(4449), + [anon_sym_L_SQUOTE] = ACTIONS(4452), + [anon_sym_u_SQUOTE] = ACTIONS(4452), + [anon_sym_U_SQUOTE] = ACTIONS(4452), + [anon_sym_u8_SQUOTE] = ACTIONS(4452), + [anon_sym_SQUOTE] = ACTIONS(4452), + [anon_sym_L_DQUOTE] = ACTIONS(4455), + [anon_sym_u_DQUOTE] = ACTIONS(4455), + [anon_sym_U_DQUOTE] = ACTIONS(4455), + [anon_sym_u8_DQUOTE] = ACTIONS(4455), + [anon_sym_DQUOTE] = ACTIONS(4455), + [sym_true] = ACTIONS(4458), + [sym_false] = ACTIONS(4458), + [anon_sym_NULL] = ACTIONS(4461), + [anon_sym_nullptr] = ACTIONS(4461), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(4464), + [anon_sym_typename] = ACTIONS(4467), + [anon_sym_template] = ACTIONS(4470), + [anon_sym_delete] = ACTIONS(4473), + [anon_sym_R_DQUOTE] = ACTIONS(4476), + [anon_sym_LR_DQUOTE] = ACTIONS(4476), + [anon_sym_uR_DQUOTE] = ACTIONS(4476), + [anon_sym_UR_DQUOTE] = ACTIONS(4476), + [anon_sym_u8R_DQUOTE] = ACTIONS(4476), + [anon_sym_co_await] = ACTIONS(4479), + [anon_sym_new] = ACTIONS(4482), + [anon_sym_requires] = ACTIONS(4485), + [sym_this] = ACTIONS(4458), }, - [STATE(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), + [STATE(994)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(987), + [sym_compound_requirement] = STATE(987), + [sym__requirement] = STATE(987), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(987), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -183329,9 +179599,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4488), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -183366,6 +179638,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -183378,54 +179651,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(995)] = { + [sym_expression] = STATE(4436), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7455), + [sym_initializer_pair] = STATE(7455), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4490), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -183435,8 +179712,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -183453,6 +179731,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), @@ -183482,377 +179761,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(996)] = { + [sym_string_literal] = STATE(2413), + [sym_template_argument_list] = STATE(1612), + [sym_raw_string_literal] = STATE(2413), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(4163), + [anon_sym_RPAREN] = ACTIONS(4163), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4494), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4170), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4497), + [anon_sym_or_eq] = ACTIONS(4497), + [anon_sym_xor_eq] = ACTIONS(4497), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(4499), + [anon_sym_u_DQUOTE] = ACTIONS(4499), + [anon_sym_U_DQUOTE] = ACTIONS(4499), + [anon_sym_u8_DQUOTE] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(4501), + [anon_sym_LR_DQUOTE] = ACTIONS(4501), + [anon_sym_uR_DQUOTE] = ACTIONS(4501), + [anon_sym_UR_DQUOTE] = ACTIONS(4501), + [anon_sym_u8R_DQUOTE] = ACTIONS(4501), + [anon_sym_DASH_GT_STAR] = ACTIONS(4161), }, - [STATE(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), + [STATE(997)] = { + [sym_expression] = STATE(4332), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(4330), [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(4330), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -183869,6 +179949,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(4330), [sym_number_literal] = ACTIONS(227), [anon_sym_L_SQUOTE] = ACTIONS(117), [anon_sym_u_SQUOTE] = ACTIONS(117), @@ -183888,6 +179969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), [anon_sym_R_DQUOTE] = ACTIONS(159), [anon_sym_LR_DQUOTE] = ACTIONS(159), [anon_sym_uR_DQUOTE] = ACTIONS(159), @@ -183898,53 +179981,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(998)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -183952,10 +180039,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4595), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4503), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -183990,6 +180078,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -184002,782 +180091,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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(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), - [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(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(999)] = { + [sym_expression] = STATE(2940), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4330), + [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(4330), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [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(4330), + [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(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), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [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), }, - [STATE(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), + [STATE(1000)] = { + [sym_expression] = STATE(4466), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7426), + [sym_initializer_pair] = STATE(7426), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4505), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -184787,8 +180262,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4507), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -184805,6 +180281,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), @@ -184834,71 +180311,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1001)] = { + [sym_expression] = STATE(4208), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), [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_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -184909,17 +180389,18 @@ 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), + [anon_sym_DASH_GT] = ACTIONS(4330), + [sym_number_literal] = ACTIONS(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -184927,64 +180408,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1002)] = { + [sym_expression] = STATE(3401), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(4330), + [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(2486), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1003)] = { + [sym_expression] = STATE(3403), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(4330), + [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(2486), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1004)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -184992,10 +180699,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4607), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4511), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -185030,6 +180738,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -185042,157 +180751,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1005)] = { + [sym_expression] = STATE(3066), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(4330), + [sym_number_literal] = ACTIONS(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1006)] = { + [sym_expression] = STATE(4625), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(4330), + [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(3885), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(1007)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(965), + [sym_compound_requirement] = STATE(965), + [sym__requirement] = STATE(965), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(965), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185200,9 +181029,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4515), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -185237,6 +181068,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -185249,53 +181081,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1008)] = { + [sym_expression] = STATE(4446), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7330), + [sym_initializer_pair] = STATE(7330), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_COMMA] = ACTIONS(4517), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185305,8 +181142,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4519), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -185323,6 +181161,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), @@ -185352,53 +181191,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1009)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(1004), + [sym_compound_requirement] = STATE(1004), + [sym__requirement] = STATE(1004), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(1004), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185406,9 +181249,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4521), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -185443,6 +181288,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -185455,53 +181301,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1010)] = { + [sym_expression] = STATE(3732), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_LPAREN2] = ACTIONS(4330), + [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(4330), + [anon_sym___extension__] = ACTIONS(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(2621), + [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(4330), + [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(1268), + [anon_sym_delete] = ACTIONS(1916), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [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), + }, + [STATE(1011)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(993), + [sym_compound_requirement] = STATE(993), + [sym__requirement] = STATE(993), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(993), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185509,9 +181469,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4342), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4523), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -185546,6 +181508,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(4348), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), [anon_sym_R_DQUOTE] = ACTIONS(159), @@ -185558,70 +181521,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1012)] = { + [sym_expression] = STATE(3075), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(4330), + [sym_number_literal] = ACTIONS(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(2379), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1013)] = { + [sym_expression_statement] = STATE(2801), + [sym_expression] = STATE(4631), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8720), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_type_requirement] = STATE(998), + [sym_compound_requirement] = STATE(998), + [sym__requirement] = STATE(998), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_requirement_seq_repeat1] = STATE(998), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_SEMI] = ACTIONS(4342), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_RBRACE] = ACTIONS(4525), [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_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(4348), + [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), + }, + [STATE(1014)] = { + [sym_expression] = STATE(3323), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4330), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(4330), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4330), + [anon_sym_LBRACE] = ACTIONS(4330), + [anon_sym_LBRACK] = ACTIONS(1266), + [anon_sym_static] = ACTIONS(4332), + [anon_sym_constexpr] = ACTIONS(4332), + [anon_sym_mutable] = ACTIONS(4332), + [anon_sym_consteval] = ACTIONS(4332), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [anon_sym_DASH_GT] = ACTIONS(4330), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_noexcept] = ACTIONS(4332), + [anon_sym_throw] = ACTIONS(4332), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1015)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3631), + [anon_sym_RBRACE] = ACTIONS(4527), + [anon_sym_LBRACK] = ACTIONS(4340), + [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), @@ -185632,6 +181930,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), @@ -185650,64 +181949,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1016)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185717,8 +182020,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -185735,6 +182039,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), @@ -185764,53 +182069,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1017)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(1706), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(2674), + [sym_identifier] = ACTIONS(4159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(4163), + [anon_sym_RPAREN] = ACTIONS(4163), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_TILDE] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(4173), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_virtual] = ACTIONS(4159), + [anon_sym_extern] = ACTIONS(4159), + [anon_sym___attribute__] = ACTIONS(4159), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), + [anon_sym___declspec] = ACTIONS(4159), + [anon_sym___based] = ACTIONS(4159), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(4182), + [anon_sym_unsigned] = ACTIONS(4182), + [anon_sym_long] = ACTIONS(4182), + [anon_sym_short] = ACTIONS(4182), + [anon_sym_LBRACK] = ACTIONS(4170), + [anon_sym_static] = ACTIONS(4159), + [anon_sym_EQ] = ACTIONS(4159), + [anon_sym_register] = ACTIONS(4159), + [anon_sym_inline] = ACTIONS(4159), + [anon_sym___inline] = ACTIONS(4159), + [anon_sym___inline__] = ACTIONS(4159), + [anon_sym___forceinline] = ACTIONS(4159), + [anon_sym_thread_local] = ACTIONS(4159), + [anon_sym___thread] = ACTIONS(4159), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4159), + [anon_sym_volatile] = ACTIONS(4159), + [anon_sym_restrict] = ACTIONS(4159), + [anon_sym___restrict__] = ACTIONS(4159), + [anon_sym__Atomic] = ACTIONS(4159), + [anon_sym__Noreturn] = ACTIONS(4159), + [anon_sym_noreturn] = ACTIONS(4159), + [anon_sym__Nonnull] = ACTIONS(4159), + [anon_sym_mutable] = ACTIONS(4159), + [anon_sym_constinit] = ACTIONS(4159), + [anon_sym_consteval] = ACTIONS(4159), + [anon_sym_alignas] = ACTIONS(4159), + [anon_sym__Alignas] = ACTIONS(4159), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4184), + [anon_sym_or_eq] = ACTIONS(4184), + [anon_sym_xor_eq] = ACTIONS(4184), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), + [anon_sym_template] = ACTIONS(4159), + [anon_sym_operator] = ACTIONS(4159), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(1018)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185820,8 +182238,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4531), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -185838,6 +182257,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), @@ -185867,53 +182287,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1019)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -185923,8 +182347,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -185941,6 +182366,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), @@ -185970,53 +182396,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1020)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186026,8 +182456,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4535), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -186044,6 +182475,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), @@ -186073,70 +182505,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1021)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4632), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(4340), [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_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), @@ -186147,6 +182584,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), @@ -186165,64 +182603,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1022)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186232,8 +182674,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4539), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -186250,6 +182693,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), @@ -186279,53 +182723,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1023)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186335,8 +182783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4358), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -186353,6 +182802,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), @@ -186382,53 +182832,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1024)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186438,8 +182892,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4541), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -186456,6 +182911,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), @@ -186485,53 +182941,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1025)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186541,8 +183001,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -186559,6 +183020,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), @@ -186588,70 +183050,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1026)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(3623), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4646), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_LBRACK] = ACTIONS(4340), [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_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), @@ -186662,6 +183129,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), @@ -186680,63 +183148,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1027)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -186746,8 +183219,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LBRACE] = ACTIONS(3631), + [anon_sym_RBRACE] = ACTIONS(4547), + [anon_sym_LBRACK] = ACTIONS(4340), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -186764,6 +183238,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), @@ -186793,69 +183268,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1028)] = { + [sym_expression] = STATE(4641), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8032), + [sym_initializer_pair] = STATE(8032), + [sym_subscript_designator] = STATE(6855), + [sym_subscript_range_designator] = STATE(6855), + [sym_field_designator] = STATE(6855), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [aux_sym_initializer_pair_repeat1] = STATE(6855), + [sym_identifier] = ACTIONS(4334), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3631), + [anon_sym_LBRACK] = ACTIONS(4340), [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_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), @@ -186866,6 +183346,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), @@ -186884,284 +183365,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - [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), - }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1029)] = { + [sym_expression] = STATE(4830), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_lambda_default_capture] = STATE(7952), + [sym__lambda_capture_identifier] = STATE(7448), + [sym_lambda_capture_initializer] = STATE(7448), + [sym__lambda_capture] = STATE(7448), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_identifier_parameter_pack_expansion] = STATE(7448), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3725), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(4549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4553), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4559), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -187190,80 +183473,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3885), [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_co_await] = ACTIONS(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_this] = ACTIONS(4561), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [STATE(1030)] = { + [sym_expression] = STATE(4830), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_lambda_default_capture] = STATE(7952), + [sym__lambda_capture_identifier] = STATE(7448), + [sym_lambda_capture_initializer] = STATE(7448), + [sym__lambda_capture] = STATE(7448), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_identifier_parameter_pack_expansion] = STATE(7448), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3725), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(4563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4551), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(4553), + [anon_sym_AMP] = ACTIONS(4555), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(4559), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -187292,80 +183581,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3885), [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), - [sym_this] = ACTIONS(229), + [sym_this] = ACTIONS(4561), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [STATE(1031)] = { + [sym_expression] = STATE(4237), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_initializer_list] = STATE(6950), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACE] = ACTIONS(3631), [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_default] = ACTIONS(4567), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -187376,17 +183666,17 @@ 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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -187394,63 +183684,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(4569), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(4571), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1032)] = { + [sym_expression] = STATE(4517), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8575), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8575), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -187458,9 +183750,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4573), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -187507,171 +183800,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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(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), - }, - [STATE(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(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), + [STATE(1033)] = { + [sym_expression] = STATE(4263), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_initializer_list] = STATE(6911), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACE] = ACTIONS(3631), [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_default] = ACTIONS(4575), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -187682,17 +183874,17 @@ 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(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_number_literal] = ACTIONS(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -187700,80 +183892,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(4577), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(4579), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1034)] = { + [sym_compound_statement] = STATE(7363), + [sym_expression] = STATE(4435), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7363), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4581), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(1932), [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_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), @@ -187802,80 +183997,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1035)] = { + [sym_expression] = STATE(4639), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8659), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8659), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(4583), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [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_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), @@ -187904,80 +184101,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1036)] = { + [sym_compound_statement] = STATE(7310), + [sym_expression] = STATE(4459), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7310), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [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(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1932), [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_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), @@ -188006,165 +184205,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1037)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_identifier_parameter_pack_expansion] = STATE(7806), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3695), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(4587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4589), + [anon_sym_COMMA] = ACTIONS(4591), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(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), + }, + [STATE(1038)] = { + [sym_expression] = STATE(3296), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8820), + [sym__unary_right_fold] = STATE(8478), + [sym__binary_fold] = STATE(8893), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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), - [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1039)] = { + [sym_expression] = STATE(4574), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8147), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8147), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -188172,9 +184478,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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(3623), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -188221,52 +184528,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1040)] = { + [sym_compound_statement] = STATE(7417), + [sym_expression] = STATE(4465), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7417), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4597), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -188276,7 +184585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(1932), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -188323,155 +184632,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1041)] = { + [sym_compound_statement] = STATE(8116), + [sym_expression] = STATE(3342), + [sym__string] = STATE(3000), + [sym_comma_expression] = STATE(8116), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym__assignment_expression_lhs] = STATE(8503), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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_LBRACE] = ACTIONS(57), [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_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(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), + [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), }, - [STATE(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), + [STATE(1042)] = { + [sym_expression] = STATE(4636), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8186), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8186), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -188479,8 +184790,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4599), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -188527,359 +184840,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - [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), - }, - [STATE(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), + [STATE(1043)] = { + [sym_compound_statement] = STATE(7323), + [sym_expression] = STATE(4444), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7323), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4601), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -188889,6 +184897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1932), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -188935,273 +184944,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1044)] = { + [sym_expression] = STATE(4490), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8639), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8639), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), - [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), - }, - [STATE(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), - }, - [STATE(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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(4603), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [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_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), @@ -189230,80 +185037,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1045)] = { + [sym_compound_statement] = STATE(7449), + [sym_expression] = STATE(4477), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7449), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4605), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(1932), [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_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), @@ -189332,80 +185141,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1046)] = { + [sym_expression] = STATE(3333), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8873), + [sym__unary_right_fold] = STATE(8874), + [sym__binary_fold] = STATE(8879), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1047)] = { + [sym_compound_statement] = STATE(7587), + [sym_expression] = STATE(4393), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7587), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4607), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(1932), [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_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), @@ -189434,64 +185349,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1048)] = { + [sym_compound_statement] = STATE(7575), + [sym_expression] = STATE(4397), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7575), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4609), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189501,6 +185417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(1932), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -189547,69 +185464,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1049)] = { + [sym_expression] = STATE(3341), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8312), + [sym__unary_right_fold] = STATE(8322), + [sym__binary_fold] = STATE(8323), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1050)] = { + [sym_expression] = STATE(4267), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_initializer_list] = STATE(6931), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACE] = ACTIONS(3631), [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_default] = ACTIONS(4611), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -189620,17 +185642,17 @@ 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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -189638,63 +185660,689 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(4613), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(4615), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1051)] = { + [sym_expression] = STATE(3293), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8582), + [sym__unary_right_fold] = STATE(8584), + [sym__binary_fold] = STATE(8585), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1052)] = { + [sym_expression] = STATE(3321), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8847), + [sym__unary_right_fold] = STATE(8100), + [sym__binary_fold] = STATE(8144), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1053)] = { + [sym_expression] = STATE(3347), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8282), + [sym__unary_right_fold] = STATE(8287), + [sym__binary_fold] = STATE(8288), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1054)] = { + [sym_expression] = STATE(3326), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8506), + [sym__unary_right_fold] = STATE(8519), + [sym__binary_fold] = STATE(8589), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1055)] = { + [sym_expression] = STATE(3337), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8569), + [sym__unary_right_fold] = STATE(8573), + [sym__binary_fold] = STATE(8574), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1056)] = { + [sym_expression] = STATE(3346), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym__unary_left_fold] = STATE(8300), + [sym__unary_right_fold] = STATE(8301), + [sym__binary_fold] = STATE(8302), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1057)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4617), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189704,7 +186352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -189751,52 +186399,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1058)] = { + [sym_compound_statement] = STATE(7754), + [sym_expression] = STATE(4577), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7754), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -189806,7 +186455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(1932), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -189853,69 +186502,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1059)] = { + [sym_expression] = STATE(4451), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_initializer_list] = STATE(7688), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4620), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -189944,80 +186594,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3885), [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1060)] = { + [sym_expression] = STATE(4426), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_initializer_list] = STATE(7514), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4622), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -190046,165 +186697,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [anon_sym_delete] = ACTIONS(3885), [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_co_await] = ACTIONS(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1061)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4624), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -190214,7 +186764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -190261,171 +186811,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1062)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4627), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3631), [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_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), @@ -190454,80 +186903,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1063)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4630), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [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_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), @@ -190556,166 +187006,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1064)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4633), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -190725,6 +187073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -190771,171 +187120,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), + [STATE(1065)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4636), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3631), [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_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), @@ -190964,182 +187212,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1066)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4639), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3631), [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_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), @@ -191168,80 +187315,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1067)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4642), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(3623), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [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_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), @@ -191270,64 +187418,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1068)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4645), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -191337,6 +187485,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -191383,53 +187532,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1069)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4648), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -191439,6 +187588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -191485,69 +187635,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1070)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4651), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3631), [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_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), @@ -191576,80 +187727,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1071)] = { + [sym_expression] = STATE(4427), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_initializer_list] = STATE(7523), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [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___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4654), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -191678,80 +187830,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3885), [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_co_await] = ACTIONS(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1072)] = { + [sym_expression] = STATE(4642), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8861), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4658), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -191780,1493 +187932,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [anon_sym_delete] = ACTIONS(3903), [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_co_await] = ACTIONS(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(1073)] = { + [sym_expression] = STATE(4591), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8866), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4660), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [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_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(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), + [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), }, - [STATE(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_SEMI] = ACTIONS(4739), - [anon_sym___extension__] = ACTIONS(3839), - [anon_sym_COLON_COLON] = ACTIONS(3841), - [anon_sym_LBRACK] = ACTIONS(4741), + [STATE(1074)] = { + [sym_expression] = STATE(3802), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [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_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -193277,17 +188118,17 @@ 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(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_number_literal] = ACTIONS(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -193295,63 +188136,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1075)] = { + [sym_expression] = STATE(4839), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8592), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -193361,6 +188202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -193407,152 +188249,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1076)] = { + [sym_expression] = STATE(4592), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_initializer_list] = STATE(4858), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3869), [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_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), [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), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), + [STATE(1077)] = { + [sym_expression] = STATE(4401), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(7572), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4664), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -193560,7 +188405,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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_LBRACK] = ACTIONS(2020), @@ -193609,154 +188453,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1078)] = { + [sym_expression] = STATE(4650), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8201), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4667), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(1079)] = { + [sym_expression] = STATE(4380), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_initializer_list] = STATE(7209), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), [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_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACE] = ACTIONS(3631), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1080)] = { + [sym_expression] = STATE(4425), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7793), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), @@ -193765,6 +188712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -193811,68 +188759,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1081)] = { + [sym_expression] = STATE(3637), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_initializer_list] = STATE(3888), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1082)] = { + [sym_expression] = STATE(4496), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8104), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4669), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -193883,17 +188934,17 @@ 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(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_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), @@ -193901,281 +188952,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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(4758), - [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), - }, - [STATE(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), + [STATE(1083)] = { + [sym_expression] = STATE(3683), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_initializer_list] = STATE(3904), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(2619), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1084)] = { + [sym_expression] = STATE(4480), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8554), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4671), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -194186,17 +189138,17 @@ 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(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_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), @@ -194204,62 +189156,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1085)] = { + [sym_expression] = STATE(4486), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7793), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -194267,9 +189220,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -194316,253 +189269,358 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1086)] = { + [sym_expression] = STATE(4514), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8770), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4673), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(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), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1087)] = { + [sym_expression] = STATE(3802), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACE] = ACTIONS(3631), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1088)] = { + [sym_expression] = STATE(4524), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8839), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4675), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(1089)] = { + [sym_expression] = STATE(4640), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7940), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -194572,6 +189630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -194605,7 +189664,6 @@ 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(1268), [anon_sym_delete] = ACTIONS(145), @@ -194619,169 +189677,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1090)] = { + [sym_expression] = STATE(4488), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(7953), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3631), [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_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(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), + [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), }, - [STATE(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), + [STATE(1091)] = { + [sym_expression] = STATE(4646), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8831), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4677), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), + [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), + }, + [STATE(1092)] = { + [sym_expression] = STATE(2411), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_initializer_list] = STATE(2576), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1954), [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_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -194792,17 +189954,17 @@ 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(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), @@ -194810,79 +189972,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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), + [STATE(1093)] = { + [sym_expression] = STATE(4358), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(3929), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3631), [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_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), @@ -194911,584 +190074,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1094)] = { + [sym_expression] = STATE(4485), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_initializer_list] = STATE(4864), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3869), [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_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), [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), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), + [STATE(1095)] = { + [sym_expression] = STATE(4543), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_initializer_list] = STATE(3929), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACE] = ACTIONS(3631), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(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), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1096)] = { + [sym_expression] = STATE(4386), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_initializer_list] = STATE(3929), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), [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(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), - }, - [STATE(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_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACE] = ACTIONS(3631), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1097)] = { + [sym_expression] = STATE(4600), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACE] = ACTIONS(3631), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(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), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1098)] = { + [sym_expression] = STATE(4196), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_initializer_list] = STATE(3929), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACE] = ACTIONS(3631), + [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_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -195499,17 +190566,17 @@ 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(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_number_literal] = ACTIONS(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -195517,72 +190584,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1099)] = { + [sym_expression] = STATE(3219), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_initializer_list] = STATE(3443), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [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), @@ -195629,270 +190697,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), - }, - [STATE(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), + [STATE(1100)] = { + [sym_expression] = STATE(3318), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_initializer_list] = STATE(3620), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), [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_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), [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), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2507), [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_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), [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), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4793), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1101)] = { + [sym_expression] = STATE(4500), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8880), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4683), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -195921,179 +190890,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1102)] = { + [sym_expression] = STATE(4587), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8228), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4685), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -196120,81 +190990,82 @@ 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(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1103)] = { + [sym_expression] = STATE(4538), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_initializer_list] = STATE(7966), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3631), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -196221,167 +191092,66 @@ 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(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3885), [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), + [STATE(1104)] = { + [sym_expression] = STATE(2411), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_initializer_list] = STATE(2576), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4593), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), @@ -196390,8 +191160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(4799), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), @@ -196437,152 +191207,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1105)] = { + [sym_expression] = STATE(4576), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8946), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4687), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(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), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1106)] = { + [sym_expression] = STATE(4643), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8567), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4689), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -196590,7 +191363,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [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), @@ -196639,67 +191411,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1107)] = { + [sym_expression] = STATE(4630), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8707), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -196726,166 +191500,168 @@ 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(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1108)] = { + [sym_expression] = STATE(2411), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_initializer_list] = STATE(2576), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(1954), [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_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1109)] = { + [sym_expression] = STATE(4607), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8623), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4695), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -196893,7 +191669,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -196942,51 +191717,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1110)] = { + [sym_expression] = STATE(4585), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8818), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4697), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -197029,7 +191806,6 @@ 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(1268), [anon_sym_delete] = ACTIONS(145), @@ -197043,253 +191819,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(1111)] = { + [sym_expression] = STATE(4610), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8661), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4699), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -197332,7 +191908,6 @@ 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(1268), [anon_sym_delete] = ACTIONS(145), @@ -197346,253 +191921,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1112)] = { + [sym_expression] = STATE(4649), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_initializer_list] = STATE(3929), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3631), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1113)] = { + [sym_expression] = STATE(4688), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8087), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -197602,6 +192078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -197635,7 +192112,6 @@ 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(1268), [anon_sym_delete] = ACTIONS(145), @@ -197649,169 +192125,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1114)] = { + [sym_expression] = STATE(4599), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8523), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4701), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(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), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1115)] = { + [sym_expression] = STATE(3802), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3631), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(1116)] = { + [sym_expression] = STATE(3400), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_initializer_list] = STATE(2576), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(1954), [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_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -197822,17 +192402,17 @@ 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(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_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), @@ -197840,62 +192420,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2486), + [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(2488), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1117)] = { + [sym_expression] = STATE(4825), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(8745), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -197905,6 +192486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(3631), [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), @@ -197938,7 +192520,6 @@ 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(1268), [anon_sym_delete] = ACTIONS(145), @@ -197952,153 +192533,965 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(4830), - [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), + [STATE(1118)] = { + [sym_expression] = STATE(4612), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_initializer_list] = STATE(3929), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3631), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1119)] = { + [sym_expression] = STATE(3802), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_initializer_list] = STATE(3931), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3631), + [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), + }, + [STATE(1120)] = { + [sym_expression] = STATE(4647), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8891), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4705), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(1121)] = { + [sym_expression] = STATE(4554), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(8231), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON] = ACTIONS(4707), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(1122)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(4709), + [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), + }, + [STATE(1123)] = { + [sym_expression] = STATE(3593), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4711), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1124)] = { + [sym_expression] = STATE(3593), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4714), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1125)] = { + [sym_expression] = STATE(3729), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4717), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1126)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(4720), + [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), + }, + [STATE(1127)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4593), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), @@ -198108,7 +193501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4833), + [anon_sym_RBRACK] = ACTIONS(4722), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), @@ -198154,51 +193547,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1128)] = { + [sym_expression] = STATE(4388), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_SEMI] = ACTIONS(4724), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(4726), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(1129)] = { + [sym_expression] = STATE(3729), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1130)] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4731), + [anon_sym_LPAREN2] = ACTIONS(4733), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1131)] = { + [sym_expression] = STATE(4826), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -198206,6 +193902,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4735), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), @@ -198241,7 +193938,6 @@ 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(4835), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), @@ -198255,152 +193951,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), + [STATE(1132)] = { + [sym_expression] = STATE(4828), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -198408,6 +194003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4737), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), @@ -198443,7 +194039,6 @@ 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(1268), [anon_sym_delete] = ACTIONS(145), @@ -198457,59 +194052,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1133)] = { + [sym_expression] = STATE(3658), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4739), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1134)] = { + [sym_expression] = STATE(3595), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4742), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1135)] = { + [sym_expression] = STATE(3203), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4777), + [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -198558,463 +194355,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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(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(4841), - [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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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(4848), - [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), - }, - [STATE(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), + [STATE(1136)] = { + [sym_expression] = STATE(3203), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4850), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4748), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -199063,160 +194456,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(1137)] = { + [sym_expression] = STATE(3608), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4751), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1138)] = { + [sym_expression] = STATE(3204), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4754), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -199265,59 +194658,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(1139)] = { + [sym_expression] = STATE(3204), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4757), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -199366,362 +194759,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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_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), - [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), - }, - [STATE(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), - }, - [STATE(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(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(4857), - [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), - }, - [STATE(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), + [STATE(1140)] = { + [sym_expression] = STATE(3204), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4760), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -199770,968 +194860,362 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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(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(4859), - [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), - }, - [STATE(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(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), - }, - [STATE(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(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(4861), - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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(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(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), - }, - [STATE(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), + [STATE(1141)] = { + [sym_expression] = STATE(3205), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4763), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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_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(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), + [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), }, - [STATE(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), + [STATE(1142)] = { + [sym_expression] = STATE(3206), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4766), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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_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(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_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), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(4871), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1143)] = { + [sym_expression] = STATE(3207), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4769), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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), + [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), }, - [STATE(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), + [STATE(1144)] = { + [sym_expression] = STATE(3208), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4733), + [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -200780,1069 +195264,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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(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(4877), - [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), - }, - [STATE(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(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), - }, - [STATE(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), - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(1145)] = { + [sym_expression] = STATE(3210), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4887), - [anon_sym_LPAREN2] = ACTIONS(4889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4775), + [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -201891,362 +195365,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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(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(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), - }, - [STATE(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(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(4893), - [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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(1146)] = { + [sym_expression] = STATE(3211), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4778), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -202295,52 +195466,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(1147)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4593), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), @@ -202350,7 +195521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(4897), + [anon_sym_RBRACK] = ACTIONS(4781), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), @@ -202396,160 +195567,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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(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(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), - }, - [STATE(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), + [STATE(1148)] = { + [sym_expression] = STATE(3211), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4707), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4783), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -202598,67 +195668,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(1149)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [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_LPAREN2] = ACTIONS(4593), + [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(4786), [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_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), @@ -202687,862 +195758,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2543), + [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), }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1150)] = { + [sym_expression] = STATE(3624), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4788), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1151)] = { + [sym_expression] = STATE(3650), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4791), + [anon_sym_LPAREN2] = ACTIONS(4793), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1152)] = { + [sym_expression] = STATE(4854), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -203550,6 +196023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4795), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), @@ -203598,51 +196072,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1153)] = { + [sym_expression] = STATE(4668), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -203650,6 +196124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4797), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), @@ -203698,158 +196173,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1154)] = { + [sym_expression] = STATE(3628), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1155)] = { + [sym_expression] = STATE(3641), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4802), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1156)] = { + [sym_expression] = STATE(3212), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4805), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -203898,151 +196476,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1157)] = { + [sym_expression] = STATE(4401), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(7572), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -204098,251 +196577,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1158)] = { + [sym_expression] = STATE(3212), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4808), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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_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(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_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), }, - [STATE(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), + [STATE(1159)] = { + [sym_expression] = STATE(3276), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4811), + [anon_sym_LPAREN2] = ACTIONS(4813), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), [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_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), [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), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), }, - [STATE(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), + [STATE(1160)] = { + [sym_expression] = STATE(4730), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_RPAREN] = ACTIONS(4815), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -204398,152 +196880,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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_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), + [STATE(1161)] = { + [sym_expression] = STATE(3212), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4711), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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_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(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), + [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), }, - [STATE(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), + [STATE(1162)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4593), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), @@ -204553,6 +197036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4817), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), @@ -204596,69 +197080,70 @@ 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(4901), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1163)] = { + [sym_expression] = STATE(3767), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4821), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -204669,17 +197154,17 @@ 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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -204687,262 +197172,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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(4903), - [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), - }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1164)] = { + [sym_expression] = STATE(4790), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -204985,6 +197270,7 @@ 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(1268), [anon_sym_delete] = ACTIONS(145), @@ -204998,58 +197284,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1165)] = { + [sym_expression] = STATE(3212), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4714), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -205098,52 +197385,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(1166)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4593), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), @@ -205152,7 +197439,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1254), [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), - [anon_sym_LBRACK] = ACTIONS(4905), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4825), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), @@ -205198,558 +197486,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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_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), - }, - [STATE(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_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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(1167)] = { + [sym_expression] = STATE(3213), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4717), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -205798,158 +197587,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(1168)] = { + [sym_expression] = STATE(3767), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4827), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1169)] = { + [sym_expression] = STATE(3213), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -205998,252 +197789,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(1170)] = { + [sym_expression] = STATE(4729), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(4829), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [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_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(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), + [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), }, - [STATE(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), + [STATE(1171)] = { + [sym_expression] = STATE(4760), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(4831), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [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_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(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), + [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), }, - [STATE(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), + [STATE(1172)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4593), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), @@ -206253,6 +198046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(1996), [anon_sym_COLON_COLON] = ACTIONS(1998), [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_RBRACK] = ACTIONS(4833), [sym_primitive_type] = ACTIONS(1956), [anon_sym_not] = ACTIONS(1992), [anon_sym_compl] = ACTIONS(1992), @@ -206298,52 +198092,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1173)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4593), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), @@ -206353,6 +198147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -206398,67 +198193,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1174)] = { + [sym_expression] = STATE(4388), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), [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_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(4726), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(1175)] = { + [sym_expression] = STATE(2428), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4839), + [anon_sym_LPAREN2] = ACTIONS(4841), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -206469,17 +198366,17 @@ 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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), @@ -206487,162 +198384,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1176)] = { + [sym_expression] = STATE(3186), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4843), + [anon_sym_LPAREN2] = ACTIONS(4845), + [anon_sym_BANG] = ACTIONS(1792), + [anon_sym_TILDE] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1796), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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_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(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_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), }, - [STATE(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), + [STATE(1177)] = { + [sym_expression] = STATE(4840), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -206650,6 +198548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4847), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), @@ -206698,167 +198597,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1178)] = { + [sym_expression] = STATE(3593), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4808), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1179)] = { + [sym_expression] = STATE(2428), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [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_DOT_DOT_DOT] = ACTIONS(4839), + [anon_sym_LPAREN2] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(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_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -206869,17 +198770,17 @@ 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(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), @@ -206887,62 +198788,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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), + [STATE(1180)] = { + [sym_expression] = STATE(4841), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -206950,9 +198851,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4851), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(4907), + [anon_sym_LBRACK] = ACTIONS(2020), [sym_primitive_type] = ACTIONS(2171), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -206998,52 +198900,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1181)] = { + [sym_expression] = STATE(3767), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4853), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), @@ -207098,51 +199001,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1182)] = { + [sym_expression] = STATE(4677), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -207185,6 +199088,7 @@ 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(4855), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), @@ -207198,67 +199102,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1183)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(4909), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(2020), + [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(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), + }, + [STATE(1184)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(4859), + [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), + }, + [STATE(1185)] = { + [sym_expression] = STATE(4556), + [sym__string] = STATE(4311), + [sym_comma_expression] = STATE(7572), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -207287,462 +199394,769 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1186)] = { + [sym_expression] = STATE(3656), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4745), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1187)] = { + [sym_expression] = STATE(3656), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4748), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1188)] = { + [sym_expression] = STATE(3657), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4754), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1189)] = { + [sym_expression] = STATE(3657), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4757), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1190)] = { + [sym_expression] = STATE(3657), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4760), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1191)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(4861), + [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), + }, + [STATE(1192)] = { + [sym_expression] = STATE(3658), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4763), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1193)] = { + [sym_expression] = STATE(4762), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -207785,6 +200199,7 @@ 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(4863), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), @@ -207798,1151 +200213,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(1194)] = { + [sym_expression] = STATE(3595), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4766), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1195)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(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), + [anon_sym_RBRACK] = ACTIONS(4865), + [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(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), + [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), }, - [STATE(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), + [STATE(1196)] = { + [sym_expression] = STATE(4848), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -208985,6 +200502,7 @@ 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(4867), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), @@ -208998,51 +200516,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1197)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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), + }, + [STATE(1198)] = { + [sym_expression] = STATE(4697), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -209085,6 +200704,7 @@ 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(4871), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), @@ -209098,67 +200718,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1199)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(4873), + [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), + }, + [STATE(1200)] = { + [sym_expression] = STATE(4778), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -209185,264 +200906,166 @@ 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(4875), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1201)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(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), + [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(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(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), + [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), }, - [STATE(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), + [STATE(1202)] = { + [sym_expression] = STATE(4790), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -209485,6 +201108,7 @@ 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(4879), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), @@ -209498,767 +201122,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(1295)] = { - [sym_expression] = STATE(4581), - [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), - }, - [STATE(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), + [STATE(1203)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(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), + [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(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), + [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), }, - [STATE(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), + [STATE(1204)] = { + [sym_expression] = STATE(4820), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -210285,80 +201310,82 @@ 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(4883), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1205)] = { + [sym_expression] = STATE(4388), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(4726), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -210369,17 +201396,17 @@ 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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -210387,262 +201414,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1206)] = { + [sym_expression] = STATE(3608), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4769), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1207)] = { + [sym_expression] = STATE(4659), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -210685,6 +201613,7 @@ 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(4887), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), @@ -210698,451 +201627,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(1208)] = { + [sym_expression] = STATE(4666), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), - }, - [STATE(1306)] = { - [sym_expression] = STATE(4460), - [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -211185,6 +201714,7 @@ 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(4889), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_delete] = ACTIONS(145), @@ -211198,67 +201728,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1209)] = { + [sym_expression] = STATE(4635), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4891), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -211287,378 +201818,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1210)] = { + [sym_expression] = STATE(3624), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4772), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1211)] = { + [sym_expression] = STATE(3205), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4739), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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), - }, - [STATE(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(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(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_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(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), + [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), }, - [STATE(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(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), + [STATE(1212)] = { + [sym_expression] = STATE(2428), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4839), + [anon_sym_LPAREN2] = ACTIONS(4893), + [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(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_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), @@ -211669,17 +202103,17 @@ 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(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_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), @@ -211687,78 +202121,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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), + [STATE(1213)] = { + [sym_expression] = STATE(3384), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4839), + [anon_sym_LPAREN2] = ACTIONS(4895), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), [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_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -211769,17 +202204,17 @@ 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(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_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), @@ -211787,269 +202222,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2486), + [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(2488), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1214)] = { + [sym_expression] = STATE(4745), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(4897), + [anon_sym___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [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_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(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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(1215)] = { + [sym_expression] = STATE(3206), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4742), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -212098,58 +202435,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(1216)] = { + [sym_expression] = STATE(3207), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4751), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -212198,158 +202536,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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(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), - }, - [STATE(1318)] = { + [STATE(1217)] = { [sym_expression] = STATE(3208), - [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__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4788), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), [anon_sym_LBRACK] = ACTIONS(2020), @@ -212398,551 +202637,455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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(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), - [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), - }, - [STATE(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(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), + [STATE(1218)] = { + [sym_expression] = STATE(3210), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4799), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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_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(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), + [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), }, - [STATE(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), + [STATE(1219)] = { + [sym_expression] = STATE(3211), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4802), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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_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(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), + [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), }, - [STATE(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(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), + [STATE(1220)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(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), + [anon_sym_RBRACK] = ACTIONS(4899), + [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(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), + [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), }, - [STATE(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(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), - [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), + [STATE(1221)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(4901), + [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(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), + [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), }, - [STATE(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), + [STATE(1222)] = { + [sym_expression] = STATE(4746), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -212950,6 +203093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(25), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(4903), [anon_sym___extension__] = ACTIONS(2167), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK] = ACTIONS(2020), @@ -212998,367 +203142,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(1223)] = { + [sym_expression] = STATE(3628), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4775), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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(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), + [STATE(1224)] = { + [sym_expression] = STATE(3641), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4778), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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(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), + [STATE(1225)] = { + [sym_expression] = STATE(3641), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4783), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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(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), + [STATE(1226)] = { + [sym_expression] = STATE(3767), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4819), + [anon_sym_LPAREN2] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -213369,17 +203517,17 @@ 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(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_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), @@ -213387,278 +203535,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(1227)] = { + [sym_expression] = STATE(3593), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4805), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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(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), + [STATE(1228)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(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), + [anon_sym_RBRACK] = ACTIONS(4907), + [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(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), + [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), }, - [STATE(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(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), + [STATE(1229)] = { + [sym_expression] = STATE(4654), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -213669,17 +203819,17 @@ 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(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_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), @@ -213687,78 +203837,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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(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), + [STATE(1230)] = { + [sym_expression] = STATE(4385), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -213769,17 +203919,17 @@ 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(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_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), @@ -213787,78 +203937,578 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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(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), + [STATE(1231)] = { + [sym_expression] = STATE(3694), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1232)] = { + [sym_expression] = STATE(3279), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(4909), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1233)] = { + [sym_expression] = STATE(3280), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1234)] = { + [sym_expression] = STATE(3295), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(4911), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1235)] = { + [sym_expression] = STATE(3316), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1236)] = { + [sym_expression] = STATE(4836), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -213869,17 +204519,17 @@ 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(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_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), @@ -213887,78 +204537,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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(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), + [STATE(1237)] = { + [sym_expression] = STATE(4367), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -213969,17 +204619,17 @@ 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(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_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), @@ -213987,62 +204637,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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), + [STATE(1238)] = { + [sym_expression] = STATE(4368), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -214098,67 +204748,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(1239)] = { + [sym_expression] = STATE(3322), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1240)] = { + [sym_expression] = STATE(4369), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -214169,17 +204919,17 @@ 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(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_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), @@ -214187,62 +204937,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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), + [STATE(1241)] = { + [sym_expression] = STATE(4755), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -214298,267 +205048,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1242)] = { + [sym_expression] = STATE(4357), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(3839), - [anon_sym_COLON_COLON] = ACTIONS(3841), + [STATE(1243)] = { + [sym_expression] = STATE(4648), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -214569,17 +205219,17 @@ 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(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_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), @@ -214587,62 +205237,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1244)] = { + [sym_expression] = STATE(3330), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1245)] = { + [sym_expression] = STATE(4374), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -214698,67 +205448,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1246)] = { + [sym_expression] = STATE(4448), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -214769,17 +205519,17 @@ 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(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_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), @@ -214787,278 +205537,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [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), }, - [STATE(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(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), - }, - [STATE(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(4565), - [anon_sym_BANG] = ACTIONS(1994), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), + [STATE(1247)] = { + [sym_expression] = STATE(4822), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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), - }, - [STATE(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___extension__] = ACTIONS(2167), + [anon_sym_COLON_COLON] = ACTIONS(47), [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_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), @@ -215069,17 +205619,17 @@ 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(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_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), @@ -215087,1278 +205637,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1248)] = { + [sym_expression] = STATE(3656), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1249)] = { + [sym_expression] = STATE(3144), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(4913), [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_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216369,17 +205819,17 @@ 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(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_number_literal] = ACTIONS(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), @@ -216387,78 +205837,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1250)] = { + [sym_expression] = STATE(3143), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -216469,17 +205919,17 @@ 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(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_number_literal] = ACTIONS(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), @@ -216487,978 +205937,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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(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(4952), - [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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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), + [STATE(1251)] = { + [sym_expression] = STATE(3657), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1998), + [STATE(1252)] = { + [sym_expression] = STATE(3658), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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(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), + [STATE(1253)] = { + [sym_expression] = STATE(3070), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), [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), - }, - [STATE(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), - [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(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), - }, - [STATE(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), - [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), + [anon_sym__Generic] = ACTIONS(1964), + [anon_sym_asm] = ACTIONS(1966), + [anon_sym___asm__] = ACTIONS(1966), + [anon_sym___asm] = ACTIONS(1966), + [sym_number_literal] = ACTIONS(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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(2307), - [anon_sym_COLON_COLON] = ACTIONS(2309), + [STATE(1254)] = { + [sym_expression] = STATE(3089), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -217469,17 +206319,17 @@ 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(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_number_literal] = ACTIONS(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), @@ -217487,578 +206337,778 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1255)] = { + [sym_expression] = STATE(3224), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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), - [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_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(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), + [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), }, - [STATE(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), - [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), + [STATE(1256)] = { + [sym_template_argument_list] = STATE(1571), + [sym_identifier] = ACTIONS(4915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_LPAREN2] = ACTIONS(4919), + [anon_sym_TILDE] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4917), + [anon_sym___extension__] = ACTIONS(4915), + [anon_sym_virtual] = ACTIONS(4915), + [anon_sym_extern] = ACTIONS(4915), + [anon_sym___attribute__] = ACTIONS(4915), + [anon_sym___attribute] = ACTIONS(4915), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4922), + [anon_sym___declspec] = ACTIONS(4915), + [anon_sym___based] = ACTIONS(4915), + [anon_sym___cdecl] = ACTIONS(4915), + [anon_sym___clrcall] = ACTIONS(4915), + [anon_sym___stdcall] = ACTIONS(4915), + [anon_sym___fastcall] = ACTIONS(4915), + [anon_sym___thiscall] = ACTIONS(4915), + [anon_sym___vectorcall] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4917), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_static] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_register] = ACTIONS(4915), + [anon_sym_inline] = ACTIONS(4915), + [anon_sym___inline] = ACTIONS(4915), + [anon_sym___inline__] = ACTIONS(4915), + [anon_sym___forceinline] = ACTIONS(4915), + [anon_sym_thread_local] = ACTIONS(4915), + [anon_sym___thread] = ACTIONS(4915), + [anon_sym_const] = ACTIONS(4915), + [anon_sym_constexpr] = ACTIONS(4915), + [anon_sym_volatile] = ACTIONS(4915), + [anon_sym_restrict] = ACTIONS(4915), + [anon_sym___restrict__] = ACTIONS(4915), + [anon_sym__Atomic] = ACTIONS(4915), + [anon_sym__Noreturn] = ACTIONS(4915), + [anon_sym_noreturn] = ACTIONS(4915), + [anon_sym__Nonnull] = ACTIONS(4915), + [anon_sym_mutable] = ACTIONS(4915), + [anon_sym_constinit] = ACTIONS(4915), + [anon_sym_consteval] = ACTIONS(4915), + [anon_sym_alignas] = ACTIONS(4915), + [anon_sym__Alignas] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4917), + [anon_sym_STAR_EQ] = ACTIONS(4917), + [anon_sym_SLASH_EQ] = ACTIONS(4917), + [anon_sym_PERCENT_EQ] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4917), + [anon_sym_DASH_EQ] = ACTIONS(4917), + [anon_sym_LT_LT_EQ] = ACTIONS(4917), + [anon_sym_GT_GT_EQ] = ACTIONS(4917), + [anon_sym_AMP_EQ] = ACTIONS(4917), + [anon_sym_CARET_EQ] = ACTIONS(4917), + [anon_sym_PIPE_EQ] = ACTIONS(4917), + [anon_sym_and_eq] = ACTIONS(4924), + [anon_sym_or_eq] = ACTIONS(4924), + [anon_sym_xor_eq] = ACTIONS(4924), + [anon_sym_LT_EQ_GT] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4924), + [anon_sym_and] = ACTIONS(4924), + [anon_sym_bitor] = ACTIONS(4924), + [anon_sym_xor] = ACTIONS(4924), + [anon_sym_bitand] = ACTIONS(4924), + [anon_sym_not_eq] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4915), + [anon_sym_decltype] = ACTIONS(4915), + [anon_sym_template] = ACTIONS(4915), + [anon_sym_operator] = ACTIONS(4915), + }, + [STATE(1257)] = { + [sym_expression] = STATE(3179), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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(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), + [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), }, - [STATE(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), + [STATE(1258)] = { + [sym_expression] = STATE(3179), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [sym_identifier] = ACTIONS(4932), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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), - [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_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(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), + [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), }, - [STATE(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), + [STATE(1259)] = { + [sym_expression] = STATE(3595), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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), - [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1260)] = { + [sym_expression] = STATE(3185), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), [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), - [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_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(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), + [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), }, - [STATE(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), + [STATE(1261)] = { + [sym_expression] = STATE(3608), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1262)] = { + [sym_expression] = STATE(4388), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(4726), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -218069,17 +207119,17 @@ 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(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_number_literal] = ACTIONS(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -218087,278 +207137,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1263)] = { + [sym_expression] = STATE(3624), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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), - [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1264)] = { + [sym_expression] = STATE(3628), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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), - [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1265)] = { + [sym_expression] = STATE(3819), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -218369,17 +207419,17 @@ 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(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_number_literal] = ACTIONS(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -218387,78 +207437,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1266)] = { + [sym_expression] = STATE(4763), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -218469,17 +207519,17 @@ 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(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_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), @@ -218487,178 +207537,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [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), }, - [STATE(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), + [STATE(1267)] = { + [sym_expression] = STATE(3641), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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), - [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1268)] = { + [sym_expression] = STATE(3819), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -218669,17 +207719,17 @@ 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(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_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), @@ -218687,78 +207737,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [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), }, - [STATE(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), + [STATE(1269)] = { + [sym_expression] = STATE(3364), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1270)] = { + [sym_expression] = STATE(4384), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -218769,17 +207919,17 @@ 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(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_number_literal] = ACTIONS(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -218787,78 +207937,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1271)] = { + [sym_expression] = STATE(4381), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(4934), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -218869,17 +208019,17 @@ 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(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_number_literal] = ACTIONS(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -218887,878 +208037,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1272)] = { + [sym_expression] = STATE(3593), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1273)] = { + [sym_expression] = STATE(4578), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [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), - }, - [STATE(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___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -219769,17 +208219,17 @@ 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(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_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), @@ -219787,163 +208237,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1274)] = { + [sym_expression] = STATE(4768), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(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_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1275)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_LPAREN2] = ACTIONS(4593), [anon_sym_BANG] = ACTIONS(1994), [anon_sym_TILDE] = ACTIONS(1994), [anon_sym_DASH] = ACTIONS(1992), @@ -219996,1369 +208446,1469 @@ 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(1974), + [sym_this] = ACTIONS(4936), }, - [STATE(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), + [STATE(1276)] = { + [sym_expression] = STATE(3729), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1277)] = { + [sym_expression] = STATE(4539), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1278)] = { + [sym_expression] = STATE(4364), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1279)] = { + [sym_expression] = STATE(3777), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1280)] = { + [sym_expression] = STATE(4337), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1281)] = { + [sym_expression] = STATE(4362), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1282)] = { + [sym_expression] = STATE(4330), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1283)] = { + [sym_expression] = STATE(4331), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1284)] = { + [sym_expression] = STATE(4334), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1285)] = { + [sym_expression] = STATE(4338), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1286)] = { + [sym_expression] = STATE(4342), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1287)] = { + [sym_expression] = STATE(4354), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1288)] = { + [sym_expression] = STATE(4809), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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(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), + [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), }, - [STATE(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(4346), - [anon_sym_AMP] = ACTIONS(4346), - [anon_sym___extension__] = ACTIONS(1950), - [anon_sym_COLON_COLON] = ACTIONS(1952), - [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(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), + [STATE(1289)] = { + [sym_expression] = STATE(4356), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1290)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [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_LPAREN2] = ACTIONS(4593), + [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(4348), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [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), @@ -221369,17 +209919,17 @@ 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), @@ -221387,378 +209937,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1291)] = { + [sym_expression] = STATE(4602), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(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), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(1292)] = { + [sym_expression] = STATE(4360), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1293)] = { + [sym_expression] = STATE(4830), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -221787,62 +210237,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3885), [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1294)] = { + [sym_expression] = STATE(4184), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1295)] = { + [sym_expression] = STATE(4492), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -221898,1251 +210448,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(1296)] = { + [sym_expression] = STATE(4390), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -223198,151 +210548,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1297)] = { + [sym_expression] = STATE(4333), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), + [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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), + [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(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), + [anon_sym_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1298)] = { + [sym_expression] = STATE(3758), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(4938), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -223398,51 +210748,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1299)] = { + [sym_expression] = STATE(4655), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -223498,67 +210848,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1300)] = { + [sym_expression] = STATE(4493), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1301)] = { + [sym_expression] = STATE(4584), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1302)] = { + [sym_expression] = STATE(4509), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -223587,78 +211137,1078 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1303)] = { + [sym_expression] = STATE(4512), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1304)] = { + [sym_expression] = STATE(4513), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1305)] = { + [sym_expression] = STATE(4519), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1306)] = { + [sym_expression] = STATE(4520), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1307)] = { + [sym_expression] = STATE(4522), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1308)] = { + [sym_expression] = STATE(4523), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1309)] = { + [sym_expression] = STATE(4526), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1310)] = { + [sym_expression] = STATE(4527), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1311)] = { + [sym_expression] = STATE(4529), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1312)] = { + [sym_expression] = STATE(4532), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1313)] = { + [sym_expression] = STATE(3137), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(4940), [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_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -223669,17 +212219,17 @@ 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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), @@ -223687,78 +212237,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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(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), + [STATE(1314)] = { + [sym_expression] = STATE(2415), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), [anon_sym__alignof] = ACTIONS(1960), @@ -223769,17 +212319,17 @@ 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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), @@ -223787,77 +212337,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1315)] = { + [sym_expression] = STATE(2841), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_LPAREN2] = ACTIONS(4679), [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_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(4942), [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_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -223898,66 +212448,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1316)] = { + [sym_expression] = STATE(2877), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_LPAREN2] = ACTIONS(4679), [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_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), [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_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -223998,66 +212548,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1317)] = { + [sym_expression] = STATE(4781), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), + }, + [STATE(1318)] = { + [sym_expression] = STATE(2851), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_LPAREN2] = ACTIONS(4679), [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_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), [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_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -224098,66 +212748,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1319)] = { + [sym_expression] = STATE(2853), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_LPAREN2] = ACTIONS(4679), [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_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), [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_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -224198,67 +212848,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1320)] = { + [sym_expression] = STATE(2422), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [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_LPAREN2] = ACTIONS(4593), + [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(4348), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [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), @@ -224269,17 +212919,17 @@ 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), @@ -224287,78 +212937,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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), + [STATE(1321)] = { + [sym_expression] = STATE(2422), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(4944), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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), + }, + [STATE(1322)] = { + [sym_expression] = STATE(2419), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [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_LPAREN2] = ACTIONS(4593), + [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(4348), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [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), @@ -224369,17 +213119,517 @@ 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(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), + }, + [STATE(1323)] = { + [sym_expression] = STATE(4597), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), + }, + [STATE(1324)] = { + [sym_expression] = STATE(4194), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(4946), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1325)] = { + [sym_expression] = STATE(4786), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), + }, + [STATE(1326)] = { + [sym_expression] = STATE(3819), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1327)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), [sym_true] = ACTIONS(1974), [sym_false] = ACTIONS(1974), [anon_sym_NULL] = ACTIONS(1976), @@ -224387,278 +213637,1778 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1328)] = { + [sym_expression] = STATE(4193), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1329)] = { + [sym_expression] = STATE(4195), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(4948), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1330)] = { + [sym_expression] = STATE(3187), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym___extension__] = ACTIONS(2455), + [anon_sym_COLON_COLON] = ACTIONS(1804), + [anon_sym_LBRACK] = ACTIONS(4950), + [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), + }, + [STATE(1331)] = { + [sym_expression] = STATE(3235), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1332)] = { + [sym_expression] = STATE(3188), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1333)] = { + [sym_expression] = STATE(4197), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1334)] = { + [sym_expression] = STATE(3777), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1335)] = { + [sym_expression] = STATE(4198), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1336)] = { + [sym_expression] = STATE(4199), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1337)] = { + [sym_expression] = STATE(4200), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1338)] = { + [sym_expression] = STATE(4236), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1339)] = { + [sym_expression] = STATE(4202), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1340)] = { + [sym_expression] = STATE(4203), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1341)] = { + [sym_expression] = STATE(4204), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), + }, + [STATE(1342)] = { + [sym_expression] = STATE(4205), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(1343)] = { + [sym_expression] = STATE(4206), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), [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_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), + [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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [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(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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), + [sym_this] = ACTIONS(229), }, - [STATE(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(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), + [STATE(1344)] = { + [sym_expression] = STATE(3181), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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(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_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(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), + [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), }, - [STATE(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), + [STATE(1345)] = { + [sym_expression] = STATE(3004), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [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_LPAREN2] = ACTIONS(4593), + [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(4348), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), - [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), @@ -224669,17 +215419,17 @@ 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), @@ -224687,262 +215437,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1346)] = { + [sym_expression] = STATE(4808), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), [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), - }, - [STATE(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), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -224998,67 +215548,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1347)] = { + [sym_expression] = STATE(4209), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), [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_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -225069,17 +215619,17 @@ 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(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_number_literal] = ACTIONS(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -225087,78 +215637,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1348)] = { + [sym_expression] = STATE(4213), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), [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_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -225169,17 +215719,17 @@ 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(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_number_literal] = ACTIONS(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -225187,477 +215737,1177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1349)] = { + [sym_expression] = STATE(3272), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), [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), - [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_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), }, - [STATE(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), + [STATE(1350)] = { + [sym_expression] = STATE(3306), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), [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), - [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_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [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), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), }, - [STATE(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(2307), - [anon_sym_COLON_COLON] = ACTIONS(2309), + [STATE(1351)] = { + [sym_expression] = STATE(3308), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), [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_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), [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), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), }, - [STATE(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), + [STATE(1352)] = { + [sym_expression] = STATE(3309), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), [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_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), [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), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), }, - [STATE(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), + [STATE(1353)] = { + [sym_expression] = STATE(3310), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1354)] = { + [sym_expression] = STATE(3311), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1355)] = { + [sym_expression] = STATE(3312), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1356)] = { + [sym_expression] = STATE(3313), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1357)] = { + [sym_expression] = STATE(3314), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1358)] = { + [sym_expression] = STATE(3315), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1359)] = { + [sym_expression] = STATE(3264), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1360)] = { + [sym_expression] = STATE(2861), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), [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_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), [anon_sym___extension__] = ACTIONS(1950), [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(2020), + [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(4348), - [anon_sym_PLUS_PLUS] = ACTIONS(4348), + [anon_sym_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -225698,66 +216948,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1361)] = { + [sym_expression] = STATE(2415), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [sym_identifier] = ACTIONS(1990), - [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_LPAREN2] = ACTIONS(4679), [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_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), [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_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), [anon_sym_sizeof] = ACTIONS(1958), [anon_sym___alignof__] = ACTIONS(1960), [anon_sym___alignof] = ACTIONS(1960), @@ -225798,61 +217048,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1988), [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1362)] = { + [sym_expression] = STATE(4582), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1363)] = { + [sym_expression] = STATE(4511), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1364)] = { + [sym_expression] = STATE(3198), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), [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_STAR] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), [anon_sym___extension__] = ACTIONS(2455), [anon_sym_COLON_COLON] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(4954), [sym_primitive_type] = ACTIONS(2459), [anon_sym_not] = ACTIONS(1796), [anon_sym_compl] = ACTIONS(1796), @@ -225898,67 +217348,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(1860), [sym_this] = ACTIONS(1840), }, - [STATE(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), + [STATE(1365)] = { + [sym_expression] = STATE(4501), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -225987,62 +217437,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1366)] = { + [sym_expression] = STATE(2426), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1367)] = { + [sym_expression] = STATE(4583), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1368)] = { + [sym_expression] = STATE(4533), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -226098,67 +217748,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1369)] = { + [sym_expression] = STATE(4534), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -226187,78 +217837,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1370)] = { + [sym_expression] = STATE(4383), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(4956), [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_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), @@ -226287,78 +217937,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1371)] = { + [sym_expression] = STATE(4721), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -226387,778 +218037,1378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1372)] = { + [sym_expression] = STATE(4608), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), [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_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), [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), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), + [STATE(1373)] = { + [sym_expression] = STATE(3135), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1374)] = { + [sym_expression] = STATE(3139), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1375)] = { + [sym_expression] = STATE(2433), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1376)] = { + [sym_expression] = STATE(3028), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1377)] = { + [sym_expression] = STATE(3029), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1378)] = { + [sym_expression] = STATE(3030), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1379)] = { + [sym_expression] = STATE(3032), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1380)] = { + [sym_expression] = STATE(3040), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1381)] = { + [sym_expression] = STATE(3042), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1382)] = { + [sym_expression] = STATE(3043), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1383)] = { + [sym_expression] = STATE(3141), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1384)] = { + [sym_expression] = STATE(3615), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1385)] = { + [sym_expression] = STATE(4336), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(4958), [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_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), @@ -227187,178 +219437,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1386)] = { + [sym_expression] = STATE(3649), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), [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_primitive_type] = ACTIONS(2621), + [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(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), + [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), }, - [STATE(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), + [STATE(1387)] = { + [sym_expression] = STATE(4747), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -227387,62 +219637,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [anon_sym_delete] = ACTIONS(3885), [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_co_await] = ACTIONS(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1388)] = { + [sym_expression] = STATE(4804), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -227498,51 +219748,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1389)] = { + [sym_expression] = STATE(2972), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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), + }, + [STATE(1390)] = { + [sym_expression] = STATE(4853), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -227598,167 +219948,1667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1391)] = { + [sym_expression] = STATE(2860), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1392)] = { + [sym_expression] = STATE(2875), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1393)] = { + [sym_expression] = STATE(2433), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1394)] = { + [sym_expression] = STATE(2843), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1395)] = { + [sym_expression] = STATE(2844), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1396)] = { + [sym_expression] = STATE(2845), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1397)] = { + [sym_expression] = STATE(2846), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1398)] = { + [sym_expression] = STATE(2847), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1399)] = { + [sym_expression] = STATE(2848), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1400)] = { + [sym_expression] = STATE(2849), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1401)] = { + [sym_expression] = STATE(2876), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1402)] = { + [sym_expression] = STATE(3271), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1403)] = { + [sym_expression] = STATE(3273), + [sym__string] = STATE(3468), + [sym_conditional_expression] = STATE(3715), + [sym_assignment_expression] = STATE(3715), + [sym_pointer_expression] = STATE(3613), + [sym_unary_expression] = STATE(3715), + [sym_binary_expression] = STATE(3715), + [sym_update_expression] = STATE(3715), + [sym_cast_expression] = STATE(3715), + [sym_sizeof_expression] = STATE(3715), + [sym_alignof_expression] = STATE(3715), + [sym_offsetof_expression] = STATE(3715), + [sym_generic_expression] = STATE(3715), + [sym_subscript_expression] = STATE(3613), + [sym_call_expression] = STATE(3613), + [sym_gnu_asm_expression] = STATE(3715), + [sym_extension_expression] = STATE(3715), + [sym_field_expression] = STATE(3613), + [sym_compound_literal_expression] = STATE(3715), + [sym_parenthesized_expression] = STATE(3613), + [sym_char_literal] = STATE(3468), + [sym_concatenated_string] = STATE(3468), + [sym_string_literal] = STATE(2448), + [sym_null] = STATE(3715), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7745), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3715), + [sym_raw_string_literal] = STATE(2448), + [sym_co_await_expression] = STATE(3715), + [sym_new_expression] = STATE(3715), + [sym_delete_expression] = STATE(3715), + [sym_requires_clause] = STATE(3715), + [sym_requires_expression] = STATE(3715), + [sym_lambda_expression] = STATE(3715), + [sym_lambda_capture_specifier] = STATE(5502), + [sym_fold_expression] = STATE(3715), + [sym_parameter_pack_expansion] = STATE(3715), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3613), + [sym_qualified_type_identifier] = STATE(7745), + [sym_user_defined_literal] = STATE(3613), + [sym_identifier] = ACTIONS(2497), + [anon_sym_LPAREN2] = ACTIONS(4681), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_TILDE] = ACTIONS(2501), + [anon_sym_DASH] = ACTIONS(2499), + [anon_sym_PLUS] = ACTIONS(2499), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(2503), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2509), + [anon_sym_not] = ACTIONS(2499), + [anon_sym_compl] = ACTIONS(2499), + [anon_sym_DASH_DASH] = ACTIONS(4384), + [anon_sym_PLUS_PLUS] = ACTIONS(4384), + [anon_sym_sizeof] = ACTIONS(2511), + [anon_sym___alignof__] = ACTIONS(2513), + [anon_sym___alignof] = ACTIONS(2513), + [anon_sym__alignof] = ACTIONS(2513), + [anon_sym_alignof] = ACTIONS(2513), + [anon_sym__Alignof] = ACTIONS(2513), + [anon_sym_offsetof] = ACTIONS(2515), + [anon_sym__Generic] = ACTIONS(2517), + [anon_sym_asm] = ACTIONS(2519), + [anon_sym___asm__] = ACTIONS(2519), + [anon_sym___asm] = ACTIONS(2519), + [sym_number_literal] = ACTIONS(2521), + [anon_sym_L_SQUOTE] = ACTIONS(2523), + [anon_sym_u_SQUOTE] = ACTIONS(2523), + [anon_sym_U_SQUOTE] = ACTIONS(2523), + [anon_sym_u8_SQUOTE] = ACTIONS(2523), + [anon_sym_SQUOTE] = ACTIONS(2523), + [anon_sym_L_DQUOTE] = ACTIONS(2525), + [anon_sym_u_DQUOTE] = ACTIONS(2525), + [anon_sym_U_DQUOTE] = ACTIONS(2525), + [anon_sym_u8_DQUOTE] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2525), + [sym_true] = ACTIONS(2527), + [sym_false] = ACTIONS(2527), + [anon_sym_NULL] = ACTIONS(2529), + [anon_sym_nullptr] = ACTIONS(2529), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2531), + [anon_sym_R_DQUOTE] = ACTIONS(2533), + [anon_sym_LR_DQUOTE] = ACTIONS(2533), + [anon_sym_uR_DQUOTE] = ACTIONS(2533), + [anon_sym_UR_DQUOTE] = ACTIONS(2533), + [anon_sym_u8R_DQUOTE] = ACTIONS(2533), + [anon_sym_co_await] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2537), + [anon_sym_requires] = ACTIONS(2539), + [sym_this] = ACTIONS(2527), + }, + [STATE(1404)] = { + [sym_expression] = STATE(3673), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1405)] = { + [sym_expression] = STATE(2433), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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), + }, + [STATE(1406)] = { + [sym_expression] = STATE(3019), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [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_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(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), + [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), }, - [STATE(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), + [STATE(1407)] = { + [sym_expression] = STATE(3758), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -227769,17 +221619,17 @@ 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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -227787,78 +221637,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1408)] = { + [sym_expression] = STATE(3766), + [sym__string] = STATE(4420), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3301), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3301), + [sym_call_expression] = STATE(3301), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3301), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3301), + [sym_char_literal] = STATE(4420), + [sym_concatenated_string] = STATE(4420), + [sym_string_literal] = STATE(3485), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3485), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3301), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3301), + [sym_identifier] = ACTIONS(3839), + [anon_sym_LPAREN2] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(3843), + [anon_sym_TILDE] = ACTIONS(3843), + [anon_sym_DASH] = ACTIONS(3841), + [anon_sym_PLUS] = ACTIONS(3841), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(3845), + [anon_sym_COLON_COLON] = ACTIONS(3847), [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_not] = ACTIONS(3841), + [anon_sym_compl] = ACTIONS(3841), + [anon_sym_DASH_DASH] = ACTIONS(4370), + [anon_sym_PLUS_PLUS] = ACTIONS(4370), + [anon_sym_sizeof] = ACTIONS(3849), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -227869,17 +221719,17 @@ 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(3851), + [anon_sym_L_SQUOTE] = ACTIONS(3853), + [anon_sym_u_SQUOTE] = ACTIONS(3853), + [anon_sym_U_SQUOTE] = ACTIONS(3853), + [anon_sym_u8_SQUOTE] = ACTIONS(3853), + [anon_sym_SQUOTE] = ACTIONS(3853), + [anon_sym_L_DQUOTE] = ACTIONS(3855), + [anon_sym_u_DQUOTE] = ACTIONS(3855), + [anon_sym_U_DQUOTE] = ACTIONS(3855), + [anon_sym_u8_DQUOTE] = ACTIONS(3855), + [anon_sym_DQUOTE] = ACTIONS(3855), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -227887,178 +221737,678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_delete] = ACTIONS(3857), + [anon_sym_R_DQUOTE] = ACTIONS(3859), + [anon_sym_LR_DQUOTE] = ACTIONS(3859), + [anon_sym_uR_DQUOTE] = ACTIONS(3859), + [anon_sym_UR_DQUOTE] = ACTIONS(3859), + [anon_sym_u8R_DQUOTE] = ACTIONS(3859), + [anon_sym_co_await] = ACTIONS(3861), [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1409)] = { + [sym_expression] = STATE(3737), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(4960), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1410)] = { + [sym_expression] = STATE(3010), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(4962), + [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), + }, + [STATE(1411)] = { + [sym_expression] = STATE(2978), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(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_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(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), + [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), }, - [STATE(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), + [STATE(1412)] = { + [sym_expression] = STATE(2415), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [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), + }, + [STATE(1413)] = { + [sym_expression] = STATE(3018), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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), + }, + [STATE(1414)] = { + [sym_expression] = STATE(3183), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1415)] = { + [sym_expression] = STATE(3758), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), [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_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -228069,17 +222419,17 @@ 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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -228087,78 +222437,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1416)] = { + [sym_expression] = STATE(3766), + [sym__string] = STATE(4247), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(2968), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(2968), + [sym_call_expression] = STATE(2968), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(2968), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(2968), + [sym_char_literal] = STATE(4247), + [sym_concatenated_string] = STATE(4247), + [sym_string_literal] = STATE(3103), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3103), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2968), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(2968), + [sym_identifier] = ACTIONS(4350), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(3625), + [anon_sym_TILDE] = ACTIONS(3625), + [anon_sym_DASH] = ACTIONS(3623), + [anon_sym_PLUS] = ACTIONS(3623), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(3627), + [anon_sym_COLON_COLON] = ACTIONS(3629), [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_not] = ACTIONS(3623), + [anon_sym_compl] = ACTIONS(3623), + [anon_sym_DASH_DASH] = ACTIONS(4354), + [anon_sym_PLUS_PLUS] = ACTIONS(4354), + [anon_sym_sizeof] = ACTIONS(3633), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -228169,17 +222519,17 @@ 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(3635), + [anon_sym_L_SQUOTE] = ACTIONS(3637), + [anon_sym_u_SQUOTE] = ACTIONS(3637), + [anon_sym_U_SQUOTE] = ACTIONS(3637), + [anon_sym_u8_SQUOTE] = ACTIONS(3637), + [anon_sym_SQUOTE] = ACTIONS(3637), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), [sym_true] = ACTIONS(229), [sym_false] = ACTIONS(229), [anon_sym_NULL] = ACTIONS(123), @@ -228187,562 +222537,962 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_delete] = ACTIONS(3641), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + [anon_sym_co_await] = ACTIONS(3645), + [anon_sym_new] = ACTIONS(3647), + [anon_sym_requires] = ACTIONS(3649), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1417)] = { + [sym_expression] = STATE(2922), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [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_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(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_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), }, - [STATE(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), + [STATE(1418)] = { + [sym_expression] = STATE(3017), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(4964), + [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), + }, + [STATE(1419)] = { + [sym_expression] = STATE(2931), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(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_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(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_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), }, - [STATE(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), + [STATE(1420)] = { + [sym_expression] = STATE(2935), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [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_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(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_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), }, - [STATE(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), + [STATE(1421)] = { + [sym_expression] = STATE(2943), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1998), [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_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(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_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), + }, + [STATE(1422)] = { + [sym_expression] = STATE(2955), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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), + }, + [STATE(1423)] = { + [sym_expression] = STATE(2422), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), + }, + [STATE(1424)] = { + [sym_expression] = STATE(3214), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), }, - [STATE(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), + [STATE(1425)] = { + [sym_expression] = STATE(2419), + [sym__string] = STATE(3177), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3177), + [sym_concatenated_string] = STATE(3177), + [sym_string_literal] = STATE(2346), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2346), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(2361), + [anon_sym_LPAREN2] = ACTIONS(4693), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_TILDE] = ACTIONS(2365), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_PLUS] = ACTIONS(2363), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym___extension__] = ACTIONS(2367), + [anon_sym_COLON_COLON] = ACTIONS(2369), [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_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2363), + [anon_sym_compl] = ACTIONS(2363), + [anon_sym_DASH_DASH] = ACTIONS(4513), + [anon_sym_PLUS_PLUS] = ACTIONS(4513), + [anon_sym_sizeof] = ACTIONS(2371), + [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(2373), + [anon_sym_L_SQUOTE] = ACTIONS(2375), + [anon_sym_u_SQUOTE] = ACTIONS(2375), + [anon_sym_U_SQUOTE] = ACTIONS(2375), + [anon_sym_u8_SQUOTE] = ACTIONS(2375), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_L_DQUOTE] = ACTIONS(2377), + [anon_sym_u_DQUOTE] = ACTIONS(2377), + [anon_sym_U_DQUOTE] = ACTIONS(2377), + [anon_sym_u8_DQUOTE] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [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(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), + [anon_sym_delete] = ACTIONS(2379), + [anon_sym_R_DQUOTE] = ACTIONS(2381), + [anon_sym_LR_DQUOTE] = ACTIONS(2381), + [anon_sym_uR_DQUOTE] = ACTIONS(2381), + [anon_sym_UR_DQUOTE] = ACTIONS(2381), + [anon_sym_u8R_DQUOTE] = ACTIONS(2381), + [anon_sym_co_await] = ACTIONS(2383), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1426)] = { + [sym_expression] = STATE(4347), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -228798,51 +223548,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1427)] = { + [sym_expression] = STATE(3635), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(1268), + [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), + }, + [STATE(1428)] = { + [sym_expression] = STATE(3777), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -228898,167 +223748,1367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1429)] = { + [sym_expression] = STATE(2422), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym___extension__] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1952), [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_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(1946), + [anon_sym_compl] = ACTIONS(1946), + [anon_sym_DASH_DASH] = ACTIONS(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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(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), + [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), }, - [STATE(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), + [STATE(1430)] = { + [sym_expression] = STATE(2419), + [sym__string] = STATE(2896), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(2896), + [sym_concatenated_string] = STATE(2896), + [sym_string_literal] = STATE(1972), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(1972), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4679), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_TILDE] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_PLUS] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [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(4380), + [anon_sym_PLUS_PLUS] = ACTIONS(4380), + [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), + }, + [STATE(1431)] = { + [sym_expression] = STATE(3203), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1432)] = { + [sym_expression] = STATE(3204), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1433)] = { + [sym_expression] = STATE(3205), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1434)] = { + [sym_expression] = STATE(3206), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1435)] = { + [sym_expression] = STATE(3207), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1436)] = { + [sym_expression] = STATE(3208), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1437)] = { + [sym_expression] = STATE(3210), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1438)] = { + [sym_expression] = STATE(3211), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1439)] = { + [sym_expression] = STATE(3212), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1440)] = { + [sym_expression] = STATE(3213), + [sym__string] = STATE(3298), + [sym_conditional_expression] = STATE(3435), + [sym_assignment_expression] = STATE(3435), + [sym_pointer_expression] = STATE(3445), + [sym_unary_expression] = STATE(3435), + [sym_binary_expression] = STATE(3435), + [sym_update_expression] = STATE(3435), + [sym_cast_expression] = STATE(3435), + [sym_sizeof_expression] = STATE(3435), + [sym_alignof_expression] = STATE(3435), + [sym_offsetof_expression] = STATE(3435), + [sym_generic_expression] = STATE(3435), + [sym_subscript_expression] = STATE(3445), + [sym_call_expression] = STATE(3445), + [sym_gnu_asm_expression] = STATE(3435), + [sym_extension_expression] = STATE(3435), + [sym_field_expression] = STATE(3445), + [sym_compound_literal_expression] = STATE(3435), + [sym_parenthesized_expression] = STATE(3445), + [sym_char_literal] = STATE(3298), + [sym_concatenated_string] = STATE(3298), + [sym_string_literal] = STATE(2375), + [sym_null] = STATE(3435), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7887), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3435), + [sym_raw_string_literal] = STATE(2375), + [sym_co_await_expression] = STATE(3435), + [sym_new_expression] = STATE(3435), + [sym_delete_expression] = STATE(3435), + [sym_requires_clause] = STATE(3435), + [sym_requires_expression] = STATE(3435), + [sym_lambda_expression] = STATE(3435), + [sym_lambda_capture_specifier] = STATE(5506), + [sym_fold_expression] = STATE(3435), + [sym_parameter_pack_expansion] = STATE(3435), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3445), + [sym_qualified_type_identifier] = STATE(7887), + [sym_user_defined_literal] = STATE(3445), + [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(1874), + [anon_sym_AMP] = ACTIONS(1874), + [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), + }, + [STATE(1441)] = { + [sym_expression] = STATE(2969), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [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), + }, + [STATE(1442)] = { + [sym_expression] = STATE(4818), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -229087,62 +225137,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1443)] = { + [sym_expression] = STATE(4842), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -229198,67 +225248,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1444)] = { + [sym_expression] = STATE(4593), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -229287,78 +225337,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1445)] = { + [sym_expression] = STATE(4541), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4966), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -229387,78 +225437,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3903), [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_co_await] = ACTIONS(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1446)] = { + [sym_expression] = STATE(4545), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -229487,78 +225537,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1447)] = { + [sym_expression] = STATE(4598), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -229587,78 +225637,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1448)] = { + [sym_expression] = STATE(4546), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -229687,78 +225737,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [anon_sym_delete] = ACTIONS(3903), [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_co_await] = ACTIONS(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1449)] = { + [sym_expression] = STATE(4547), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -229787,78 +225837,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1450)] = { + [sym_expression] = STATE(4548), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -229887,78 +225937,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1451)] = { + [sym_expression] = STATE(4549), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -229987,78 +226037,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1452)] = { + [sym_expression] = STATE(4550), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -230087,78 +226137,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3903), [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_co_await] = ACTIONS(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1453)] = { + [sym_expression] = STATE(4551), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -230187,78 +226237,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1454)] = { + [sym_expression] = STATE(4552), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -230287,78 +226337,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1455)] = { + [sym_expression] = STATE(4553), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -230387,78 +226437,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1456)] = { + [sym_expression] = STATE(4555), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -230487,78 +226537,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1457)] = { + [sym_expression] = STATE(4725), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -230587,62 +226637,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1458)] = { + [sym_expression] = STATE(4777), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -230698,67 +226748,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1459)] = { + [sym_expression] = STATE(4780), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -230787,78 +226837,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3885), [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(1254), - [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [STATE(1460)] = { + [sym_expression] = STATE(4559), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -230887,62 +226937,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3903), [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(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1461)] = { + [sym_expression] = STATE(4797), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -230998,51 +227048,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1462)] = { + [sym_expression] = STATE(4349), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -231098,67 +227148,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1463)] = { + [sym_expression] = STATE(4561), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231187,178 +227237,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [anon_sym_delete] = ACTIONS(3903), [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_co_await] = ACTIONS(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1464)] = { + [sym_expression] = STATE(4410), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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), - }, - [STATE(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_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), @@ -231387,78 +227337,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1465)] = { + [sym_expression] = STATE(4352), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(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_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), @@ -231487,62 +227437,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3869), + [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(3871), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1466)] = { + [sym_expression] = STATE(4353), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -231574,191 +227524,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [STATE(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(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(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), + [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(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_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), }, - [STATE(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), + [STATE(1467)] = { + [sym_expression] = STATE(2956), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), [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_LPAREN2] = ACTIONS(4593), + [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(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_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), @@ -231787,78 +227637,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(2543), + [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), }, - [STATE(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), + [STATE(1468)] = { + [sym_expression] = STATE(4742), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -231887,62 +227737,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3903), [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_co_await] = ACTIONS(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1469)] = { + [sym_expression] = STATE(4748), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -231998,51 +227848,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1470)] = { + [sym_expression] = STATE(4365), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -232098,51 +227948,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1471)] = { + [sym_expression] = STATE(4528), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1472)] = { + [sym_expression] = STATE(4771), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -232198,51 +228148,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1473)] = { + [sym_expression] = STATE(4775), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -232298,67 +228248,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1474)] = { + [sym_expression] = STATE(4776), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -232387,1778 +228337,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3885), [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(4968), - [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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(4970), - [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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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(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(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), - }, - [STATE(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), + [STATE(1475)] = { + [sym_expression] = STATE(4779), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -234187,78 +228437,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1476)] = { + [sym_expression] = STATE(4531), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), + }, + [STATE(1477)] = { + [sym_expression] = STATE(4422), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), - [anon_sym_LBRACK] = ACTIONS(4972), + [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(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_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), @@ -234287,78 +228637,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1478)] = { + [sym_expression] = STATE(4821), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -234387,78 +228737,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3903), [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_co_await] = ACTIONS(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1479)] = { + [sym_expression] = STATE(4829), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -234487,78 +228837,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1480)] = { + [sym_expression] = STATE(4849), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -234587,78 +228937,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1481)] = { + [sym_expression] = STATE(4678), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -234687,78 +229037,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1482)] = { + [sym_expression] = STATE(4718), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -234787,78 +229137,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3885), [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_co_await] = ACTIONS(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1483)] = { + [sym_expression] = STATE(4766), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -234887,78 +229237,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1484)] = { + [sym_expression] = STATE(4463), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -234987,78 +229337,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1485)] = { + [sym_expression] = STATE(4653), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), [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_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -235087,78 +229437,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3903), [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_co_await] = ACTIONS(3905), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1486)] = { + [sym_expression] = STATE(4670), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -235187,78 +229537,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1487)] = { + [sym_expression] = STATE(3758), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -235287,78 +229637,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1488)] = { + [sym_expression] = STATE(4700), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -235387,78 +229737,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1489)] = { + [sym_expression] = STATE(4704), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -235487,78 +229837,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1490)] = { + [sym_expression] = STATE(4706), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -235587,78 +229937,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [anon_sym_delete] = ACTIONS(3885), [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_co_await] = ACTIONS(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1491)] = { + [sym_expression] = STATE(4709), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -235687,78 +230037,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1492)] = { + [sym_expression] = STATE(4458), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), - [anon_sym_LBRACK] = ACTIONS(4974), + [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(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_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), @@ -235787,78 +230137,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1493)] = { + [sym_expression] = STATE(4340), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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(3889), - [anon_sym_COLON_COLON] = ACTIONS(3891), + [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(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_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), @@ -235887,62 +230237,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(3895), + [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(3897), - [anon_sym_new] = ACTIONS(3873), + [anon_sym_co_await] = ACTIONS(161), + [anon_sym_new] = ACTIONS(163), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1494)] = { + [sym_expression] = STATE(4784), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -235998,51 +230348,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1495)] = { + [sym_expression] = STATE(4787), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -236098,67 +230448,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1496)] = { + [sym_expression] = STATE(4788), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), [anon_sym_STAR] = ACTIONS(1254), [anon_sym_AMP] = ACTIONS(1254), - [anon_sym___extension__] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), [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_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), [anon_sym___alignof__] = ACTIONS(107), [anon_sym___alignof] = ACTIONS(107), [anon_sym__alignof] = ACTIONS(107), @@ -236187,62 +230537,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_delete] = ACTIONS(145), + [anon_sym_delete] = ACTIONS(3885), [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(3887), + [anon_sym_new] = ACTIONS(3889), [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1497)] = { + [sym_expression] = STATE(4791), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -236298,51 +230648,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1498)] = { + [sym_expression] = STATE(4731), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), [anon_sym_LPAREN2] = ACTIONS(1252), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), @@ -236398,10849 +230748,7308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(165), [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(1560)] = { - [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(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_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_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_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_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(4980), - [anon_sym_or_eq] = ACTIONS(4980), - [anon_sym_xor_eq] = ACTIONS(4980), - [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_template] = ACTIONS(4980), - [anon_sym_operator] = ACTIONS(4980), - }, - [STATE(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(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(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___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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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_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), - }, - [STATE(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(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___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(5030), - [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), - }, - [STATE(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(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___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(5030), - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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(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), + [STATE(1499)] = { + [sym_expression] = STATE(4456), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1850), + [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), }, - [STATE(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(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), + [STATE(1500)] = { + [sym_expression] = STATE(4824), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1850), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(1501)] = { + [sym_expression] = STATE(4831), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [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), + [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), }, - [STATE(1587)] = { - [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(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(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(4995), - [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(4993), + [STATE(1502)] = { + [sym_expression] = STATE(4833), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [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), - }, - [STATE(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), - }, - [STATE(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), + [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), }, - [STATE(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(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(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), + [STATE(1503)] = { + [sym_expression] = STATE(3739), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(4998), - [anon_sym_decltype] = ACTIONS(4998), - [anon_sym_template] = ACTIONS(4998), - [anon_sym_operator] = ACTIONS(4998), - [anon_sym_DASH_GT_STAR] = ACTIONS(5000), - }, - [STATE(1591)] = { - [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(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(4980), - [anon_sym_virtual] = ACTIONS(4980), - [anon_sym_extern] = ACTIONS(4980), - [anon_sym___attribute__] = ACTIONS(4980), - [anon_sym___attribute] = 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_LBRACE] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4980), - [anon_sym_static] = ACTIONS(4980), - [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_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(4980), - [anon_sym_or_eq] = ACTIONS(4980), - [anon_sym_xor_eq] = ACTIONS(4980), - [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(4980), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4980), - [anon_sym_decltype] = ACTIONS(4980), - [anon_sym_template] = ACTIONS(4980), - [anon_sym_operator] = ACTIONS(4980), - [anon_sym_DASH_GT_STAR] = ACTIONS(4982), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [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), }, - [STATE(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), + [STATE(1504)] = { + [sym_expression] = STATE(4633), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(5014), - [anon_sym_decltype] = ACTIONS(5014), - [anon_sym_template] = ACTIONS(5014), - [anon_sym_operator] = ACTIONS(5014), - [anon_sym_DASH_GT_STAR] = ACTIONS(5016), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(1596)] = { - [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(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(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(4995), - [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), + [STATE(1505)] = { + [sym_expression] = STATE(4634), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(4984), - [anon_sym_decltype] = ACTIONS(4984), - [anon_sym_template] = ACTIONS(4984), - [anon_sym_operator] = ACTIONS(4984), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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(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), + [STATE(1506)] = { + [sym_expression] = STATE(4595), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(4968), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(4998), - [anon_sym_decltype] = ACTIONS(4998), - [anon_sym_template] = ACTIONS(4998), - [anon_sym_operator] = ACTIONS(4998), - [anon_sym_DASH_GT_STAR] = ACTIONS(5000), - }, - [STATE(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), - }, - [STATE(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1507)] = { + [sym_expression] = STATE(4637), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3610), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3610), + [sym_call_expression] = STATE(3610), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3610), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3610), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3610), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3610), + [sym_identifier] = ACTIONS(3891), + [anon_sym_LPAREN2] = ACTIONS(4656), + [anon_sym_BANG] = ACTIONS(3895), + [anon_sym_TILDE] = ACTIONS(3895), + [anon_sym_DASH] = ACTIONS(3893), + [anon_sym_PLUS] = ACTIONS(3893), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(3897), + [anon_sym_COLON_COLON] = ACTIONS(3899), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3893), + [anon_sym_compl] = ACTIONS(3893), + [anon_sym_DASH_DASH] = ACTIONS(4376), + [anon_sym_PLUS_PLUS] = ACTIONS(4376), + [anon_sym_sizeof] = ACTIONS(3901), + [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(5014), - [anon_sym_decltype] = ACTIONS(5014), - [anon_sym_template] = ACTIONS(5014), - [anon_sym_operator] = ACTIONS(5014), - [anon_sym_DASH_GT_STAR] = ACTIONS(5016), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3903), + [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(3905), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1508)] = { + [sym_expression] = STATE(4544), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [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), - }, - [STATE(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), - }, - [STATE(1606)] = { - [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(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(4980), - [anon_sym_virtual] = ACTIONS(4980), - [anon_sym_extern] = ACTIONS(4980), - [anon_sym___attribute__] = ACTIONS(4980), - [anon_sym___attribute] = 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_LBRACE] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4980), - [anon_sym_static] = ACTIONS(4980), - [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_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_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(4980), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4980), - [anon_sym_decltype] = ACTIONS(4980), - [anon_sym_template] = ACTIONS(4980), - [anon_sym_operator] = ACTIONS(4980), - [anon_sym_DASH_GT_STAR] = ACTIONS(4982), + [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), }, - [STATE(1607)] = { - [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(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(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(4995), - [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_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(4993), + [STATE(1509)] = { + [sym_expression] = STATE(2938), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4593), + [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), - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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(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_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_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(5090), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5088), - [anon_sym_decltype] = ACTIONS(5088), + [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), }, - [STATE(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), + [STATE(1510)] = { + [sym_expression] = STATE(3381), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(5096), - [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1511)] = { + [sym_expression] = STATE(3383), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1512)] = { + [sym_expression] = STATE(4792), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(5096), - [anon_sym_decltype] = ACTIONS(5096), + [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), }, - [STATE(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), + [STATE(1513)] = { + [sym_expression] = STATE(3777), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1514)] = { + [sym_expression] = STATE(4575), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(5014), - [anon_sym_decltype] = ACTIONS(5014), - [anon_sym_final] = ACTIONS(5014), - [anon_sym_override] = ACTIONS(5014), + [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), }, - [STATE(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), + [STATE(1515)] = { + [sym_expression] = STATE(4579), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(4998), - [anon_sym_decltype] = ACTIONS(4998), - [anon_sym_final] = ACTIONS(4998), - [anon_sym_override] = ACTIONS(4998), + [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), }, - [STATE(1618)] = { - [sym_identifier] = ACTIONS(4980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4982), - [anon_sym_COMMA] = ACTIONS(4982), - [anon_sym_RPAREN] = ACTIONS(4982), - [aux_sym_preproc_if_token2] = ACTIONS(4982), - [aux_sym_preproc_else_token1] = ACTIONS(4982), - [aux_sym_preproc_elif_token1] = ACTIONS(4980), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4982), - [aux_sym_preproc_elifdef_token2] = 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_SEMI] = ACTIONS(4982), - [anon_sym___extension__] = 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_LBRACE] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_RBRACK] = ACTIONS(4982), - [anon_sym_EQ] = 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_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(4980), - [anon_sym_or_eq] = ACTIONS(4980), - [anon_sym_xor_eq] = ACTIONS(4980), - [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), + [STATE(1516)] = { + [sym_expression] = STATE(4581), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), }, - [STATE(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), + [STATE(1517)] = { + [sym_expression] = STATE(4586), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), }, - [STATE(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), + [STATE(1518)] = { + [sym_expression] = STATE(4589), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), }, - [STATE(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), + [STATE(1519)] = { + [sym_expression] = STATE(4565), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(4970), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), + [STATE(1520)] = { + [sym_expression] = STATE(4566), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), [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_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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), + [STATE(1521)] = { + [sym_expression] = STATE(3405), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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(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), + [STATE(1522)] = { + [sym_expression] = STATE(3616), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2621), + [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(4984), - [anon_sym_decltype] = ACTIONS(4984), - [anon_sym_template] = ACTIONS(4984), - [anon_sym_operator] = ACTIONS(4984), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [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), }, - [STATE(1625)] = { - [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(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_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(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(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), - [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), + [STATE(1523)] = { + [sym_expression] = STATE(4638), + [sym__string] = STATE(4741), + [sym_conditional_expression] = STATE(4903), + [sym_assignment_expression] = STATE(4903), + [sym_pointer_expression] = STATE(3676), + [sym_unary_expression] = STATE(4903), + [sym_binary_expression] = STATE(4903), + [sym_update_expression] = STATE(4903), + [sym_cast_expression] = STATE(4903), + [sym_sizeof_expression] = STATE(4903), + [sym_alignof_expression] = STATE(4903), + [sym_offsetof_expression] = STATE(4903), + [sym_generic_expression] = STATE(4903), + [sym_subscript_expression] = STATE(3676), + [sym_call_expression] = STATE(3676), + [sym_gnu_asm_expression] = STATE(4903), + [sym_extension_expression] = STATE(4903), + [sym_field_expression] = STATE(3676), + [sym_compound_literal_expression] = STATE(4903), + [sym_parenthesized_expression] = STATE(3676), + [sym_char_literal] = STATE(4741), + [sym_concatenated_string] = STATE(4741), + [sym_string_literal] = STATE(3759), + [sym_null] = STATE(4903), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7824), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(4903), + [sym_raw_string_literal] = STATE(3759), + [sym_co_await_expression] = STATE(4903), + [sym_new_expression] = STATE(4903), + [sym_delete_expression] = STATE(4903), + [sym_requires_clause] = STATE(4903), + [sym_requires_expression] = STATE(4903), + [sym_lambda_expression] = STATE(4903), + [sym_lambda_capture_specifier] = STATE(5508), + [sym_fold_expression] = STATE(4903), + [sym_parameter_pack_expansion] = STATE(4903), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5844), + [sym_qualified_identifier] = STATE(3676), + [sym_qualified_type_identifier] = STATE(7824), + [sym_user_defined_literal] = STATE(3676), + [sym_identifier] = ACTIONS(3865), + [anon_sym_LPAREN2] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_STAR] = ACTIONS(3144), + [anon_sym_AMP] = ACTIONS(3144), + [anon_sym___extension__] = ACTIONS(3867), + [anon_sym_COLON_COLON] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(4972), + [sym_primitive_type] = ACTIONS(3871), + [anon_sym_not] = ACTIONS(3142), + [anon_sym_compl] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_sizeof] = ACTIONS(3164), + [anon_sym___alignof__] = ACTIONS(3166), + [anon_sym___alignof] = ACTIONS(3166), + [anon_sym__alignof] = ACTIONS(3166), + [anon_sym_alignof] = ACTIONS(3166), + [anon_sym__Alignof] = ACTIONS(3166), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3172), + [anon_sym___asm__] = ACTIONS(3172), + [anon_sym___asm] = ACTIONS(3172), + [sym_number_literal] = ACTIONS(3174), + [anon_sym_L_SQUOTE] = ACTIONS(3176), + [anon_sym_u_SQUOTE] = ACTIONS(3176), + [anon_sym_U_SQUOTE] = ACTIONS(3176), + [anon_sym_u8_SQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_L_DQUOTE] = ACTIONS(3178), + [anon_sym_u_DQUOTE] = ACTIONS(3178), + [anon_sym_U_DQUOTE] = ACTIONS(3178), + [anon_sym_u8_DQUOTE] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3182), + [anon_sym_nullptr] = ACTIONS(3182), [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_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3194), + [anon_sym_LR_DQUOTE] = ACTIONS(3194), + [anon_sym_uR_DQUOTE] = ACTIONS(3194), + [anon_sym_UR_DQUOTE] = ACTIONS(3194), + [anon_sym_u8R_DQUOTE] = ACTIONS(3194), + [anon_sym_co_await] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_requires] = ACTIONS(3200), + [sym_this] = ACTIONS(3180), }, - [STATE(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___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), - [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(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), + [STATE(1524)] = { + [sym_expression] = STATE(3382), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1627)] = { - [sym_identifier] = ACTIONS(5140), - [anon_sym_COMMA] = ACTIONS(5142), - [anon_sym_RPAREN] = ACTIONS(5142), - [anon_sym_LPAREN2] = ACTIONS(5142), - [anon_sym_TILDE] = ACTIONS(5142), - [anon_sym_STAR] = ACTIONS(5142), - [anon_sym_PIPE_PIPE] = ACTIONS(5142), - [anon_sym_AMP_AMP] = ACTIONS(5142), - [anon_sym_AMP] = ACTIONS(5140), - [anon_sym_SEMI] = ACTIONS(5142), - [anon_sym___extension__] = ACTIONS(5140), - [anon_sym_virtual] = ACTIONS(5140), - [anon_sym_extern] = ACTIONS(5140), - [anon_sym___attribute__] = ACTIONS(5140), - [anon_sym___attribute] = ACTIONS(5140), - [anon_sym_using] = ACTIONS(5140), - [anon_sym_COLON_COLON] = ACTIONS(5142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5142), - [anon_sym___declspec] = ACTIONS(5140), - [anon_sym___based] = ACTIONS(5140), - [anon_sym___cdecl] = ACTIONS(5140), - [anon_sym___clrcall] = ACTIONS(5140), - [anon_sym___stdcall] = ACTIONS(5140), - [anon_sym___fastcall] = ACTIONS(5140), - [anon_sym___thiscall] = ACTIONS(5140), - [anon_sym___vectorcall] = ACTIONS(5140), - [anon_sym_LBRACE] = ACTIONS(5142), - [anon_sym_signed] = ACTIONS(5140), - [anon_sym_unsigned] = ACTIONS(5140), - [anon_sym_long] = ACTIONS(5140), - [anon_sym_short] = ACTIONS(5140), - [anon_sym_LBRACK] = ACTIONS(5140), - [anon_sym_static] = ACTIONS(5140), - [anon_sym_EQ] = ACTIONS(5142), - [anon_sym_register] = ACTIONS(5140), - [anon_sym_inline] = ACTIONS(5140), - [anon_sym___inline] = ACTIONS(5140), - [anon_sym___inline__] = ACTIONS(5140), - [anon_sym___forceinline] = ACTIONS(5140), - [anon_sym_thread_local] = ACTIONS(5140), - [anon_sym___thread] = ACTIONS(5140), - [anon_sym_const] = ACTIONS(5140), - [anon_sym_constexpr] = ACTIONS(5140), - [anon_sym_volatile] = ACTIONS(5140), - [anon_sym_restrict] = ACTIONS(5140), - [anon_sym___restrict__] = ACTIONS(5140), - [anon_sym__Atomic] = ACTIONS(5140), - [anon_sym__Noreturn] = ACTIONS(5140), - [anon_sym_noreturn] = ACTIONS(5140), - [anon_sym__Nonnull] = ACTIONS(5140), - [anon_sym_mutable] = ACTIONS(5140), - [anon_sym_constinit] = ACTIONS(5140), - [anon_sym_consteval] = ACTIONS(5140), - [anon_sym_alignas] = ACTIONS(5140), - [anon_sym__Alignas] = ACTIONS(5140), - [sym_primitive_type] = ACTIONS(5140), - [anon_sym_enum] = ACTIONS(5140), - [anon_sym_class] = ACTIONS(5140), - [anon_sym_struct] = ACTIONS(5140), - [anon_sym_union] = ACTIONS(5140), - [anon_sym_or] = ACTIONS(5140), - [anon_sym_and] = ACTIONS(5140), - [anon_sym_asm] = ACTIONS(5140), - [anon_sym___asm__] = ACTIONS(5140), - [anon_sym___asm] = ACTIONS(5140), - [anon_sym_DASH_GT] = ACTIONS(5142), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5140), - [anon_sym_decltype] = ACTIONS(5140), - [anon_sym_final] = ACTIONS(5140), - [anon_sym_override] = ACTIONS(5140), - [anon_sym_explicit] = ACTIONS(5140), - [anon_sym_typename] = ACTIONS(5140), - [anon_sym_template] = ACTIONS(5140), - [anon_sym_GT2] = ACTIONS(5142), - [anon_sym_operator] = ACTIONS(5140), - [anon_sym_try] = ACTIONS(5140), - [anon_sym_friend] = ACTIONS(5140), - [anon_sym_noexcept] = ACTIONS(5140), - [anon_sym_throw] = ACTIONS(5140), - [anon_sym_concept] = ACTIONS(5140), - [anon_sym_requires] = ACTIONS(5140), + [STATE(1525)] = { + [sym_expression] = STATE(3389), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1628)] = { - [sym_identifier] = ACTIONS(5144), - [anon_sym_COMMA] = ACTIONS(5146), - [anon_sym_RPAREN] = ACTIONS(5146), - [anon_sym_LPAREN2] = ACTIONS(5146), - [anon_sym_TILDE] = ACTIONS(5146), - [anon_sym_STAR] = ACTIONS(5146), - [anon_sym_PIPE_PIPE] = ACTIONS(5146), - [anon_sym_AMP_AMP] = ACTIONS(5146), - [anon_sym_AMP] = ACTIONS(5144), - [anon_sym_SEMI] = ACTIONS(5146), - [anon_sym___extension__] = ACTIONS(5144), - [anon_sym_virtual] = ACTIONS(5144), - [anon_sym_extern] = ACTIONS(5144), - [anon_sym___attribute__] = ACTIONS(5144), - [anon_sym___attribute] = ACTIONS(5144), - [anon_sym_using] = ACTIONS(5144), - [anon_sym_COLON_COLON] = ACTIONS(5146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5146), - [anon_sym___declspec] = ACTIONS(5144), - [anon_sym___based] = ACTIONS(5144), - [anon_sym___cdecl] = ACTIONS(5144), - [anon_sym___clrcall] = ACTIONS(5144), - [anon_sym___stdcall] = ACTIONS(5144), - [anon_sym___fastcall] = ACTIONS(5144), - [anon_sym___thiscall] = ACTIONS(5144), - [anon_sym___vectorcall] = ACTIONS(5144), - [anon_sym_LBRACE] = ACTIONS(5146), - [anon_sym_signed] = ACTIONS(5144), - [anon_sym_unsigned] = ACTIONS(5144), - [anon_sym_long] = ACTIONS(5144), - [anon_sym_short] = ACTIONS(5144), - [anon_sym_LBRACK] = ACTIONS(5144), - [anon_sym_static] = ACTIONS(5144), - [anon_sym_EQ] = ACTIONS(5146), - [anon_sym_register] = ACTIONS(5144), - [anon_sym_inline] = ACTIONS(5144), - [anon_sym___inline] = ACTIONS(5144), - [anon_sym___inline__] = ACTIONS(5144), - [anon_sym___forceinline] = ACTIONS(5144), - [anon_sym_thread_local] = ACTIONS(5144), - [anon_sym___thread] = ACTIONS(5144), - [anon_sym_const] = ACTIONS(5144), - [anon_sym_constexpr] = ACTIONS(5144), - [anon_sym_volatile] = ACTIONS(5144), - [anon_sym_restrict] = ACTIONS(5144), - [anon_sym___restrict__] = ACTIONS(5144), - [anon_sym__Atomic] = ACTIONS(5144), - [anon_sym__Noreturn] = ACTIONS(5144), - [anon_sym_noreturn] = ACTIONS(5144), - [anon_sym__Nonnull] = ACTIONS(5144), - [anon_sym_mutable] = ACTIONS(5144), - [anon_sym_constinit] = ACTIONS(5144), - [anon_sym_consteval] = ACTIONS(5144), - [anon_sym_alignas] = ACTIONS(5144), - [anon_sym__Alignas] = ACTIONS(5144), - [sym_primitive_type] = ACTIONS(5144), - [anon_sym_enum] = ACTIONS(5144), - [anon_sym_class] = ACTIONS(5144), - [anon_sym_struct] = ACTIONS(5144), - [anon_sym_union] = ACTIONS(5144), - [anon_sym_or] = ACTIONS(5144), - [anon_sym_and] = ACTIONS(5144), - [anon_sym_asm] = ACTIONS(5144), - [anon_sym___asm__] = ACTIONS(5144), - [anon_sym___asm] = ACTIONS(5144), - [anon_sym_DASH_GT] = ACTIONS(5146), + [STATE(1526)] = { + [sym_expression] = STATE(3390), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(5144), - [anon_sym_decltype] = ACTIONS(5144), - [anon_sym_final] = ACTIONS(5144), - [anon_sym_override] = ACTIONS(5144), - [anon_sym_explicit] = ACTIONS(5144), - [anon_sym_typename] = ACTIONS(5144), - [anon_sym_template] = ACTIONS(5144), - [anon_sym_GT2] = ACTIONS(5146), - [anon_sym_operator] = ACTIONS(5144), - [anon_sym_try] = ACTIONS(5144), - [anon_sym_friend] = ACTIONS(5144), - [anon_sym_noexcept] = ACTIONS(5144), - [anon_sym_throw] = ACTIONS(5144), - [anon_sym_concept] = ACTIONS(5144), - [anon_sym_requires] = ACTIONS(5144), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1629)] = { - [sym_identifier] = ACTIONS(5148), - [anon_sym_COMMA] = ACTIONS(5150), - [anon_sym_RPAREN] = ACTIONS(5150), - [anon_sym_LPAREN2] = ACTIONS(5150), - [anon_sym_TILDE] = ACTIONS(5150), - [anon_sym_STAR] = ACTIONS(5150), - [anon_sym_PIPE_PIPE] = ACTIONS(5150), - [anon_sym_AMP_AMP] = ACTIONS(5150), - [anon_sym_AMP] = ACTIONS(5148), - [anon_sym_SEMI] = ACTIONS(5150), - [anon_sym___extension__] = ACTIONS(5148), - [anon_sym_virtual] = ACTIONS(5148), - [anon_sym_extern] = ACTIONS(5148), - [anon_sym___attribute__] = ACTIONS(5148), - [anon_sym___attribute] = ACTIONS(5148), - [anon_sym_using] = ACTIONS(5148), - [anon_sym_COLON_COLON] = ACTIONS(5150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5150), - [anon_sym___declspec] = ACTIONS(5148), - [anon_sym___based] = ACTIONS(5148), - [anon_sym___cdecl] = ACTIONS(5148), - [anon_sym___clrcall] = ACTIONS(5148), - [anon_sym___stdcall] = ACTIONS(5148), - [anon_sym___fastcall] = ACTIONS(5148), - [anon_sym___thiscall] = ACTIONS(5148), - [anon_sym___vectorcall] = ACTIONS(5148), - [anon_sym_LBRACE] = ACTIONS(5150), - [anon_sym_signed] = ACTIONS(5148), - [anon_sym_unsigned] = ACTIONS(5148), - [anon_sym_long] = ACTIONS(5148), - [anon_sym_short] = ACTIONS(5148), - [anon_sym_LBRACK] = ACTIONS(5148), - [anon_sym_static] = ACTIONS(5148), - [anon_sym_EQ] = ACTIONS(5150), - [anon_sym_register] = ACTIONS(5148), - [anon_sym_inline] = ACTIONS(5148), - [anon_sym___inline] = ACTIONS(5148), - [anon_sym___inline__] = ACTIONS(5148), - [anon_sym___forceinline] = ACTIONS(5148), - [anon_sym_thread_local] = ACTIONS(5148), - [anon_sym___thread] = ACTIONS(5148), - [anon_sym_const] = ACTIONS(5148), - [anon_sym_constexpr] = ACTIONS(5148), - [anon_sym_volatile] = ACTIONS(5148), - [anon_sym_restrict] = ACTIONS(5148), - [anon_sym___restrict__] = ACTIONS(5148), - [anon_sym__Atomic] = ACTIONS(5148), - [anon_sym__Noreturn] = ACTIONS(5148), - [anon_sym_noreturn] = ACTIONS(5148), - [anon_sym__Nonnull] = ACTIONS(5148), - [anon_sym_mutable] = ACTIONS(5148), - [anon_sym_constinit] = ACTIONS(5148), - [anon_sym_consteval] = ACTIONS(5148), - [anon_sym_alignas] = ACTIONS(5148), - [anon_sym__Alignas] = ACTIONS(5148), - [sym_primitive_type] = ACTIONS(5148), - [anon_sym_enum] = ACTIONS(5148), - [anon_sym_class] = ACTIONS(5148), - [anon_sym_struct] = ACTIONS(5148), - [anon_sym_union] = ACTIONS(5148), - [anon_sym_or] = ACTIONS(5148), - [anon_sym_and] = ACTIONS(5148), - [anon_sym_asm] = ACTIONS(5148), - [anon_sym___asm__] = ACTIONS(5148), - [anon_sym___asm] = ACTIONS(5148), - [anon_sym_DASH_GT] = ACTIONS(5150), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5148), - [anon_sym_decltype] = ACTIONS(5148), - [anon_sym_final] = ACTIONS(5148), - [anon_sym_override] = ACTIONS(5148), - [anon_sym_explicit] = ACTIONS(5148), - [anon_sym_typename] = ACTIONS(5148), - [anon_sym_template] = ACTIONS(5148), - [anon_sym_GT2] = ACTIONS(5150), - [anon_sym_operator] = ACTIONS(5148), - [anon_sym_try] = ACTIONS(5148), - [anon_sym_friend] = ACTIONS(5148), - [anon_sym_noexcept] = ACTIONS(5148), - [anon_sym_throw] = ACTIONS(5148), - [anon_sym_concept] = ACTIONS(5148), - [anon_sym_requires] = ACTIONS(5148), + [STATE(1527)] = { + [sym_expression] = STATE(3391), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1630)] = { - [sym_identifier] = ACTIONS(5152), - [anon_sym_COMMA] = ACTIONS(5154), - [anon_sym_RPAREN] = ACTIONS(5154), - [anon_sym_LPAREN2] = ACTIONS(5154), - [anon_sym_TILDE] = ACTIONS(5154), - [anon_sym_STAR] = ACTIONS(5154), - [anon_sym_PIPE_PIPE] = ACTIONS(5154), - [anon_sym_AMP_AMP] = ACTIONS(5154), - [anon_sym_AMP] = ACTIONS(5152), - [anon_sym_SEMI] = ACTIONS(5154), - [anon_sym___extension__] = ACTIONS(5152), - [anon_sym_virtual] = ACTIONS(5152), - [anon_sym_extern] = ACTIONS(5152), - [anon_sym___attribute__] = ACTIONS(5152), - [anon_sym___attribute] = ACTIONS(5152), - [anon_sym_using] = ACTIONS(5152), - [anon_sym_COLON_COLON] = ACTIONS(5154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5154), - [anon_sym___declspec] = ACTIONS(5152), - [anon_sym___based] = ACTIONS(5152), - [anon_sym___cdecl] = ACTIONS(5152), - [anon_sym___clrcall] = ACTIONS(5152), - [anon_sym___stdcall] = ACTIONS(5152), - [anon_sym___fastcall] = ACTIONS(5152), - [anon_sym___thiscall] = ACTIONS(5152), - [anon_sym___vectorcall] = ACTIONS(5152), - [anon_sym_LBRACE] = ACTIONS(5154), - [anon_sym_signed] = ACTIONS(5152), - [anon_sym_unsigned] = ACTIONS(5152), - [anon_sym_long] = ACTIONS(5152), - [anon_sym_short] = ACTIONS(5152), - [anon_sym_LBRACK] = ACTIONS(5152), - [anon_sym_static] = ACTIONS(5152), - [anon_sym_EQ] = ACTIONS(5154), - [anon_sym_register] = ACTIONS(5152), - [anon_sym_inline] = ACTIONS(5152), - [anon_sym___inline] = ACTIONS(5152), - [anon_sym___inline__] = ACTIONS(5152), - [anon_sym___forceinline] = ACTIONS(5152), - [anon_sym_thread_local] = ACTIONS(5152), - [anon_sym___thread] = ACTIONS(5152), - [anon_sym_const] = ACTIONS(5152), - [anon_sym_constexpr] = ACTIONS(5152), - [anon_sym_volatile] = ACTIONS(5152), - [anon_sym_restrict] = ACTIONS(5152), - [anon_sym___restrict__] = ACTIONS(5152), - [anon_sym__Atomic] = ACTIONS(5152), - [anon_sym__Noreturn] = ACTIONS(5152), - [anon_sym_noreturn] = ACTIONS(5152), - [anon_sym__Nonnull] = ACTIONS(5152), - [anon_sym_mutable] = ACTIONS(5152), - [anon_sym_constinit] = ACTIONS(5152), - [anon_sym_consteval] = ACTIONS(5152), - [anon_sym_alignas] = ACTIONS(5152), - [anon_sym__Alignas] = ACTIONS(5152), - [sym_primitive_type] = ACTIONS(5152), - [anon_sym_enum] = ACTIONS(5152), - [anon_sym_class] = ACTIONS(5152), - [anon_sym_struct] = ACTIONS(5152), - [anon_sym_union] = ACTIONS(5152), - [anon_sym_or] = ACTIONS(5152), - [anon_sym_and] = ACTIONS(5152), - [anon_sym_asm] = ACTIONS(5152), - [anon_sym___asm__] = ACTIONS(5152), - [anon_sym___asm] = ACTIONS(5152), - [anon_sym_DASH_GT] = ACTIONS(5154), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5152), - [anon_sym_decltype] = ACTIONS(5152), - [anon_sym_final] = ACTIONS(5152), - [anon_sym_override] = ACTIONS(5152), - [anon_sym_explicit] = ACTIONS(5152), - [anon_sym_typename] = ACTIONS(5152), - [anon_sym_template] = ACTIONS(5152), - [anon_sym_GT2] = ACTIONS(5154), - [anon_sym_operator] = ACTIONS(5152), - [anon_sym_try] = ACTIONS(5152), - [anon_sym_friend] = ACTIONS(5152), - [anon_sym_noexcept] = ACTIONS(5152), - [anon_sym_throw] = ACTIONS(5152), - [anon_sym_concept] = ACTIONS(5152), - [anon_sym_requires] = ACTIONS(5152), + [STATE(1528)] = { + [sym_expression] = STATE(3392), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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_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), + [STATE(1529)] = { + [sym_expression] = STATE(3393), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1530)] = { + [sym_expression] = STATE(3394), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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_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_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), + [STATE(1531)] = { + [sym_expression] = STATE(3395), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1634)] = { - [sym_identifier] = ACTIONS(5170), - [anon_sym_COMMA] = ACTIONS(5172), - [anon_sym_RPAREN] = ACTIONS(5172), - [anon_sym_LPAREN2] = ACTIONS(5172), - [anon_sym_TILDE] = ACTIONS(5172), - [anon_sym_STAR] = ACTIONS(5172), - [anon_sym_PIPE_PIPE] = ACTIONS(5172), - [anon_sym_AMP_AMP] = ACTIONS(5172), - [anon_sym_AMP] = ACTIONS(5170), - [anon_sym_SEMI] = ACTIONS(5172), - [anon_sym___extension__] = ACTIONS(5170), - [anon_sym_virtual] = ACTIONS(5170), - [anon_sym_extern] = ACTIONS(5170), - [anon_sym___attribute__] = ACTIONS(5170), - [anon_sym___attribute] = ACTIONS(5170), - [anon_sym_using] = ACTIONS(5170), - [anon_sym_COLON_COLON] = ACTIONS(5172), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5172), - [anon_sym___declspec] = ACTIONS(5170), - [anon_sym___based] = ACTIONS(5170), - [anon_sym___cdecl] = ACTIONS(5170), - [anon_sym___clrcall] = ACTIONS(5170), - [anon_sym___stdcall] = ACTIONS(5170), - [anon_sym___fastcall] = ACTIONS(5170), - [anon_sym___thiscall] = ACTIONS(5170), - [anon_sym___vectorcall] = ACTIONS(5170), - [anon_sym_LBRACE] = ACTIONS(5172), - [anon_sym_signed] = ACTIONS(5170), - [anon_sym_unsigned] = ACTIONS(5170), - [anon_sym_long] = ACTIONS(5170), - [anon_sym_short] = ACTIONS(5170), - [anon_sym_LBRACK] = ACTIONS(5170), - [anon_sym_static] = ACTIONS(5170), - [anon_sym_EQ] = ACTIONS(5172), - [anon_sym_register] = ACTIONS(5170), - [anon_sym_inline] = ACTIONS(5170), - [anon_sym___inline] = ACTIONS(5170), - [anon_sym___inline__] = ACTIONS(5170), - [anon_sym___forceinline] = ACTIONS(5170), - [anon_sym_thread_local] = ACTIONS(5170), - [anon_sym___thread] = ACTIONS(5170), - [anon_sym_const] = ACTIONS(5170), - [anon_sym_constexpr] = ACTIONS(5170), - [anon_sym_volatile] = ACTIONS(5170), - [anon_sym_restrict] = ACTIONS(5170), - [anon_sym___restrict__] = ACTIONS(5170), - [anon_sym__Atomic] = ACTIONS(5170), - [anon_sym__Noreturn] = ACTIONS(5170), - [anon_sym_noreturn] = ACTIONS(5170), - [anon_sym__Nonnull] = ACTIONS(5170), - [anon_sym_mutable] = ACTIONS(5170), - [anon_sym_constinit] = ACTIONS(5170), - [anon_sym_consteval] = ACTIONS(5170), - [anon_sym_alignas] = ACTIONS(5170), - [anon_sym__Alignas] = ACTIONS(5170), - [sym_primitive_type] = ACTIONS(5170), - [anon_sym_enum] = ACTIONS(5170), - [anon_sym_class] = ACTIONS(5170), - [anon_sym_struct] = ACTIONS(5170), - [anon_sym_union] = ACTIONS(5170), - [anon_sym_or] = ACTIONS(5170), - [anon_sym_and] = ACTIONS(5170), - [anon_sym_asm] = ACTIONS(5170), - [anon_sym___asm__] = ACTIONS(5170), - [anon_sym___asm] = ACTIONS(5170), - [anon_sym_DASH_GT] = ACTIONS(5172), + [STATE(1532)] = { + [sym_expression] = STATE(3396), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(5170), - [anon_sym_decltype] = ACTIONS(5170), - [anon_sym_final] = ACTIONS(5170), - [anon_sym_override] = ACTIONS(5170), - [anon_sym_explicit] = ACTIONS(5170), - [anon_sym_typename] = ACTIONS(5170), - [anon_sym_template] = ACTIONS(5170), - [anon_sym_GT2] = ACTIONS(5172), - [anon_sym_operator] = ACTIONS(5170), - [anon_sym_try] = ACTIONS(5170), - [anon_sym_friend] = ACTIONS(5170), - [anon_sym_noexcept] = ACTIONS(5170), - [anon_sym_throw] = ACTIONS(5170), - [anon_sym_concept] = ACTIONS(5170), - [anon_sym_requires] = ACTIONS(5170), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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(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(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(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), + [STATE(1533)] = { + [sym_expression] = STATE(3397), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(5096), - [anon_sym_decltype] = ACTIONS(5096), - [anon_sym_DASH_GT_STAR] = ACTIONS(5094), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1636)] = { - [sym_identifier] = ACTIONS(5180), - [anon_sym_COMMA] = ACTIONS(5182), - [anon_sym_RPAREN] = ACTIONS(5182), - [anon_sym_LPAREN2] = ACTIONS(5182), - [anon_sym_TILDE] = ACTIONS(5182), - [anon_sym_STAR] = ACTIONS(5182), - [anon_sym_PIPE_PIPE] = ACTIONS(5182), - [anon_sym_AMP_AMP] = ACTIONS(5182), - [anon_sym_AMP] = ACTIONS(5180), - [anon_sym_SEMI] = ACTIONS(5182), - [anon_sym___extension__] = ACTIONS(5180), - [anon_sym_virtual] = ACTIONS(5180), - [anon_sym_extern] = ACTIONS(5180), - [anon_sym___attribute__] = ACTIONS(5180), - [anon_sym___attribute] = ACTIONS(5180), - [anon_sym_using] = ACTIONS(5180), - [anon_sym_COLON_COLON] = ACTIONS(5182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5182), - [anon_sym___declspec] = ACTIONS(5180), - [anon_sym___based] = ACTIONS(5180), - [anon_sym___cdecl] = ACTIONS(5180), - [anon_sym___clrcall] = ACTIONS(5180), - [anon_sym___stdcall] = ACTIONS(5180), - [anon_sym___fastcall] = ACTIONS(5180), - [anon_sym___thiscall] = ACTIONS(5180), - [anon_sym___vectorcall] = ACTIONS(5180), - [anon_sym_LBRACE] = ACTIONS(5182), - [anon_sym_signed] = ACTIONS(5180), - [anon_sym_unsigned] = ACTIONS(5180), - [anon_sym_long] = ACTIONS(5180), - [anon_sym_short] = ACTIONS(5180), - [anon_sym_LBRACK] = ACTIONS(5180), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_EQ] = ACTIONS(5182), - [anon_sym_register] = ACTIONS(5180), - [anon_sym_inline] = ACTIONS(5180), - [anon_sym___inline] = ACTIONS(5180), - [anon_sym___inline__] = ACTIONS(5180), - [anon_sym___forceinline] = ACTIONS(5180), - [anon_sym_thread_local] = ACTIONS(5180), - [anon_sym___thread] = ACTIONS(5180), - [anon_sym_const] = ACTIONS(5180), - [anon_sym_constexpr] = ACTIONS(5180), - [anon_sym_volatile] = ACTIONS(5180), - [anon_sym_restrict] = ACTIONS(5180), - [anon_sym___restrict__] = ACTIONS(5180), - [anon_sym__Atomic] = ACTIONS(5180), - [anon_sym__Noreturn] = ACTIONS(5180), - [anon_sym_noreturn] = ACTIONS(5180), - [anon_sym__Nonnull] = ACTIONS(5180), - [anon_sym_mutable] = ACTIONS(5180), - [anon_sym_constinit] = ACTIONS(5180), - [anon_sym_consteval] = ACTIONS(5180), - [anon_sym_alignas] = ACTIONS(5180), - [anon_sym__Alignas] = ACTIONS(5180), - [sym_primitive_type] = ACTIONS(5180), - [anon_sym_enum] = ACTIONS(5180), - [anon_sym_class] = ACTIONS(5180), - [anon_sym_struct] = ACTIONS(5180), - [anon_sym_union] = ACTIONS(5180), - [anon_sym_or] = ACTIONS(5180), - [anon_sym_and] = ACTIONS(5180), - [anon_sym_asm] = ACTIONS(5180), - [anon_sym___asm__] = ACTIONS(5180), - [anon_sym___asm] = ACTIONS(5180), - [anon_sym_DASH_GT] = ACTIONS(5182), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5180), - [anon_sym_decltype] = ACTIONS(5180), - [anon_sym_final] = ACTIONS(5180), - [anon_sym_override] = ACTIONS(5180), - [anon_sym_explicit] = ACTIONS(5180), - [anon_sym_typename] = ACTIONS(5180), - [anon_sym_template] = ACTIONS(5180), - [anon_sym_GT2] = ACTIONS(5182), - [anon_sym_operator] = ACTIONS(5180), - [anon_sym_try] = ACTIONS(5180), - [anon_sym_friend] = ACTIONS(5180), - [anon_sym_noexcept] = ACTIONS(5180), - [anon_sym_throw] = ACTIONS(5180), - [anon_sym_concept] = ACTIONS(5180), - [anon_sym_requires] = ACTIONS(5180), + [STATE(1534)] = { + [sym_expression] = STATE(3398), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1637)] = { - [sym_identifier] = ACTIONS(5184), - [anon_sym_COMMA] = ACTIONS(5186), - [anon_sym_RPAREN] = ACTIONS(5186), - [anon_sym_LPAREN2] = ACTIONS(5186), - [anon_sym_TILDE] = ACTIONS(5186), - [anon_sym_STAR] = ACTIONS(5186), - [anon_sym_PIPE_PIPE] = ACTIONS(5186), - [anon_sym_AMP_AMP] = ACTIONS(5186), - [anon_sym_AMP] = ACTIONS(5184), - [anon_sym_SEMI] = ACTIONS(5186), - [anon_sym___extension__] = ACTIONS(5184), - [anon_sym_virtual] = ACTIONS(5184), - [anon_sym_extern] = ACTIONS(5184), - [anon_sym___attribute__] = ACTIONS(5184), - [anon_sym___attribute] = ACTIONS(5184), - [anon_sym_using] = ACTIONS(5184), - [anon_sym_COLON_COLON] = ACTIONS(5186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5186), - [anon_sym___declspec] = ACTIONS(5184), - [anon_sym___based] = ACTIONS(5184), - [anon_sym___cdecl] = ACTIONS(5184), - [anon_sym___clrcall] = ACTIONS(5184), - [anon_sym___stdcall] = ACTIONS(5184), - [anon_sym___fastcall] = ACTIONS(5184), - [anon_sym___thiscall] = ACTIONS(5184), - [anon_sym___vectorcall] = ACTIONS(5184), - [anon_sym_LBRACE] = ACTIONS(5186), - [anon_sym_signed] = ACTIONS(5184), - [anon_sym_unsigned] = ACTIONS(5184), - [anon_sym_long] = ACTIONS(5184), - [anon_sym_short] = ACTIONS(5184), - [anon_sym_LBRACK] = ACTIONS(5184), - [anon_sym_static] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(5186), - [anon_sym_register] = ACTIONS(5184), - [anon_sym_inline] = ACTIONS(5184), - [anon_sym___inline] = ACTIONS(5184), - [anon_sym___inline__] = ACTIONS(5184), - [anon_sym___forceinline] = ACTIONS(5184), - [anon_sym_thread_local] = ACTIONS(5184), - [anon_sym___thread] = ACTIONS(5184), - [anon_sym_const] = ACTIONS(5184), - [anon_sym_constexpr] = ACTIONS(5184), - [anon_sym_volatile] = ACTIONS(5184), - [anon_sym_restrict] = ACTIONS(5184), - [anon_sym___restrict__] = ACTIONS(5184), - [anon_sym__Atomic] = ACTIONS(5184), - [anon_sym__Noreturn] = ACTIONS(5184), - [anon_sym_noreturn] = ACTIONS(5184), - [anon_sym__Nonnull] = ACTIONS(5184), - [anon_sym_mutable] = ACTIONS(5184), - [anon_sym_constinit] = ACTIONS(5184), - [anon_sym_consteval] = ACTIONS(5184), - [anon_sym_alignas] = ACTIONS(5184), - [anon_sym__Alignas] = ACTIONS(5184), - [sym_primitive_type] = ACTIONS(5184), - [anon_sym_enum] = ACTIONS(5184), - [anon_sym_class] = ACTIONS(5184), - [anon_sym_struct] = ACTIONS(5184), - [anon_sym_union] = ACTIONS(5184), - [anon_sym_or] = ACTIONS(5184), - [anon_sym_and] = ACTIONS(5184), - [anon_sym_asm] = ACTIONS(5184), - [anon_sym___asm__] = ACTIONS(5184), - [anon_sym___asm] = ACTIONS(5184), - [anon_sym_DASH_GT] = ACTIONS(5186), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5184), - [anon_sym_decltype] = ACTIONS(5184), - [anon_sym_final] = ACTIONS(5184), - [anon_sym_override] = ACTIONS(5184), - [anon_sym_explicit] = ACTIONS(5184), - [anon_sym_typename] = ACTIONS(5184), - [anon_sym_template] = ACTIONS(5184), - [anon_sym_GT2] = ACTIONS(5186), - [anon_sym_operator] = ACTIONS(5184), - [anon_sym_try] = ACTIONS(5184), - [anon_sym_friend] = ACTIONS(5184), - [anon_sym_noexcept] = ACTIONS(5184), - [anon_sym_throw] = ACTIONS(5184), - [anon_sym_concept] = ACTIONS(5184), - [anon_sym_requires] = ACTIONS(5184), + [STATE(1535)] = { + [sym_expression] = STATE(3385), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(4974), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1638)] = { - [sym_identifier] = ACTIONS(5188), - [anon_sym_COMMA] = ACTIONS(5190), - [anon_sym_RPAREN] = ACTIONS(5190), - [anon_sym_LPAREN2] = ACTIONS(5190), - [anon_sym_TILDE] = ACTIONS(5190), - [anon_sym_STAR] = ACTIONS(5190), - [anon_sym_PIPE_PIPE] = ACTIONS(5190), - [anon_sym_AMP_AMP] = ACTIONS(5190), - [anon_sym_AMP] = ACTIONS(5188), - [anon_sym_SEMI] = ACTIONS(5190), - [anon_sym___extension__] = ACTIONS(5188), - [anon_sym_virtual] = ACTIONS(5188), - [anon_sym_extern] = ACTIONS(5188), - [anon_sym___attribute__] = ACTIONS(5188), - [anon_sym___attribute] = ACTIONS(5188), - [anon_sym_using] = ACTIONS(5188), - [anon_sym_COLON_COLON] = ACTIONS(5190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5190), - [anon_sym___declspec] = ACTIONS(5188), - [anon_sym___based] = ACTIONS(5188), - [anon_sym___cdecl] = ACTIONS(5188), - [anon_sym___clrcall] = ACTIONS(5188), - [anon_sym___stdcall] = ACTIONS(5188), - [anon_sym___fastcall] = ACTIONS(5188), - [anon_sym___thiscall] = ACTIONS(5188), - [anon_sym___vectorcall] = ACTIONS(5188), - [anon_sym_LBRACE] = ACTIONS(5190), - [anon_sym_signed] = ACTIONS(5188), - [anon_sym_unsigned] = ACTIONS(5188), - [anon_sym_long] = ACTIONS(5188), - [anon_sym_short] = ACTIONS(5188), - [anon_sym_LBRACK] = ACTIONS(5188), - [anon_sym_static] = ACTIONS(5188), - [anon_sym_EQ] = ACTIONS(5190), - [anon_sym_register] = ACTIONS(5188), - [anon_sym_inline] = ACTIONS(5188), - [anon_sym___inline] = ACTIONS(5188), - [anon_sym___inline__] = ACTIONS(5188), - [anon_sym___forceinline] = ACTIONS(5188), - [anon_sym_thread_local] = ACTIONS(5188), - [anon_sym___thread] = ACTIONS(5188), - [anon_sym_const] = ACTIONS(5188), - [anon_sym_constexpr] = ACTIONS(5188), - [anon_sym_volatile] = ACTIONS(5188), - [anon_sym_restrict] = ACTIONS(5188), - [anon_sym___restrict__] = ACTIONS(5188), - [anon_sym__Atomic] = ACTIONS(5188), - [anon_sym__Noreturn] = ACTIONS(5188), - [anon_sym_noreturn] = ACTIONS(5188), - [anon_sym__Nonnull] = ACTIONS(5188), - [anon_sym_mutable] = ACTIONS(5188), - [anon_sym_constinit] = ACTIONS(5188), - [anon_sym_consteval] = ACTIONS(5188), - [anon_sym_alignas] = ACTIONS(5188), - [anon_sym__Alignas] = ACTIONS(5188), - [sym_primitive_type] = ACTIONS(5188), - [anon_sym_enum] = ACTIONS(5188), - [anon_sym_class] = ACTIONS(5188), - [anon_sym_struct] = ACTIONS(5188), - [anon_sym_union] = ACTIONS(5188), - [anon_sym_or] = ACTIONS(5188), - [anon_sym_and] = ACTIONS(5188), - [anon_sym_asm] = ACTIONS(5188), - [anon_sym___asm__] = ACTIONS(5188), - [anon_sym___asm] = ACTIONS(5188), - [anon_sym_DASH_GT] = ACTIONS(5190), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5188), - [anon_sym_decltype] = ACTIONS(5188), - [anon_sym_final] = ACTIONS(5188), - [anon_sym_override] = ACTIONS(5188), - [anon_sym_explicit] = ACTIONS(5188), - [anon_sym_typename] = ACTIONS(5188), - [anon_sym_template] = ACTIONS(5188), - [anon_sym_GT2] = ACTIONS(5190), - [anon_sym_operator] = ACTIONS(5188), - [anon_sym_try] = ACTIONS(5188), - [anon_sym_friend] = ACTIONS(5188), - [anon_sym_noexcept] = ACTIONS(5188), - [anon_sym_throw] = ACTIONS(5188), - [anon_sym_concept] = ACTIONS(5188), - [anon_sym_requires] = ACTIONS(5188), + [STATE(1536)] = { + [sym_expression] = STATE(3386), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1639)] = { - [sym_identifier] = ACTIONS(5192), - [anon_sym_COMMA] = ACTIONS(5194), - [anon_sym_RPAREN] = ACTIONS(5194), - [anon_sym_LPAREN2] = ACTIONS(5194), - [anon_sym_TILDE] = ACTIONS(5194), - [anon_sym_STAR] = ACTIONS(5194), - [anon_sym_PIPE_PIPE] = ACTIONS(5194), - [anon_sym_AMP_AMP] = ACTIONS(5194), - [anon_sym_AMP] = ACTIONS(5192), - [anon_sym_SEMI] = ACTIONS(5194), - [anon_sym___extension__] = ACTIONS(5192), - [anon_sym_virtual] = ACTIONS(5192), - [anon_sym_extern] = ACTIONS(5192), - [anon_sym___attribute__] = ACTIONS(5192), - [anon_sym___attribute] = ACTIONS(5192), - [anon_sym_using] = ACTIONS(5192), - [anon_sym_COLON_COLON] = ACTIONS(5194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5194), - [anon_sym___declspec] = ACTIONS(5192), - [anon_sym___based] = ACTIONS(5192), - [anon_sym___cdecl] = ACTIONS(5192), - [anon_sym___clrcall] = ACTIONS(5192), - [anon_sym___stdcall] = ACTIONS(5192), - [anon_sym___fastcall] = ACTIONS(5192), - [anon_sym___thiscall] = ACTIONS(5192), - [anon_sym___vectorcall] = ACTIONS(5192), - [anon_sym_LBRACE] = ACTIONS(5194), - [anon_sym_signed] = ACTIONS(5192), - [anon_sym_unsigned] = ACTIONS(5192), - [anon_sym_long] = ACTIONS(5192), - [anon_sym_short] = ACTIONS(5192), - [anon_sym_LBRACK] = ACTIONS(5192), - [anon_sym_static] = ACTIONS(5192), - [anon_sym_EQ] = ACTIONS(5194), - [anon_sym_register] = ACTIONS(5192), - [anon_sym_inline] = ACTIONS(5192), - [anon_sym___inline] = ACTIONS(5192), - [anon_sym___inline__] = ACTIONS(5192), - [anon_sym___forceinline] = ACTIONS(5192), - [anon_sym_thread_local] = ACTIONS(5192), - [anon_sym___thread] = ACTIONS(5192), - [anon_sym_const] = ACTIONS(5192), - [anon_sym_constexpr] = ACTIONS(5192), - [anon_sym_volatile] = ACTIONS(5192), - [anon_sym_restrict] = ACTIONS(5192), - [anon_sym___restrict__] = ACTIONS(5192), - [anon_sym__Atomic] = ACTIONS(5192), - [anon_sym__Noreturn] = ACTIONS(5192), - [anon_sym_noreturn] = ACTIONS(5192), - [anon_sym__Nonnull] = ACTIONS(5192), - [anon_sym_mutable] = ACTIONS(5192), - [anon_sym_constinit] = ACTIONS(5192), - [anon_sym_consteval] = ACTIONS(5192), - [anon_sym_alignas] = ACTIONS(5192), - [anon_sym__Alignas] = ACTIONS(5192), - [sym_primitive_type] = ACTIONS(5192), - [anon_sym_enum] = ACTIONS(5192), - [anon_sym_class] = ACTIONS(5192), - [anon_sym_struct] = ACTIONS(5192), - [anon_sym_union] = ACTIONS(5192), - [anon_sym_or] = ACTIONS(5192), - [anon_sym_and] = ACTIONS(5192), - [anon_sym_asm] = ACTIONS(5192), - [anon_sym___asm__] = ACTIONS(5192), - [anon_sym___asm] = ACTIONS(5192), - [anon_sym_DASH_GT] = ACTIONS(5194), + [STATE(1537)] = { + [sym_expression] = STATE(3387), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(4976), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(5192), - [anon_sym_decltype] = ACTIONS(5192), - [anon_sym_final] = ACTIONS(5192), - [anon_sym_override] = ACTIONS(5192), - [anon_sym_explicit] = ACTIONS(5192), - [anon_sym_typename] = ACTIONS(5192), - [anon_sym_template] = ACTIONS(5192), - [anon_sym_GT2] = ACTIONS(5194), - [anon_sym_operator] = ACTIONS(5192), - [anon_sym_try] = ACTIONS(5192), - [anon_sym_friend] = ACTIONS(5192), - [anon_sym_noexcept] = ACTIONS(5192), - [anon_sym_throw] = ACTIONS(5192), - [anon_sym_concept] = ACTIONS(5192), - [anon_sym_requires] = ACTIONS(5192), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1538)] = { + [sym_expression] = STATE(3399), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1539)] = { + [sym_expression] = STATE(3402), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(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), + [STATE(1540)] = { + [sym_expression] = STATE(3404), + [sym__string] = STATE(3000), + [sym_conditional_expression] = STATE(2523), + [sym_assignment_expression] = STATE(2523), + [sym_pointer_expression] = STATE(2529), + [sym_unary_expression] = STATE(2523), + [sym_binary_expression] = STATE(2523), + [sym_update_expression] = STATE(2523), + [sym_cast_expression] = STATE(2523), + [sym_sizeof_expression] = STATE(2523), + [sym_alignof_expression] = STATE(2523), + [sym_offsetof_expression] = STATE(2523), + [sym_generic_expression] = STATE(2523), + [sym_subscript_expression] = STATE(2529), + [sym_call_expression] = STATE(2529), + [sym_gnu_asm_expression] = STATE(2523), + [sym_extension_expression] = STATE(2523), + [sym_field_expression] = STATE(2529), + [sym_compound_literal_expression] = STATE(2523), + [sym_parenthesized_expression] = STATE(2529), + [sym_char_literal] = STATE(3000), + [sym_concatenated_string] = STATE(3000), + [sym_string_literal] = STATE(2093), + [sym_null] = STATE(2523), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7778), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(2523), + [sym_raw_string_literal] = STATE(2093), + [sym_co_await_expression] = STATE(2523), + [sym_new_expression] = STATE(2523), + [sym_delete_expression] = STATE(2523), + [sym_requires_clause] = STATE(2523), + [sym_requires_expression] = STATE(2523), + [sym_lambda_expression] = STATE(2523), + [sym_lambda_capture_specifier] = STATE(5488), + [sym_fold_expression] = STATE(2523), + [sym_parameter_pack_expansion] = STATE(2523), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(2529), + [sym_qualified_type_identifier] = STATE(7778), + [sym_user_defined_literal] = STATE(2529), + [sym_identifier] = ACTIONS(1990), + [anon_sym_LPAREN2] = ACTIONS(4703), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AMP] = ACTIONS(4374), + [anon_sym___extension__] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(1956), + [anon_sym_not] = ACTIONS(2476), + [anon_sym_compl] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(4509), + [anon_sym_PLUS_PLUS] = ACTIONS(4509), + [anon_sym_sizeof] = ACTIONS(2484), + [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(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(2486), + [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(2488), + [anon_sym_new] = ACTIONS(2014), + [anon_sym_requires] = ACTIONS(1988), + [sym_this] = ACTIONS(1974), }, - [STATE(1643)] = { - [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), + [STATE(1541)] = { + [sym_expression] = STATE(4739), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [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), + [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), }, - [STATE(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(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), + [STATE(1542)] = { + [sym_expression] = STATE(3766), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [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), + [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), }, - [STATE(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(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), + [STATE(1543)] = { + [sym_expression] = STATE(4627), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(5096), - [anon_sym_decltype] = ACTIONS(5096), - [anon_sym_GT2] = ACTIONS(5094), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1544)] = { + [sym_expression] = STATE(4611), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(4978), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1545)] = { + [sym_expression] = STATE(4613), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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_LBRACE] = ACTIONS(5230), - [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), + [STATE(1546)] = { + [sym_expression] = STATE(4614), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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_LBRACE] = ACTIONS(5232), - [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), + [STATE(1547)] = { + [sym_expression] = STATE(4615), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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_LBRACE] = ACTIONS(5234), - [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), + [STATE(1548)] = { + [sym_expression] = STATE(4616), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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_LBRACE] = ACTIONS(5236), - [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), + [STATE(1549)] = { + [sym_expression] = STATE(4617), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), + }, + [STATE(1550)] = { + [sym_expression] = STATE(4618), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), - }, - [STATE(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), + [STATE(1551)] = { + [sym_expression] = STATE(4619), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(5164), - [anon_sym_decltype] = ACTIONS(5164), - [anon_sym_DASH_GT_STAR] = ACTIONS(5167), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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(5249), - [anon_sym_struct] = ACTIONS(5251), - [anon_sym_union] = ACTIONS(5253), + [STATE(1552)] = { + [sym_expression] = STATE(4620), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1553)] = { + [sym_expression] = STATE(4621), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1554)] = { + [sym_expression] = STATE(4622), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1555)] = { + [sym_expression] = STATE(4624), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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(5273), - [anon_sym_struct] = ACTIONS(5275), - [anon_sym_union] = ACTIONS(5277), + [STATE(1556)] = { + [sym_expression] = STATE(4626), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1557)] = { + [sym_expression] = STATE(3758), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1558)] = { + [sym_expression] = STATE(3766), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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(5295), - [anon_sym_struct] = ACTIONS(5297), - [anon_sym_union] = ACTIONS(5299), + [STATE(1559)] = { + [sym_expression] = STATE(4628), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(4980), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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(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(5301), - [anon_sym_struct] = ACTIONS(5303), - [anon_sym_union] = ACTIONS(5305), + [STATE(1560)] = { + [sym_expression] = STATE(3819), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3742), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3742), + [sym_call_expression] = STATE(3742), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3742), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3742), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3742), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3742), + [sym_identifier] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3909), + [anon_sym_BANG] = ACTIONS(3877), + [anon_sym_TILDE] = ACTIONS(3877), + [anon_sym_DASH] = ACTIONS(3875), + [anon_sym_PLUS] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(1254), + [anon_sym_AMP] = ACTIONS(1254), + [anon_sym___extension__] = ACTIONS(3879), + [anon_sym_COLON_COLON] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(2020), + [sym_primitive_type] = ACTIONS(2171), + [anon_sym_not] = ACTIONS(3875), + [anon_sym_compl] = ACTIONS(3875), + [anon_sym_DASH_DASH] = ACTIONS(3913), + [anon_sym_PLUS_PLUS] = ACTIONS(3913), + [anon_sym_sizeof] = ACTIONS(3883), + [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(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_delete] = ACTIONS(3885), + [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(3887), + [anon_sym_new] = ACTIONS(3889), + [anon_sym_requires] = ACTIONS(165), + [sym_this] = ACTIONS(229), }, - [STATE(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), + [STATE(1561)] = { + [sym_expression] = STATE(4366), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [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), }, - [STATE(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), + [STATE(1562)] = { + [sym_expression] = STATE(4790), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [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), }, - [STATE(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), + [STATE(1563)] = { + [sym_expression] = STATE(4850), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [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), }, - [STATE(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), + [STATE(1564)] = { + [sym_expression] = STATE(4851), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [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), }, - [STATE(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), - }, - [STATE(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), + [STATE(1565)] = { + [sym_expression] = STATE(4852), + [sym__string] = STATE(4311), + [sym_conditional_expression] = STATE(3982), + [sym_assignment_expression] = STATE(3982), + [sym_pointer_expression] = STATE(3334), + [sym_unary_expression] = STATE(3982), + [sym_binary_expression] = STATE(3982), + [sym_update_expression] = STATE(3982), + [sym_cast_expression] = STATE(3982), + [sym_sizeof_expression] = STATE(3982), + [sym_alignof_expression] = STATE(3982), + [sym_offsetof_expression] = STATE(3982), + [sym_generic_expression] = STATE(3982), + [sym_subscript_expression] = STATE(3334), + [sym_call_expression] = STATE(3334), + [sym_gnu_asm_expression] = STATE(3982), + [sym_extension_expression] = STATE(3982), + [sym_field_expression] = STATE(3334), + [sym_compound_literal_expression] = STATE(3982), + [sym_parenthesized_expression] = STATE(3334), + [sym_char_literal] = STATE(4311), + [sym_concatenated_string] = STATE(4311), + [sym_string_literal] = STATE(3263), + [sym_null] = STATE(3982), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(7719), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3982), + [sym_raw_string_literal] = STATE(3263), + [sym_co_await_expression] = STATE(3982), + [sym_new_expression] = STATE(3982), + [sym_delete_expression] = STATE(3982), + [sym_requires_clause] = STATE(3982), + [sym_requires_expression] = STATE(3982), + [sym_lambda_expression] = STATE(3982), + [sym_lambda_capture_specifier] = STATE(5495), + [sym_fold_expression] = STATE(3982), + [sym_parameter_pack_expansion] = STATE(3982), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5864), + [sym_qualified_identifier] = STATE(3334), + [sym_qualified_type_identifier] = STATE(7719), + [sym_user_defined_literal] = STATE(3334), + [sym_identifier] = ACTIONS(3863), + [anon_sym_LPAREN2] = ACTIONS(1252), + [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), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [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), }, - [STATE(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), - }, - [STATE(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(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(5343), - [anon_sym_struct] = ACTIONS(5345), - [anon_sym_union] = ACTIONS(5347), + [STATE(1566)] = { + [sym_expression] = STATE(3671), + [sym__string] = STATE(3773), + [sym_conditional_expression] = STATE(3968), + [sym_assignment_expression] = STATE(3968), + [sym_pointer_expression] = STATE(3523), + [sym_unary_expression] = STATE(3968), + [sym_binary_expression] = STATE(3968), + [sym_update_expression] = STATE(3968), + [sym_cast_expression] = STATE(3968), + [sym_sizeof_expression] = STATE(3968), + [sym_alignof_expression] = STATE(3968), + [sym_offsetof_expression] = STATE(3968), + [sym_generic_expression] = STATE(3968), + [sym_subscript_expression] = STATE(3523), + [sym_call_expression] = STATE(3523), + [sym_gnu_asm_expression] = STATE(3968), + [sym_extension_expression] = STATE(3968), + [sym_field_expression] = STATE(3523), + [sym_compound_literal_expression] = STATE(3968), + [sym_parenthesized_expression] = STATE(3523), + [sym_char_literal] = STATE(3773), + [sym_concatenated_string] = STATE(3773), + [sym_string_literal] = STATE(2584), + [sym_null] = STATE(3968), + [sym_decltype] = STATE(8381), + [sym__class_name] = STATE(8011), + [sym_template_type] = STATE(1946), + [sym_template_function] = STATE(3968), + [sym_raw_string_literal] = STATE(2584), + [sym_co_await_expression] = STATE(3968), + [sym_new_expression] = STATE(3968), + [sym_delete_expression] = STATE(3968), + [sym_requires_clause] = STATE(3968), + [sym_requires_expression] = STATE(3968), + [sym_lambda_expression] = STATE(3968), + [sym_lambda_capture_specifier] = STATE(5509), + [sym_fold_expression] = STATE(3968), + [sym_parameter_pack_expansion] = STATE(3968), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5806), + [sym_qualified_identifier] = STATE(3523), + [sym_qualified_type_identifier] = STATE(8011), + [sym_user_defined_literal] = STATE(3523), + [sym_identifier] = ACTIONS(2615), + [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(2617), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(4982), + [sym_primitive_type] = ACTIONS(2621), + [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(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [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), }, - [STATE(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), + [STATE(1567)] = { + [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_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_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___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_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_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_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(5096), - [anon_sym_decltype] = ACTIONS(5096), - [anon_sym_DASH_GT_STAR] = ACTIONS(5094), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [sym_auto] = ACTIONS(4984), + [anon_sym_decltype] = ACTIONS(4984), + [anon_sym_template] = ACTIONS(4984), + [anon_sym_operator] = ACTIONS(4984), }, - [STATE(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), + [STATE(1568)] = { + [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), }, - [STATE(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), + [STATE(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_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), }, - [STATE(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), + [STATE(1570)] = { + [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(4998), + [anon_sym_TILDE] = ACTIONS(4998), + [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(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4998), + [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(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(4998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), + [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(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4996), + [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_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(4996), + [anon_sym_or_eq] = ACTIONS(4996), + [anon_sym_xor_eq] = ACTIONS(4996), + [anon_sym_LT_EQ_GT] = ACTIONS(4998), + [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(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_DOT_STAR] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(4998), [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), + [sym_auto] = ACTIONS(4996), + [anon_sym_decltype] = ACTIONS(4996), + [anon_sym_template] = ACTIONS(4996), + [anon_sym_operator] = ACTIONS(4996), }, - [STATE(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), + [STATE(1571)] = { + [sym_identifier] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5007), + [anon_sym___declspec] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(5000), + [anon_sym___cdecl] = ACTIONS(5000), + [anon_sym___clrcall] = ACTIONS(5000), + [anon_sym___stdcall] = ACTIONS(5000), + [anon_sym___fastcall] = ACTIONS(5000), + [anon_sym___thiscall] = ACTIONS(5000), + [anon_sym___vectorcall] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_register] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym___inline] = ACTIONS(5000), + [anon_sym___inline__] = ACTIONS(5000), + [anon_sym___forceinline] = ACTIONS(5000), + [anon_sym_thread_local] = ACTIONS(5000), + [anon_sym___thread] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [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(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_and_eq] = ACTIONS(5009), + [anon_sym_or_eq] = ACTIONS(5009), + [anon_sym_xor_eq] = ACTIONS(5009), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5009), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5009), + [anon_sym_not_eq] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_template] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), }, - [STATE(1683)] = { + [STATE(1572)] = { + [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), @@ -247259,28 +238068,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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_LBRACK] = 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(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_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), @@ -247292,221 +238121,566 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(5016), + [anon_sym_bitor] = ACTIONS(5014), [anon_sym_xor] = ACTIONS(5014), - [anon_sym_bitand] = ACTIONS(5016), - [anon_sym_not_eq] = ACTIONS(5016), + [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), + [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_DASH_GT_STAR] = ACTIONS(5016), + [sym_auto] = ACTIONS(5014), + [anon_sym_decltype] = ACTIONS(5014), + [anon_sym_template] = ACTIONS(5014), + [anon_sym_operator] = ACTIONS(5014), }, - [STATE(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), + [STATE(1573)] = { + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5018), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym_virtual] = ACTIONS(5018), + [anon_sym_extern] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5020), + [anon_sym___declspec] = ACTIONS(5018), + [anon_sym___based] = ACTIONS(5018), + [anon_sym___cdecl] = ACTIONS(5018), + [anon_sym___clrcall] = ACTIONS(5018), + [anon_sym___stdcall] = ACTIONS(5018), + [anon_sym___fastcall] = ACTIONS(5018), + [anon_sym___thiscall] = ACTIONS(5018), + [anon_sym___vectorcall] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_static] = ACTIONS(5018), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_register] = ACTIONS(5018), + [anon_sym_inline] = ACTIONS(5018), + [anon_sym___inline] = ACTIONS(5018), + [anon_sym___inline__] = ACTIONS(5018), + [anon_sym___forceinline] = ACTIONS(5018), + [anon_sym_thread_local] = ACTIONS(5018), + [anon_sym___thread] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym__Nonnull] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [anon_sym_alignas] = ACTIONS(5018), + [anon_sym__Alignas] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_LT_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_GT_EQ] = ACTIONS(5020), + [anon_sym_AMP_EQ] = ACTIONS(5020), + [anon_sym_CARET_EQ] = ACTIONS(5020), + [anon_sym_PIPE_EQ] = ACTIONS(5020), + [anon_sym_and_eq] = ACTIONS(5018), + [anon_sym_or_eq] = ACTIONS(5018), + [anon_sym_xor_eq] = ACTIONS(5018), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5018), + [anon_sym_not_eq] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + [anon_sym_template] = ACTIONS(5018), + [anon_sym_operator] = ACTIONS(5018), }, - [STATE(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), + [STATE(1574)] = { + [sym_template_argument_list] = STATE(1576), + [sym_identifier] = ACTIONS(4915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_LPAREN2] = ACTIONS(4919), + [anon_sym_TILDE] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4919), + [anon_sym___extension__] = ACTIONS(4915), + [anon_sym_virtual] = ACTIONS(4915), + [anon_sym_extern] = ACTIONS(4915), + [anon_sym___attribute__] = ACTIONS(4915), + [anon_sym___attribute] = ACTIONS(4915), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4919), + [anon_sym___declspec] = ACTIONS(4915), + [anon_sym___based] = ACTIONS(4915), + [anon_sym___cdecl] = ACTIONS(4915), + [anon_sym___clrcall] = ACTIONS(4915), + [anon_sym___stdcall] = ACTIONS(4915), + [anon_sym___fastcall] = ACTIONS(4915), + [anon_sym___thiscall] = ACTIONS(4915), + [anon_sym___vectorcall] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4917), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_static] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_register] = ACTIONS(4915), + [anon_sym_inline] = ACTIONS(4915), + [anon_sym___inline] = ACTIONS(4915), + [anon_sym___inline__] = ACTIONS(4915), + [anon_sym___forceinline] = ACTIONS(4915), + [anon_sym_thread_local] = ACTIONS(4915), + [anon_sym___thread] = ACTIONS(4915), + [anon_sym_const] = ACTIONS(4915), + [anon_sym_constexpr] = ACTIONS(4915), + [anon_sym_volatile] = ACTIONS(4915), + [anon_sym_restrict] = ACTIONS(4915), + [anon_sym___restrict__] = ACTIONS(4915), + [anon_sym__Atomic] = ACTIONS(4915), + [anon_sym__Noreturn] = ACTIONS(4915), + [anon_sym_noreturn] = ACTIONS(4915), + [anon_sym__Nonnull] = ACTIONS(4915), + [anon_sym_mutable] = ACTIONS(4915), + [anon_sym_constinit] = ACTIONS(4915), + [anon_sym_consteval] = ACTIONS(4915), + [anon_sym_alignas] = ACTIONS(4915), + [anon_sym__Alignas] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4917), + [anon_sym_STAR_EQ] = ACTIONS(4917), + [anon_sym_SLASH_EQ] = ACTIONS(4917), + [anon_sym_PERCENT_EQ] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4917), + [anon_sym_DASH_EQ] = ACTIONS(4917), + [anon_sym_LT_LT_EQ] = ACTIONS(4917), + [anon_sym_GT_GT_EQ] = ACTIONS(4917), + [anon_sym_AMP_EQ] = ACTIONS(4917), + [anon_sym_CARET_EQ] = ACTIONS(4917), + [anon_sym_PIPE_EQ] = ACTIONS(4917), + [anon_sym_and_eq] = ACTIONS(4924), + [anon_sym_or_eq] = ACTIONS(4924), + [anon_sym_xor_eq] = ACTIONS(4924), + [anon_sym_LT_EQ_GT] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4924), + [anon_sym_and] = ACTIONS(4924), + [anon_sym_bitor] = ACTIONS(4924), + [anon_sym_xor] = ACTIONS(4924), + [anon_sym_bitand] = ACTIONS(4924), + [anon_sym_not_eq] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4915), + [anon_sym_decltype] = ACTIONS(4915), + [anon_sym_template] = ACTIONS(4915), + [anon_sym_operator] = ACTIONS(4915), + }, + [STATE(1575)] = { + [sym_identifier] = ACTIONS(5022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5022), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5022), + [anon_sym_virtual] = ACTIONS(5022), + [anon_sym_extern] = ACTIONS(5022), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5024), + [anon_sym___declspec] = ACTIONS(5022), + [anon_sym___based] = ACTIONS(5022), + [anon_sym___cdecl] = ACTIONS(5022), + [anon_sym___clrcall] = ACTIONS(5022), + [anon_sym___stdcall] = ACTIONS(5022), + [anon_sym___fastcall] = ACTIONS(5022), + [anon_sym___thiscall] = ACTIONS(5022), + [anon_sym___vectorcall] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_static] = ACTIONS(5022), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_register] = ACTIONS(5022), + [anon_sym_inline] = ACTIONS(5022), + [anon_sym___inline] = ACTIONS(5022), + [anon_sym___inline__] = ACTIONS(5022), + [anon_sym___forceinline] = ACTIONS(5022), + [anon_sym_thread_local] = ACTIONS(5022), + [anon_sym___thread] = ACTIONS(5022), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5022), + [anon_sym_volatile] = ACTIONS(5022), + [anon_sym_restrict] = ACTIONS(5022), + [anon_sym___restrict__] = ACTIONS(5022), + [anon_sym__Atomic] = ACTIONS(5022), + [anon_sym__Noreturn] = ACTIONS(5022), + [anon_sym_noreturn] = ACTIONS(5022), + [anon_sym__Nonnull] = ACTIONS(5022), + [anon_sym_mutable] = ACTIONS(5022), + [anon_sym_constinit] = ACTIONS(5022), + [anon_sym_consteval] = ACTIONS(5022), + [anon_sym_alignas] = ACTIONS(5022), + [anon_sym__Alignas] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_LT_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_GT_EQ] = ACTIONS(5024), + [anon_sym_AMP_EQ] = ACTIONS(5024), + [anon_sym_CARET_EQ] = ACTIONS(5024), + [anon_sym_PIPE_EQ] = ACTIONS(5024), + [anon_sym_and_eq] = ACTIONS(5022), + [anon_sym_or_eq] = ACTIONS(5022), + [anon_sym_xor_eq] = ACTIONS(5022), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5022), + [anon_sym_not_eq] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + [anon_sym_template] = ACTIONS(5022), + [anon_sym_operator] = ACTIONS(5022), + }, + [STATE(1576)] = { + [sym_identifier] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(5000), + [anon_sym___cdecl] = ACTIONS(5000), + [anon_sym___clrcall] = ACTIONS(5000), + [anon_sym___stdcall] = ACTIONS(5000), + [anon_sym___fastcall] = ACTIONS(5000), + [anon_sym___thiscall] = ACTIONS(5000), + [anon_sym___vectorcall] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_register] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym___inline] = ACTIONS(5000), + [anon_sym___inline__] = ACTIONS(5000), + [anon_sym___forceinline] = ACTIONS(5000), + [anon_sym_thread_local] = ACTIONS(5000), + [anon_sym___thread] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [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(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_and_eq] = ACTIONS(5009), + [anon_sym_or_eq] = ACTIONS(5009), + [anon_sym_xor_eq] = ACTIONS(5009), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5009), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5009), + [anon_sym_not_eq] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), [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(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_template] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), }, - [STATE(1686)] = { + [STATE(1577)] = { + [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_asm] = ACTIONS(4992), + [anon_sym___asm__] = ACTIONS(4992), + [anon_sym___asm] = ACTIONS(4992), + [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), + }, + [STATE(1578)] = { [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_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_PIPE_PIPE] = ACTIONS(4986), - [anon_sym_AMP_AMP] = ACTIONS(4988), - [anon_sym_PIPE] = ACTIONS(4993), + [anon_sym_AMP_AMP] = ACTIONS(4986), + [anon_sym_PIPE] = ACTIONS(4984), [anon_sym_CARET] = ACTIONS(4986), - [anon_sym_AMP] = ACTIONS(4995), + [anon_sym_AMP] = ACTIONS(4984), [anon_sym_EQ_EQ] = ACTIONS(4986), [anon_sym_BANG_EQ] = ACTIONS(4986), - [anon_sym_GT] = ACTIONS(4993), + [anon_sym_GT] = ACTIONS(4984), [anon_sym_GT_EQ] = ACTIONS(4986), - [anon_sym_LT_EQ] = ACTIONS(4993), - [anon_sym_LT] = ACTIONS(4993), + [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_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_COLON] = 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_LBRACE] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4995), + [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_static] = ACTIONS(4984), + [anon_sym_RBRACK] = ACTIONS(4986), [anon_sym_EQ] = ACTIONS(4984), [anon_sym_register] = ACTIONS(4984), [anon_sym_inline] = ACTIONS(4984), @@ -247531,692 +238705,1054 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(4993), + [anon_sym_asm] = ACTIONS(4984), + [anon_sym___asm__] = ACTIONS(4984), + [anon_sym___asm] = ACTIONS(4984), + [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_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), }, - [STATE(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), + [STATE(1579)] = { + [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_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(5004), - [anon_sym_decltype] = ACTIONS(5004), - [anon_sym_final] = ACTIONS(5004), - [anon_sym_override] = ACTIONS(5004), - [anon_sym_DASH_GT_STAR] = ACTIONS(5004), + [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), }, - [STATE(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), + [STATE(1580)] = { + [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(4998), + [anon_sym_TILDE] = ACTIONS(4998), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [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] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), + [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(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4996), + [anon_sym_static] = ACTIONS(4996), + [anon_sym_RBRACK] = ACTIONS(4998), + [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(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(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_asm] = ACTIONS(4996), + [anon_sym___asm__] = ACTIONS(4996), + [anon_sym___asm] = ACTIONS(4996), + [anon_sym_DOT] = ACTIONS(4996), + [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_final] = ACTIONS(4996), + [anon_sym_override] = ACTIONS(4996), + [anon_sym_template] = ACTIONS(4996), + [anon_sym_operator] = ACTIONS(4996), + [anon_sym_try] = ACTIONS(4996), + [anon_sym_noexcept] = ACTIONS(4996), + [anon_sym_throw] = ACTIONS(4996), + [anon_sym_requires] = ACTIONS(4996), }, - [STATE(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), + [STATE(1581)] = { + [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_asm] = ACTIONS(4988), + [anon_sym___asm__] = ACTIONS(4988), + [anon_sym___asm] = ACTIONS(4988), + [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), }, - [STATE(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), + [STATE(1582)] = { + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym_virtual] = ACTIONS(5018), + [anon_sym_extern] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5020), + [anon_sym___declspec] = ACTIONS(5018), + [anon_sym___based] = ACTIONS(5018), + [anon_sym___cdecl] = ACTIONS(5018), + [anon_sym___clrcall] = ACTIONS(5018), + [anon_sym___stdcall] = ACTIONS(5018), + [anon_sym___fastcall] = ACTIONS(5018), + [anon_sym___thiscall] = ACTIONS(5018), + [anon_sym___vectorcall] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_static] = ACTIONS(5018), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_register] = ACTIONS(5018), + [anon_sym_inline] = ACTIONS(5018), + [anon_sym___inline] = ACTIONS(5018), + [anon_sym___inline__] = ACTIONS(5018), + [anon_sym___forceinline] = ACTIONS(5018), + [anon_sym_thread_local] = ACTIONS(5018), + [anon_sym___thread] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym__Nonnull] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [anon_sym_alignas] = ACTIONS(5018), + [anon_sym__Alignas] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5018), + [anon_sym_not_eq] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_asm] = ACTIONS(5018), + [anon_sym___asm__] = ACTIONS(5018), + [anon_sym___asm] = ACTIONS(5018), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + [anon_sym_final] = ACTIONS(5018), + [anon_sym_override] = ACTIONS(5018), + [anon_sym_template] = ACTIONS(5018), + [anon_sym_operator] = ACTIONS(5018), + [anon_sym_try] = ACTIONS(5018), + [anon_sym_noexcept] = ACTIONS(5018), + [anon_sym_throw] = ACTIONS(5018), + [anon_sym_requires] = ACTIONS(5018), }, - [STATE(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), + [STATE(1583)] = { + [sym_identifier] = ACTIONS(5022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5022), + [anon_sym_virtual] = ACTIONS(5022), + [anon_sym_extern] = ACTIONS(5022), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5024), + [anon_sym___declspec] = ACTIONS(5022), + [anon_sym___based] = ACTIONS(5022), + [anon_sym___cdecl] = ACTIONS(5022), + [anon_sym___clrcall] = ACTIONS(5022), + [anon_sym___stdcall] = ACTIONS(5022), + [anon_sym___fastcall] = ACTIONS(5022), + [anon_sym___thiscall] = ACTIONS(5022), + [anon_sym___vectorcall] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_static] = ACTIONS(5022), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_register] = ACTIONS(5022), + [anon_sym_inline] = ACTIONS(5022), + [anon_sym___inline] = ACTIONS(5022), + [anon_sym___inline__] = ACTIONS(5022), + [anon_sym___forceinline] = ACTIONS(5022), + [anon_sym_thread_local] = ACTIONS(5022), + [anon_sym___thread] = ACTIONS(5022), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5022), + [anon_sym_volatile] = ACTIONS(5022), + [anon_sym_restrict] = ACTIONS(5022), + [anon_sym___restrict__] = ACTIONS(5022), + [anon_sym__Atomic] = ACTIONS(5022), + [anon_sym__Noreturn] = ACTIONS(5022), + [anon_sym_noreturn] = ACTIONS(5022), + [anon_sym__Nonnull] = ACTIONS(5022), + [anon_sym_mutable] = ACTIONS(5022), + [anon_sym_constinit] = ACTIONS(5022), + [anon_sym_consteval] = ACTIONS(5022), + [anon_sym_alignas] = ACTIONS(5022), + [anon_sym__Alignas] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5022), + [anon_sym_not_eq] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_asm] = ACTIONS(5022), + [anon_sym___asm__] = ACTIONS(5022), + [anon_sym___asm] = ACTIONS(5022), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + [anon_sym_final] = ACTIONS(5022), + [anon_sym_override] = ACTIONS(5022), + [anon_sym_template] = ACTIONS(5022), + [anon_sym_operator] = ACTIONS(5022), + [anon_sym_try] = ACTIONS(5022), + [anon_sym_noexcept] = ACTIONS(5022), + [anon_sym_throw] = ACTIONS(5022), + [anon_sym_requires] = ACTIONS(5022), }, - [STATE(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), + [STATE(1584)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_ms_call_modifier] = STATE(6453), + [sym__abstract_declarator] = STATE(6980), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_abstract_function_declarator] = STATE(6117), + [sym_abstract_array_declarator] = STATE(6117), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_list] = STATE(3134), + [sym_parameter_declaration] = STATE(7405), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7405), + [sym_variadic_parameter_declaration] = STATE(7405), + [sym_abstract_reference_declarator] = STATE(6117), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), + [anon_sym_RPAREN] = ACTIONS(4316), + [anon_sym_LPAREN2] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [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(5036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [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(5038), + [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(3027), + [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(1268), + }, + [STATE(1585)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_ms_call_modifier] = STATE(6449), + [sym__abstract_declarator] = STATE(6991), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_abstract_function_declarator] = STATE(6117), + [sym_abstract_array_declarator] = STATE(6117), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_list] = STATE(3134), + [sym_parameter_declaration] = STATE(7405), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7405), + [sym_variadic_parameter_declaration] = STATE(7405), + [sym_abstract_reference_declarator] = STATE(6117), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), + [anon_sym_RPAREN] = ACTIONS(4316), + [anon_sym_LPAREN2] = ACTIONS(5028), + [anon_sym_STAR] = ACTIONS(5030), + [anon_sym_AMP_AMP] = ACTIONS(5032), + [anon_sym_AMP] = ACTIONS(5034), + [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(5036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [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(5038), + [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(3027), + [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(1268), + }, + [STATE(1586)] = { + [sym_identifier] = 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] = ACTIONS(2977), + [anon_sym___extension__] = ACTIONS(2975), + [anon_sym_virtual] = ACTIONS(2975), + [anon_sym_extern] = ACTIONS(2975), + [anon_sym___attribute__] = ACTIONS(2975), + [anon_sym___attribute] = ACTIONS(2975), + [anon_sym_COLON_COLON] = ACTIONS(2977), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2977), + [anon_sym___declspec] = ACTIONS(2975), + [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_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_typename] = ACTIONS(2975), + [anon_sym_template] = ACTIONS(2975), + [anon_sym_delete] = 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), }, - [STATE(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), + [STATE(1587)] = { + [sym_identifier] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym___attribute] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym__Nonnull] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym__Alignas] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_not] = ACTIONS(3099), + [anon_sym_compl] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_sizeof] = ACTIONS(3099), + [anon_sym___alignof__] = ACTIONS(3099), + [anon_sym___alignof] = ACTIONS(3099), + [anon_sym__alignof] = ACTIONS(3099), + [anon_sym_alignof] = ACTIONS(3099), + [anon_sym__Alignof] = ACTIONS(3099), + [anon_sym_offsetof] = ACTIONS(3099), + [anon_sym__Generic] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym___asm__] = ACTIONS(3099), + [anon_sym___asm] = ACTIONS(3099), + [sym_number_literal] = ACTIONS(3101), + [anon_sym_L_SQUOTE] = ACTIONS(3101), + [anon_sym_u_SQUOTE] = ACTIONS(3101), + [anon_sym_U_SQUOTE] = ACTIONS(3101), + [anon_sym_u8_SQUOTE] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3101), + [anon_sym_L_DQUOTE] = ACTIONS(3101), + [anon_sym_u_DQUOTE] = ACTIONS(3101), + [anon_sym_U_DQUOTE] = ACTIONS(3101), + [anon_sym_u8_DQUOTE] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3101), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [anon_sym_NULL] = ACTIONS(3099), + [anon_sym_nullptr] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_delete] = ACTIONS(3099), + [anon_sym_R_DQUOTE] = ACTIONS(3101), + [anon_sym_LR_DQUOTE] = ACTIONS(3101), + [anon_sym_uR_DQUOTE] = ACTIONS(3101), + [anon_sym_UR_DQUOTE] = ACTIONS(3101), + [anon_sym_u8R_DQUOTE] = ACTIONS(3101), + [anon_sym_co_await] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_requires] = ACTIONS(3099), + [sym_this] = ACTIONS(3099), }, - [STATE(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(5000), - [anon_sym_decltype] = ACTIONS(5000), - [anon_sym_final] = ACTIONS(5000), - [anon_sym_override] = ACTIONS(5000), - [anon_sym_DASH_GT_STAR] = ACTIONS(5000), + [STATE(1588)] = { + [sym_identifier] = ACTIONS(3304), + [anon_sym_LPAREN2] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym___extension__] = ACTIONS(3304), + [anon_sym_virtual] = ACTIONS(3304), + [anon_sym_extern] = ACTIONS(3304), + [anon_sym___attribute__] = ACTIONS(3304), + [anon_sym___attribute] = ACTIONS(3304), + [anon_sym_COLON_COLON] = ACTIONS(3309), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3309), + [anon_sym___declspec] = ACTIONS(3304), + [anon_sym_signed] = ACTIONS(3304), + [anon_sym_unsigned] = ACTIONS(3304), + [anon_sym_long] = ACTIONS(3304), + [anon_sym_short] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_register] = ACTIONS(3304), + [anon_sym_inline] = ACTIONS(3304), + [anon_sym___inline] = ACTIONS(3304), + [anon_sym___inline__] = ACTIONS(3304), + [anon_sym___forceinline] = ACTIONS(3304), + [anon_sym_thread_local] = ACTIONS(3304), + [anon_sym___thread] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_constexpr] = ACTIONS(3304), + [anon_sym_volatile] = ACTIONS(3304), + [anon_sym_restrict] = ACTIONS(3304), + [anon_sym___restrict__] = ACTIONS(3304), + [anon_sym__Atomic] = ACTIONS(3304), + [anon_sym__Noreturn] = ACTIONS(3304), + [anon_sym_noreturn] = ACTIONS(3304), + [anon_sym__Nonnull] = ACTIONS(3304), + [anon_sym_mutable] = ACTIONS(3304), + [anon_sym_constinit] = ACTIONS(3304), + [anon_sym_consteval] = ACTIONS(3304), + [anon_sym_alignas] = ACTIONS(3304), + [anon_sym__Alignas] = ACTIONS(3304), + [sym_primitive_type] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_struct] = ACTIONS(3304), + [anon_sym_union] = ACTIONS(3304), + [anon_sym_not] = ACTIONS(3304), + [anon_sym_compl] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_sizeof] = ACTIONS(3304), + [anon_sym___alignof__] = ACTIONS(3304), + [anon_sym___alignof] = ACTIONS(3304), + [anon_sym__alignof] = ACTIONS(3304), + [anon_sym_alignof] = ACTIONS(3304), + [anon_sym__Alignof] = ACTIONS(3304), + [anon_sym_offsetof] = ACTIONS(3304), + [anon_sym__Generic] = ACTIONS(3304), + [anon_sym_asm] = ACTIONS(3304), + [anon_sym___asm__] = ACTIONS(3304), + [anon_sym___asm] = ACTIONS(3304), + [sym_number_literal] = ACTIONS(3309), + [anon_sym_L_SQUOTE] = ACTIONS(3309), + [anon_sym_u_SQUOTE] = ACTIONS(3309), + [anon_sym_U_SQUOTE] = ACTIONS(3309), + [anon_sym_u8_SQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_L_DQUOTE] = ACTIONS(3309), + [anon_sym_u_DQUOTE] = ACTIONS(3309), + [anon_sym_U_DQUOTE] = ACTIONS(3309), + [anon_sym_u8_DQUOTE] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [anon_sym_NULL] = ACTIONS(3304), + [anon_sym_nullptr] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3304), + [anon_sym_decltype] = ACTIONS(3304), + [anon_sym_typename] = ACTIONS(3304), + [anon_sym_template] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_R_DQUOTE] = ACTIONS(3309), + [anon_sym_LR_DQUOTE] = ACTIONS(3309), + [anon_sym_uR_DQUOTE] = ACTIONS(3309), + [anon_sym_UR_DQUOTE] = ACTIONS(3309), + [anon_sym_u8R_DQUOTE] = ACTIONS(3309), + [anon_sym_co_await] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_requires] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), }, - [STATE(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), + [STATE(1589)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5319), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6813), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_parameter_list] = STATE(858), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(4241), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5776), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(5042), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), + [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(5044), [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(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -248239,1676 +239775,78 @@ 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(3019), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(5370), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(3027), + [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(5372), - [anon_sym_template] = ACTIONS(5374), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - [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), - }, - [STATE(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(4982), - [anon_sym_decltype] = ACTIONS(4982), - [anon_sym_final] = ACTIONS(4982), - [anon_sym_override] = ACTIONS(4982), - [anon_sym_GT2] = ACTIONS(4982), - }, - [STATE(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(5088), - [anon_sym_decltype] = ACTIONS(5088), - [anon_sym_DASH_GT_STAR] = ACTIONS(5090), - }, - [STATE(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), - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(1590)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5310), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6796), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_parameter_list] = STATE(860), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(4241), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5776), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(5042), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), + [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(5044), [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(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -249931,60 +239869,78 @@ 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(3019), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(3027), + [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(1882), + [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(1591)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5370), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6773), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_parameter_list] = STATE(857), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(4241), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5776), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(5042), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), + [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(5044), [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(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -250007,60 +239963,78 @@ 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(3019), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(3027), + [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(1882), + [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(1592)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5336), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6779), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_parameter_list] = STATE(856), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(4241), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5776), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(5042), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), + [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(5044), [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(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -250083,60 +240057,721 @@ 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(3019), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(3027), + [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(1882), + [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(1593)] = { + [sym_template_argument_list] = STATE(1599), + [sym_identifier] = ACTIONS(4915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LPAREN2] = ACTIONS(4919), + [anon_sym_TILDE] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym___extension__] = ACTIONS(4915), + [anon_sym_virtual] = ACTIONS(4915), + [anon_sym_extern] = ACTIONS(4915), + [anon_sym___attribute__] = ACTIONS(4915), + [anon_sym___attribute] = ACTIONS(4915), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4922), + [anon_sym___declspec] = ACTIONS(4915), + [anon_sym___based] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_static] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_register] = ACTIONS(4915), + [anon_sym_inline] = ACTIONS(4915), + [anon_sym___inline] = ACTIONS(4915), + [anon_sym___inline__] = ACTIONS(4915), + [anon_sym___forceinline] = ACTIONS(4915), + [anon_sym_thread_local] = ACTIONS(4915), + [anon_sym___thread] = ACTIONS(4915), + [anon_sym_const] = ACTIONS(4915), + [anon_sym_constexpr] = ACTIONS(4915), + [anon_sym_volatile] = ACTIONS(4915), + [anon_sym_restrict] = ACTIONS(4915), + [anon_sym___restrict__] = ACTIONS(4915), + [anon_sym__Atomic] = ACTIONS(4915), + [anon_sym__Noreturn] = ACTIONS(4915), + [anon_sym_noreturn] = ACTIONS(4915), + [anon_sym__Nonnull] = ACTIONS(4915), + [anon_sym_mutable] = ACTIONS(4915), + [anon_sym_constinit] = ACTIONS(4915), + [anon_sym_consteval] = ACTIONS(4915), + [anon_sym_alignas] = ACTIONS(4915), + [anon_sym__Alignas] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4917), + [anon_sym_STAR_EQ] = ACTIONS(4917), + [anon_sym_SLASH_EQ] = ACTIONS(4917), + [anon_sym_PERCENT_EQ] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4917), + [anon_sym_DASH_EQ] = ACTIONS(4917), + [anon_sym_LT_LT_EQ] = ACTIONS(4917), + [anon_sym_GT_GT_EQ] = ACTIONS(4917), + [anon_sym_AMP_EQ] = ACTIONS(4917), + [anon_sym_CARET_EQ] = ACTIONS(4917), + [anon_sym_PIPE_EQ] = ACTIONS(4917), + [anon_sym_and_eq] = ACTIONS(4924), + [anon_sym_or_eq] = ACTIONS(4924), + [anon_sym_xor_eq] = ACTIONS(4924), + [anon_sym_LT_EQ_GT] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4924), + [anon_sym_and] = ACTIONS(4924), + [anon_sym_bitor] = ACTIONS(4924), + [anon_sym_xor] = ACTIONS(4924), + [anon_sym_bitand] = ACTIONS(4924), + [anon_sym_not_eq] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4915), + [anon_sym_decltype] = ACTIONS(4915), + [anon_sym_template] = ACTIONS(4915), + [anon_sym_operator] = ACTIONS(4915), + [anon_sym_DASH_GT_STAR] = ACTIONS(4917), + }, + [STATE(1594)] = { + [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(4998), + [anon_sym_TILDE] = ACTIONS(4998), + [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(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4998), + [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___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(4998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), + [anon_sym___declspec] = ACTIONS(4996), + [anon_sym___based] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4996), + [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_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(4996), + [anon_sym_or_eq] = ACTIONS(4996), + [anon_sym_xor_eq] = ACTIONS(4996), + [anon_sym_LT_EQ_GT] = ACTIONS(4998), + [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(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_DOT_STAR] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(4996), + [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), + }, + [STATE(1595)] = { + [sym_template_argument_list] = STATE(1608), + [sym_identifier] = ACTIONS(4915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LPAREN2] = ACTIONS(4919), + [anon_sym_TILDE] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym___extension__] = ACTIONS(4915), + [anon_sym_virtual] = ACTIONS(4915), + [anon_sym_extern] = ACTIONS(4915), + [anon_sym___attribute__] = ACTIONS(4915), + [anon_sym___attribute] = ACTIONS(4915), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4922), + [anon_sym___declspec] = ACTIONS(4915), + [anon_sym___based] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_static] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4926), + [anon_sym_register] = ACTIONS(4915), + [anon_sym_inline] = ACTIONS(4915), + [anon_sym___inline] = ACTIONS(4915), + [anon_sym___inline__] = ACTIONS(4915), + [anon_sym___forceinline] = ACTIONS(4915), + [anon_sym_thread_local] = ACTIONS(4915), + [anon_sym___thread] = ACTIONS(4915), + [anon_sym_const] = ACTIONS(4915), + [anon_sym_constexpr] = ACTIONS(4915), + [anon_sym_volatile] = ACTIONS(4915), + [anon_sym_restrict] = ACTIONS(4915), + [anon_sym___restrict__] = ACTIONS(4915), + [anon_sym__Atomic] = ACTIONS(4915), + [anon_sym__Noreturn] = ACTIONS(4915), + [anon_sym_noreturn] = ACTIONS(4915), + [anon_sym__Nonnull] = ACTIONS(4915), + [anon_sym_mutable] = ACTIONS(4915), + [anon_sym_constinit] = ACTIONS(4915), + [anon_sym_consteval] = ACTIONS(4915), + [anon_sym_alignas] = ACTIONS(4915), + [anon_sym__Alignas] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4917), + [anon_sym_STAR_EQ] = ACTIONS(4917), + [anon_sym_SLASH_EQ] = ACTIONS(4917), + [anon_sym_PERCENT_EQ] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4917), + [anon_sym_DASH_EQ] = ACTIONS(4917), + [anon_sym_LT_LT_EQ] = ACTIONS(4917), + [anon_sym_GT_GT_EQ] = ACTIONS(4917), + [anon_sym_AMP_EQ] = ACTIONS(4917), + [anon_sym_CARET_EQ] = ACTIONS(4917), + [anon_sym_PIPE_EQ] = ACTIONS(4917), + [anon_sym_and_eq] = ACTIONS(4924), + [anon_sym_or_eq] = ACTIONS(4924), + [anon_sym_xor_eq] = ACTIONS(4924), + [anon_sym_LT_EQ_GT] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4924), + [anon_sym_and] = ACTIONS(4924), + [anon_sym_bitor] = ACTIONS(4924), + [anon_sym_xor] = ACTIONS(4924), + [anon_sym_bitand] = ACTIONS(4924), + [anon_sym_not_eq] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4915), + [anon_sym_decltype] = ACTIONS(4915), + [anon_sym_template] = ACTIONS(4915), + [anon_sym_operator] = ACTIONS(4915), + }, + [STATE(1596)] = { + [sym_identifier] = ACTIONS(5022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5022), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym___extension__] = ACTIONS(5022), + [anon_sym_virtual] = ACTIONS(5022), + [anon_sym_extern] = ACTIONS(5022), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5024), + [anon_sym___declspec] = ACTIONS(5022), + [anon_sym___based] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_static] = ACTIONS(5022), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_register] = ACTIONS(5022), + [anon_sym_inline] = ACTIONS(5022), + [anon_sym___inline] = ACTIONS(5022), + [anon_sym___inline__] = ACTIONS(5022), + [anon_sym___forceinline] = ACTIONS(5022), + [anon_sym_thread_local] = ACTIONS(5022), + [anon_sym___thread] = ACTIONS(5022), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5022), + [anon_sym_volatile] = ACTIONS(5022), + [anon_sym_restrict] = ACTIONS(5022), + [anon_sym___restrict__] = ACTIONS(5022), + [anon_sym__Atomic] = ACTIONS(5022), + [anon_sym__Noreturn] = ACTIONS(5022), + [anon_sym_noreturn] = ACTIONS(5022), + [anon_sym__Nonnull] = ACTIONS(5022), + [anon_sym_mutable] = ACTIONS(5022), + [anon_sym_constinit] = ACTIONS(5022), + [anon_sym_consteval] = ACTIONS(5022), + [anon_sym_alignas] = ACTIONS(5022), + [anon_sym__Alignas] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_LT_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_GT_EQ] = ACTIONS(5024), + [anon_sym_AMP_EQ] = ACTIONS(5024), + [anon_sym_CARET_EQ] = ACTIONS(5024), + [anon_sym_PIPE_EQ] = ACTIONS(5024), + [anon_sym_and_eq] = ACTIONS(5022), + [anon_sym_or_eq] = ACTIONS(5022), + [anon_sym_xor_eq] = ACTIONS(5022), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5022), + [anon_sym_not_eq] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + [anon_sym_template] = ACTIONS(5022), + [anon_sym_operator] = ACTIONS(5022), + [anon_sym_DASH_GT_STAR] = ACTIONS(5024), + }, + [STATE(1597)] = { + [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), + }, + [STATE(1598)] = { [sym_identifier] = ACTIONS(5018), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5446), - [anon_sym_RPAREN] = ACTIONS(5448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5018), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym_virtual] = ACTIONS(5018), + [anon_sym_extern] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5020), + [anon_sym___declspec] = ACTIONS(5018), + [anon_sym___based] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_static] = ACTIONS(5018), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_register] = ACTIONS(5018), + [anon_sym_inline] = ACTIONS(5018), + [anon_sym___inline] = ACTIONS(5018), + [anon_sym___inline__] = ACTIONS(5018), + [anon_sym___forceinline] = ACTIONS(5018), + [anon_sym_thread_local] = ACTIONS(5018), + [anon_sym___thread] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym__Nonnull] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [anon_sym_alignas] = ACTIONS(5018), + [anon_sym__Alignas] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_LT_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_GT_EQ] = ACTIONS(5020), + [anon_sym_AMP_EQ] = ACTIONS(5020), + [anon_sym_CARET_EQ] = ACTIONS(5020), + [anon_sym_PIPE_EQ] = ACTIONS(5020), + [anon_sym_and_eq] = ACTIONS(5018), + [anon_sym_or_eq] = ACTIONS(5018), + [anon_sym_xor_eq] = ACTIONS(5018), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5018), + [anon_sym_not_eq] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + [anon_sym_template] = ACTIONS(5018), + [anon_sym_operator] = ACTIONS(5018), + [anon_sym_DASH_GT_STAR] = ACTIONS(5020), + }, + [STATE(1599)] = { + [sym_identifier] = ACTIONS(5000), + [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(5007), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5007), + [anon_sym___declspec] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_register] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym___inline] = ACTIONS(5000), + [anon_sym___inline__] = ACTIONS(5000), + [anon_sym___forceinline] = ACTIONS(5000), + [anon_sym_thread_local] = ACTIONS(5000), + [anon_sym___thread] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [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(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_and_eq] = ACTIONS(5009), + [anon_sym_or_eq] = ACTIONS(5009), + [anon_sym_xor_eq] = ACTIONS(5009), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5009), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5009), + [anon_sym_not_eq] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_template] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), + [anon_sym_DASH_GT_STAR] = ACTIONS(5002), + }, + [STATE(1600)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5314), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6833), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5776), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), + [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(5044), [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(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -250159,286 +240794,169 @@ 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(3019), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(3027), + [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(1882), + [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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), + [STATE(1601)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5321), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6845), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5776), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [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(5044), + [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(3023), + [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(3027), + [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(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(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(1724)] = { + [STATE(1602)] = { + [sym_identifier] = ACTIONS(4984), [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_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_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_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(4993), + [anon_sym_GT] = ACTIONS(4984), [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_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(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_LBRACE] = ACTIONS(4991), - [anon_sym_LBRACK] = ACTIONS(4995), - [anon_sym_EQ] = ACTIONS(4993), + [anon_sym___declspec] = ACTIONS(4984), + [anon_sym___based] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4984), + [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(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_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), @@ -250450,218 +240968,362 @@ 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(4986), - [anon_sym_or_eq] = ACTIONS(4986), - [anon_sym_xor_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(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_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(4993), + [anon_sym_DOT] = ACTIONS(4984), [anon_sym_DOT_STAR] = ACTIONS(4986), - [anon_sym_DASH_GT] = ACTIONS(4993), + [anon_sym_DASH_GT] = ACTIONS(4984), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4991), - [anon_sym_decltype] = ACTIONS(4991), + [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), }, - [STATE(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(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), + [STATE(1603)] = { + [sym_string_literal] = STATE(2247), + [sym_template_argument_list] = STATE(1736), + [sym_raw_string_literal] = STATE(2247), + [aux_sym_sized_type_specifier_repeat1] = STATE(1951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4188), + [anon_sym_LPAREN2] = ACTIONS(4188), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(5054), + [anon_sym_unsigned] = ACTIONS(5054), + [anon_sym_long] = ACTIONS(5054), + [anon_sym_short] = ACTIONS(5054), + [anon_sym_LBRACK] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4166), + [anon_sym_volatile] = ACTIONS(4166), + [anon_sym_restrict] = ACTIONS(4166), + [anon_sym___restrict__] = ACTIONS(4166), + [anon_sym__Atomic] = ACTIONS(4166), + [anon_sym__Noreturn] = ACTIONS(4166), + [anon_sym_noreturn] = ACTIONS(4166), + [anon_sym__Nonnull] = ACTIONS(4166), + [anon_sym_mutable] = ACTIONS(4166), + [anon_sym_constinit] = ACTIONS(4166), + [anon_sym_consteval] = ACTIONS(4166), + [anon_sym_alignas] = ACTIONS(4166), + [anon_sym__Alignas] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(5056), + [anon_sym_u_DQUOTE] = ACTIONS(5056), + [anon_sym_U_DQUOTE] = ACTIONS(5056), + [anon_sym_u8_DQUOTE] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4166), + [anon_sym_decltype] = ACTIONS(4166), + [anon_sym_R_DQUOTE] = ACTIONS(5058), + [anon_sym_LR_DQUOTE] = ACTIONS(5058), + [anon_sym_uR_DQUOTE] = ACTIONS(5058), + [anon_sym_UR_DQUOTE] = ACTIONS(5058), + [anon_sym_u8R_DQUOTE] = ACTIONS(5058), + [anon_sym_DASH_GT_STAR] = ACTIONS(4161), }, - [STATE(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), + [STATE(1604)] = { + [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), }, - [STATE(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), + [STATE(1605)] = { + [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), + }, + [STATE(1606)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5338), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6842), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5776), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), + [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(5044), [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(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -250671,147 +241333,89 @@ 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(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), - }, - [STATE(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), + [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(3027), + [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(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(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(1607)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5345), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6790), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6137), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(2429), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5776), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_type_identifier] = STATE(3067), + [sym_operator_name] = STATE(6137), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5040), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), + [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(5044), [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(3023), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -250834,4349 +241438,7822 @@ 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(3019), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(3027), + [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(1882), + [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(1608)] = { + [sym_identifier] = ACTIONS(5000), + [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(5007), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5007), + [anon_sym___declspec] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_register] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym___inline] = ACTIONS(5000), + [anon_sym___inline__] = ACTIONS(5000), + [anon_sym___forceinline] = ACTIONS(5000), + [anon_sym_thread_local] = ACTIONS(5000), + [anon_sym___thread] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [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(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_and_eq] = ACTIONS(5009), + [anon_sym_or_eq] = ACTIONS(5009), + [anon_sym_xor_eq] = ACTIONS(5009), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5009), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5009), + [anon_sym_not_eq] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), [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), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_template] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), }, - [STATE(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), + [STATE(1609)] = { + [sym_type_qualifier] = STATE(1609), + [sym_alignas_qualifier] = STATE(1623), + [aux_sym__type_definition_type_repeat1] = STATE(1609), + [sym_identifier] = ACTIONS(5060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5062), + [anon_sym_COMMA] = ACTIONS(5062), + [anon_sym_RPAREN] = ACTIONS(5062), + [aux_sym_preproc_if_token2] = ACTIONS(5062), + [aux_sym_preproc_else_token1] = ACTIONS(5062), + [aux_sym_preproc_elif_token1] = ACTIONS(5060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5062), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5062), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5062), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5060), + [anon_sym_SEMI] = ACTIONS(5062), + [anon_sym___extension__] = ACTIONS(5064), + [anon_sym___attribute__] = ACTIONS(5060), + [anon_sym___attribute] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5062), + [anon_sym_RBRACE] = ACTIONS(5062), + [anon_sym_signed] = ACTIONS(5060), + [anon_sym_unsigned] = ACTIONS(5060), + [anon_sym_long] = ACTIONS(5060), + [anon_sym_short] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_RBRACK] = ACTIONS(5062), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_const] = ACTIONS(5064), + [anon_sym_constexpr] = ACTIONS(5064), + [anon_sym_volatile] = ACTIONS(5064), + [anon_sym_restrict] = ACTIONS(5064), + [anon_sym___restrict__] = ACTIONS(5064), + [anon_sym__Atomic] = ACTIONS(5064), + [anon_sym__Noreturn] = ACTIONS(5064), + [anon_sym_noreturn] = ACTIONS(5064), + [anon_sym__Nonnull] = ACTIONS(5064), + [anon_sym_mutable] = ACTIONS(5064), + [anon_sym_constinit] = ACTIONS(5064), + [anon_sym_consteval] = ACTIONS(5064), + [anon_sym_alignas] = ACTIONS(5067), + [anon_sym__Alignas] = ACTIONS(5067), + [sym_primitive_type] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_STAR_EQ] = ACTIONS(5062), + [anon_sym_SLASH_EQ] = ACTIONS(5062), + [anon_sym_PERCENT_EQ] = ACTIONS(5062), + [anon_sym_PLUS_EQ] = ACTIONS(5062), + [anon_sym_DASH_EQ] = ACTIONS(5062), + [anon_sym_LT_LT_EQ] = ACTIONS(5062), + [anon_sym_GT_GT_EQ] = ACTIONS(5062), + [anon_sym_AMP_EQ] = ACTIONS(5062), + [anon_sym_CARET_EQ] = ACTIONS(5062), + [anon_sym_PIPE_EQ] = ACTIONS(5062), + [anon_sym_and_eq] = ACTIONS(5060), + [anon_sym_or_eq] = ACTIONS(5060), + [anon_sym_xor_eq] = ACTIONS(5060), + [anon_sym_LT_EQ_GT] = ACTIONS(5062), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_bitor] = ACTIONS(5060), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_bitand] = ACTIONS(5060), + [anon_sym_not_eq] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DOT_STAR] = ACTIONS(5062), + [anon_sym_DASH_GT] = ACTIONS(5062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5060), + [anon_sym_decltype] = ACTIONS(5060), }, - [STATE(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), + [STATE(1610)] = { + [sym_string_literal] = STATE(2247), + [sym_template_argument_list] = STATE(1903), + [sym_raw_string_literal] = STATE(2247), + [aux_sym_sized_type_specifier_repeat1] = STATE(1951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4163), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(5054), + [anon_sym_unsigned] = ACTIONS(5054), + [anon_sym_long] = ACTIONS(5054), + [anon_sym_short] = ACTIONS(5054), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4166), + [anon_sym_volatile] = ACTIONS(4166), + [anon_sym_restrict] = ACTIONS(4166), + [anon_sym___restrict__] = ACTIONS(4166), + [anon_sym__Atomic] = ACTIONS(4166), + [anon_sym__Noreturn] = ACTIONS(4166), + [anon_sym_noreturn] = ACTIONS(4166), + [anon_sym__Nonnull] = ACTIONS(4166), + [anon_sym_mutable] = ACTIONS(4166), + [anon_sym_constinit] = ACTIONS(4166), + [anon_sym_consteval] = ACTIONS(4166), + [anon_sym_alignas] = ACTIONS(4166), + [anon_sym__Alignas] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(5056), + [anon_sym_u_DQUOTE] = ACTIONS(5056), + [anon_sym_U_DQUOTE] = ACTIONS(5056), + [anon_sym_u8_DQUOTE] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4166), + [anon_sym_decltype] = ACTIONS(4166), + [anon_sym_R_DQUOTE] = ACTIONS(5058), + [anon_sym_LR_DQUOTE] = ACTIONS(5058), + [anon_sym_uR_DQUOTE] = ACTIONS(5058), + [anon_sym_UR_DQUOTE] = ACTIONS(5058), + [anon_sym_u8R_DQUOTE] = ACTIONS(5058), + [anon_sym_DASH_GT_STAR] = ACTIONS(4161), }, - [STATE(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), + [STATE(1611)] = { + [sym_string_literal] = STATE(3549), + [sym_template_argument_list] = STATE(2944), + [sym_raw_string_literal] = STATE(3549), + [aux_sym_sized_type_specifier_repeat1] = STATE(2402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4163), + [anon_sym_COMMA] = ACTIONS(4163), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(5076), + [anon_sym_unsigned] = ACTIONS(5076), + [anon_sym_long] = ACTIONS(5076), + [anon_sym_short] = ACTIONS(5076), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_EQ] = ACTIONS(5078), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4166), + [anon_sym_volatile] = ACTIONS(4166), + [anon_sym_restrict] = ACTIONS(4166), + [anon_sym___restrict__] = ACTIONS(4166), + [anon_sym__Atomic] = ACTIONS(4166), + [anon_sym__Noreturn] = ACTIONS(4166), + [anon_sym_noreturn] = ACTIONS(4166), + [anon_sym__Nonnull] = ACTIONS(4166), + [anon_sym_mutable] = ACTIONS(4166), + [anon_sym_constinit] = ACTIONS(4166), + [anon_sym_consteval] = ACTIONS(4166), + [anon_sym_alignas] = ACTIONS(4166), + [anon_sym__Alignas] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4161), + [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(5080), + [anon_sym_or_eq] = ACTIONS(5080), + [anon_sym_xor_eq] = ACTIONS(5080), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [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_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4166), + [anon_sym_decltype] = ACTIONS(4166), + [anon_sym_GT2] = ACTIONS(4163), + [anon_sym_R_DQUOTE] = ACTIONS(5084), + [anon_sym_LR_DQUOTE] = ACTIONS(5084), + [anon_sym_uR_DQUOTE] = ACTIONS(5084), + [anon_sym_UR_DQUOTE] = ACTIONS(5084), + [anon_sym_u8R_DQUOTE] = ACTIONS(5084), }, - [STATE(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), + [STATE(1612)] = { + [sym_identifier] = ACTIONS(5000), + [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(5007), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5007), + [anon_sym___declspec] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_register] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym___inline] = ACTIONS(5000), + [anon_sym___inline__] = ACTIONS(5000), + [anon_sym___forceinline] = ACTIONS(5000), + [anon_sym_thread_local] = ACTIONS(5000), + [anon_sym___thread] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [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(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5009), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5009), + [anon_sym_not_eq] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5009), [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), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_template] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), + [anon_sym_DASH_GT_STAR] = ACTIONS(5002), }, - [STATE(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), + [STATE(1613)] = { + [sym_identifier] = ACTIONS(5022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5022), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym___extension__] = ACTIONS(5022), + [anon_sym_virtual] = ACTIONS(5022), + [anon_sym_extern] = ACTIONS(5022), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5024), + [anon_sym___declspec] = ACTIONS(5022), + [anon_sym___based] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_static] = ACTIONS(5022), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_register] = ACTIONS(5022), + [anon_sym_inline] = ACTIONS(5022), + [anon_sym___inline] = ACTIONS(5022), + [anon_sym___inline__] = ACTIONS(5022), + [anon_sym___forceinline] = ACTIONS(5022), + [anon_sym_thread_local] = ACTIONS(5022), + [anon_sym___thread] = ACTIONS(5022), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5022), + [anon_sym_volatile] = ACTIONS(5022), + [anon_sym_restrict] = ACTIONS(5022), + [anon_sym___restrict__] = ACTIONS(5022), + [anon_sym__Atomic] = ACTIONS(5022), + [anon_sym__Noreturn] = ACTIONS(5022), + [anon_sym_noreturn] = ACTIONS(5022), + [anon_sym__Nonnull] = ACTIONS(5022), + [anon_sym_mutable] = ACTIONS(5022), + [anon_sym_constinit] = ACTIONS(5022), + [anon_sym_consteval] = ACTIONS(5022), + [anon_sym_alignas] = ACTIONS(5022), + [anon_sym__Alignas] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_LT_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_GT_EQ] = ACTIONS(5024), + [anon_sym_AMP_EQ] = ACTIONS(5024), + [anon_sym_CARET_EQ] = ACTIONS(5024), + [anon_sym_PIPE_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5022), + [anon_sym_not_eq] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + [anon_sym_template] = ACTIONS(5022), + [anon_sym_operator] = ACTIONS(5022), + [anon_sym_DASH_GT_STAR] = ACTIONS(5024), + }, + [STATE(1614)] = { + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5018), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym_virtual] = ACTIONS(5018), + [anon_sym_extern] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5020), + [anon_sym___declspec] = ACTIONS(5018), + [anon_sym___based] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_static] = ACTIONS(5018), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_register] = ACTIONS(5018), + [anon_sym_inline] = ACTIONS(5018), + [anon_sym___inline] = ACTIONS(5018), + [anon_sym___inline__] = ACTIONS(5018), + [anon_sym___forceinline] = ACTIONS(5018), + [anon_sym_thread_local] = ACTIONS(5018), + [anon_sym___thread] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym__Nonnull] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [anon_sym_alignas] = ACTIONS(5018), + [anon_sym__Alignas] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_LT_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_GT_EQ] = ACTIONS(5020), + [anon_sym_AMP_EQ] = ACTIONS(5020), + [anon_sym_CARET_EQ] = ACTIONS(5020), + [anon_sym_PIPE_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5018), + [anon_sym_not_eq] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + [anon_sym_template] = ACTIONS(5018), + [anon_sym_operator] = ACTIONS(5018), + [anon_sym_DASH_GT_STAR] = ACTIONS(5020), + }, + [STATE(1615)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(1616)] = { + [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(4998), + [anon_sym_TILDE] = ACTIONS(4998), + [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(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4998), + [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___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(4998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), + [anon_sym___declspec] = ACTIONS(4996), + [anon_sym___based] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4996), + [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_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(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(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_DOT_STAR] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(4996), + [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), + }, + [STATE(1617)] = { + [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_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(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___declspec] = ACTIONS(4984), + [anon_sym___based] = ACTIONS(4984), + [anon_sym_LBRACE] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4984), + [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_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_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(4984), [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), + [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), }, - [STATE(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), + [STATE(1618)] = { + [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), + }, + [STATE(1619)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3038), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_sized_type_specifier_repeat1] = STATE(1951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4163), + [anon_sym_LPAREN2] = ACTIONS(4163), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4170), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4163), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym___extension__] = ACTIONS(4166), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_signed] = ACTIONS(5054), + [anon_sym_unsigned] = ACTIONS(5054), + [anon_sym_long] = ACTIONS(5054), + [anon_sym_short] = ACTIONS(5054), + [anon_sym_LBRACK] = ACTIONS(4163), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_const] = ACTIONS(4159), + [anon_sym_constexpr] = ACTIONS(4166), + [anon_sym_volatile] = ACTIONS(4166), + [anon_sym_restrict] = ACTIONS(4166), + [anon_sym___restrict__] = ACTIONS(4166), + [anon_sym__Atomic] = ACTIONS(4166), + [anon_sym__Noreturn] = ACTIONS(4166), + [anon_sym_noreturn] = ACTIONS(4166), + [anon_sym__Nonnull] = ACTIONS(4166), + [anon_sym_mutable] = ACTIONS(4166), + [anon_sym_constinit] = ACTIONS(4166), + [anon_sym_consteval] = ACTIONS(4166), + [anon_sym_alignas] = ACTIONS(4166), + [anon_sym__Alignas] = ACTIONS(4166), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4166), + [anon_sym_decltype] = ACTIONS(4166), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(1620)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [aux_sym_preproc_if_token2] = ACTIONS(5091), + [aux_sym_preproc_else_token1] = ACTIONS(5091), + [aux_sym_preproc_elif_token1] = ACTIONS(5089), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5091), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5091), + [anon_sym_LPAREN2] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_LT_LT] = ACTIONS(5089), + [anon_sym_GT_GT] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5089), + [anon_sym___attribute] = ACTIONS(5089), + [anon_sym_COLON] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_signed] = ACTIONS(5093), + [anon_sym_unsigned] = ACTIONS(5093), + [anon_sym_long] = ACTIONS(5093), + [anon_sym_short] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_LT_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_GT_EQ] = ACTIONS(5091), + [anon_sym_AMP_EQ] = ACTIONS(5091), + [anon_sym_CARET_EQ] = ACTIONS(5091), + [anon_sym_PIPE_EQ] = ACTIONS(5091), + [anon_sym_and_eq] = ACTIONS(5089), + [anon_sym_or_eq] = ACTIONS(5089), + [anon_sym_xor_eq] = ACTIONS(5089), + [anon_sym_LT_EQ_GT] = ACTIONS(5091), + [anon_sym_or] = ACTIONS(5089), + [anon_sym_and] = ACTIONS(5089), + [anon_sym_bitor] = ACTIONS(5089), + [anon_sym_xor] = ACTIONS(5089), + [anon_sym_bitand] = ACTIONS(5089), + [anon_sym_not_eq] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_DOT_STAR] = ACTIONS(5091), + [anon_sym_DASH_GT] = ACTIONS(5091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5089), + [anon_sym_decltype] = ACTIONS(5089), + }, + [STATE(1621)] = { + [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), + }, + [STATE(1622)] = { + [sym_identifier] = ACTIONS(5096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [aux_sym_preproc_if_token2] = ACTIONS(5098), + [aux_sym_preproc_else_token1] = ACTIONS(5098), + [aux_sym_preproc_elif_token1] = ACTIONS(5096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5098), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5098), + [anon_sym_LPAREN2] = ACTIONS(5098), + [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(5098), + [anon_sym_AMP_AMP] = ACTIONS(5098), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5098), + [anon_sym_BANG_EQ] = ACTIONS(5098), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5098), + [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(5098), + [anon_sym___extension__] = ACTIONS(5096), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5098), + [anon_sym_RBRACE] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(5096), + [anon_sym_unsigned] = ACTIONS(5096), + [anon_sym_long] = ACTIONS(5096), + [anon_sym_short] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5096), + [anon_sym_constexpr] = ACTIONS(5096), + [anon_sym_volatile] = ACTIONS(5096), + [anon_sym_restrict] = ACTIONS(5096), + [anon_sym___restrict__] = ACTIONS(5096), + [anon_sym__Atomic] = ACTIONS(5096), + [anon_sym__Noreturn] = ACTIONS(5096), + [anon_sym_noreturn] = ACTIONS(5096), + [anon_sym__Nonnull] = ACTIONS(5096), + [anon_sym_mutable] = ACTIONS(5096), + [anon_sym_constinit] = ACTIONS(5096), + [anon_sym_consteval] = ACTIONS(5096), + [anon_sym_alignas] = ACTIONS(5096), + [anon_sym__Alignas] = ACTIONS(5096), + [sym_primitive_type] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_STAR_EQ] = ACTIONS(5098), + [anon_sym_SLASH_EQ] = ACTIONS(5098), + [anon_sym_PERCENT_EQ] = ACTIONS(5098), + [anon_sym_PLUS_EQ] = ACTIONS(5098), + [anon_sym_DASH_EQ] = ACTIONS(5098), + [anon_sym_LT_LT_EQ] = ACTIONS(5098), + [anon_sym_GT_GT_EQ] = ACTIONS(5098), + [anon_sym_AMP_EQ] = ACTIONS(5098), + [anon_sym_CARET_EQ] = ACTIONS(5098), + [anon_sym_PIPE_EQ] = ACTIONS(5098), + [anon_sym_and_eq] = ACTIONS(5096), + [anon_sym_or_eq] = ACTIONS(5096), + [anon_sym_xor_eq] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5098), + [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(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5098), + [anon_sym_DASH_GT] = ACTIONS(5098), [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), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), }, - [STATE(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), + [STATE(1623)] = { + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [aux_sym_preproc_if_token2] = ACTIONS(2562), + [aux_sym_preproc_else_token1] = ACTIONS(2562), + [aux_sym_preproc_elif_token1] = ACTIONS(2572), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2562), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_RBRACK] = ACTIONS(2562), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2562), + [anon_sym_STAR_EQ] = ACTIONS(2562), + [anon_sym_SLASH_EQ] = ACTIONS(2562), + [anon_sym_PERCENT_EQ] = ACTIONS(2562), + [anon_sym_PLUS_EQ] = ACTIONS(2562), + [anon_sym_DASH_EQ] = ACTIONS(2562), + [anon_sym_LT_LT_EQ] = ACTIONS(2562), + [anon_sym_GT_GT_EQ] = ACTIONS(2562), + [anon_sym_AMP_EQ] = ACTIONS(2562), + [anon_sym_CARET_EQ] = ACTIONS(2562), + [anon_sym_PIPE_EQ] = ACTIONS(2562), + [anon_sym_and_eq] = ACTIONS(2572), + [anon_sym_or_eq] = ACTIONS(2572), + [anon_sym_xor_eq] = ACTIONS(2572), + [anon_sym_LT_EQ_GT] = ACTIONS(2562), + [anon_sym_or] = ACTIONS(2572), + [anon_sym_and] = ACTIONS(2572), + [anon_sym_bitor] = ACTIONS(2572), + [anon_sym_xor] = ACTIONS(2572), + [anon_sym_bitand] = ACTIONS(2572), + [anon_sym_not_eq] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DOT] = ACTIONS(2572), + [anon_sym_DOT_STAR] = ACTIONS(2562), + [anon_sym_DASH_GT] = ACTIONS(2562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2572), + }, + [STATE(1624)] = { + [sym_type_qualifier] = STATE(1609), + [sym_alignas_qualifier] = STATE(1623), + [aux_sym__type_definition_type_repeat1] = STATE(1609), + [aux_sym_sized_type_specifier_repeat1] = STATE(2381), + [sym_identifier] = ACTIONS(5100), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5102), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5102), + [anon_sym_BANG_EQ] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5104), + [anon_sym_SEMI] = ACTIONS(5102), + [anon_sym___extension__] = ACTIONS(5106), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_RBRACE] = ACTIONS(5102), + [anon_sym_signed] = ACTIONS(5108), + [anon_sym_unsigned] = ACTIONS(5108), + [anon_sym_long] = ACTIONS(5108), + [anon_sym_short] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5104), + [anon_sym_const] = ACTIONS(5106), + [anon_sym_constexpr] = ACTIONS(5106), + [anon_sym_volatile] = ACTIONS(5106), + [anon_sym_restrict] = ACTIONS(5106), + [anon_sym___restrict__] = ACTIONS(5106), + [anon_sym__Atomic] = ACTIONS(5106), + [anon_sym__Noreturn] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym__Nonnull] = ACTIONS(5106), + [anon_sym_mutable] = ACTIONS(5106), + [anon_sym_constinit] = ACTIONS(5106), + [anon_sym_consteval] = ACTIONS(5106), + [anon_sym_alignas] = ACTIONS(5110), + [anon_sym__Alignas] = ACTIONS(5110), + [sym_primitive_type] = ACTIONS(5112), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_STAR_EQ] = ACTIONS(5102), + [anon_sym_SLASH_EQ] = ACTIONS(5102), + [anon_sym_PERCENT_EQ] = ACTIONS(5102), + [anon_sym_PLUS_EQ] = ACTIONS(5102), + [anon_sym_DASH_EQ] = ACTIONS(5102), + [anon_sym_LT_LT_EQ] = ACTIONS(5102), + [anon_sym_GT_GT_EQ] = ACTIONS(5102), + [anon_sym_AMP_EQ] = ACTIONS(5102), + [anon_sym_CARET_EQ] = ACTIONS(5102), + [anon_sym_PIPE_EQ] = ACTIONS(5102), + [anon_sym_and_eq] = ACTIONS(5104), + [anon_sym_or_eq] = ACTIONS(5104), + [anon_sym_xor_eq] = ACTIONS(5104), + [anon_sym_LT_EQ_GT] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5102), + [anon_sym_DASH_GT] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + }, + [STATE(1625)] = { + [sym_type_qualifier] = STATE(1609), + [sym_alignas_qualifier] = STATE(1623), + [aux_sym__type_definition_type_repeat1] = STATE(1609), + [aux_sym_sized_type_specifier_repeat1] = STATE(2299), + [sym_identifier] = ACTIONS(5114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [aux_sym_preproc_if_token2] = ACTIONS(5102), + [aux_sym_preproc_else_token1] = ACTIONS(5102), + [aux_sym_preproc_elif_token1] = ACTIONS(5104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5102), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5102), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5102), + [anon_sym_BANG_EQ] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5104), + [anon_sym___extension__] = ACTIONS(5106), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_signed] = ACTIONS(5117), + [anon_sym_unsigned] = ACTIONS(5117), + [anon_sym_long] = ACTIONS(5117), + [anon_sym_short] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5104), + [anon_sym_const] = ACTIONS(5106), + [anon_sym_constexpr] = ACTIONS(5106), + [anon_sym_volatile] = ACTIONS(5106), + [anon_sym_restrict] = ACTIONS(5106), + [anon_sym___restrict__] = ACTIONS(5106), + [anon_sym__Atomic] = ACTIONS(5106), + [anon_sym__Noreturn] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym__Nonnull] = ACTIONS(5106), + [anon_sym_mutable] = ACTIONS(5106), + [anon_sym_constinit] = ACTIONS(5106), + [anon_sym_consteval] = ACTIONS(5106), + [anon_sym_alignas] = ACTIONS(5110), + [anon_sym__Alignas] = ACTIONS(5110), + [sym_primitive_type] = ACTIONS(5119), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_STAR_EQ] = ACTIONS(5102), + [anon_sym_SLASH_EQ] = ACTIONS(5102), + [anon_sym_PERCENT_EQ] = ACTIONS(5102), + [anon_sym_PLUS_EQ] = ACTIONS(5102), + [anon_sym_DASH_EQ] = ACTIONS(5102), + [anon_sym_LT_LT_EQ] = ACTIONS(5102), + [anon_sym_GT_GT_EQ] = ACTIONS(5102), + [anon_sym_AMP_EQ] = ACTIONS(5102), + [anon_sym_CARET_EQ] = ACTIONS(5102), + [anon_sym_PIPE_EQ] = ACTIONS(5102), + [anon_sym_and_eq] = ACTIONS(5104), + [anon_sym_or_eq] = ACTIONS(5104), + [anon_sym_xor_eq] = ACTIONS(5104), + [anon_sym_LT_EQ_GT] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5102), + [anon_sym_DASH_GT] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + }, + [STATE(1626)] = { + [sym_type_qualifier] = STATE(1624), + [sym_alignas_qualifier] = STATE(1623), + [aux_sym__type_definition_type_repeat1] = STATE(1624), + [aux_sym_sized_type_specifier_repeat1] = STATE(1649), + [sym_identifier] = ACTIONS(5121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(5123), + [anon_sym_LPAREN2] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym___extension__] = ACTIONS(5106), + [anon_sym___attribute__] = ACTIONS(5125), + [anon_sym___attribute] = ACTIONS(5125), + [anon_sym_COLON] = ACTIONS(5123), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), + [anon_sym_signed] = ACTIONS(5127), + [anon_sym_unsigned] = ACTIONS(5127), + [anon_sym_long] = ACTIONS(5127), + [anon_sym_short] = ACTIONS(5127), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_RBRACK] = ACTIONS(5123), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_const] = ACTIONS(5106), + [anon_sym_constexpr] = ACTIONS(5106), + [anon_sym_volatile] = ACTIONS(5106), + [anon_sym_restrict] = ACTIONS(5106), + [anon_sym___restrict__] = ACTIONS(5106), + [anon_sym__Atomic] = ACTIONS(5106), + [anon_sym__Noreturn] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym__Nonnull] = ACTIONS(5106), + [anon_sym_mutable] = ACTIONS(5106), + [anon_sym_constinit] = ACTIONS(5106), + [anon_sym_consteval] = ACTIONS(5106), + [anon_sym_alignas] = ACTIONS(5110), + [anon_sym__Alignas] = ACTIONS(5110), + [sym_primitive_type] = ACTIONS(5129), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_LT_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_GT_EQ] = ACTIONS(5123), + [anon_sym_AMP_EQ] = ACTIONS(5123), + [anon_sym_CARET_EQ] = ACTIONS(5123), + [anon_sym_PIPE_EQ] = ACTIONS(5123), + [anon_sym_and_eq] = ACTIONS(5125), + [anon_sym_or_eq] = ACTIONS(5125), + [anon_sym_xor_eq] = ACTIONS(5125), + [anon_sym_LT_EQ_GT] = ACTIONS(5123), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_bitor] = ACTIONS(5125), + [anon_sym_xor] = ACTIONS(5125), + [anon_sym_bitand] = ACTIONS(5125), + [anon_sym_not_eq] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_DOT_STAR] = ACTIONS(5123), + [anon_sym_DASH_GT] = ACTIONS(5123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5125), + [anon_sym_decltype] = ACTIONS(5125), + }, + [STATE(1627)] = { + [sym_type_qualifier] = STATE(1625), + [sym_alignas_qualifier] = STATE(1623), + [aux_sym__type_definition_type_repeat1] = STATE(1625), + [aux_sym_sized_type_specifier_repeat1] = STATE(1638), + [sym_identifier] = ACTIONS(5131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [aux_sym_preproc_if_token2] = ACTIONS(5123), + [aux_sym_preproc_else_token1] = ACTIONS(5123), + [aux_sym_preproc_elif_token1] = ACTIONS(5125), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5123), + [anon_sym_LPAREN2] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5125), + [anon_sym___extension__] = ACTIONS(5106), + [anon_sym___attribute__] = ACTIONS(5125), + [anon_sym___attribute] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_signed] = ACTIONS(5134), + [anon_sym_unsigned] = ACTIONS(5134), + [anon_sym_long] = ACTIONS(5134), + [anon_sym_short] = ACTIONS(5134), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_const] = ACTIONS(5106), + [anon_sym_constexpr] = ACTIONS(5106), + [anon_sym_volatile] = ACTIONS(5106), + [anon_sym_restrict] = ACTIONS(5106), + [anon_sym___restrict__] = ACTIONS(5106), + [anon_sym__Atomic] = ACTIONS(5106), + [anon_sym__Noreturn] = ACTIONS(5106), + [anon_sym_noreturn] = ACTIONS(5106), + [anon_sym__Nonnull] = ACTIONS(5106), + [anon_sym_mutable] = ACTIONS(5106), + [anon_sym_constinit] = ACTIONS(5106), + [anon_sym_consteval] = ACTIONS(5106), + [anon_sym_alignas] = ACTIONS(5110), + [anon_sym__Alignas] = ACTIONS(5110), + [sym_primitive_type] = ACTIONS(5136), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_LT_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_GT_EQ] = ACTIONS(5123), + [anon_sym_AMP_EQ] = ACTIONS(5123), + [anon_sym_CARET_EQ] = ACTIONS(5123), + [anon_sym_PIPE_EQ] = ACTIONS(5123), + [anon_sym_and_eq] = ACTIONS(5125), + [anon_sym_or_eq] = ACTIONS(5125), + [anon_sym_xor_eq] = ACTIONS(5125), + [anon_sym_LT_EQ_GT] = ACTIONS(5123), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_bitor] = ACTIONS(5125), + [anon_sym_xor] = ACTIONS(5125), + [anon_sym_bitand] = ACTIONS(5125), + [anon_sym_not_eq] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_DOT_STAR] = ACTIONS(5123), + [anon_sym_DASH_GT] = ACTIONS(5123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5125), + [anon_sym_decltype] = ACTIONS(5125), + }, + [STATE(1628)] = { + [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), + [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), + }, + [STATE(1629)] = { + [sym_identifier] = ACTIONS(5022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [aux_sym_preproc_if_token2] = ACTIONS(5024), + [aux_sym_preproc_else_token1] = ACTIONS(5024), + [aux_sym_preproc_elif_token1] = ACTIONS(5022), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5024), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5022), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5022), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5022), + [anon_sym_volatile] = ACTIONS(5022), + [anon_sym_restrict] = ACTIONS(5022), + [anon_sym___restrict__] = ACTIONS(5022), + [anon_sym__Atomic] = ACTIONS(5022), + [anon_sym__Noreturn] = ACTIONS(5022), + [anon_sym_noreturn] = ACTIONS(5022), + [anon_sym__Nonnull] = ACTIONS(5022), + [anon_sym_mutable] = ACTIONS(5022), + [anon_sym_constinit] = ACTIONS(5022), + [anon_sym_consteval] = ACTIONS(5022), + [anon_sym_alignas] = ACTIONS(5022), + [anon_sym__Alignas] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_LT_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_GT_EQ] = ACTIONS(5024), + [anon_sym_AMP_EQ] = ACTIONS(5024), + [anon_sym_CARET_EQ] = ACTIONS(5024), + [anon_sym_PIPE_EQ] = ACTIONS(5024), + [anon_sym_and_eq] = ACTIONS(5022), + [anon_sym_or_eq] = ACTIONS(5022), + [anon_sym_xor_eq] = ACTIONS(5022), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5022), + [anon_sym_not_eq] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + [anon_sym_final] = ACTIONS(5022), + [anon_sym_override] = ACTIONS(5022), + }, + [STATE(1630)] = { + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [aux_sym_preproc_if_token2] = ACTIONS(5020), + [aux_sym_preproc_else_token1] = ACTIONS(5020), + [aux_sym_preproc_elif_token1] = ACTIONS(5018), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5020), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5018), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym__Nonnull] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [anon_sym_alignas] = ACTIONS(5018), + [anon_sym__Alignas] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_LT_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_GT_EQ] = ACTIONS(5020), + [anon_sym_AMP_EQ] = ACTIONS(5020), + [anon_sym_CARET_EQ] = ACTIONS(5020), + [anon_sym_PIPE_EQ] = ACTIONS(5020), + [anon_sym_and_eq] = ACTIONS(5018), + [anon_sym_or_eq] = ACTIONS(5018), + [anon_sym_xor_eq] = ACTIONS(5018), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5018), + [anon_sym_not_eq] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + [anon_sym_final] = ACTIONS(5018), + [anon_sym_override] = ACTIONS(5018), + }, + [STATE(1631)] = { + [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), + }, + [STATE(1632)] = { + [sym_identifier] = ACTIONS(4996), + [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(4996), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4998), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [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(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4998), + [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(4998), + [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(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [anon_sym_EQ] = 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(4996), + [anon_sym_or_eq] = ACTIONS(4996), + [anon_sym_xor_eq] = ACTIONS(4996), + [anon_sym_LT_EQ_GT] = ACTIONS(4998), + [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(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [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_final] = ACTIONS(4996), + [anon_sym_override] = ACTIONS(4996), + }, + [STATE(1633)] = { + [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_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_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_LBRACE] = ACTIONS(4986), + [anon_sym_RBRACE] = ACTIONS(4986), + [anon_sym_LBRACK] = ACTIONS(4986), + [anon_sym_RBRACK] = ACTIONS(4986), + [anon_sym_EQ] = 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(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_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), + }, + [STATE(1634)] = { + [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), + }, + [STATE(1635)] = { + [sym_identifier] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_RPAREN] = ACTIONS(5007), + [anon_sym_LPAREN2] = ACTIONS(5007), + [anon_sym_TILDE] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_AMP] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_using] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5007), + [anon_sym___declspec] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(5000), + [anon_sym___cdecl] = ACTIONS(5000), + [anon_sym___clrcall] = ACTIONS(5000), + [anon_sym___stdcall] = ACTIONS(5000), + [anon_sym___fastcall] = ACTIONS(5000), + [anon_sym___thiscall] = ACTIONS(5000), + [anon_sym___vectorcall] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_signed] = ACTIONS(5000), + [anon_sym_unsigned] = ACTIONS(5000), + [anon_sym_long] = ACTIONS(5000), + [anon_sym_short] = ACTIONS(5000), + [anon_sym_LBRACK] = ACTIONS(5000), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5007), + [anon_sym_register] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym___inline] = ACTIONS(5000), + [anon_sym___inline__] = ACTIONS(5000), + [anon_sym___forceinline] = ACTIONS(5000), + [anon_sym_thread_local] = ACTIONS(5000), + [anon_sym___thread] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [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), + [sym_primitive_type] = ACTIONS(5000), + [anon_sym_enum] = ACTIONS(5000), + [anon_sym_class] = ACTIONS(5000), + [anon_sym_struct] = ACTIONS(5000), + [anon_sym_union] = ACTIONS(5000), + [anon_sym_or] = ACTIONS(5000), + [anon_sym_and] = ACTIONS(5000), + [anon_sym_asm] = ACTIONS(5000), + [anon_sym___asm__] = ACTIONS(5000), + [anon_sym___asm] = ACTIONS(5000), + [anon_sym_DASH_GT] = ACTIONS(5007), + [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_explicit] = ACTIONS(5000), + [anon_sym_typename] = ACTIONS(5000), + [anon_sym_template] = ACTIONS(5000), + [anon_sym_GT2] = ACTIONS(5007), + [anon_sym_operator] = ACTIONS(5000), + [anon_sym_try] = ACTIONS(5000), + [anon_sym_friend] = ACTIONS(5000), + [anon_sym_noexcept] = ACTIONS(5000), + [anon_sym_throw] = ACTIONS(5000), + [anon_sym_concept] = ACTIONS(5000), + [anon_sym_requires] = ACTIONS(5000), + }, + [STATE(1636)] = { + [sym_identifier] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5004), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5004), + [anon_sym___declspec] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(5000), + [anon_sym___cdecl] = ACTIONS(5000), + [anon_sym___clrcall] = ACTIONS(5000), + [anon_sym___stdcall] = ACTIONS(5000), + [anon_sym___fastcall] = ACTIONS(5000), + [anon_sym___thiscall] = ACTIONS(5000), + [anon_sym___vectorcall] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_register] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym___inline] = ACTIONS(5000), + [anon_sym___inline__] = ACTIONS(5000), + [anon_sym___forceinline] = ACTIONS(5000), + [anon_sym_thread_local] = ACTIONS(5000), + [anon_sym___thread] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [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(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5009), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5009), + [anon_sym_not_eq] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_template] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), + }, + [STATE(1637)] = { + [sym_identifier] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_TILDE] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5007), + [anon_sym___declspec] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(5000), + [anon_sym___cdecl] = ACTIONS(5000), + [anon_sym___clrcall] = ACTIONS(5000), + [anon_sym___stdcall] = ACTIONS(5000), + [anon_sym___fastcall] = ACTIONS(5000), + [anon_sym___thiscall] = ACTIONS(5000), + [anon_sym___vectorcall] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_register] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym___inline] = ACTIONS(5000), + [anon_sym___inline__] = ACTIONS(5000), + [anon_sym___forceinline] = ACTIONS(5000), + [anon_sym_thread_local] = ACTIONS(5000), + [anon_sym___thread] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [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(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5009), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5009), + [anon_sym_not_eq] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), [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), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_template] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), }, - [STATE(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), + [STATE(1638)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), + [sym_identifier] = ACTIONS(5138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [aux_sym_preproc_if_token2] = ACTIONS(5141), + [aux_sym_preproc_else_token1] = ACTIONS(5141), + [aux_sym_preproc_elif_token1] = ACTIONS(5138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5141), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5141), + [anon_sym_LPAREN2] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5138), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5138), + [anon_sym___attribute] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_signed] = ACTIONS(5093), + [anon_sym_unsigned] = ACTIONS(5093), + [anon_sym_long] = ACTIONS(5093), + [anon_sym_short] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_LT_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_GT_EQ] = ACTIONS(5141), + [anon_sym_AMP_EQ] = ACTIONS(5141), + [anon_sym_CARET_EQ] = ACTIONS(5141), + [anon_sym_PIPE_EQ] = ACTIONS(5141), + [anon_sym_and_eq] = ACTIONS(5138), + [anon_sym_or_eq] = ACTIONS(5138), + [anon_sym_xor_eq] = ACTIONS(5138), + [anon_sym_LT_EQ_GT] = ACTIONS(5141), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_bitor] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_bitand] = ACTIONS(5138), + [anon_sym_not_eq] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_STAR] = ACTIONS(5141), + [anon_sym_DASH_GT] = ACTIONS(5141), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5138), + [anon_sym_decltype] = ACTIONS(5138), + }, + [STATE(1639)] = { + [sym_identifier] = ACTIONS(5144), + [anon_sym_COMMA] = ACTIONS(5146), + [anon_sym_RPAREN] = ACTIONS(5146), + [anon_sym_LPAREN2] = ACTIONS(5146), + [anon_sym_TILDE] = ACTIONS(5146), + [anon_sym_STAR] = ACTIONS(5146), + [anon_sym_PIPE_PIPE] = ACTIONS(5146), + [anon_sym_AMP_AMP] = ACTIONS(5146), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(5146), + [anon_sym___extension__] = ACTIONS(5144), + [anon_sym_virtual] = ACTIONS(5144), + [anon_sym_extern] = ACTIONS(5144), + [anon_sym___attribute__] = ACTIONS(5144), + [anon_sym___attribute] = ACTIONS(5144), + [anon_sym_using] = ACTIONS(5144), + [anon_sym_COLON_COLON] = ACTIONS(5146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5146), + [anon_sym___declspec] = ACTIONS(5144), + [anon_sym___based] = ACTIONS(5144), + [anon_sym___cdecl] = ACTIONS(5144), + [anon_sym___clrcall] = ACTIONS(5144), + [anon_sym___stdcall] = ACTIONS(5144), + [anon_sym___fastcall] = ACTIONS(5144), + [anon_sym___thiscall] = ACTIONS(5144), + [anon_sym___vectorcall] = ACTIONS(5144), + [anon_sym_LBRACE] = ACTIONS(5146), + [anon_sym_signed] = ACTIONS(5144), + [anon_sym_unsigned] = ACTIONS(5144), + [anon_sym_long] = ACTIONS(5144), + [anon_sym_short] = ACTIONS(5144), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_static] = ACTIONS(5144), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_register] = ACTIONS(5144), + [anon_sym_inline] = ACTIONS(5144), + [anon_sym___inline] = ACTIONS(5144), + [anon_sym___inline__] = ACTIONS(5144), + [anon_sym___forceinline] = ACTIONS(5144), + [anon_sym_thread_local] = ACTIONS(5144), + [anon_sym___thread] = ACTIONS(5144), + [anon_sym_const] = ACTIONS(5144), + [anon_sym_constexpr] = ACTIONS(5144), + [anon_sym_volatile] = ACTIONS(5144), + [anon_sym_restrict] = ACTIONS(5144), + [anon_sym___restrict__] = ACTIONS(5144), + [anon_sym__Atomic] = ACTIONS(5144), + [anon_sym__Noreturn] = ACTIONS(5144), + [anon_sym_noreturn] = ACTIONS(5144), + [anon_sym__Nonnull] = ACTIONS(5144), + [anon_sym_mutable] = ACTIONS(5144), + [anon_sym_constinit] = ACTIONS(5144), + [anon_sym_consteval] = ACTIONS(5144), + [anon_sym_alignas] = ACTIONS(5144), + [anon_sym__Alignas] = ACTIONS(5144), + [sym_primitive_type] = ACTIONS(5144), + [anon_sym_enum] = ACTIONS(5144), + [anon_sym_class] = ACTIONS(5144), + [anon_sym_struct] = ACTIONS(5144), + [anon_sym_union] = ACTIONS(5144), + [anon_sym_or] = ACTIONS(5144), + [anon_sym_and] = ACTIONS(5144), + [anon_sym_asm] = ACTIONS(5144), + [anon_sym___asm__] = ACTIONS(5144), + [anon_sym___asm] = ACTIONS(5144), + [anon_sym_DASH_GT] = ACTIONS(5146), [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), + [sym_auto] = ACTIONS(5144), + [anon_sym_decltype] = ACTIONS(5144), + [anon_sym_final] = ACTIONS(5144), + [anon_sym_override] = ACTIONS(5144), + [anon_sym_explicit] = ACTIONS(5144), + [anon_sym_typename] = ACTIONS(5144), + [anon_sym_template] = ACTIONS(5144), + [anon_sym_GT2] = ACTIONS(5146), + [anon_sym_operator] = ACTIONS(5144), + [anon_sym_try] = ACTIONS(5144), + [anon_sym_friend] = ACTIONS(5144), + [anon_sym_noexcept] = ACTIONS(5144), + [anon_sym_throw] = ACTIONS(5144), + [anon_sym_concept] = ACTIONS(5144), + [anon_sym_requires] = ACTIONS(5144), }, - [STATE(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), + [STATE(1640)] = { + [sym_type_qualifier] = STATE(1657), + [sym_alignas_qualifier] = STATE(1689), + [aux_sym__type_definition_type_repeat1] = STATE(1657), + [aux_sym_sized_type_specifier_repeat1] = STATE(2600), + [sym_identifier] = ACTIONS(5148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5102), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5102), + [anon_sym_BANG_EQ] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5104), + [anon_sym___extension__] = ACTIONS(5150), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_signed] = ACTIONS(5152), + [anon_sym_unsigned] = ACTIONS(5152), + [anon_sym_long] = ACTIONS(5152), + [anon_sym_short] = ACTIONS(5152), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5104), + [anon_sym_const] = ACTIONS(5150), + [anon_sym_constexpr] = ACTIONS(5150), + [anon_sym_volatile] = ACTIONS(5150), + [anon_sym_restrict] = ACTIONS(5150), + [anon_sym___restrict__] = ACTIONS(5150), + [anon_sym__Atomic] = ACTIONS(5150), + [anon_sym__Noreturn] = ACTIONS(5150), + [anon_sym_noreturn] = ACTIONS(5150), + [anon_sym__Nonnull] = ACTIONS(5150), + [anon_sym_mutable] = ACTIONS(5150), + [anon_sym_constinit] = ACTIONS(5150), + [anon_sym_consteval] = ACTIONS(5150), + [anon_sym_alignas] = ACTIONS(5154), + [anon_sym__Alignas] = ACTIONS(5154), + [sym_primitive_type] = ACTIONS(5156), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_STAR_EQ] = ACTIONS(5102), + [anon_sym_SLASH_EQ] = ACTIONS(5102), + [anon_sym_PERCENT_EQ] = ACTIONS(5102), + [anon_sym_PLUS_EQ] = ACTIONS(5102), + [anon_sym_DASH_EQ] = ACTIONS(5102), + [anon_sym_LT_LT_EQ] = ACTIONS(5102), + [anon_sym_GT_GT_EQ] = ACTIONS(5102), + [anon_sym_AMP_EQ] = ACTIONS(5102), + [anon_sym_CARET_EQ] = ACTIONS(5102), + [anon_sym_PIPE_EQ] = ACTIONS(5102), + [anon_sym_and_eq] = ACTIONS(5104), + [anon_sym_or_eq] = ACTIONS(5104), + [anon_sym_xor_eq] = ACTIONS(5104), + [anon_sym_LT_EQ_GT] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5102), + [anon_sym_DASH_GT] = ACTIONS(5104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + [anon_sym_DASH_GT_STAR] = ACTIONS(5102), + }, + [STATE(1641)] = { + [sym_identifier] = ACTIONS(5158), + [anon_sym_COMMA] = ACTIONS(5160), + [anon_sym_RPAREN] = ACTIONS(5160), + [anon_sym_LPAREN2] = ACTIONS(5160), + [anon_sym_TILDE] = ACTIONS(5160), + [anon_sym_STAR] = ACTIONS(5160), + [anon_sym_PIPE_PIPE] = ACTIONS(5160), + [anon_sym_AMP_AMP] = ACTIONS(5160), + [anon_sym_AMP] = ACTIONS(5158), + [anon_sym_SEMI] = ACTIONS(5160), + [anon_sym___extension__] = ACTIONS(5158), + [anon_sym_virtual] = ACTIONS(5158), + [anon_sym_extern] = ACTIONS(5158), + [anon_sym___attribute__] = ACTIONS(5158), + [anon_sym___attribute] = ACTIONS(5158), + [anon_sym_using] = ACTIONS(5158), + [anon_sym_COLON_COLON] = ACTIONS(5160), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5160), + [anon_sym___declspec] = ACTIONS(5158), + [anon_sym___based] = ACTIONS(5158), + [anon_sym___cdecl] = ACTIONS(5158), + [anon_sym___clrcall] = ACTIONS(5158), + [anon_sym___stdcall] = ACTIONS(5158), + [anon_sym___fastcall] = ACTIONS(5158), + [anon_sym___thiscall] = ACTIONS(5158), + [anon_sym___vectorcall] = ACTIONS(5158), + [anon_sym_LBRACE] = ACTIONS(5160), + [anon_sym_signed] = ACTIONS(5158), + [anon_sym_unsigned] = ACTIONS(5158), + [anon_sym_long] = ACTIONS(5158), + [anon_sym_short] = ACTIONS(5158), + [anon_sym_LBRACK] = ACTIONS(5158), + [anon_sym_static] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5160), + [anon_sym_register] = ACTIONS(5158), + [anon_sym_inline] = ACTIONS(5158), + [anon_sym___inline] = ACTIONS(5158), + [anon_sym___inline__] = ACTIONS(5158), + [anon_sym___forceinline] = ACTIONS(5158), + [anon_sym_thread_local] = ACTIONS(5158), + [anon_sym___thread] = ACTIONS(5158), + [anon_sym_const] = ACTIONS(5158), + [anon_sym_constexpr] = ACTIONS(5158), + [anon_sym_volatile] = ACTIONS(5158), + [anon_sym_restrict] = ACTIONS(5158), + [anon_sym___restrict__] = ACTIONS(5158), + [anon_sym__Atomic] = ACTIONS(5158), + [anon_sym__Noreturn] = ACTIONS(5158), + [anon_sym_noreturn] = ACTIONS(5158), + [anon_sym__Nonnull] = ACTIONS(5158), + [anon_sym_mutable] = ACTIONS(5158), + [anon_sym_constinit] = ACTIONS(5158), + [anon_sym_consteval] = ACTIONS(5158), + [anon_sym_alignas] = ACTIONS(5158), + [anon_sym__Alignas] = ACTIONS(5158), + [sym_primitive_type] = ACTIONS(5158), + [anon_sym_enum] = ACTIONS(5158), + [anon_sym_class] = ACTIONS(5158), + [anon_sym_struct] = ACTIONS(5158), + [anon_sym_union] = ACTIONS(5158), + [anon_sym_or] = ACTIONS(5158), + [anon_sym_and] = ACTIONS(5158), + [anon_sym_asm] = ACTIONS(5158), + [anon_sym___asm__] = ACTIONS(5158), + [anon_sym___asm] = ACTIONS(5158), + [anon_sym_DASH_GT] = ACTIONS(5160), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5158), + [anon_sym_decltype] = ACTIONS(5158), + [anon_sym_final] = ACTIONS(5158), + [anon_sym_override] = ACTIONS(5158), + [anon_sym_explicit] = ACTIONS(5158), + [anon_sym_typename] = ACTIONS(5158), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(5160), + [anon_sym_operator] = ACTIONS(5158), + [anon_sym_try] = ACTIONS(5158), + [anon_sym_friend] = ACTIONS(5158), + [anon_sym_noexcept] = ACTIONS(5158), + [anon_sym_throw] = ACTIONS(5158), + [anon_sym_concept] = ACTIONS(5158), + [anon_sym_requires] = ACTIONS(5158), + }, + [STATE(1642)] = { + [sym_identifier] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5164), + [anon_sym_RPAREN] = ACTIONS(5164), + [anon_sym_LPAREN2] = ACTIONS(5164), + [anon_sym_TILDE] = 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_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(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), + [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), }, - [STATE(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), + [STATE(1643)] = { + [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), + }, + [STATE(1644)] = { + [sym_identifier] = ACTIONS(5170), + [anon_sym_COMMA] = ACTIONS(5172), + [anon_sym_RPAREN] = ACTIONS(5172), + [anon_sym_LPAREN2] = ACTIONS(5172), + [anon_sym_TILDE] = ACTIONS(5172), + [anon_sym_STAR] = ACTIONS(5172), + [anon_sym_PIPE_PIPE] = ACTIONS(5172), + [anon_sym_AMP_AMP] = ACTIONS(5172), + [anon_sym_AMP] = ACTIONS(5170), + [anon_sym_SEMI] = ACTIONS(5172), + [anon_sym___extension__] = ACTIONS(5170), + [anon_sym_virtual] = ACTIONS(5170), + [anon_sym_extern] = ACTIONS(5170), + [anon_sym___attribute__] = ACTIONS(5170), + [anon_sym___attribute] = ACTIONS(5170), + [anon_sym_using] = ACTIONS(5170), + [anon_sym_COLON_COLON] = ACTIONS(5172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5172), + [anon_sym___declspec] = ACTIONS(5170), + [anon_sym___based] = ACTIONS(5170), + [anon_sym___cdecl] = ACTIONS(5170), + [anon_sym___clrcall] = ACTIONS(5170), + [anon_sym___stdcall] = ACTIONS(5170), + [anon_sym___fastcall] = ACTIONS(5170), + [anon_sym___thiscall] = ACTIONS(5170), + [anon_sym___vectorcall] = ACTIONS(5170), + [anon_sym_LBRACE] = ACTIONS(5172), + [anon_sym_signed] = ACTIONS(5170), + [anon_sym_unsigned] = ACTIONS(5170), + [anon_sym_long] = ACTIONS(5170), + [anon_sym_short] = ACTIONS(5170), + [anon_sym_LBRACK] = ACTIONS(5170), + [anon_sym_static] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5172), + [anon_sym_register] = ACTIONS(5170), + [anon_sym_inline] = ACTIONS(5170), + [anon_sym___inline] = ACTIONS(5170), + [anon_sym___inline__] = ACTIONS(5170), + [anon_sym___forceinline] = ACTIONS(5170), + [anon_sym_thread_local] = ACTIONS(5170), + [anon_sym___thread] = ACTIONS(5170), + [anon_sym_const] = ACTIONS(5170), + [anon_sym_constexpr] = ACTIONS(5170), + [anon_sym_volatile] = ACTIONS(5170), + [anon_sym_restrict] = ACTIONS(5170), + [anon_sym___restrict__] = ACTIONS(5170), + [anon_sym__Atomic] = ACTIONS(5170), + [anon_sym__Noreturn] = ACTIONS(5170), + [anon_sym_noreturn] = ACTIONS(5170), + [anon_sym__Nonnull] = ACTIONS(5170), + [anon_sym_mutable] = ACTIONS(5170), + [anon_sym_constinit] = ACTIONS(5170), + [anon_sym_consteval] = ACTIONS(5170), + [anon_sym_alignas] = ACTIONS(5170), + [anon_sym__Alignas] = ACTIONS(5170), + [sym_primitive_type] = ACTIONS(5170), + [anon_sym_enum] = ACTIONS(5170), + [anon_sym_class] = ACTIONS(5170), + [anon_sym_struct] = ACTIONS(5170), + [anon_sym_union] = ACTIONS(5170), + [anon_sym_or] = ACTIONS(5170), + [anon_sym_and] = ACTIONS(5170), + [anon_sym_asm] = ACTIONS(5170), + [anon_sym___asm__] = ACTIONS(5170), + [anon_sym___asm] = ACTIONS(5170), + [anon_sym_DASH_GT] = ACTIONS(5172), [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), + [sym_auto] = ACTIONS(5170), + [anon_sym_decltype] = ACTIONS(5170), + [anon_sym_final] = ACTIONS(5170), + [anon_sym_override] = ACTIONS(5170), + [anon_sym_explicit] = ACTIONS(5170), + [anon_sym_typename] = ACTIONS(5170), + [anon_sym_template] = ACTIONS(5170), + [anon_sym_GT2] = ACTIONS(5172), + [anon_sym_operator] = ACTIONS(5170), + [anon_sym_try] = ACTIONS(5170), + [anon_sym_friend] = ACTIONS(5170), + [anon_sym_noexcept] = ACTIONS(5170), + [anon_sym_throw] = ACTIONS(5170), + [anon_sym_concept] = ACTIONS(5170), + [anon_sym_requires] = ACTIONS(5170), }, - [STATE(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), + [STATE(1645)] = { + [sym_identifier] = ACTIONS(5174), + [anon_sym_COMMA] = ACTIONS(5176), + [anon_sym_RPAREN] = ACTIONS(5176), + [anon_sym_LPAREN2] = ACTIONS(5176), + [anon_sym_TILDE] = ACTIONS(5176), + [anon_sym_STAR] = ACTIONS(5176), + [anon_sym_PIPE_PIPE] = ACTIONS(5176), + [anon_sym_AMP_AMP] = ACTIONS(5176), + [anon_sym_AMP] = ACTIONS(5174), + [anon_sym_SEMI] = ACTIONS(5176), + [anon_sym___extension__] = ACTIONS(5174), + [anon_sym_virtual] = ACTIONS(5174), + [anon_sym_extern] = ACTIONS(5174), + [anon_sym___attribute__] = ACTIONS(5174), + [anon_sym___attribute] = ACTIONS(5174), + [anon_sym_using] = ACTIONS(5174), + [anon_sym_COLON_COLON] = ACTIONS(5176), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5176), + [anon_sym___declspec] = ACTIONS(5174), + [anon_sym___based] = ACTIONS(5174), + [anon_sym___cdecl] = ACTIONS(5174), + [anon_sym___clrcall] = ACTIONS(5174), + [anon_sym___stdcall] = ACTIONS(5174), + [anon_sym___fastcall] = ACTIONS(5174), + [anon_sym___thiscall] = ACTIONS(5174), + [anon_sym___vectorcall] = ACTIONS(5174), + [anon_sym_LBRACE] = ACTIONS(5176), + [anon_sym_signed] = ACTIONS(5174), + [anon_sym_unsigned] = ACTIONS(5174), + [anon_sym_long] = ACTIONS(5174), + [anon_sym_short] = ACTIONS(5174), + [anon_sym_LBRACK] = ACTIONS(5174), + [anon_sym_static] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5176), + [anon_sym_register] = ACTIONS(5174), + [anon_sym_inline] = ACTIONS(5174), + [anon_sym___inline] = ACTIONS(5174), + [anon_sym___inline__] = ACTIONS(5174), + [anon_sym___forceinline] = ACTIONS(5174), + [anon_sym_thread_local] = ACTIONS(5174), + [anon_sym___thread] = ACTIONS(5174), + [anon_sym_const] = ACTIONS(5174), + [anon_sym_constexpr] = ACTIONS(5174), + [anon_sym_volatile] = ACTIONS(5174), + [anon_sym_restrict] = ACTIONS(5174), + [anon_sym___restrict__] = ACTIONS(5174), + [anon_sym__Atomic] = ACTIONS(5174), + [anon_sym__Noreturn] = ACTIONS(5174), + [anon_sym_noreturn] = ACTIONS(5174), + [anon_sym__Nonnull] = ACTIONS(5174), + [anon_sym_mutable] = ACTIONS(5174), + [anon_sym_constinit] = ACTIONS(5174), + [anon_sym_consteval] = ACTIONS(5174), + [anon_sym_alignas] = ACTIONS(5174), + [anon_sym__Alignas] = ACTIONS(5174), + [sym_primitive_type] = ACTIONS(5174), + [anon_sym_enum] = ACTIONS(5174), + [anon_sym_class] = ACTIONS(5174), + [anon_sym_struct] = ACTIONS(5174), + [anon_sym_union] = ACTIONS(5174), + [anon_sym_or] = ACTIONS(5174), + [anon_sym_and] = ACTIONS(5174), + [anon_sym_asm] = ACTIONS(5174), + [anon_sym___asm__] = ACTIONS(5174), + [anon_sym___asm] = ACTIONS(5174), + [anon_sym_DASH_GT] = ACTIONS(5176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5174), + [anon_sym_decltype] = ACTIONS(5174), + [anon_sym_final] = ACTIONS(5174), + [anon_sym_override] = ACTIONS(5174), + [anon_sym_explicit] = ACTIONS(5174), + [anon_sym_typename] = ACTIONS(5174), + [anon_sym_template] = ACTIONS(5174), + [anon_sym_GT2] = ACTIONS(5176), + [anon_sym_operator] = ACTIONS(5174), + [anon_sym_try] = ACTIONS(5174), + [anon_sym_friend] = ACTIONS(5174), + [anon_sym_noexcept] = ACTIONS(5174), + [anon_sym_throw] = ACTIONS(5174), + [anon_sym_concept] = ACTIONS(5174), + [anon_sym_requires] = ACTIONS(5174), }, - [STATE(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), + [STATE(1646)] = { + [sym_identifier] = ACTIONS(5178), + [anon_sym_COMMA] = ACTIONS(5180), + [anon_sym_RPAREN] = ACTIONS(5180), + [anon_sym_LPAREN2] = ACTIONS(5180), + [anon_sym_TILDE] = ACTIONS(5180), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5180), + [anon_sym_AMP_AMP] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(5178), + [anon_sym_SEMI] = ACTIONS(5180), + [anon_sym___extension__] = ACTIONS(5178), + [anon_sym_virtual] = ACTIONS(5178), + [anon_sym_extern] = ACTIONS(5178), + [anon_sym___attribute__] = ACTIONS(5178), + [anon_sym___attribute] = ACTIONS(5178), + [anon_sym_using] = ACTIONS(5178), + [anon_sym_COLON_COLON] = ACTIONS(5180), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5180), + [anon_sym___declspec] = ACTIONS(5178), + [anon_sym___based] = ACTIONS(5178), + [anon_sym___cdecl] = ACTIONS(5178), + [anon_sym___clrcall] = ACTIONS(5178), + [anon_sym___stdcall] = ACTIONS(5178), + [anon_sym___fastcall] = ACTIONS(5178), + [anon_sym___thiscall] = ACTIONS(5178), + [anon_sym___vectorcall] = ACTIONS(5178), + [anon_sym_LBRACE] = ACTIONS(5180), + [anon_sym_signed] = ACTIONS(5178), + [anon_sym_unsigned] = ACTIONS(5178), + [anon_sym_long] = ACTIONS(5178), + [anon_sym_short] = ACTIONS(5178), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5180), + [anon_sym_register] = ACTIONS(5178), + [anon_sym_inline] = ACTIONS(5178), + [anon_sym___inline] = ACTIONS(5178), + [anon_sym___inline__] = ACTIONS(5178), + [anon_sym___forceinline] = ACTIONS(5178), + [anon_sym_thread_local] = ACTIONS(5178), + [anon_sym___thread] = ACTIONS(5178), + [anon_sym_const] = ACTIONS(5178), + [anon_sym_constexpr] = ACTIONS(5178), + [anon_sym_volatile] = ACTIONS(5178), + [anon_sym_restrict] = ACTIONS(5178), + [anon_sym___restrict__] = ACTIONS(5178), + [anon_sym__Atomic] = ACTIONS(5178), + [anon_sym__Noreturn] = ACTIONS(5178), + [anon_sym_noreturn] = ACTIONS(5178), + [anon_sym__Nonnull] = ACTIONS(5178), + [anon_sym_mutable] = ACTIONS(5178), + [anon_sym_constinit] = ACTIONS(5178), + [anon_sym_consteval] = ACTIONS(5178), + [anon_sym_alignas] = ACTIONS(5178), + [anon_sym__Alignas] = ACTIONS(5178), + [sym_primitive_type] = ACTIONS(5178), + [anon_sym_enum] = ACTIONS(5178), + [anon_sym_class] = ACTIONS(5178), + [anon_sym_struct] = ACTIONS(5178), + [anon_sym_union] = ACTIONS(5178), + [anon_sym_or] = ACTIONS(5178), + [anon_sym_and] = ACTIONS(5178), + [anon_sym_asm] = ACTIONS(5178), + [anon_sym___asm__] = ACTIONS(5178), + [anon_sym___asm] = ACTIONS(5178), + [anon_sym_DASH_GT] = ACTIONS(5180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5178), + [anon_sym_decltype] = ACTIONS(5178), + [anon_sym_final] = ACTIONS(5178), + [anon_sym_override] = ACTIONS(5178), + [anon_sym_explicit] = ACTIONS(5178), + [anon_sym_typename] = ACTIONS(5178), + [anon_sym_template] = ACTIONS(5178), + [anon_sym_GT2] = ACTIONS(5180), + [anon_sym_operator] = ACTIONS(5178), + [anon_sym_try] = ACTIONS(5178), + [anon_sym_friend] = ACTIONS(5178), + [anon_sym_noexcept] = ACTIONS(5178), + [anon_sym_throw] = ACTIONS(5178), + [anon_sym_concept] = ACTIONS(5178), + [anon_sym_requires] = ACTIONS(5178), }, - [STATE(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), + [STATE(1647)] = { + [sym_identifier] = ACTIONS(5182), + [anon_sym_COMMA] = ACTIONS(5184), + [anon_sym_RPAREN] = ACTIONS(5184), + [anon_sym_LPAREN2] = ACTIONS(5184), + [anon_sym_TILDE] = ACTIONS(5184), + [anon_sym_STAR] = ACTIONS(5184), + [anon_sym_PIPE_PIPE] = ACTIONS(5184), + [anon_sym_AMP_AMP] = ACTIONS(5184), + [anon_sym_AMP] = ACTIONS(5182), + [anon_sym_SEMI] = ACTIONS(5184), + [anon_sym___extension__] = ACTIONS(5182), + [anon_sym_virtual] = ACTIONS(5182), + [anon_sym_extern] = ACTIONS(5182), + [anon_sym___attribute__] = ACTIONS(5182), + [anon_sym___attribute] = ACTIONS(5182), + [anon_sym_using] = ACTIONS(5182), + [anon_sym_COLON_COLON] = ACTIONS(5184), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5184), + [anon_sym___declspec] = ACTIONS(5182), + [anon_sym___based] = ACTIONS(5182), + [anon_sym___cdecl] = ACTIONS(5182), + [anon_sym___clrcall] = ACTIONS(5182), + [anon_sym___stdcall] = ACTIONS(5182), + [anon_sym___fastcall] = ACTIONS(5182), + [anon_sym___thiscall] = ACTIONS(5182), + [anon_sym___vectorcall] = ACTIONS(5182), + [anon_sym_LBRACE] = ACTIONS(5184), + [anon_sym_signed] = ACTIONS(5182), + [anon_sym_unsigned] = ACTIONS(5182), + [anon_sym_long] = ACTIONS(5182), + [anon_sym_short] = ACTIONS(5182), + [anon_sym_LBRACK] = ACTIONS(5182), + [anon_sym_static] = ACTIONS(5182), + [anon_sym_EQ] = ACTIONS(5184), + [anon_sym_register] = ACTIONS(5182), + [anon_sym_inline] = ACTIONS(5182), + [anon_sym___inline] = ACTIONS(5182), + [anon_sym___inline__] = ACTIONS(5182), + [anon_sym___forceinline] = ACTIONS(5182), + [anon_sym_thread_local] = ACTIONS(5182), + [anon_sym___thread] = ACTIONS(5182), + [anon_sym_const] = ACTIONS(5182), + [anon_sym_constexpr] = ACTIONS(5182), + [anon_sym_volatile] = ACTIONS(5182), + [anon_sym_restrict] = ACTIONS(5182), + [anon_sym___restrict__] = ACTIONS(5182), + [anon_sym__Atomic] = ACTIONS(5182), + [anon_sym__Noreturn] = ACTIONS(5182), + [anon_sym_noreturn] = ACTIONS(5182), + [anon_sym__Nonnull] = ACTIONS(5182), + [anon_sym_mutable] = ACTIONS(5182), + [anon_sym_constinit] = ACTIONS(5182), + [anon_sym_consteval] = ACTIONS(5182), + [anon_sym_alignas] = ACTIONS(5182), + [anon_sym__Alignas] = ACTIONS(5182), + [sym_primitive_type] = ACTIONS(5182), + [anon_sym_enum] = ACTIONS(5182), + [anon_sym_class] = ACTIONS(5182), + [anon_sym_struct] = ACTIONS(5182), + [anon_sym_union] = ACTIONS(5182), + [anon_sym_or] = ACTIONS(5182), + [anon_sym_and] = ACTIONS(5182), + [anon_sym_asm] = ACTIONS(5182), + [anon_sym___asm__] = ACTIONS(5182), + [anon_sym___asm] = ACTIONS(5182), + [anon_sym_DASH_GT] = ACTIONS(5184), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5182), + [anon_sym_decltype] = ACTIONS(5182), + [anon_sym_final] = ACTIONS(5182), + [anon_sym_override] = ACTIONS(5182), + [anon_sym_explicit] = ACTIONS(5182), + [anon_sym_typename] = ACTIONS(5182), + [anon_sym_template] = ACTIONS(5182), + [anon_sym_GT2] = ACTIONS(5184), + [anon_sym_operator] = ACTIONS(5182), + [anon_sym_try] = ACTIONS(5182), + [anon_sym_friend] = ACTIONS(5182), + [anon_sym_noexcept] = ACTIONS(5182), + [anon_sym_throw] = ACTIONS(5182), + [anon_sym_concept] = ACTIONS(5182), + [anon_sym_requires] = ACTIONS(5182), + }, + [STATE(1648)] = { + [sym_type_qualifier] = STATE(1640), + [sym_alignas_qualifier] = STATE(1689), + [aux_sym__type_definition_type_repeat1] = STATE(1640), + [aux_sym_sized_type_specifier_repeat1] = STATE(1683), + [sym_identifier] = ACTIONS(5186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(5123), + [anon_sym_LPAREN2] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5125), + [anon_sym___extension__] = ACTIONS(5150), + [anon_sym___attribute__] = ACTIONS(5125), + [anon_sym___attribute] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_signed] = ACTIONS(5188), + [anon_sym_unsigned] = ACTIONS(5188), + [anon_sym_long] = ACTIONS(5188), + [anon_sym_short] = ACTIONS(5188), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_const] = ACTIONS(5150), + [anon_sym_constexpr] = ACTIONS(5150), + [anon_sym_volatile] = ACTIONS(5150), + [anon_sym_restrict] = ACTIONS(5150), + [anon_sym___restrict__] = ACTIONS(5150), + [anon_sym__Atomic] = ACTIONS(5150), + [anon_sym__Noreturn] = ACTIONS(5150), + [anon_sym_noreturn] = ACTIONS(5150), + [anon_sym__Nonnull] = ACTIONS(5150), + [anon_sym_mutable] = ACTIONS(5150), + [anon_sym_constinit] = ACTIONS(5150), + [anon_sym_consteval] = ACTIONS(5150), + [anon_sym_alignas] = ACTIONS(5154), + [anon_sym__Alignas] = ACTIONS(5154), + [sym_primitive_type] = ACTIONS(5190), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_LT_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_GT_EQ] = ACTIONS(5123), + [anon_sym_AMP_EQ] = ACTIONS(5123), + [anon_sym_CARET_EQ] = ACTIONS(5123), + [anon_sym_PIPE_EQ] = ACTIONS(5123), + [anon_sym_and_eq] = ACTIONS(5125), + [anon_sym_or_eq] = ACTIONS(5125), + [anon_sym_xor_eq] = ACTIONS(5125), + [anon_sym_LT_EQ_GT] = ACTIONS(5123), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_bitor] = ACTIONS(5125), + [anon_sym_xor] = ACTIONS(5125), + [anon_sym_bitand] = ACTIONS(5125), + [anon_sym_not_eq] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_DOT_STAR] = ACTIONS(5123), + [anon_sym_DASH_GT] = ACTIONS(5125), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5125), + [anon_sym_decltype] = ACTIONS(5125), + [anon_sym_DASH_GT_STAR] = ACTIONS(5123), + }, + [STATE(1649)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_RPAREN] = ACTIONS(5141), + [anon_sym_LPAREN2] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5138), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5138), + [anon_sym___attribute] = ACTIONS(5138), + [anon_sym_COLON] = ACTIONS(5141), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_signed] = ACTIONS(5093), + [anon_sym_unsigned] = ACTIONS(5093), + [anon_sym_long] = ACTIONS(5093), + [anon_sym_short] = ACTIONS(5093), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_RBRACK] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_LT_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_GT_EQ] = ACTIONS(5141), + [anon_sym_AMP_EQ] = ACTIONS(5141), + [anon_sym_CARET_EQ] = ACTIONS(5141), + [anon_sym_PIPE_EQ] = ACTIONS(5141), + [anon_sym_and_eq] = ACTIONS(5138), + [anon_sym_or_eq] = ACTIONS(5138), + [anon_sym_xor_eq] = ACTIONS(5138), + [anon_sym_LT_EQ_GT] = ACTIONS(5141), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_bitor] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_bitand] = ACTIONS(5138), + [anon_sym_not_eq] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_STAR] = ACTIONS(5141), + [anon_sym_DASH_GT] = ACTIONS(5141), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5138), + [anon_sym_decltype] = ACTIONS(5138), + }, + [STATE(1650)] = { + [sym_identifier] = ACTIONS(5192), + [anon_sym_COMMA] = ACTIONS(5194), + [anon_sym_RPAREN] = ACTIONS(5194), + [anon_sym_LPAREN2] = ACTIONS(5194), + [anon_sym_TILDE] = ACTIONS(5194), + [anon_sym_STAR] = ACTIONS(5194), + [anon_sym_PIPE_PIPE] = ACTIONS(5194), + [anon_sym_AMP_AMP] = ACTIONS(5194), + [anon_sym_AMP] = ACTIONS(5192), + [anon_sym_SEMI] = ACTIONS(5194), + [anon_sym___extension__] = ACTIONS(5192), + [anon_sym_virtual] = ACTIONS(5192), + [anon_sym_extern] = ACTIONS(5192), + [anon_sym___attribute__] = ACTIONS(5192), + [anon_sym___attribute] = ACTIONS(5192), + [anon_sym_using] = ACTIONS(5192), + [anon_sym_COLON_COLON] = ACTIONS(5194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5194), + [anon_sym___declspec] = ACTIONS(5192), + [anon_sym___based] = ACTIONS(5192), + [anon_sym___cdecl] = ACTIONS(5192), + [anon_sym___clrcall] = ACTIONS(5192), + [anon_sym___stdcall] = ACTIONS(5192), + [anon_sym___fastcall] = ACTIONS(5192), + [anon_sym___thiscall] = ACTIONS(5192), + [anon_sym___vectorcall] = ACTIONS(5192), + [anon_sym_LBRACE] = ACTIONS(5194), + [anon_sym_signed] = ACTIONS(5192), + [anon_sym_unsigned] = ACTIONS(5192), + [anon_sym_long] = ACTIONS(5192), + [anon_sym_short] = ACTIONS(5192), + [anon_sym_LBRACK] = ACTIONS(5192), + [anon_sym_static] = ACTIONS(5192), + [anon_sym_EQ] = ACTIONS(5194), + [anon_sym_register] = ACTIONS(5192), + [anon_sym_inline] = ACTIONS(5192), + [anon_sym___inline] = ACTIONS(5192), + [anon_sym___inline__] = ACTIONS(5192), + [anon_sym___forceinline] = ACTIONS(5192), + [anon_sym_thread_local] = ACTIONS(5192), + [anon_sym___thread] = ACTIONS(5192), + [anon_sym_const] = ACTIONS(5192), + [anon_sym_constexpr] = ACTIONS(5192), + [anon_sym_volatile] = ACTIONS(5192), + [anon_sym_restrict] = ACTIONS(5192), + [anon_sym___restrict__] = ACTIONS(5192), + [anon_sym__Atomic] = ACTIONS(5192), + [anon_sym__Noreturn] = ACTIONS(5192), + [anon_sym_noreturn] = ACTIONS(5192), + [anon_sym__Nonnull] = ACTIONS(5192), + [anon_sym_mutable] = ACTIONS(5192), + [anon_sym_constinit] = ACTIONS(5192), + [anon_sym_consteval] = ACTIONS(5192), + [anon_sym_alignas] = ACTIONS(5192), + [anon_sym__Alignas] = ACTIONS(5192), + [sym_primitive_type] = ACTIONS(5192), + [anon_sym_enum] = ACTIONS(5192), + [anon_sym_class] = ACTIONS(5192), + [anon_sym_struct] = ACTIONS(5192), + [anon_sym_union] = ACTIONS(5192), + [anon_sym_or] = ACTIONS(5192), + [anon_sym_and] = ACTIONS(5192), + [anon_sym_asm] = ACTIONS(5192), + [anon_sym___asm__] = ACTIONS(5192), + [anon_sym___asm] = ACTIONS(5192), + [anon_sym_DASH_GT] = ACTIONS(5194), [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), + [sym_auto] = ACTIONS(5192), + [anon_sym_decltype] = ACTIONS(5192), + [anon_sym_final] = ACTIONS(5192), + [anon_sym_override] = ACTIONS(5192), + [anon_sym_explicit] = ACTIONS(5192), + [anon_sym_typename] = ACTIONS(5192), + [anon_sym_template] = ACTIONS(5192), + [anon_sym_GT2] = ACTIONS(5194), + [anon_sym_operator] = ACTIONS(5192), + [anon_sym_try] = ACTIONS(5192), + [anon_sym_friend] = ACTIONS(5192), + [anon_sym_noexcept] = ACTIONS(5192), + [anon_sym_throw] = ACTIONS(5192), + [anon_sym_concept] = ACTIONS(5192), + [anon_sym_requires] = ACTIONS(5192), }, - [STATE(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), + [STATE(1651)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(1652)] = { + [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(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(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), + [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), }, - [STATE(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), + [STATE(1653)] = { + [sym_identifier] = ACTIONS(5144), + [anon_sym_COMMA] = ACTIONS(5146), + [anon_sym_RPAREN] = ACTIONS(5146), + [anon_sym_LPAREN2] = ACTIONS(5146), + [anon_sym_TILDE] = ACTIONS(5146), + [anon_sym_STAR] = ACTIONS(5146), + [anon_sym_PIPE_PIPE] = ACTIONS(5146), + [anon_sym_AMP_AMP] = ACTIONS(5146), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(5146), + [anon_sym___extension__] = ACTIONS(5144), + [anon_sym_virtual] = ACTIONS(5144), + [anon_sym_extern] = ACTIONS(5144), + [anon_sym___attribute__] = ACTIONS(5144), + [anon_sym___attribute] = ACTIONS(5144), + [anon_sym_using] = ACTIONS(5144), + [anon_sym_COLON_COLON] = ACTIONS(5146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5146), + [anon_sym___declspec] = ACTIONS(5144), + [anon_sym___based] = ACTIONS(5144), + [anon_sym___cdecl] = ACTIONS(5144), + [anon_sym___clrcall] = ACTIONS(5144), + [anon_sym___stdcall] = ACTIONS(5144), + [anon_sym___fastcall] = ACTIONS(5144), + [anon_sym___thiscall] = ACTIONS(5144), + [anon_sym___vectorcall] = ACTIONS(5144), + [anon_sym_LBRACE] = ACTIONS(5146), + [anon_sym_signed] = ACTIONS(5144), + [anon_sym_unsigned] = ACTIONS(5144), + [anon_sym_long] = ACTIONS(5144), + [anon_sym_short] = ACTIONS(5144), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_static] = ACTIONS(5144), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_register] = ACTIONS(5144), + [anon_sym_inline] = ACTIONS(5144), + [anon_sym___inline] = ACTIONS(5144), + [anon_sym___inline__] = ACTIONS(5144), + [anon_sym___forceinline] = ACTIONS(5144), + [anon_sym_thread_local] = ACTIONS(5144), + [anon_sym___thread] = ACTIONS(5144), + [anon_sym_const] = ACTIONS(5144), + [anon_sym_constexpr] = ACTIONS(5144), + [anon_sym_volatile] = ACTIONS(5144), + [anon_sym_restrict] = ACTIONS(5144), + [anon_sym___restrict__] = ACTIONS(5144), + [anon_sym__Atomic] = ACTIONS(5144), + [anon_sym__Noreturn] = ACTIONS(5144), + [anon_sym_noreturn] = ACTIONS(5144), + [anon_sym__Nonnull] = ACTIONS(5144), + [anon_sym_mutable] = ACTIONS(5144), + [anon_sym_constinit] = ACTIONS(5144), + [anon_sym_consteval] = ACTIONS(5144), + [anon_sym_alignas] = ACTIONS(5144), + [anon_sym__Alignas] = ACTIONS(5144), + [sym_primitive_type] = ACTIONS(5144), + [anon_sym_enum] = ACTIONS(5144), + [anon_sym_class] = ACTIONS(5144), + [anon_sym_struct] = ACTIONS(5144), + [anon_sym_union] = ACTIONS(5144), + [anon_sym_or] = ACTIONS(5144), + [anon_sym_and] = ACTIONS(5144), + [anon_sym_asm] = ACTIONS(5144), + [anon_sym___asm__] = ACTIONS(5144), + [anon_sym___asm] = ACTIONS(5144), + [anon_sym_DASH_GT] = ACTIONS(5146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5144), + [anon_sym_decltype] = ACTIONS(5144), + [anon_sym_final] = ACTIONS(5144), + [anon_sym_override] = ACTIONS(5144), + [anon_sym_explicit] = ACTIONS(5144), + [anon_sym_typename] = ACTIONS(5144), + [anon_sym_template] = ACTIONS(5144), + [anon_sym_GT2] = ACTIONS(5146), + [anon_sym_operator] = ACTIONS(5144), + [anon_sym_try] = ACTIONS(5144), + [anon_sym_friend] = ACTIONS(5144), + [anon_sym_noexcept] = ACTIONS(5144), + [anon_sym_throw] = ACTIONS(5144), + [anon_sym_concept] = ACTIONS(5144), + [anon_sym_requires] = ACTIONS(5144), + }, + [STATE(1654)] = { + [sym_identifier] = ACTIONS(5204), + [anon_sym_COMMA] = ACTIONS(5206), + [anon_sym_RPAREN] = ACTIONS(5206), + [anon_sym_LPAREN2] = ACTIONS(5206), + [anon_sym_TILDE] = ACTIONS(5206), + [anon_sym_STAR] = ACTIONS(5206), + [anon_sym_PIPE_PIPE] = ACTIONS(5206), + [anon_sym_AMP_AMP] = ACTIONS(5206), + [anon_sym_AMP] = ACTIONS(5204), + [anon_sym_SEMI] = ACTIONS(5206), + [anon_sym___extension__] = ACTIONS(5204), + [anon_sym_virtual] = ACTIONS(5204), + [anon_sym_extern] = ACTIONS(5204), + [anon_sym___attribute__] = ACTIONS(5204), + [anon_sym___attribute] = ACTIONS(5204), + [anon_sym_using] = ACTIONS(5204), + [anon_sym_COLON_COLON] = ACTIONS(5206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5206), + [anon_sym___declspec] = ACTIONS(5204), + [anon_sym___based] = ACTIONS(5204), + [anon_sym___cdecl] = ACTIONS(5204), + [anon_sym___clrcall] = ACTIONS(5204), + [anon_sym___stdcall] = ACTIONS(5204), + [anon_sym___fastcall] = ACTIONS(5204), + [anon_sym___thiscall] = ACTIONS(5204), + [anon_sym___vectorcall] = ACTIONS(5204), + [anon_sym_LBRACE] = ACTIONS(5206), + [anon_sym_signed] = ACTIONS(5204), + [anon_sym_unsigned] = ACTIONS(5204), + [anon_sym_long] = ACTIONS(5204), + [anon_sym_short] = ACTIONS(5204), + [anon_sym_LBRACK] = ACTIONS(5204), + [anon_sym_static] = ACTIONS(5204), + [anon_sym_EQ] = ACTIONS(5206), + [anon_sym_register] = ACTIONS(5204), + [anon_sym_inline] = ACTIONS(5204), + [anon_sym___inline] = ACTIONS(5204), + [anon_sym___inline__] = ACTIONS(5204), + [anon_sym___forceinline] = ACTIONS(5204), + [anon_sym_thread_local] = ACTIONS(5204), + [anon_sym___thread] = ACTIONS(5204), + [anon_sym_const] = ACTIONS(5204), + [anon_sym_constexpr] = ACTIONS(5204), + [anon_sym_volatile] = ACTIONS(5204), + [anon_sym_restrict] = ACTIONS(5204), + [anon_sym___restrict__] = ACTIONS(5204), + [anon_sym__Atomic] = ACTIONS(5204), + [anon_sym__Noreturn] = ACTIONS(5204), + [anon_sym_noreturn] = ACTIONS(5204), + [anon_sym__Nonnull] = ACTIONS(5204), + [anon_sym_mutable] = ACTIONS(5204), + [anon_sym_constinit] = ACTIONS(5204), + [anon_sym_consteval] = ACTIONS(5204), + [anon_sym_alignas] = ACTIONS(5204), + [anon_sym__Alignas] = ACTIONS(5204), + [sym_primitive_type] = ACTIONS(5204), + [anon_sym_enum] = ACTIONS(5204), + [anon_sym_class] = ACTIONS(5204), + [anon_sym_struct] = ACTIONS(5204), + [anon_sym_union] = ACTIONS(5204), + [anon_sym_or] = ACTIONS(5204), + [anon_sym_and] = ACTIONS(5204), + [anon_sym_asm] = ACTIONS(5204), + [anon_sym___asm__] = ACTIONS(5204), + [anon_sym___asm] = ACTIONS(5204), + [anon_sym_DASH_GT] = ACTIONS(5206), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5204), + [anon_sym_decltype] = ACTIONS(5204), + [anon_sym_final] = ACTIONS(5204), + [anon_sym_override] = ACTIONS(5204), + [anon_sym_explicit] = ACTIONS(5204), + [anon_sym_typename] = ACTIONS(5204), + [anon_sym_template] = ACTIONS(5204), + [anon_sym_GT2] = ACTIONS(5206), + [anon_sym_operator] = ACTIONS(5204), + [anon_sym_try] = ACTIONS(5204), + [anon_sym_friend] = ACTIONS(5204), + [anon_sym_noexcept] = ACTIONS(5204), + [anon_sym_throw] = ACTIONS(5204), + [anon_sym_concept] = ACTIONS(5204), + [anon_sym_requires] = ACTIONS(5204), + }, + [STATE(1655)] = { + [sym_identifier] = ACTIONS(5144), + [anon_sym_COMMA] = ACTIONS(5146), + [anon_sym_RPAREN] = ACTIONS(5146), + [anon_sym_LPAREN2] = ACTIONS(5146), + [anon_sym_TILDE] = ACTIONS(5146), + [anon_sym_STAR] = ACTIONS(5146), + [anon_sym_PIPE_PIPE] = ACTIONS(5146), + [anon_sym_AMP_AMP] = ACTIONS(5146), + [anon_sym_AMP] = ACTIONS(5144), + [anon_sym_SEMI] = ACTIONS(5146), + [anon_sym___extension__] = ACTIONS(5144), + [anon_sym_virtual] = ACTIONS(5144), + [anon_sym_extern] = ACTIONS(5144), + [anon_sym___attribute__] = ACTIONS(5144), + [anon_sym___attribute] = ACTIONS(5144), + [anon_sym_using] = ACTIONS(5144), + [anon_sym_COLON_COLON] = ACTIONS(5146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5146), + [anon_sym___declspec] = ACTIONS(5144), + [anon_sym___based] = ACTIONS(5144), + [anon_sym___cdecl] = ACTIONS(5144), + [anon_sym___clrcall] = ACTIONS(5144), + [anon_sym___stdcall] = ACTIONS(5144), + [anon_sym___fastcall] = ACTIONS(5144), + [anon_sym___thiscall] = ACTIONS(5144), + [anon_sym___vectorcall] = ACTIONS(5144), + [anon_sym_LBRACE] = ACTIONS(5146), + [anon_sym_signed] = ACTIONS(5144), + [anon_sym_unsigned] = ACTIONS(5144), + [anon_sym_long] = ACTIONS(5144), + [anon_sym_short] = ACTIONS(5144), + [anon_sym_LBRACK] = ACTIONS(5144), + [anon_sym_static] = ACTIONS(5144), + [anon_sym_EQ] = ACTIONS(5146), + [anon_sym_register] = ACTIONS(5144), + [anon_sym_inline] = ACTIONS(5144), + [anon_sym___inline] = ACTIONS(5144), + [anon_sym___inline__] = ACTIONS(5144), + [anon_sym___forceinline] = ACTIONS(5144), + [anon_sym_thread_local] = ACTIONS(5144), + [anon_sym___thread] = ACTIONS(5144), + [anon_sym_const] = ACTIONS(5144), + [anon_sym_constexpr] = ACTIONS(5144), + [anon_sym_volatile] = ACTIONS(5144), + [anon_sym_restrict] = ACTIONS(5144), + [anon_sym___restrict__] = ACTIONS(5144), + [anon_sym__Atomic] = ACTIONS(5144), + [anon_sym__Noreturn] = ACTIONS(5144), + [anon_sym_noreturn] = ACTIONS(5144), + [anon_sym__Nonnull] = ACTIONS(5144), + [anon_sym_mutable] = ACTIONS(5144), + [anon_sym_constinit] = ACTIONS(5144), + [anon_sym_consteval] = ACTIONS(5144), + [anon_sym_alignas] = ACTIONS(5144), + [anon_sym__Alignas] = ACTIONS(5144), + [sym_primitive_type] = ACTIONS(5144), + [anon_sym_enum] = ACTIONS(5144), + [anon_sym_class] = ACTIONS(5144), + [anon_sym_struct] = ACTIONS(5144), + [anon_sym_union] = ACTIONS(5144), + [anon_sym_or] = ACTIONS(5144), + [anon_sym_and] = ACTIONS(5144), + [anon_sym_asm] = ACTIONS(5144), + [anon_sym___asm__] = ACTIONS(5144), + [anon_sym___asm] = ACTIONS(5144), + [anon_sym_DASH_GT] = ACTIONS(5146), [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), + [sym_auto] = ACTIONS(5144), + [anon_sym_decltype] = ACTIONS(5144), + [anon_sym_final] = ACTIONS(5144), + [anon_sym_override] = ACTIONS(5144), + [anon_sym_explicit] = ACTIONS(5144), + [anon_sym_typename] = ACTIONS(5144), + [anon_sym_template] = ACTIONS(5144), + [anon_sym_GT2] = ACTIONS(5146), + [anon_sym_operator] = ACTIONS(5144), + [anon_sym_try] = ACTIONS(5144), + [anon_sym_friend] = ACTIONS(5144), + [anon_sym_noexcept] = ACTIONS(5144), + [anon_sym_throw] = ACTIONS(5144), + [anon_sym_concept] = ACTIONS(5144), + [anon_sym_requires] = ACTIONS(5144), }, - [STATE(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), + [STATE(1656)] = { + [sym_identifier] = ACTIONS(5208), + [anon_sym_COMMA] = ACTIONS(5210), + [anon_sym_RPAREN] = ACTIONS(5210), + [anon_sym_LPAREN2] = ACTIONS(5210), + [anon_sym_TILDE] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5210), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5208), + [anon_sym_SEMI] = ACTIONS(5210), + [anon_sym___extension__] = ACTIONS(5208), + [anon_sym_virtual] = ACTIONS(5208), + [anon_sym_extern] = ACTIONS(5208), + [anon_sym___attribute__] = ACTIONS(5208), + [anon_sym___attribute] = ACTIONS(5208), + [anon_sym_using] = ACTIONS(5208), + [anon_sym_COLON_COLON] = ACTIONS(5210), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5210), + [anon_sym___declspec] = ACTIONS(5208), + [anon_sym___based] = ACTIONS(5208), + [anon_sym___cdecl] = ACTIONS(5208), + [anon_sym___clrcall] = ACTIONS(5208), + [anon_sym___stdcall] = ACTIONS(5208), + [anon_sym___fastcall] = ACTIONS(5208), + [anon_sym___thiscall] = ACTIONS(5208), + [anon_sym___vectorcall] = ACTIONS(5208), + [anon_sym_LBRACE] = ACTIONS(5210), + [anon_sym_signed] = ACTIONS(5208), + [anon_sym_unsigned] = ACTIONS(5208), + [anon_sym_long] = ACTIONS(5208), + [anon_sym_short] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(5208), + [anon_sym_static] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(5210), + [anon_sym_register] = ACTIONS(5208), + [anon_sym_inline] = ACTIONS(5208), + [anon_sym___inline] = ACTIONS(5208), + [anon_sym___inline__] = ACTIONS(5208), + [anon_sym___forceinline] = ACTIONS(5208), + [anon_sym_thread_local] = ACTIONS(5208), + [anon_sym___thread] = ACTIONS(5208), + [anon_sym_const] = ACTIONS(5208), + [anon_sym_constexpr] = ACTIONS(5208), + [anon_sym_volatile] = ACTIONS(5208), + [anon_sym_restrict] = ACTIONS(5208), + [anon_sym___restrict__] = ACTIONS(5208), + [anon_sym__Atomic] = ACTIONS(5208), + [anon_sym__Noreturn] = ACTIONS(5208), + [anon_sym_noreturn] = ACTIONS(5208), + [anon_sym__Nonnull] = ACTIONS(5208), + [anon_sym_mutable] = ACTIONS(5208), + [anon_sym_constinit] = ACTIONS(5208), + [anon_sym_consteval] = ACTIONS(5208), + [anon_sym_alignas] = ACTIONS(5208), + [anon_sym__Alignas] = ACTIONS(5208), + [sym_primitive_type] = ACTIONS(5208), + [anon_sym_enum] = ACTIONS(5208), + [anon_sym_class] = ACTIONS(5208), + [anon_sym_struct] = ACTIONS(5208), + [anon_sym_union] = ACTIONS(5208), + [anon_sym_or] = ACTIONS(5208), + [anon_sym_and] = ACTIONS(5208), + [anon_sym_asm] = ACTIONS(5208), + [anon_sym___asm__] = ACTIONS(5208), + [anon_sym___asm] = ACTIONS(5208), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5208), + [anon_sym_decltype] = ACTIONS(5208), + [anon_sym_final] = ACTIONS(5208), + [anon_sym_override] = ACTIONS(5208), + [anon_sym_explicit] = ACTIONS(5208), + [anon_sym_typename] = ACTIONS(5208), + [anon_sym_template] = ACTIONS(5208), + [anon_sym_GT2] = ACTIONS(5210), + [anon_sym_operator] = ACTIONS(5208), + [anon_sym_try] = ACTIONS(5208), + [anon_sym_friend] = ACTIONS(5208), + [anon_sym_noexcept] = ACTIONS(5208), + [anon_sym_throw] = ACTIONS(5208), + [anon_sym_concept] = ACTIONS(5208), + [anon_sym_requires] = ACTIONS(5208), }, - [STATE(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), + [STATE(1657)] = { + [sym_type_qualifier] = STATE(1657), + [sym_alignas_qualifier] = STATE(1689), + [aux_sym__type_definition_type_repeat1] = STATE(1657), + [sym_identifier] = ACTIONS(5060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5062), + [anon_sym_COMMA] = ACTIONS(5062), + [anon_sym_RPAREN] = ACTIONS(5062), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5062), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5060), + [anon_sym___extension__] = ACTIONS(5212), + [anon_sym___attribute__] = ACTIONS(5060), + [anon_sym___attribute] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5062), + [anon_sym_signed] = ACTIONS(5060), + [anon_sym_unsigned] = ACTIONS(5060), + [anon_sym_long] = ACTIONS(5060), + [anon_sym_short] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_EQ] = ACTIONS(5060), + [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(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_STAR_EQ] = ACTIONS(5062), + [anon_sym_SLASH_EQ] = ACTIONS(5062), + [anon_sym_PERCENT_EQ] = ACTIONS(5062), + [anon_sym_PLUS_EQ] = ACTIONS(5062), + [anon_sym_DASH_EQ] = ACTIONS(5062), + [anon_sym_LT_LT_EQ] = ACTIONS(5062), + [anon_sym_GT_GT_EQ] = ACTIONS(5062), + [anon_sym_AMP_EQ] = ACTIONS(5062), + [anon_sym_CARET_EQ] = ACTIONS(5062), + [anon_sym_PIPE_EQ] = ACTIONS(5062), + [anon_sym_and_eq] = ACTIONS(5060), + [anon_sym_or_eq] = ACTIONS(5060), + [anon_sym_xor_eq] = ACTIONS(5060), + [anon_sym_LT_EQ_GT] = ACTIONS(5062), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_bitor] = ACTIONS(5060), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_bitand] = ACTIONS(5060), + [anon_sym_not_eq] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DOT_STAR] = ACTIONS(5062), + [anon_sym_DASH_GT] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5060), + [anon_sym_decltype] = ACTIONS(5060), + [anon_sym_DASH_GT_STAR] = ACTIONS(5062), }, - [STATE(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), + [STATE(1658)] = { + [sym_type_qualifier] = STATE(1662), + [sym_alignas_qualifier] = STATE(1691), + [aux_sym__type_definition_type_repeat1] = STATE(1662), + [aux_sym_sized_type_specifier_repeat1] = STATE(2658), + [sym_identifier] = ACTIONS(5218), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5102), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5102), + [anon_sym_BANG_EQ] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5104), + [anon_sym___extension__] = ACTIONS(5220), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_signed] = ACTIONS(5222), + [anon_sym_unsigned] = ACTIONS(5222), + [anon_sym_long] = ACTIONS(5222), + [anon_sym_short] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5104), + [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(5224), + [anon_sym__Alignas] = ACTIONS(5224), + [sym_primitive_type] = ACTIONS(5226), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_STAR_EQ] = ACTIONS(5102), + [anon_sym_SLASH_EQ] = ACTIONS(5102), + [anon_sym_PERCENT_EQ] = ACTIONS(5102), + [anon_sym_PLUS_EQ] = ACTIONS(5102), + [anon_sym_DASH_EQ] = ACTIONS(5102), + [anon_sym_LT_LT_EQ] = ACTIONS(5102), + [anon_sym_GT_GT_EQ] = ACTIONS(5104), + [anon_sym_AMP_EQ] = ACTIONS(5102), + [anon_sym_CARET_EQ] = ACTIONS(5102), + [anon_sym_PIPE_EQ] = ACTIONS(5102), + [anon_sym_and_eq] = ACTIONS(5104), + [anon_sym_or_eq] = ACTIONS(5104), + [anon_sym_xor_eq] = ACTIONS(5104), + [anon_sym_LT_EQ_GT] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5102), + [anon_sym_DASH_GT] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + [anon_sym_GT2] = ACTIONS(5102), }, - [STATE(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), + [STATE(1659)] = { + [sym_type_qualifier] = STATE(1658), + [sym_alignas_qualifier] = STATE(1691), + [aux_sym__type_definition_type_repeat1] = STATE(1658), + [aux_sym_sized_type_specifier_repeat1] = STATE(1688), + [sym_identifier] = ACTIONS(5228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_LPAREN2] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5125), + [anon_sym___extension__] = ACTIONS(5220), + [anon_sym___attribute__] = ACTIONS(5125), + [anon_sym___attribute] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_signed] = ACTIONS(5230), + [anon_sym_unsigned] = ACTIONS(5230), + [anon_sym_long] = ACTIONS(5230), + [anon_sym_short] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_EQ] = ACTIONS(5125), + [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(5224), + [anon_sym__Alignas] = ACTIONS(5224), + [sym_primitive_type] = ACTIONS(5232), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_LT_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_GT_EQ] = ACTIONS(5125), + [anon_sym_AMP_EQ] = ACTIONS(5123), + [anon_sym_CARET_EQ] = ACTIONS(5123), + [anon_sym_PIPE_EQ] = ACTIONS(5123), + [anon_sym_and_eq] = ACTIONS(5125), + [anon_sym_or_eq] = ACTIONS(5125), + [anon_sym_xor_eq] = ACTIONS(5125), + [anon_sym_LT_EQ_GT] = ACTIONS(5123), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_bitor] = ACTIONS(5125), + [anon_sym_xor] = ACTIONS(5125), + [anon_sym_bitand] = ACTIONS(5125), + [anon_sym_not_eq] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_DOT_STAR] = ACTIONS(5123), + [anon_sym_DASH_GT] = ACTIONS(5123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5125), + [anon_sym_decltype] = ACTIONS(5125), + [anon_sym_GT2] = ACTIONS(5123), + }, + [STATE(1660)] = { + [sym_function_definition] = STATE(741), + [sym_declaration] = STATE(741), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4682), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1984), + [sym_declaration_list] = STATE(741), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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_LBRACE] = ACTIONS(5238), + [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(3027), + [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(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(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1661)] = { + [sym_function_definition] = STATE(298), + [sym_declaration] = STATE(298), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4740), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1985), + [sym_declaration_list] = STATE(298), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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_LBRACE] = ACTIONS(5240), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1662)] = { + [sym_type_qualifier] = STATE(1662), + [sym_alignas_qualifier] = STATE(1691), + [aux_sym__type_definition_type_repeat1] = STATE(1662), + [sym_identifier] = ACTIONS(5060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5062), + [anon_sym_COMMA] = ACTIONS(5062), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5060), + [anon_sym___extension__] = ACTIONS(5242), + [anon_sym___attribute__] = ACTIONS(5060), + [anon_sym___attribute] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5062), + [anon_sym_signed] = ACTIONS(5060), + [anon_sym_unsigned] = ACTIONS(5060), + [anon_sym_long] = ACTIONS(5060), + [anon_sym_short] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_const] = ACTIONS(5242), + [anon_sym_constexpr] = ACTIONS(5242), + [anon_sym_volatile] = ACTIONS(5242), + [anon_sym_restrict] = ACTIONS(5242), + [anon_sym___restrict__] = ACTIONS(5242), + [anon_sym__Atomic] = ACTIONS(5242), + [anon_sym__Noreturn] = ACTIONS(5242), + [anon_sym_noreturn] = ACTIONS(5242), + [anon_sym__Nonnull] = ACTIONS(5242), + [anon_sym_mutable] = ACTIONS(5242), + [anon_sym_constinit] = ACTIONS(5242), + [anon_sym_consteval] = ACTIONS(5242), + [anon_sym_alignas] = ACTIONS(5245), + [anon_sym__Alignas] = ACTIONS(5245), + [sym_primitive_type] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_STAR_EQ] = ACTIONS(5062), + [anon_sym_SLASH_EQ] = ACTIONS(5062), + [anon_sym_PERCENT_EQ] = ACTIONS(5062), + [anon_sym_PLUS_EQ] = ACTIONS(5062), + [anon_sym_DASH_EQ] = ACTIONS(5062), + [anon_sym_LT_LT_EQ] = ACTIONS(5062), + [anon_sym_GT_GT_EQ] = ACTIONS(5060), + [anon_sym_AMP_EQ] = ACTIONS(5062), + [anon_sym_CARET_EQ] = ACTIONS(5062), + [anon_sym_PIPE_EQ] = ACTIONS(5062), + [anon_sym_and_eq] = ACTIONS(5060), + [anon_sym_or_eq] = ACTIONS(5060), + [anon_sym_xor_eq] = ACTIONS(5060), + [anon_sym_LT_EQ_GT] = ACTIONS(5062), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_bitor] = ACTIONS(5060), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_bitand] = ACTIONS(5060), + [anon_sym_not_eq] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DOT_STAR] = ACTIONS(5062), + [anon_sym_DASH_GT] = ACTIONS(5062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5060), + [anon_sym_decltype] = ACTIONS(5060), + [anon_sym_GT2] = ACTIONS(5062), + }, + [STATE(1663)] = { + [sym_function_definition] = STATE(526), + [sym_declaration] = STATE(526), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4661), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1965), + [sym_declaration_list] = STATE(526), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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_LBRACE] = ACTIONS(5248), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1664)] = { + [sym_function_definition] = STATE(754), + [sym_declaration] = STATE(754), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4756), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1987), + [sym_declaration_list] = STATE(754), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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_LBRACE] = ACTIONS(5250), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1665)] = { + [sym_function_definition] = STATE(367), + [sym_declaration] = STATE(367), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4740), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1985), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8286), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5254), + [anon_sym_struct] = ACTIONS(5256), + [anon_sym_union] = ACTIONS(5258), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1666)] = { + [sym_type_qualifier] = STATE(1666), + [sym_alignas_qualifier] = STATE(1693), + [aux_sym__type_definition_type_repeat1] = STATE(1666), + [sym_identifier] = ACTIONS(5060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5062), + [anon_sym_COMMA] = ACTIONS(5062), + [anon_sym_RPAREN] = ACTIONS(5062), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_TILDE] = ACTIONS(5062), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5062), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_SEMI] = ACTIONS(5062), + [anon_sym___extension__] = ACTIONS(5260), + [anon_sym_virtual] = ACTIONS(5060), + [anon_sym_extern] = ACTIONS(5060), + [anon_sym___attribute__] = ACTIONS(5060), + [anon_sym___attribute] = ACTIONS(5060), + [anon_sym_COLON_COLON] = ACTIONS(5062), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5062), + [anon_sym___declspec] = ACTIONS(5060), + [anon_sym___based] = ACTIONS(5060), + [anon_sym___cdecl] = ACTIONS(5060), + [anon_sym___clrcall] = ACTIONS(5060), + [anon_sym___stdcall] = ACTIONS(5060), + [anon_sym___fastcall] = ACTIONS(5060), + [anon_sym___thiscall] = ACTIONS(5060), + [anon_sym___vectorcall] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5062), + [anon_sym_signed] = ACTIONS(5060), + [anon_sym_unsigned] = ACTIONS(5060), + [anon_sym_long] = ACTIONS(5060), + [anon_sym_short] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5060), + [anon_sym_static] = ACTIONS(5060), + [anon_sym_EQ] = ACTIONS(5062), + [anon_sym_register] = ACTIONS(5060), + [anon_sym_inline] = ACTIONS(5060), + [anon_sym___inline] = ACTIONS(5060), + [anon_sym___inline__] = ACTIONS(5060), + [anon_sym___forceinline] = ACTIONS(5060), + [anon_sym_thread_local] = ACTIONS(5060), + [anon_sym___thread] = ACTIONS(5060), + [anon_sym_const] = ACTIONS(5260), + [anon_sym_constexpr] = ACTIONS(5260), + [anon_sym_volatile] = ACTIONS(5260), + [anon_sym_restrict] = ACTIONS(5260), + [anon_sym___restrict__] = ACTIONS(5260), + [anon_sym__Atomic] = ACTIONS(5260), + [anon_sym__Noreturn] = ACTIONS(5260), + [anon_sym_noreturn] = ACTIONS(5260), + [anon_sym__Nonnull] = ACTIONS(5260), + [anon_sym_mutable] = ACTIONS(5260), + [anon_sym_constinit] = ACTIONS(5260), + [anon_sym_consteval] = ACTIONS(5260), + [anon_sym_alignas] = ACTIONS(5263), + [anon_sym__Alignas] = ACTIONS(5263), + [sym_primitive_type] = ACTIONS(5060), + [anon_sym_enum] = ACTIONS(5060), + [anon_sym_class] = ACTIONS(5060), + [anon_sym_struct] = ACTIONS(5060), + [anon_sym_union] = ACTIONS(5060), + [anon_sym_asm] = ACTIONS(5060), + [anon_sym___asm__] = ACTIONS(5060), + [anon_sym___asm] = ACTIONS(5060), + [anon_sym_DASH_GT] = ACTIONS(5062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5060), + [anon_sym_decltype] = ACTIONS(5060), + [anon_sym_final] = ACTIONS(5060), + [anon_sym_override] = ACTIONS(5060), + [anon_sym_typename] = ACTIONS(5060), + [anon_sym_template] = ACTIONS(5060), + [anon_sym_GT2] = ACTIONS(5062), + [anon_sym_operator] = ACTIONS(5060), + [anon_sym_try] = ACTIONS(5060), + [anon_sym_noexcept] = ACTIONS(5060), + [anon_sym_throw] = ACTIONS(5060), + [anon_sym_requires] = ACTIONS(5060), + }, + [STATE(1667)] = { + [sym_function_definition] = STATE(1833), + [sym_declaration] = STATE(1833), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4765), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1989), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8128), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5266), + [anon_sym_struct] = ACTIONS(5268), + [anon_sym_union] = ACTIONS(5270), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), - [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), + [STATE(1668)] = { + [sym_function_definition] = STATE(1771), + [sym_declaration] = STATE(1771), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4765), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1989), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8185), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5272), + [anon_sym_struct] = ACTIONS(5274), + [anon_sym_union] = ACTIONS(5276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1669)] = { + [sym_function_definition] = STATE(603), + [sym_declaration] = STATE(603), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4661), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1965), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8511), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5278), + [anon_sym_struct] = ACTIONS(5280), + [anon_sym_union] = ACTIONS(5282), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1670)] = { + [sym_function_definition] = STATE(696), + [sym_declaration] = STATE(696), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4756), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1987), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8603), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5284), + [anon_sym_struct] = ACTIONS(5286), + [anon_sym_union] = ACTIONS(5288), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), }, - [STATE(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), - }, - [STATE(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), + [STATE(1671)] = { + [sym_function_definition] = STATE(699), + [sym_declaration] = STATE(699), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4756), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1987), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8686), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5290), + [anon_sym_struct] = ACTIONS(5292), + [anon_sym_union] = ACTIONS(5294), [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), - }, - [STATE(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1672)] = { + [sym_function_definition] = STATE(2140), + [sym_declaration] = STATE(2140), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4772), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1990), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8336), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5296), + [anon_sym_struct] = ACTIONS(5298), + [anon_sym_union] = ACTIONS(5300), [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(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1673)] = { + [sym_function_definition] = STATE(2156), + [sym_declaration] = STATE(2156), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4772), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1990), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8687), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5302), + [anon_sym_struct] = ACTIONS(5304), + [anon_sym_union] = ACTIONS(5306), [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(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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(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), + [STATE(1674)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1674), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LPAREN2] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_LT_LT] = ACTIONS(5089), + [anon_sym_GT_GT] = ACTIONS(5089), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5089), + [anon_sym___attribute] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_signed] = ACTIONS(5308), + [anon_sym_unsigned] = ACTIONS(5308), + [anon_sym_long] = ACTIONS(5308), + [anon_sym_short] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_LT_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_GT_EQ] = ACTIONS(5091), + [anon_sym_AMP_EQ] = ACTIONS(5091), + [anon_sym_CARET_EQ] = ACTIONS(5091), + [anon_sym_PIPE_EQ] = ACTIONS(5091), + [anon_sym_and_eq] = ACTIONS(5089), + [anon_sym_or_eq] = ACTIONS(5089), + [anon_sym_xor_eq] = ACTIONS(5089), + [anon_sym_LT_EQ_GT] = ACTIONS(5091), + [anon_sym_or] = ACTIONS(5089), + [anon_sym_and] = ACTIONS(5089), + [anon_sym_bitor] = ACTIONS(5089), + [anon_sym_xor] = ACTIONS(5089), + [anon_sym_bitand] = ACTIONS(5089), + [anon_sym_not_eq] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_DOT_STAR] = ACTIONS(5091), + [anon_sym_DASH_GT] = ACTIONS(5089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5089), + [anon_sym_decltype] = ACTIONS(5089), + [anon_sym_DASH_GT_STAR] = ACTIONS(5091), }, - [STATE(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), + [STATE(1675)] = { + [sym_function_definition] = STATE(631), + [sym_declaration] = STATE(631), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4661), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1965), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8325), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5311), + [anon_sym_struct] = ACTIONS(5313), + [anon_sym_union] = ACTIONS(5315), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1676)] = { + [sym_function_definition] = STATE(2142), + [sym_declaration] = STATE(2142), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4761), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1988), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8210), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5317), + [anon_sym_struct] = ACTIONS(5319), + [anon_sym_union] = ACTIONS(5321), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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(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), + [STATE(1677)] = { + [sym_type_qualifier] = STATE(1678), + [sym_alignas_qualifier] = STATE(1717), + [aux_sym__type_definition_type_repeat1] = STATE(1678), + [aux_sym_sized_type_specifier_repeat1] = STATE(1700), + [sym_identifier] = ACTIONS(5323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(5123), + [anon_sym_LPAREN2] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5125), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5125), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5125), + [anon_sym_AMP] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_LT_LT] = ACTIONS(5125), + [anon_sym_GT_GT] = ACTIONS(5125), + [anon_sym___extension__] = ACTIONS(5325), + [anon_sym___attribute__] = ACTIONS(5125), + [anon_sym___attribute] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_signed] = ACTIONS(5327), + [anon_sym_unsigned] = ACTIONS(5327), + [anon_sym_long] = ACTIONS(5327), + [anon_sym_short] = ACTIONS(5327), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_const] = ACTIONS(5325), + [anon_sym_constexpr] = ACTIONS(5325), + [anon_sym_volatile] = ACTIONS(5325), + [anon_sym_restrict] = ACTIONS(5325), + [anon_sym___restrict__] = ACTIONS(5325), + [anon_sym__Atomic] = ACTIONS(5325), + [anon_sym__Noreturn] = ACTIONS(5325), + [anon_sym_noreturn] = ACTIONS(5325), + [anon_sym__Nonnull] = ACTIONS(5325), + [anon_sym_mutable] = ACTIONS(5325), + [anon_sym_constinit] = ACTIONS(5325), + [anon_sym_consteval] = ACTIONS(5325), + [anon_sym_alignas] = ACTIONS(5329), + [anon_sym__Alignas] = ACTIONS(5329), + [sym_primitive_type] = ACTIONS(5331), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_STAR_EQ] = ACTIONS(5123), + [anon_sym_SLASH_EQ] = ACTIONS(5123), + [anon_sym_PERCENT_EQ] = ACTIONS(5123), + [anon_sym_PLUS_EQ] = ACTIONS(5123), + [anon_sym_DASH_EQ] = ACTIONS(5123), + [anon_sym_LT_LT_EQ] = ACTIONS(5123), + [anon_sym_GT_GT_EQ] = ACTIONS(5123), + [anon_sym_AMP_EQ] = ACTIONS(5123), + [anon_sym_CARET_EQ] = ACTIONS(5123), + [anon_sym_PIPE_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ_GT] = ACTIONS(5123), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_bitor] = ACTIONS(5125), + [anon_sym_xor] = ACTIONS(5125), + [anon_sym_bitand] = ACTIONS(5125), + [anon_sym_not_eq] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_DOT_STAR] = ACTIONS(5123), + [anon_sym_DASH_GT] = ACTIONS(5125), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5125), + [anon_sym_decltype] = ACTIONS(5125), + [anon_sym_DASH_GT_STAR] = ACTIONS(5123), }, - [STATE(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), + [STATE(1678)] = { + [sym_type_qualifier] = STATE(1686), + [sym_alignas_qualifier] = STATE(1717), + [aux_sym__type_definition_type_repeat1] = STATE(1686), + [aux_sym_sized_type_specifier_repeat1] = STATE(2813), + [sym_identifier] = ACTIONS(5333), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5104), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5104), + [anon_sym_PIPE_PIPE] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5102), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5104), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5102), + [anon_sym_BANG_EQ] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5104), + [anon_sym_GT_GT] = ACTIONS(5104), + [anon_sym___extension__] = ACTIONS(5325), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_signed] = ACTIONS(5335), + [anon_sym_unsigned] = ACTIONS(5335), + [anon_sym_long] = ACTIONS(5335), + [anon_sym_short] = ACTIONS(5335), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_EQ] = ACTIONS(5104), + [anon_sym_const] = ACTIONS(5325), + [anon_sym_constexpr] = ACTIONS(5325), + [anon_sym_volatile] = ACTIONS(5325), + [anon_sym_restrict] = ACTIONS(5325), + [anon_sym___restrict__] = ACTIONS(5325), + [anon_sym__Atomic] = ACTIONS(5325), + [anon_sym__Noreturn] = ACTIONS(5325), + [anon_sym_noreturn] = ACTIONS(5325), + [anon_sym__Nonnull] = ACTIONS(5325), + [anon_sym_mutable] = ACTIONS(5325), + [anon_sym_constinit] = ACTIONS(5325), + [anon_sym_consteval] = ACTIONS(5325), + [anon_sym_alignas] = ACTIONS(5329), + [anon_sym__Alignas] = ACTIONS(5329), + [sym_primitive_type] = ACTIONS(5337), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_STAR_EQ] = ACTIONS(5102), + [anon_sym_SLASH_EQ] = ACTIONS(5102), + [anon_sym_PERCENT_EQ] = ACTIONS(5102), + [anon_sym_PLUS_EQ] = ACTIONS(5102), + [anon_sym_DASH_EQ] = ACTIONS(5102), + [anon_sym_LT_LT_EQ] = ACTIONS(5102), + [anon_sym_GT_GT_EQ] = ACTIONS(5102), + [anon_sym_AMP_EQ] = ACTIONS(5102), + [anon_sym_CARET_EQ] = ACTIONS(5102), + [anon_sym_PIPE_EQ] = ACTIONS(5102), + [anon_sym_LT_EQ_GT] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5102), + [anon_sym_DASH_GT] = ACTIONS(5104), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + [anon_sym_DASH_GT_STAR] = ACTIONS(5102), }, - [STATE(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), + [STATE(1679)] = { + [sym_function_definition] = STATE(692), + [sym_declaration] = STATE(692), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4682), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1984), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8347), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5339), + [anon_sym_struct] = ACTIONS(5341), + [anon_sym_union] = ACTIONS(5343), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1680)] = { + [sym_function_definition] = STATE(2021), + [sym_declaration] = STATE(2021), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4761), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1988), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8842), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5345), + [anon_sym_struct] = ACTIONS(5347), + [anon_sym_union] = ACTIONS(5349), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1681)] = { + [sym_function_definition] = STATE(729), + [sym_declaration] = STATE(729), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4682), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1984), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8832), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5351), + [anon_sym_struct] = ACTIONS(5353), + [anon_sym_union] = ACTIONS(5355), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1682)] = { + [sym_function_definition] = STATE(370), + [sym_declaration] = STATE(370), + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4740), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_ms_call_modifier] = STATE(1985), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym__class_name] = STATE(8377), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(3796), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3797), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5252), + [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(5236), + [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(3027), + [anon_sym_enum] = ACTIONS(73), + [anon_sym_class] = ACTIONS(5357), + [anon_sym_struct] = ACTIONS(5359), + [anon_sym_union] = ACTIONS(5361), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1683)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1674), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_RPAREN] = ACTIONS(5141), + [anon_sym_LPAREN2] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5138), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5138), + [anon_sym___attribute] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_signed] = ACTIONS(5308), + [anon_sym_unsigned] = ACTIONS(5308), + [anon_sym_long] = ACTIONS(5308), + [anon_sym_short] = ACTIONS(5308), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_LT_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_GT_EQ] = ACTIONS(5141), + [anon_sym_AMP_EQ] = ACTIONS(5141), + [anon_sym_CARET_EQ] = ACTIONS(5141), + [anon_sym_PIPE_EQ] = ACTIONS(5141), + [anon_sym_and_eq] = ACTIONS(5138), + [anon_sym_or_eq] = ACTIONS(5138), + [anon_sym_xor_eq] = ACTIONS(5138), + [anon_sym_LT_EQ_GT] = ACTIONS(5141), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_bitor] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_bitand] = ACTIONS(5138), + [anon_sym_not_eq] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_STAR] = ACTIONS(5141), + [anon_sym_DASH_GT] = ACTIONS(5138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5138), + [anon_sym_decltype] = ACTIONS(5138), + [anon_sym_DASH_GT_STAR] = ACTIONS(5141), + }, + [STATE(1684)] = { + [sym_type_qualifier] = STATE(1684), + [sym_alignas_qualifier] = STATE(1719), + [aux_sym__type_definition_type_repeat1] = STATE(1684), + [sym_identifier] = ACTIONS(5060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5062), + [anon_sym_COMMA] = ACTIONS(5062), + [anon_sym_RPAREN] = ACTIONS(5062), + [aux_sym_preproc_if_token2] = ACTIONS(5062), + [aux_sym_preproc_else_token1] = ACTIONS(5062), + [aux_sym_preproc_elif_token1] = ACTIONS(5060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5062), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5062), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5062), + [anon_sym_PIPE_PIPE] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5062), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5062), + [anon_sym_GT_GT] = ACTIONS(5062), + [anon_sym_SEMI] = ACTIONS(5062), + [anon_sym___extension__] = ACTIONS(5363), + [anon_sym___attribute__] = ACTIONS(5060), + [anon_sym___attribute] = ACTIONS(5060), + [anon_sym_COLON] = ACTIONS(5062), + [anon_sym_LBRACE] = ACTIONS(5062), + [anon_sym_RBRACE] = ACTIONS(5062), + [anon_sym_signed] = ACTIONS(5060), + [anon_sym_unsigned] = ACTIONS(5060), + [anon_sym_long] = ACTIONS(5060), + [anon_sym_short] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_RBRACK] = ACTIONS(5062), + [anon_sym_const] = ACTIONS(5363), + [anon_sym_constexpr] = ACTIONS(5363), + [anon_sym_volatile] = ACTIONS(5363), + [anon_sym_restrict] = ACTIONS(5363), + [anon_sym___restrict__] = ACTIONS(5363), + [anon_sym__Atomic] = ACTIONS(5363), + [anon_sym__Noreturn] = ACTIONS(5363), + [anon_sym_noreturn] = ACTIONS(5363), + [anon_sym__Nonnull] = ACTIONS(5363), + [anon_sym_mutable] = ACTIONS(5363), + [anon_sym_constinit] = ACTIONS(5363), + [anon_sym_consteval] = ACTIONS(5363), + [anon_sym_alignas] = ACTIONS(5366), + [anon_sym__Alignas] = ACTIONS(5366), + [sym_primitive_type] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_LT_EQ_GT] = ACTIONS(5062), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_bitor] = ACTIONS(5060), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_bitand] = ACTIONS(5060), + [anon_sym_not_eq] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DOT_STAR] = ACTIONS(5062), + [anon_sym_DASH_GT] = ACTIONS(5062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5060), + [anon_sym_decltype] = ACTIONS(5060), + [anon_sym_final] = ACTIONS(5060), + [anon_sym_override] = ACTIONS(5060), + [anon_sym_requires] = ACTIONS(5060), }, - [STATE(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), + [STATE(1685)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1685), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_LPAREN2] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5089), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_LT_LT] = ACTIONS(5089), + [anon_sym_GT_GT] = ACTIONS(5089), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5089), + [anon_sym___attribute] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_signed] = ACTIONS(5369), + [anon_sym_unsigned] = ACTIONS(5369), + [anon_sym_long] = ACTIONS(5369), + [anon_sym_short] = ACTIONS(5369), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_LT_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_GT_EQ] = ACTIONS(5089), + [anon_sym_AMP_EQ] = ACTIONS(5091), + [anon_sym_CARET_EQ] = ACTIONS(5091), + [anon_sym_PIPE_EQ] = ACTIONS(5091), + [anon_sym_and_eq] = ACTIONS(5089), + [anon_sym_or_eq] = ACTIONS(5089), + [anon_sym_xor_eq] = ACTIONS(5089), + [anon_sym_LT_EQ_GT] = ACTIONS(5091), + [anon_sym_or] = ACTIONS(5089), + [anon_sym_and] = ACTIONS(5089), + [anon_sym_bitor] = ACTIONS(5089), + [anon_sym_xor] = ACTIONS(5089), + [anon_sym_bitand] = ACTIONS(5089), + [anon_sym_not_eq] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_DOT_STAR] = ACTIONS(5091), + [anon_sym_DASH_GT] = ACTIONS(5091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5089), + [anon_sym_decltype] = ACTIONS(5089), + [anon_sym_GT2] = ACTIONS(5091), }, - [STATE(1776)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(2827), - [aux_sym_preproc_elif_token1] = ACTIONS(2827), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2827), - [aux_sym_preproc_elifdef_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), + [STATE(1686)] = { + [sym_type_qualifier] = STATE(1686), + [sym_alignas_qualifier] = STATE(1717), + [aux_sym__type_definition_type_repeat1] = STATE(1686), + [sym_identifier] = ACTIONS(5060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5062), + [anon_sym_COMMA] = ACTIONS(5062), + [anon_sym_RPAREN] = ACTIONS(5062), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_STAR] = ACTIONS(5060), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5060), + [anon_sym_PIPE_PIPE] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5060), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5062), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5060), + [anon_sym_GT_GT] = ACTIONS(5060), + [anon_sym___extension__] = ACTIONS(5372), + [anon_sym___attribute__] = ACTIONS(5060), + [anon_sym___attribute] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5062), + [anon_sym_signed] = ACTIONS(5060), + [anon_sym_unsigned] = ACTIONS(5060), + [anon_sym_long] = ACTIONS(5060), + [anon_sym_short] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_EQ] = ACTIONS(5060), + [anon_sym_const] = ACTIONS(5372), + [anon_sym_constexpr] = ACTIONS(5372), + [anon_sym_volatile] = ACTIONS(5372), + [anon_sym_restrict] = ACTIONS(5372), + [anon_sym___restrict__] = ACTIONS(5372), + [anon_sym__Atomic] = ACTIONS(5372), + [anon_sym__Noreturn] = ACTIONS(5372), + [anon_sym_noreturn] = ACTIONS(5372), + [anon_sym__Nonnull] = ACTIONS(5372), + [anon_sym_mutable] = ACTIONS(5372), + [anon_sym_constinit] = ACTIONS(5372), + [anon_sym_consteval] = ACTIONS(5372), + [anon_sym_alignas] = ACTIONS(5375), + [anon_sym__Alignas] = ACTIONS(5375), + [sym_primitive_type] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_STAR_EQ] = ACTIONS(5062), + [anon_sym_SLASH_EQ] = ACTIONS(5062), + [anon_sym_PERCENT_EQ] = ACTIONS(5062), + [anon_sym_PLUS_EQ] = ACTIONS(5062), + [anon_sym_DASH_EQ] = ACTIONS(5062), + [anon_sym_LT_LT_EQ] = ACTIONS(5062), + [anon_sym_GT_GT_EQ] = ACTIONS(5062), + [anon_sym_AMP_EQ] = ACTIONS(5062), + [anon_sym_CARET_EQ] = ACTIONS(5062), + [anon_sym_PIPE_EQ] = ACTIONS(5062), + [anon_sym_LT_EQ_GT] = ACTIONS(5062), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_bitor] = ACTIONS(5060), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_bitand] = ACTIONS(5060), + [anon_sym_not_eq] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DOT_STAR] = ACTIONS(5062), + [anon_sym_DASH_GT] = ACTIONS(5060), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5060), + [anon_sym_decltype] = ACTIONS(5060), + [anon_sym_DASH_GT_STAR] = ACTIONS(5062), + }, + [STATE(1687)] = { + [sym_identifier] = ACTIONS(5096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LPAREN2] = ACTIONS(5098), + [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(5098), + [anon_sym_AMP_AMP] = ACTIONS(5098), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5098), + [anon_sym_BANG_EQ] = ACTIONS(5098), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5098), + [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(5096), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(5096), + [anon_sym_unsigned] = ACTIONS(5096), + [anon_sym_long] = ACTIONS(5096), + [anon_sym_short] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5096), + [anon_sym_constexpr] = ACTIONS(5096), + [anon_sym_volatile] = ACTIONS(5096), + [anon_sym_restrict] = ACTIONS(5096), + [anon_sym___restrict__] = ACTIONS(5096), + [anon_sym__Atomic] = ACTIONS(5096), + [anon_sym__Noreturn] = ACTIONS(5096), + [anon_sym_noreturn] = ACTIONS(5096), + [anon_sym__Nonnull] = ACTIONS(5096), + [anon_sym_mutable] = ACTIONS(5096), + [anon_sym_constinit] = ACTIONS(5096), + [anon_sym_consteval] = ACTIONS(5096), + [anon_sym_alignas] = ACTIONS(5096), + [anon_sym__Alignas] = ACTIONS(5096), + [sym_primitive_type] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_STAR_EQ] = ACTIONS(5098), + [anon_sym_SLASH_EQ] = ACTIONS(5098), + [anon_sym_PERCENT_EQ] = ACTIONS(5098), + [anon_sym_PLUS_EQ] = ACTIONS(5098), + [anon_sym_DASH_EQ] = ACTIONS(5098), + [anon_sym_LT_LT_EQ] = ACTIONS(5098), + [anon_sym_GT_GT_EQ] = ACTIONS(5098), + [anon_sym_AMP_EQ] = ACTIONS(5098), + [anon_sym_CARET_EQ] = ACTIONS(5098), + [anon_sym_PIPE_EQ] = ACTIONS(5098), + [anon_sym_and_eq] = ACTIONS(5096), + [anon_sym_or_eq] = ACTIONS(5096), + [anon_sym_xor_eq] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5098), + [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(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5098), + [anon_sym_DASH_GT] = ACTIONS(5096), [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), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_DASH_GT_STAR] = ACTIONS(5098), }, - [STATE(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), + [STATE(1688)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1685), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_LPAREN2] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5138), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5138), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5138), + [anon_sym___attribute] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_signed] = ACTIONS(5369), + [anon_sym_unsigned] = ACTIONS(5369), + [anon_sym_long] = ACTIONS(5369), + [anon_sym_short] = ACTIONS(5369), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_LT_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_GT_EQ] = ACTIONS(5138), + [anon_sym_AMP_EQ] = ACTIONS(5141), + [anon_sym_CARET_EQ] = ACTIONS(5141), + [anon_sym_PIPE_EQ] = ACTIONS(5141), + [anon_sym_and_eq] = ACTIONS(5138), + [anon_sym_or_eq] = ACTIONS(5138), + [anon_sym_xor_eq] = ACTIONS(5138), + [anon_sym_LT_EQ_GT] = ACTIONS(5141), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_bitor] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_bitand] = ACTIONS(5138), + [anon_sym_not_eq] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_STAR] = ACTIONS(5141), + [anon_sym_DASH_GT] = ACTIONS(5141), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5138), + [anon_sym_decltype] = ACTIONS(5138), + [anon_sym_GT2] = ACTIONS(5141), }, - [STATE(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(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), + [STATE(1689)] = { + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2562), + [anon_sym_STAR_EQ] = ACTIONS(2562), + [anon_sym_SLASH_EQ] = ACTIONS(2562), + [anon_sym_PERCENT_EQ] = ACTIONS(2562), + [anon_sym_PLUS_EQ] = ACTIONS(2562), + [anon_sym_DASH_EQ] = ACTIONS(2562), + [anon_sym_LT_LT_EQ] = ACTIONS(2562), + [anon_sym_GT_GT_EQ] = ACTIONS(2562), + [anon_sym_AMP_EQ] = ACTIONS(2562), + [anon_sym_CARET_EQ] = ACTIONS(2562), + [anon_sym_PIPE_EQ] = ACTIONS(2562), + [anon_sym_and_eq] = ACTIONS(2572), + [anon_sym_or_eq] = ACTIONS(2572), + [anon_sym_xor_eq] = ACTIONS(2572), + [anon_sym_LT_EQ_GT] = ACTIONS(2562), + [anon_sym_or] = ACTIONS(2572), + [anon_sym_and] = ACTIONS(2572), + [anon_sym_bitor] = ACTIONS(2572), + [anon_sym_xor] = ACTIONS(2572), + [anon_sym_bitand] = ACTIONS(2572), + [anon_sym_not_eq] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DOT] = ACTIONS(2572), + [anon_sym_DOT_STAR] = ACTIONS(2562), + [anon_sym_DASH_GT] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2572), + [anon_sym_DASH_GT_STAR] = ACTIONS(2562), }, - [STATE(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(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), + [STATE(1690)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4000), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7684), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_type_parameter_declaration] = STATE(7684), + [sym_variadic_type_parameter_declaration] = STATE(7684), + [sym_optional_type_parameter_declaration] = STATE(7684), + [sym_template_template_parameter_declaration] = STATE(7684), + [sym_optional_parameter_declaration] = STATE(7684), + [sym_variadic_parameter_declaration] = STATE(7684), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [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(5036), + [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(3027), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(5378), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1890), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(5380), + [anon_sym_template] = ACTIONS(5382), + [anon_sym_GT2] = ACTIONS(5384), }, - [STATE(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(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), + [STATE(1691)] = { + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_GT_EQ] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2562), + [anon_sym_STAR_EQ] = ACTIONS(2562), + [anon_sym_SLASH_EQ] = ACTIONS(2562), + [anon_sym_PERCENT_EQ] = ACTIONS(2562), + [anon_sym_PLUS_EQ] = ACTIONS(2562), + [anon_sym_DASH_EQ] = ACTIONS(2562), + [anon_sym_LT_LT_EQ] = ACTIONS(2562), + [anon_sym_GT_GT_EQ] = ACTIONS(2572), + [anon_sym_AMP_EQ] = ACTIONS(2562), + [anon_sym_CARET_EQ] = ACTIONS(2562), + [anon_sym_PIPE_EQ] = ACTIONS(2562), + [anon_sym_and_eq] = ACTIONS(2572), + [anon_sym_or_eq] = ACTIONS(2572), + [anon_sym_xor_eq] = ACTIONS(2572), + [anon_sym_LT_EQ_GT] = ACTIONS(2562), + [anon_sym_or] = ACTIONS(2572), + [anon_sym_and] = ACTIONS(2572), + [anon_sym_bitor] = ACTIONS(2572), + [anon_sym_xor] = ACTIONS(2572), + [anon_sym_bitand] = ACTIONS(2572), + [anon_sym_not_eq] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DOT] = ACTIONS(2572), + [anon_sym_DOT_STAR] = ACTIONS(2562), + [anon_sym_DASH_GT] = ACTIONS(2562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2572), + [anon_sym_GT2] = ACTIONS(2562), }, - [STATE(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), + [STATE(1692)] = { + [sym_identifier] = ACTIONS(5096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_LPAREN2] = ACTIONS(5098), + [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(5098), + [anon_sym_AMP_AMP] = ACTIONS(5098), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5098), + [anon_sym_BANG_EQ] = ACTIONS(5098), + [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(5096), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(5096), + [anon_sym_unsigned] = ACTIONS(5096), + [anon_sym_long] = ACTIONS(5096), + [anon_sym_short] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5096), + [anon_sym_constexpr] = ACTIONS(5096), + [anon_sym_volatile] = ACTIONS(5096), + [anon_sym_restrict] = ACTIONS(5096), + [anon_sym___restrict__] = ACTIONS(5096), + [anon_sym__Atomic] = ACTIONS(5096), + [anon_sym__Noreturn] = ACTIONS(5096), + [anon_sym_noreturn] = ACTIONS(5096), + [anon_sym__Nonnull] = ACTIONS(5096), + [anon_sym_mutable] = ACTIONS(5096), + [anon_sym_constinit] = ACTIONS(5096), + [anon_sym_consteval] = ACTIONS(5096), + [anon_sym_alignas] = ACTIONS(5096), + [anon_sym__Alignas] = ACTIONS(5096), + [sym_primitive_type] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_STAR_EQ] = ACTIONS(5098), + [anon_sym_SLASH_EQ] = ACTIONS(5098), + [anon_sym_PERCENT_EQ] = ACTIONS(5098), + [anon_sym_PLUS_EQ] = ACTIONS(5098), + [anon_sym_DASH_EQ] = ACTIONS(5098), + [anon_sym_LT_LT_EQ] = ACTIONS(5098), + [anon_sym_GT_GT_EQ] = ACTIONS(5096), + [anon_sym_AMP_EQ] = ACTIONS(5098), + [anon_sym_CARET_EQ] = ACTIONS(5098), + [anon_sym_PIPE_EQ] = ACTIONS(5098), + [anon_sym_and_eq] = ACTIONS(5096), + [anon_sym_or_eq] = ACTIONS(5096), + [anon_sym_xor_eq] = ACTIONS(5096), + [anon_sym_LT_EQ_GT] = ACTIONS(5098), + [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(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5098), + [anon_sym_DASH_GT] = ACTIONS(5098), [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(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_GT2] = ACTIONS(5098), }, - [STATE(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), + [STATE(1693)] = { + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym_virtual] = ACTIONS(2572), + [anon_sym_extern] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2562), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2562), + [anon_sym___declspec] = ACTIONS(2572), + [anon_sym___based] = ACTIONS(2572), + [anon_sym___cdecl] = ACTIONS(2572), + [anon_sym___clrcall] = ACTIONS(2572), + [anon_sym___stdcall] = ACTIONS(2572), + [anon_sym___fastcall] = ACTIONS(2572), + [anon_sym___thiscall] = ACTIONS(2572), + [anon_sym___vectorcall] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2572), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_EQ] = ACTIONS(2562), + [anon_sym_register] = ACTIONS(2572), + [anon_sym_inline] = ACTIONS(2572), + [anon_sym___inline] = ACTIONS(2572), + [anon_sym___inline__] = ACTIONS(2572), + [anon_sym___forceinline] = ACTIONS(2572), + [anon_sym_thread_local] = ACTIONS(2572), + [anon_sym___thread] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_enum] = ACTIONS(2572), + [anon_sym_class] = ACTIONS(2572), + [anon_sym_struct] = ACTIONS(2572), + [anon_sym_union] = ACTIONS(2572), + [anon_sym_asm] = ACTIONS(2572), + [anon_sym___asm__] = ACTIONS(2572), + [anon_sym___asm] = ACTIONS(2572), + [anon_sym_DASH_GT] = ACTIONS(2562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2572), + [anon_sym_final] = ACTIONS(2572), + [anon_sym_override] = ACTIONS(2572), + [anon_sym_explicit] = ACTIONS(2572), + [anon_sym_typename] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2572), + [anon_sym_GT2] = ACTIONS(2562), + [anon_sym_operator] = ACTIONS(2572), + [anon_sym_try] = ACTIONS(2572), + [anon_sym_noexcept] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2572), + [anon_sym_requires] = ACTIONS(2572), }, - [STATE(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), + [STATE(1694)] = { + [sym_identifier] = ACTIONS(5096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LPAREN2] = ACTIONS(5098), + [anon_sym_TILDE] = ACTIONS(5098), + [anon_sym_STAR] = ACTIONS(5098), + [anon_sym_AMP_AMP] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_SEMI] = ACTIONS(5098), + [anon_sym___extension__] = ACTIONS(5096), + [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(5098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5098), + [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(5098), + [anon_sym_signed] = ACTIONS(5096), + [anon_sym_unsigned] = ACTIONS(5096), + [anon_sym_long] = ACTIONS(5096), + [anon_sym_short] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5096), + [anon_sym_static] = ACTIONS(5096), + [anon_sym_EQ] = ACTIONS(5098), + [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(5096), + [anon_sym_constexpr] = ACTIONS(5096), + [anon_sym_volatile] = ACTIONS(5096), + [anon_sym_restrict] = ACTIONS(5096), + [anon_sym___restrict__] = ACTIONS(5096), + [anon_sym__Atomic] = ACTIONS(5096), + [anon_sym__Noreturn] = ACTIONS(5096), + [anon_sym_noreturn] = ACTIONS(5096), + [anon_sym__Nonnull] = ACTIONS(5096), + [anon_sym_mutable] = ACTIONS(5096), + [anon_sym_constinit] = ACTIONS(5096), + [anon_sym_consteval] = ACTIONS(5096), + [anon_sym_alignas] = ACTIONS(5096), + [anon_sym__Alignas] = ACTIONS(5096), + [sym_primitive_type] = ACTIONS(5096), + [anon_sym_enum] = ACTIONS(5096), + [anon_sym_class] = ACTIONS(5096), + [anon_sym_struct] = ACTIONS(5096), + [anon_sym_union] = ACTIONS(5096), + [anon_sym_asm] = ACTIONS(5096), + [anon_sym___asm__] = ACTIONS(5096), + [anon_sym___asm] = ACTIONS(5096), + [anon_sym_DASH_GT] = ACTIONS(5098), [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(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_final] = ACTIONS(5096), + [anon_sym_override] = ACTIONS(5096), + [anon_sym_explicit] = ACTIONS(5096), + [anon_sym_typename] = ACTIONS(5096), + [anon_sym_template] = ACTIONS(5096), + [anon_sym_GT2] = ACTIONS(5098), + [anon_sym_operator] = ACTIONS(5096), + [anon_sym_try] = ACTIONS(5096), + [anon_sym_noexcept] = ACTIONS(5096), + [anon_sym_throw] = ACTIONS(5096), + [anon_sym_requires] = ACTIONS(5096), }, - [STATE(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), + [STATE(1695)] = { + [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(5521), - [anon_sym_decltype] = ACTIONS(5521), - [anon_sym_final] = ACTIONS(5521), - [anon_sym_override] = ACTIONS(5521), - [anon_sym_requires] = ACTIONS(5521), + [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), }, - [STATE(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), - [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), + [STATE(1696)] = { + [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), }, - [STATE(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), + [STATE(1697)] = { + [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), + }, + [STATE(1698)] = { + [sym_string_literal] = STATE(1726), + [sym_template_argument_list] = STATE(2395), + [sym_raw_string_literal] = STATE(1726), + [sym_identifier] = ACTIONS(4168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4161), + [aux_sym_preproc_if_token2] = ACTIONS(4161), + [aux_sym_preproc_else_token1] = ACTIONS(4161), + [aux_sym_preproc_elif_token1] = ACTIONS(4168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4161), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5386), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4168), + [anon_sym_or_eq] = ACTIONS(4168), + [anon_sym_xor_eq] = ACTIONS(4168), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [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(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), + [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), }, - [STATE(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), + [STATE(1699)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1699), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LPAREN2] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_LT_LT] = ACTIONS(5089), + [anon_sym_GT_GT] = ACTIONS(5089), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5089), + [anon_sym___attribute] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_signed] = ACTIONS(5389), + [anon_sym_unsigned] = ACTIONS(5389), + [anon_sym_long] = ACTIONS(5389), + [anon_sym_short] = ACTIONS(5389), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_LT_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_GT_EQ] = ACTIONS(5091), + [anon_sym_AMP_EQ] = ACTIONS(5091), + [anon_sym_CARET_EQ] = ACTIONS(5091), + [anon_sym_PIPE_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ_GT] = ACTIONS(5091), + [anon_sym_or] = ACTIONS(5089), + [anon_sym_and] = ACTIONS(5089), + [anon_sym_bitor] = ACTIONS(5089), + [anon_sym_xor] = ACTIONS(5089), + [anon_sym_bitand] = ACTIONS(5089), + [anon_sym_not_eq] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_DOT_STAR] = ACTIONS(5091), + [anon_sym_DASH_GT] = ACTIONS(5089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5089), + [anon_sym_decltype] = ACTIONS(5089), + [anon_sym_DASH_GT_STAR] = ACTIONS(5091), }, - [STATE(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), + [STATE(1700)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1699), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_RPAREN] = ACTIONS(5141), + [anon_sym_LPAREN2] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5138), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5138), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5138), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5138), + [anon_sym_GT_GT] = ACTIONS(5138), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5138), + [anon_sym___attribute] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_signed] = ACTIONS(5389), + [anon_sym_unsigned] = ACTIONS(5389), + [anon_sym_long] = ACTIONS(5389), + [anon_sym_short] = ACTIONS(5389), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(5138), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_STAR_EQ] = ACTIONS(5141), + [anon_sym_SLASH_EQ] = ACTIONS(5141), + [anon_sym_PERCENT_EQ] = ACTIONS(5141), + [anon_sym_PLUS_EQ] = ACTIONS(5141), + [anon_sym_DASH_EQ] = ACTIONS(5141), + [anon_sym_LT_LT_EQ] = ACTIONS(5141), + [anon_sym_GT_GT_EQ] = ACTIONS(5141), + [anon_sym_AMP_EQ] = ACTIONS(5141), + [anon_sym_CARET_EQ] = ACTIONS(5141), + [anon_sym_PIPE_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ_GT] = ACTIONS(5141), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_bitor] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_bitand] = ACTIONS(5138), + [anon_sym_not_eq] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_STAR] = ACTIONS(5141), + [anon_sym_DASH_GT] = ACTIONS(5138), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5138), + [anon_sym_decltype] = ACTIONS(5138), + [anon_sym_DASH_GT_STAR] = ACTIONS(5141), + }, + [STATE(1701)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [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(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4998), + [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___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___attribute] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_const] = ACTIONS(4996), [anon_sym_constexpr] = ACTIONS(4998), [anon_sym_volatile] = ACTIONS(4998), [anon_sym_restrict] = ACTIONS(4998), @@ -255190,210 +249267,2084 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_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(4996), + [anon_sym_and] = ACTIONS(4996), [anon_sym_bitor] = ACTIONS(4998), - [anon_sym_xor] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(4996), [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), + [anon_sym_DASH_DASH] = ACTIONS(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_DOT_STAR] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(4996), + [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_DASH_GT_STAR] = ACTIONS(4998), + }, + [STATE(1702)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [aux_sym_preproc_if_token2] = ACTIONS(5091), + [aux_sym_preproc_else_token1] = ACTIONS(5091), + [aux_sym_preproc_elif_token1] = ACTIONS(5089), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5091), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5091), + [anon_sym_LPAREN2] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5091), + [anon_sym_AMP] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_LT_LT] = ACTIONS(5091), + [anon_sym_GT_GT] = ACTIONS(5091), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5089), + [anon_sym___attribute] = ACTIONS(5089), + [anon_sym_COLON] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [anon_sym_signed] = ACTIONS(5392), + [anon_sym_unsigned] = ACTIONS(5392), + [anon_sym_long] = ACTIONS(5392), + [anon_sym_short] = ACTIONS(5392), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5091), + [anon_sym_LT_EQ_GT] = ACTIONS(5091), + [anon_sym_or] = ACTIONS(5089), + [anon_sym_and] = ACTIONS(5089), + [anon_sym_bitor] = ACTIONS(5089), + [anon_sym_xor] = ACTIONS(5089), + [anon_sym_bitand] = ACTIONS(5089), + [anon_sym_not_eq] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_DOT_STAR] = ACTIONS(5091), + [anon_sym_DASH_GT] = ACTIONS(5091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5089), + [anon_sym_decltype] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_requires] = ACTIONS(5089), + }, + [STATE(1703)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5022), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym___extension__] = ACTIONS(5024), + [anon_sym___attribute__] = ACTIONS(5024), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5024), + [anon_sym_volatile] = ACTIONS(5024), + [anon_sym_restrict] = ACTIONS(5024), + [anon_sym___restrict__] = ACTIONS(5024), + [anon_sym__Atomic] = ACTIONS(5024), + [anon_sym__Noreturn] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym__Nonnull] = ACTIONS(5024), + [anon_sym_mutable] = ACTIONS(5024), + [anon_sym_constinit] = ACTIONS(5024), + [anon_sym_consteval] = ACTIONS(5024), + [anon_sym_alignas] = ACTIONS(5024), + [anon_sym__Alignas] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_LT_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_GT_EQ] = ACTIONS(5024), + [anon_sym_AMP_EQ] = ACTIONS(5024), + [anon_sym_CARET_EQ] = ACTIONS(5024), + [anon_sym_PIPE_EQ] = ACTIONS(5024), + [anon_sym_and_eq] = ACTIONS(5024), + [anon_sym_or_eq] = ACTIONS(5024), + [anon_sym_xor_eq] = ACTIONS(5024), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5024), + [anon_sym_not_eq] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5024), + [anon_sym_decltype] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_DASH_GT_STAR] = ACTIONS(5024), + }, + [STATE(1704)] = { + [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), + }, + [STATE(1705)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5018), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym___extension__] = ACTIONS(5020), + [anon_sym___attribute__] = ACTIONS(5020), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5020), + [anon_sym_volatile] = ACTIONS(5020), + [anon_sym_restrict] = ACTIONS(5020), + [anon_sym___restrict__] = ACTIONS(5020), + [anon_sym__Atomic] = ACTIONS(5020), + [anon_sym__Noreturn] = ACTIONS(5020), + [anon_sym_noreturn] = ACTIONS(5020), + [anon_sym__Nonnull] = ACTIONS(5020), + [anon_sym_mutable] = ACTIONS(5020), + [anon_sym_constinit] = ACTIONS(5020), + [anon_sym_consteval] = ACTIONS(5020), + [anon_sym_alignas] = ACTIONS(5020), + [anon_sym__Alignas] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_LT_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_GT_EQ] = ACTIONS(5020), + [anon_sym_AMP_EQ] = ACTIONS(5020), + [anon_sym_CARET_EQ] = ACTIONS(5020), + [anon_sym_PIPE_EQ] = ACTIONS(5020), + [anon_sym_and_eq] = ACTIONS(5020), + [anon_sym_or_eq] = ACTIONS(5020), + [anon_sym_xor_eq] = ACTIONS(5020), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5020), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5020), + [anon_sym_not_eq] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5020), + [anon_sym_decltype] = ACTIONS(5020), + [anon_sym_final] = ACTIONS(5020), + [anon_sym_override] = ACTIONS(5020), + [anon_sym_DASH_GT_STAR] = ACTIONS(5020), + }, + [STATE(1706)] = { + [sym_identifier] = ACTIONS(5000), + [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(5007), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5004), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5002), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5002), + [anon_sym_GT_GT] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym_virtual] = ACTIONS(5000), + [anon_sym_extern] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5007), + [anon_sym___declspec] = ACTIONS(5000), + [anon_sym___based] = ACTIONS(5000), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_static] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_register] = ACTIONS(5000), + [anon_sym_inline] = ACTIONS(5000), + [anon_sym___inline] = ACTIONS(5000), + [anon_sym___inline__] = ACTIONS(5000), + [anon_sym___forceinline] = ACTIONS(5000), + [anon_sym_thread_local] = ACTIONS(5000), + [anon_sym___thread] = ACTIONS(5000), + [anon_sym_const] = ACTIONS(5000), + [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(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5009), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5009), + [anon_sym_not_eq] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_template] = ACTIONS(5000), + [anon_sym_operator] = ACTIONS(5000), + }, + [STATE(1707)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4000), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7853), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_type_parameter_declaration] = STATE(7853), + [sym_variadic_type_parameter_declaration] = STATE(7853), + [sym_optional_type_parameter_declaration] = STATE(7853), + [sym_template_template_parameter_declaration] = STATE(7853), + [sym_optional_parameter_declaration] = STATE(7853), + [sym_variadic_parameter_declaration] = STATE(7853), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [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(5036), + [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(3027), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(5378), + [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(5380), + [anon_sym_template] = ACTIONS(5382), + }, + [STATE(1708)] = { + [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(4998), - [anon_sym_decltype] = ACTIONS(4998), - [anon_sym_final] = ACTIONS(4998), - [anon_sym_override] = ACTIONS(4998), - [anon_sym_requires] = ACTIONS(4998), + [sym_auto] = ACTIONS(4986), + [anon_sym_decltype] = ACTIONS(4986), + [anon_sym_final] = ACTIONS(4986), + [anon_sym_override] = ACTIONS(4986), + [anon_sym_GT2] = ACTIONS(4986), }, - [STATE(1789)] = { - [sym_identifier] = ACTIONS(5014), + [STATE(1709)] = { + [sym_catch_clause] = STATE(1709), + [aux_sym_constructor_try_statement_repeat1] = STATE(1709), + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token2] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [aux_sym_preproc_else_token1] = ACTIONS(2490), + [aux_sym_preproc_elif_token1] = ACTIONS(2490), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_AMP_AMP] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_virtual] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_using] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___based] = ACTIONS(2490), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_mutable] = ACTIONS(2490), + [anon_sym_constinit] = ACTIONS(2490), + [anon_sym_consteval] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2490), + [anon_sym_decltype] = ACTIONS(2490), + [anon_sym_explicit] = ACTIONS(2490), + [anon_sym_typename] = ACTIONS(2490), + [anon_sym_private] = ACTIONS(2490), + [anon_sym_template] = ACTIONS(2490), + [anon_sym_operator] = ACTIONS(2490), + [anon_sym_friend] = ACTIONS(2490), + [anon_sym_public] = ACTIONS(2490), + [anon_sym_protected] = ACTIONS(2490), + [anon_sym_static_assert] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(5395), + }, + [STATE(1710)] = { [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_STAR] = ACTIONS(5014), [anon_sym_SLASH] = ACTIONS(5014), - [anon_sym_PERCENT] = ACTIONS(5016), + [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(5016), + [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_GT_EQ] = ACTIONS(5014), [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_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___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_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), - [sym_primitive_type] = 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(5014), + [anon_sym_bitor] = ACTIONS(5016), [anon_sym_xor] = ACTIONS(5014), - [anon_sym_bitand] = ACTIONS(5014), - [anon_sym_not_eq] = 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(5014), - [anon_sym_decltype] = ACTIONS(5014), - [anon_sym_final] = ACTIONS(5014), - [anon_sym_override] = ACTIONS(5014), - [anon_sym_requires] = ACTIONS(5014), + [sym_auto] = ACTIONS(5016), + [anon_sym_decltype] = ACTIONS(5016), + [anon_sym_final] = ACTIONS(5016), + [anon_sym_override] = ACTIONS(5016), + [anon_sym_GT2] = ACTIONS(5016), }, - [STATE(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), + [STATE(1711)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_LPAREN2] = ACTIONS(4998), + [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(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4996), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4996), + [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___extension__] = ACTIONS(4998), + [anon_sym___attribute__] = ACTIONS(4998), + [anon_sym___attribute] = ACTIONS(4996), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_COLON_COLON] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4996), + [anon_sym_const] = ACTIONS(4996), + [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(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(4996), + [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(4996), + [anon_sym_and] = ACTIONS(4996), + [anon_sym_bitor] = ACTIONS(4998), + [anon_sym_xor] = ACTIONS(4996), + [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(4996), + [anon_sym_DOT_STAR] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(4998), [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), + [sym_auto] = ACTIONS(4998), + [anon_sym_decltype] = ACTIONS(4998), + [anon_sym_final] = ACTIONS(4998), + [anon_sym_override] = ACTIONS(4998), + [anon_sym_GT2] = ACTIONS(4998), }, - [STATE(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), + [STATE(1712)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5018), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5018), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5018), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5018), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5018), + [anon_sym_GT_GT] = ACTIONS(5018), + [anon_sym___extension__] = ACTIONS(5020), + [anon_sym___attribute__] = ACTIONS(5020), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5020), + [anon_sym_volatile] = ACTIONS(5020), + [anon_sym_restrict] = ACTIONS(5020), + [anon_sym___restrict__] = ACTIONS(5020), + [anon_sym__Atomic] = ACTIONS(5020), + [anon_sym__Noreturn] = ACTIONS(5020), + [anon_sym_noreturn] = ACTIONS(5020), + [anon_sym__Nonnull] = ACTIONS(5020), + [anon_sym_mutable] = ACTIONS(5020), + [anon_sym_constinit] = ACTIONS(5020), + [anon_sym_consteval] = ACTIONS(5020), + [anon_sym_alignas] = ACTIONS(5020), + [anon_sym__Alignas] = ACTIONS(5020), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_STAR_EQ] = ACTIONS(5020), + [anon_sym_SLASH_EQ] = ACTIONS(5020), + [anon_sym_PERCENT_EQ] = ACTIONS(5020), + [anon_sym_PLUS_EQ] = ACTIONS(5020), + [anon_sym_DASH_EQ] = ACTIONS(5020), + [anon_sym_LT_LT_EQ] = ACTIONS(5020), + [anon_sym_GT_GT_EQ] = ACTIONS(5018), + [anon_sym_AMP_EQ] = ACTIONS(5020), + [anon_sym_CARET_EQ] = ACTIONS(5020), + [anon_sym_PIPE_EQ] = ACTIONS(5020), + [anon_sym_and_eq] = ACTIONS(5020), + [anon_sym_or_eq] = ACTIONS(5020), + [anon_sym_xor_eq] = ACTIONS(5020), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5020), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5020), + [anon_sym_not_eq] = ACTIONS(5020), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5020), + [anon_sym_decltype] = ACTIONS(5020), + [anon_sym_final] = ACTIONS(5020), + [anon_sym_override] = ACTIONS(5020), + [anon_sym_GT2] = ACTIONS(5020), + }, + [STATE(1713)] = { + [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), + }, + [STATE(1714)] = { + [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), + }, + [STATE(1715)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5022), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5022), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5022), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5022), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5022), + [anon_sym_GT_GT] = ACTIONS(5022), + [anon_sym___extension__] = ACTIONS(5024), + [anon_sym___attribute__] = ACTIONS(5024), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_EQ] = ACTIONS(5022), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5024), + [anon_sym_volatile] = ACTIONS(5024), + [anon_sym_restrict] = ACTIONS(5024), + [anon_sym___restrict__] = ACTIONS(5024), + [anon_sym__Atomic] = ACTIONS(5024), + [anon_sym__Noreturn] = ACTIONS(5024), + [anon_sym_noreturn] = ACTIONS(5024), + [anon_sym__Nonnull] = ACTIONS(5024), + [anon_sym_mutable] = ACTIONS(5024), + [anon_sym_constinit] = ACTIONS(5024), + [anon_sym_consteval] = ACTIONS(5024), + [anon_sym_alignas] = ACTIONS(5024), + [anon_sym__Alignas] = ACTIONS(5024), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_STAR_EQ] = ACTIONS(5024), + [anon_sym_SLASH_EQ] = ACTIONS(5024), + [anon_sym_PERCENT_EQ] = ACTIONS(5024), + [anon_sym_PLUS_EQ] = ACTIONS(5024), + [anon_sym_DASH_EQ] = ACTIONS(5024), + [anon_sym_LT_LT_EQ] = ACTIONS(5024), + [anon_sym_GT_GT_EQ] = ACTIONS(5022), + [anon_sym_AMP_EQ] = ACTIONS(5024), + [anon_sym_CARET_EQ] = ACTIONS(5024), + [anon_sym_PIPE_EQ] = ACTIONS(5024), + [anon_sym_and_eq] = ACTIONS(5024), + [anon_sym_or_eq] = ACTIONS(5024), + [anon_sym_xor_eq] = ACTIONS(5024), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5024), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5024), + [anon_sym_not_eq] = ACTIONS(5024), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5024), + [anon_sym_decltype] = ACTIONS(5024), + [anon_sym_final] = ACTIONS(5024), + [anon_sym_override] = ACTIONS(5024), + [anon_sym_GT2] = ACTIONS(5024), + }, + [STATE(1716)] = { + [sym_string_literal] = STATE(1716), + [sym_raw_string_literal] = STATE(1716), + [aux_sym_concatenated_string_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(5398), + [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(5405), + [anon_sym_u_DQUOTE] = ACTIONS(5405), + [anon_sym_U_DQUOTE] = ACTIONS(5405), + [anon_sym_u8_DQUOTE] = ACTIONS(5405), + [anon_sym_DQUOTE] = ACTIONS(5405), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5408), + [anon_sym_LR_DQUOTE] = ACTIONS(5408), + [anon_sym_uR_DQUOTE] = ACTIONS(5408), + [anon_sym_UR_DQUOTE] = ACTIONS(5408), + [anon_sym_u8R_DQUOTE] = ACTIONS(5408), + [sym_literal_suffix] = ACTIONS(5403), + }, + [STATE(1717)] = { + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2572), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2572), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2572), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_LT] = ACTIONS(2572), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_EQ] = ACTIONS(2572), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2562), + [anon_sym_STAR_EQ] = ACTIONS(2562), + [anon_sym_SLASH_EQ] = ACTIONS(2562), + [anon_sym_PERCENT_EQ] = ACTIONS(2562), + [anon_sym_PLUS_EQ] = ACTIONS(2562), + [anon_sym_DASH_EQ] = ACTIONS(2562), + [anon_sym_LT_LT_EQ] = ACTIONS(2562), + [anon_sym_GT_GT_EQ] = ACTIONS(2562), + [anon_sym_AMP_EQ] = ACTIONS(2562), + [anon_sym_CARET_EQ] = ACTIONS(2562), + [anon_sym_PIPE_EQ] = ACTIONS(2562), + [anon_sym_LT_EQ_GT] = ACTIONS(2562), + [anon_sym_or] = ACTIONS(2572), + [anon_sym_and] = ACTIONS(2572), + [anon_sym_bitor] = ACTIONS(2572), + [anon_sym_xor] = ACTIONS(2572), + [anon_sym_bitand] = ACTIONS(2572), + [anon_sym_not_eq] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DOT] = ACTIONS(2572), + [anon_sym_DOT_STAR] = ACTIONS(2562), + [anon_sym_DASH_GT] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2572), + [anon_sym_DASH_GT_STAR] = ACTIONS(2562), + }, + [STATE(1718)] = { + [sym_identifier] = ACTIONS(5096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [aux_sym_preproc_if_token2] = ACTIONS(5098), + [aux_sym_preproc_else_token1] = ACTIONS(5098), + [aux_sym_preproc_elif_token1] = ACTIONS(5096), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5098), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5098), + [anon_sym_LPAREN2] = ACTIONS(5098), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5098), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5098), + [anon_sym_PIPE_PIPE] = ACTIONS(5098), + [anon_sym_AMP_AMP] = ACTIONS(5098), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5098), + [anon_sym_BANG_EQ] = ACTIONS(5098), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5098), + [anon_sym_LT_EQ] = ACTIONS(5096), + [anon_sym_LT] = ACTIONS(5096), + [anon_sym_LT_LT] = ACTIONS(5098), + [anon_sym_GT_GT] = ACTIONS(5098), + [anon_sym_SEMI] = ACTIONS(5098), + [anon_sym___extension__] = ACTIONS(5096), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_COLON] = ACTIONS(5098), + [anon_sym_LBRACE] = ACTIONS(5098), + [anon_sym_RBRACE] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(5096), + [anon_sym_unsigned] = ACTIONS(5096), + [anon_sym_long] = ACTIONS(5096), + [anon_sym_short] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_const] = ACTIONS(5096), + [anon_sym_constexpr] = ACTIONS(5096), + [anon_sym_volatile] = ACTIONS(5096), + [anon_sym_restrict] = ACTIONS(5096), + [anon_sym___restrict__] = ACTIONS(5096), + [anon_sym__Atomic] = ACTIONS(5096), + [anon_sym__Noreturn] = ACTIONS(5096), + [anon_sym_noreturn] = ACTIONS(5096), + [anon_sym__Nonnull] = ACTIONS(5096), + [anon_sym_mutable] = ACTIONS(5096), + [anon_sym_constinit] = ACTIONS(5096), + [anon_sym_consteval] = ACTIONS(5096), + [anon_sym_alignas] = ACTIONS(5096), + [anon_sym__Alignas] = ACTIONS(5096), + [sym_primitive_type] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_LT_EQ_GT] = ACTIONS(5098), + [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(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5098), + [anon_sym_DASH_GT] = ACTIONS(5098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_final] = ACTIONS(5096), + [anon_sym_override] = ACTIONS(5096), + [anon_sym_requires] = ACTIONS(5096), + }, + [STATE(1719)] = { + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_RPAREN] = ACTIONS(2562), + [aux_sym_preproc_if_token2] = ACTIONS(2562), + [aux_sym_preproc_else_token1] = ACTIONS(2562), + [aux_sym_preproc_elif_token1] = ACTIONS(2572), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2562), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_GT_EQ] = ACTIONS(2562), + [anon_sym_LT_EQ] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2562), + [anon_sym_SEMI] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_COLON] = ACTIONS(2562), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_RBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_RBRACK] = ACTIONS(2562), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2562), + [anon_sym_LT_EQ_GT] = ACTIONS(2562), + [anon_sym_or] = ACTIONS(2572), + [anon_sym_and] = ACTIONS(2572), + [anon_sym_bitor] = ACTIONS(2572), + [anon_sym_xor] = ACTIONS(2572), + [anon_sym_bitand] = ACTIONS(2572), + [anon_sym_not_eq] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DOT] = ACTIONS(2572), + [anon_sym_DOT_STAR] = ACTIONS(2562), + [anon_sym_DASH_GT] = ACTIONS(2562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2572), + [anon_sym_final] = ACTIONS(2572), + [anon_sym_override] = ACTIONS(2572), + [anon_sym_requires] = ACTIONS(2572), + }, + [STATE(1720)] = { + [sym_identifier] = ACTIONS(5411), + [anon_sym_LPAREN2] = ACTIONS(5413), + [anon_sym_BANG] = ACTIONS(5413), + [anon_sym_TILDE] = ACTIONS(5413), + [anon_sym_DASH] = ACTIONS(5411), + [anon_sym_PLUS] = ACTIONS(5411), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_SEMI] = ACTIONS(5413), + [anon_sym___extension__] = ACTIONS(5411), + [anon_sym_COLON_COLON] = ACTIONS(5413), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5413), + [anon_sym_LBRACE] = ACTIONS(5413), + [anon_sym_LBRACK] = ACTIONS(5411), + [sym_primitive_type] = ACTIONS(5411), + [anon_sym_if] = ACTIONS(5411), + [anon_sym_switch] = ACTIONS(5411), + [anon_sym_case] = ACTIONS(5411), + [anon_sym_default] = ACTIONS(5411), + [anon_sym_while] = ACTIONS(5411), + [anon_sym_do] = ACTIONS(5411), + [anon_sym_for] = ACTIONS(5411), + [anon_sym_return] = ACTIONS(5411), + [anon_sym_break] = ACTIONS(5411), + [anon_sym_continue] = ACTIONS(5411), + [anon_sym_goto] = ACTIONS(5411), + [anon_sym___try] = ACTIONS(5411), + [anon_sym___leave] = ACTIONS(5411), + [anon_sym_not] = ACTIONS(5411), + [anon_sym_compl] = ACTIONS(5411), + [anon_sym_DASH_DASH] = ACTIONS(5413), + [anon_sym_PLUS_PLUS] = ACTIONS(5413), + [anon_sym_sizeof] = ACTIONS(5411), + [anon_sym___alignof__] = ACTIONS(5411), + [anon_sym___alignof] = ACTIONS(5411), + [anon_sym__alignof] = ACTIONS(5411), + [anon_sym_alignof] = ACTIONS(5411), + [anon_sym__Alignof] = ACTIONS(5411), + [anon_sym_offsetof] = ACTIONS(5411), + [anon_sym__Generic] = ACTIONS(5411), + [anon_sym_asm] = ACTIONS(5411), + [anon_sym___asm__] = ACTIONS(5411), + [anon_sym___asm] = ACTIONS(5411), + [sym_number_literal] = ACTIONS(5413), + [anon_sym_L_SQUOTE] = ACTIONS(5413), + [anon_sym_u_SQUOTE] = ACTIONS(5413), + [anon_sym_U_SQUOTE] = ACTIONS(5413), + [anon_sym_u8_SQUOTE] = ACTIONS(5413), + [anon_sym_SQUOTE] = ACTIONS(5413), + [anon_sym_L_DQUOTE] = ACTIONS(5413), + [anon_sym_u_DQUOTE] = ACTIONS(5413), + [anon_sym_U_DQUOTE] = ACTIONS(5413), + [anon_sym_u8_DQUOTE] = ACTIONS(5413), + [anon_sym_DQUOTE] = ACTIONS(5413), + [sym_true] = ACTIONS(5411), + [sym_false] = ACTIONS(5411), + [anon_sym_NULL] = ACTIONS(5411), + [anon_sym_nullptr] = ACTIONS(5411), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5411), + [anon_sym_template] = ACTIONS(5411), + [anon_sym_try] = ACTIONS(5411), + [anon_sym_delete] = ACTIONS(5411), + [anon_sym_throw] = ACTIONS(5411), + [anon_sym_co_return] = ACTIONS(5411), + [anon_sym_co_yield] = ACTIONS(5411), + [anon_sym_R_DQUOTE] = ACTIONS(5413), + [anon_sym_LR_DQUOTE] = ACTIONS(5413), + [anon_sym_uR_DQUOTE] = ACTIONS(5413), + [anon_sym_UR_DQUOTE] = ACTIONS(5413), + [anon_sym_u8R_DQUOTE] = ACTIONS(5413), + [anon_sym_co_await] = ACTIONS(5411), + [anon_sym_new] = ACTIONS(5411), + [anon_sym_requires] = ACTIONS(5411), + [sym_this] = ACTIONS(5411), + }, + [STATE(1721)] = { + [sym_catch_clause] = STATE(1709), + [aux_sym_constructor_try_statement_repeat1] = STATE(1709), + [sym_identifier] = ACTIONS(2589), + [aux_sym_preproc_def_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token2] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2589), + [aux_sym_preproc_else_token1] = ACTIONS(2589), + [aux_sym_preproc_elif_token1] = ACTIONS(2589), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2589), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_AMP_AMP] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym___extension__] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_virtual] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym___attribute__] = ACTIONS(2589), + [anon_sym___attribute] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2591), + [anon_sym___declspec] = ACTIONS(2589), + [anon_sym___based] = ACTIONS(2589), + [anon_sym_signed] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym___inline] = ACTIONS(2589), + [anon_sym___inline__] = ACTIONS(2589), + [anon_sym___forceinline] = ACTIONS(2589), + [anon_sym_thread_local] = ACTIONS(2589), + [anon_sym___thread] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym___restrict__] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym__Noreturn] = ACTIONS(2589), + [anon_sym_noreturn] = ACTIONS(2589), + [anon_sym__Nonnull] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_constinit] = ACTIONS(2589), + [anon_sym_consteval] = ACTIONS(2589), + [anon_sym_alignas] = ACTIONS(2589), + [anon_sym__Alignas] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2589), + [anon_sym_decltype] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_private] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_operator] = ACTIONS(2589), + [anon_sym_friend] = ACTIONS(2589), + [anon_sym_public] = ACTIONS(2589), + [anon_sym_protected] = ACTIONS(2589), + [anon_sym_static_assert] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(5415), + }, + [STATE(1722)] = { + [sym_string_literal] = STATE(1716), + [sym_raw_string_literal] = STATE(1716), + [aux_sym_concatenated_string_repeat1] = STATE(1716), + [sym_identifier] = ACTIONS(5417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [aux_sym_preproc_if_token2] = ACTIONS(5419), + [aux_sym_preproc_else_token1] = ACTIONS(5419), + [aux_sym_preproc_elif_token1] = ACTIONS(5421), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5419), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5419), + [anon_sym_COLON] = ACTIONS(5419), + [anon_sym_RBRACE] = ACTIONS(5419), + [anon_sym_LBRACK] = ACTIONS(5419), + [anon_sym_RBRACK] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5421), + [anon_sym_or_eq] = ACTIONS(5421), + [anon_sym_xor_eq] = ACTIONS(5421), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5421), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5421), + [anon_sym_not_eq] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5419), + [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(5421), + }, + [STATE(1723)] = { + [sym_identifier] = ACTIONS(5423), + [anon_sym_LPAREN2] = ACTIONS(5425), + [anon_sym_BANG] = ACTIONS(5425), + [anon_sym_TILDE] = ACTIONS(5425), + [anon_sym_DASH] = ACTIONS(5423), + [anon_sym_PLUS] = ACTIONS(5423), + [anon_sym_STAR] = ACTIONS(5425), + [anon_sym_AMP] = ACTIONS(5425), + [anon_sym_SEMI] = ACTIONS(5425), + [anon_sym___extension__] = ACTIONS(5423), + [anon_sym_COLON_COLON] = ACTIONS(5425), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5425), + [anon_sym_LBRACE] = ACTIONS(5425), + [anon_sym_LBRACK] = ACTIONS(5423), + [sym_primitive_type] = ACTIONS(5423), + [anon_sym_if] = ACTIONS(5423), + [anon_sym_switch] = ACTIONS(5423), + [anon_sym_case] = ACTIONS(5423), + [anon_sym_default] = ACTIONS(5423), + [anon_sym_while] = ACTIONS(5423), + [anon_sym_do] = ACTIONS(5423), + [anon_sym_for] = ACTIONS(5423), + [anon_sym_return] = ACTIONS(5423), + [anon_sym_break] = ACTIONS(5423), + [anon_sym_continue] = ACTIONS(5423), + [anon_sym_goto] = ACTIONS(5423), + [anon_sym___try] = ACTIONS(5423), + [anon_sym___leave] = ACTIONS(5423), + [anon_sym_not] = ACTIONS(5423), + [anon_sym_compl] = ACTIONS(5423), + [anon_sym_DASH_DASH] = ACTIONS(5425), + [anon_sym_PLUS_PLUS] = ACTIONS(5425), + [anon_sym_sizeof] = ACTIONS(5423), + [anon_sym___alignof__] = ACTIONS(5423), + [anon_sym___alignof] = ACTIONS(5423), + [anon_sym__alignof] = ACTIONS(5423), + [anon_sym_alignof] = ACTIONS(5423), + [anon_sym__Alignof] = ACTIONS(5423), + [anon_sym_offsetof] = ACTIONS(5423), + [anon_sym__Generic] = ACTIONS(5423), + [anon_sym_asm] = ACTIONS(5423), + [anon_sym___asm__] = ACTIONS(5423), + [anon_sym___asm] = ACTIONS(5423), + [sym_number_literal] = ACTIONS(5425), + [anon_sym_L_SQUOTE] = ACTIONS(5425), + [anon_sym_u_SQUOTE] = ACTIONS(5425), + [anon_sym_U_SQUOTE] = ACTIONS(5425), + [anon_sym_u8_SQUOTE] = ACTIONS(5425), + [anon_sym_SQUOTE] = ACTIONS(5425), + [anon_sym_L_DQUOTE] = ACTIONS(5425), + [anon_sym_u_DQUOTE] = ACTIONS(5425), + [anon_sym_U_DQUOTE] = ACTIONS(5425), + [anon_sym_u8_DQUOTE] = ACTIONS(5425), + [anon_sym_DQUOTE] = ACTIONS(5425), + [sym_true] = ACTIONS(5423), + [sym_false] = ACTIONS(5423), + [anon_sym_NULL] = ACTIONS(5423), + [anon_sym_nullptr] = ACTIONS(5423), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5423), + [anon_sym_template] = ACTIONS(5423), + [anon_sym_try] = ACTIONS(5423), + [anon_sym_delete] = ACTIONS(5423), + [anon_sym_throw] = ACTIONS(5423), + [anon_sym_co_return] = ACTIONS(5423), + [anon_sym_co_yield] = ACTIONS(5423), + [anon_sym_R_DQUOTE] = ACTIONS(5425), + [anon_sym_LR_DQUOTE] = ACTIONS(5425), + [anon_sym_uR_DQUOTE] = ACTIONS(5425), + [anon_sym_UR_DQUOTE] = ACTIONS(5425), + [anon_sym_u8R_DQUOTE] = ACTIONS(5425), + [anon_sym_co_await] = ACTIONS(5423), + [anon_sym_new] = ACTIONS(5423), + [anon_sym_requires] = ACTIONS(5423), + [sym_this] = ACTIONS(5423), + }, + [STATE(1724)] = { + [sym_catch_clause] = STATE(1709), + [aux_sym_constructor_try_statement_repeat1] = STATE(1709), + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token2] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [aux_sym_preproc_else_token1] = ACTIONS(2541), + [aux_sym_preproc_elif_token1] = ACTIONS(2541), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym___extension__] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym___attribute] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym___inline] = ACTIONS(2541), + [anon_sym___inline__] = ACTIONS(2541), + [anon_sym___forceinline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym___thread] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym___restrict__] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym__Noreturn] = ACTIONS(2541), + [anon_sym_noreturn] = ACTIONS(2541), + [anon_sym__Nonnull] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_alignas] = ACTIONS(2541), + [anon_sym__Alignas] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_private] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_friend] = ACTIONS(2541), + [anon_sym_public] = ACTIONS(2541), + [anon_sym_protected] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_catch] = ACTIONS(5415), + }, + [STATE(1725)] = { + [sym_catch_clause] = STATE(1709), + [aux_sym_constructor_try_statement_repeat1] = STATE(1709), + [sym_identifier] = ACTIONS(2593), + [aux_sym_preproc_def_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token2] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2593), + [aux_sym_preproc_else_token1] = ACTIONS(2593), + [aux_sym_preproc_elif_token1] = ACTIONS(2593), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2593), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2593), + [sym_preproc_directive] = ACTIONS(2593), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_AMP_AMP] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym___extension__] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2593), + [anon_sym_virtual] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym___attribute__] = ACTIONS(2593), + [anon_sym___attribute] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2595), + [anon_sym___declspec] = ACTIONS(2593), + [anon_sym___based] = ACTIONS(2593), + [anon_sym_signed] = ACTIONS(2593), + [anon_sym_unsigned] = ACTIONS(2593), + [anon_sym_long] = ACTIONS(2593), + [anon_sym_short] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_register] = ACTIONS(2593), + [anon_sym_inline] = ACTIONS(2593), + [anon_sym___inline] = ACTIONS(2593), + [anon_sym___inline__] = ACTIONS(2593), + [anon_sym___forceinline] = ACTIONS(2593), + [anon_sym_thread_local] = ACTIONS(2593), + [anon_sym___thread] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_constexpr] = ACTIONS(2593), + [anon_sym_volatile] = ACTIONS(2593), + [anon_sym_restrict] = ACTIONS(2593), + [anon_sym___restrict__] = ACTIONS(2593), + [anon_sym__Atomic] = ACTIONS(2593), + [anon_sym__Noreturn] = ACTIONS(2593), + [anon_sym_noreturn] = ACTIONS(2593), + [anon_sym__Nonnull] = ACTIONS(2593), + [anon_sym_mutable] = ACTIONS(2593), + [anon_sym_constinit] = ACTIONS(2593), + [anon_sym_consteval] = ACTIONS(2593), + [anon_sym_alignas] = ACTIONS(2593), + [anon_sym__Alignas] = ACTIONS(2593), + [sym_primitive_type] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2593), + [anon_sym_decltype] = ACTIONS(2593), + [anon_sym_explicit] = ACTIONS(2593), + [anon_sym_typename] = ACTIONS(2593), + [anon_sym_private] = ACTIONS(2593), + [anon_sym_template] = ACTIONS(2593), + [anon_sym_operator] = ACTIONS(2593), + [anon_sym_friend] = ACTIONS(2593), + [anon_sym_public] = ACTIONS(2593), + [anon_sym_protected] = ACTIONS(2593), + [anon_sym_static_assert] = ACTIONS(2593), + [anon_sym_catch] = ACTIONS(5415), + }, + [STATE(1726)] = { + [sym_string_literal] = STATE(1722), + [sym_raw_string_literal] = STATE(1722), + [aux_sym_concatenated_string_repeat1] = STATE(1722), + [sym_identifier] = ACTIONS(5427), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5429), + [anon_sym_COMMA] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5429), + [aux_sym_preproc_if_token2] = ACTIONS(5429), + [aux_sym_preproc_else_token1] = ACTIONS(5429), + [aux_sym_preproc_elif_token1] = ACTIONS(5431), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5429), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5429), + [anon_sym_LPAREN2] = ACTIONS(5429), + [anon_sym_DASH] = ACTIONS(5431), + [anon_sym_PLUS] = ACTIONS(5431), + [anon_sym_STAR] = ACTIONS(5431), + [anon_sym_SLASH] = ACTIONS(5431), + [anon_sym_PERCENT] = ACTIONS(5431), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5431), + [anon_sym_CARET] = ACTIONS(5431), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym_EQ_EQ] = ACTIONS(5429), + [anon_sym_BANG_EQ] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5431), + [anon_sym_GT_EQ] = ACTIONS(5429), + [anon_sym_LT_EQ] = ACTIONS(5431), + [anon_sym_LT] = ACTIONS(5431), + [anon_sym_LT_LT] = ACTIONS(5431), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym_COLON] = ACTIONS(5429), + [anon_sym_RBRACE] = ACTIONS(5429), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_RBRACK] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5431), + [anon_sym_QMARK] = ACTIONS(5429), + [anon_sym_STAR_EQ] = ACTIONS(5429), + [anon_sym_SLASH_EQ] = ACTIONS(5429), + [anon_sym_PERCENT_EQ] = ACTIONS(5429), + [anon_sym_PLUS_EQ] = ACTIONS(5429), + [anon_sym_DASH_EQ] = ACTIONS(5429), + [anon_sym_LT_LT_EQ] = ACTIONS(5429), + [anon_sym_GT_GT_EQ] = ACTIONS(5429), + [anon_sym_AMP_EQ] = ACTIONS(5429), + [anon_sym_CARET_EQ] = ACTIONS(5429), + [anon_sym_PIPE_EQ] = ACTIONS(5429), + [anon_sym_and_eq] = ACTIONS(5431), + [anon_sym_or_eq] = ACTIONS(5431), + [anon_sym_xor_eq] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5429), + [anon_sym_or] = ACTIONS(5431), + [anon_sym_and] = ACTIONS(5431), + [anon_sym_bitor] = ACTIONS(5431), + [anon_sym_xor] = ACTIONS(5431), + [anon_sym_bitand] = ACTIONS(5431), + [anon_sym_not_eq] = ACTIONS(5431), + [anon_sym_DASH_DASH] = ACTIONS(5429), + [anon_sym_PLUS_PLUS] = ACTIONS(5429), + [anon_sym_DOT] = ACTIONS(5431), + [anon_sym_DOT_STAR] = ACTIONS(5429), + [anon_sym_DASH_GT] = ACTIONS(5429), + [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(5431), + }, + [STATE(1727)] = { + [sym_identifier] = ACTIONS(5096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_RPAREN] = ACTIONS(5098), + [anon_sym_LPAREN2] = ACTIONS(5098), + [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(5098), + [anon_sym_AMP_AMP] = ACTIONS(5098), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5096), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5098), + [anon_sym_BANG_EQ] = ACTIONS(5098), + [anon_sym_GT] = ACTIONS(5096), + [anon_sym_GT_EQ] = ACTIONS(5098), + [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(5096), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(5096), + [anon_sym_unsigned] = ACTIONS(5096), + [anon_sym_long] = ACTIONS(5096), + [anon_sym_short] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_EQ] = ACTIONS(5096), + [anon_sym_const] = ACTIONS(5096), + [anon_sym_constexpr] = ACTIONS(5096), + [anon_sym_volatile] = ACTIONS(5096), + [anon_sym_restrict] = ACTIONS(5096), + [anon_sym___restrict__] = ACTIONS(5096), + [anon_sym__Atomic] = ACTIONS(5096), + [anon_sym__Noreturn] = ACTIONS(5096), + [anon_sym_noreturn] = ACTIONS(5096), + [anon_sym__Nonnull] = ACTIONS(5096), + [anon_sym_mutable] = ACTIONS(5096), + [anon_sym_constinit] = ACTIONS(5096), + [anon_sym_consteval] = ACTIONS(5096), + [anon_sym_alignas] = ACTIONS(5096), + [anon_sym__Alignas] = ACTIONS(5096), + [sym_primitive_type] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_STAR_EQ] = ACTIONS(5098), + [anon_sym_SLASH_EQ] = ACTIONS(5098), + [anon_sym_PERCENT_EQ] = ACTIONS(5098), + [anon_sym_PLUS_EQ] = ACTIONS(5098), + [anon_sym_DASH_EQ] = ACTIONS(5098), + [anon_sym_LT_LT_EQ] = ACTIONS(5098), + [anon_sym_GT_GT_EQ] = ACTIONS(5098), + [anon_sym_AMP_EQ] = ACTIONS(5098), + [anon_sym_CARET_EQ] = ACTIONS(5098), + [anon_sym_PIPE_EQ] = ACTIONS(5098), + [anon_sym_LT_EQ_GT] = ACTIONS(5098), + [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(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5098), + [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(5098), + }, + [STATE(1728)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7476), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7476), + [sym_variadic_parameter_declaration] = STATE(7476), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5433), + [anon_sym_RPAREN] = ACTIONS(5435), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1870), + [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(5028), + [anon_sym_COLON_COLON] = ACTIONS(5036), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -255422,240 +251373,1145 @@ 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(3019), - [anon_sym_enum] = ACTIONS(1874), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_struct] = ACTIONS(1878), - [anon_sym_union] = ACTIONS(1880), + [sym_primitive_type] = ACTIONS(3027), + [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(1882), + [anon_sym_typename] = ACTIONS(1914), [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1729)] = { + [sym_type_qualifier] = STATE(1729), + [sym_alignas_qualifier] = STATE(1910), + [aux_sym_array_declarator_repeat1] = STATE(1729), + [sym_identifier] = ACTIONS(5437), + [anon_sym_LPAREN2] = ACTIONS(5439), + [anon_sym_BANG] = ACTIONS(5439), + [anon_sym_TILDE] = ACTIONS(5439), + [anon_sym_DASH] = ACTIONS(5437), + [anon_sym_PLUS] = ACTIONS(5437), + [anon_sym_STAR] = ACTIONS(5439), + [anon_sym_AMP] = ACTIONS(5439), + [anon_sym___extension__] = ACTIONS(5441), + [anon_sym_COLON_COLON] = ACTIONS(5439), + [anon_sym_LBRACK] = ACTIONS(5439), + [anon_sym_static] = ACTIONS(5444), + [anon_sym_RBRACK] = ACTIONS(5439), + [anon_sym_const] = ACTIONS(5441), + [anon_sym_constexpr] = ACTIONS(5441), + [anon_sym_volatile] = ACTIONS(5441), + [anon_sym_restrict] = ACTIONS(5441), + [anon_sym___restrict__] = ACTIONS(5441), + [anon_sym__Atomic] = ACTIONS(5441), + [anon_sym__Noreturn] = ACTIONS(5441), + [anon_sym_noreturn] = ACTIONS(5441), + [anon_sym__Nonnull] = ACTIONS(5441), + [anon_sym_mutable] = ACTIONS(5441), + [anon_sym_constinit] = ACTIONS(5441), + [anon_sym_consteval] = ACTIONS(5441), + [anon_sym_alignas] = ACTIONS(5447), + [anon_sym__Alignas] = ACTIONS(5447), + [sym_primitive_type] = ACTIONS(5437), + [anon_sym_not] = ACTIONS(5437), + [anon_sym_compl] = ACTIONS(5437), + [anon_sym_DASH_DASH] = ACTIONS(5439), + [anon_sym_PLUS_PLUS] = ACTIONS(5439), + [anon_sym_sizeof] = ACTIONS(5437), + [anon_sym___alignof__] = ACTIONS(5437), + [anon_sym___alignof] = ACTIONS(5437), + [anon_sym__alignof] = ACTIONS(5437), + [anon_sym_alignof] = ACTIONS(5437), + [anon_sym__Alignof] = ACTIONS(5437), + [anon_sym_offsetof] = ACTIONS(5437), + [anon_sym__Generic] = ACTIONS(5437), + [anon_sym_asm] = ACTIONS(5437), + [anon_sym___asm__] = ACTIONS(5437), + [anon_sym___asm] = ACTIONS(5437), + [sym_number_literal] = ACTIONS(5439), + [anon_sym_L_SQUOTE] = ACTIONS(5439), + [anon_sym_u_SQUOTE] = ACTIONS(5439), + [anon_sym_U_SQUOTE] = ACTIONS(5439), + [anon_sym_u8_SQUOTE] = ACTIONS(5439), + [anon_sym_SQUOTE] = ACTIONS(5439), + [anon_sym_L_DQUOTE] = ACTIONS(5439), + [anon_sym_u_DQUOTE] = ACTIONS(5439), + [anon_sym_U_DQUOTE] = ACTIONS(5439), + [anon_sym_u8_DQUOTE] = ACTIONS(5439), + [anon_sym_DQUOTE] = ACTIONS(5439), + [sym_true] = ACTIONS(5437), + [sym_false] = ACTIONS(5437), + [anon_sym_NULL] = ACTIONS(5437), + [anon_sym_nullptr] = ACTIONS(5437), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5437), + [anon_sym_template] = ACTIONS(5437), + [anon_sym_delete] = ACTIONS(5437), + [anon_sym_R_DQUOTE] = ACTIONS(5439), + [anon_sym_LR_DQUOTE] = ACTIONS(5439), + [anon_sym_uR_DQUOTE] = ACTIONS(5439), + [anon_sym_UR_DQUOTE] = ACTIONS(5439), + [anon_sym_u8R_DQUOTE] = ACTIONS(5439), + [anon_sym_co_await] = ACTIONS(5437), + [anon_sym_new] = ACTIONS(5437), + [anon_sym_requires] = ACTIONS(5437), + [sym_this] = ACTIONS(5437), + }, + [STATE(1730)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7405), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7405), + [sym_variadic_parameter_declaration] = STATE(7405), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1928), + [anon_sym_RPAREN] = ACTIONS(4316), + [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(5036), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(1914), + [anon_sym_template] = ACTIONS(1268), + }, + [STATE(1731)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7348), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7348), + [sym_variadic_parameter_declaration] = STATE(7348), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5450), + [anon_sym_RPAREN] = ACTIONS(5452), + [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(5036), + [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(3027), + [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(1268), + }, + [STATE(1732)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7413), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7413), + [sym_variadic_parameter_declaration] = STATE(7413), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5454), + [anon_sym_RPAREN] = ACTIONS(5456), + [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(5036), + [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(3027), + [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(1268), + }, + [STATE(1733)] = { + [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), + }, + [STATE(1734)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7721), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7721), + [sym_variadic_parameter_declaration] = STATE(7721), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5458), + [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(5036), + [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(3027), + [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(1268), + }, + [STATE(1735)] = { + [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), + }, + [STATE(1736)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_const] = ACTIONS(5000), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym___restrict__] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym__Noreturn] = ACTIONS(5007), + [anon_sym_noreturn] = ACTIONS(5007), + [anon_sym__Nonnull] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_constinit] = ACTIONS(5007), + [anon_sym_consteval] = ACTIONS(5007), + [anon_sym_alignas] = ACTIONS(5007), + [anon_sym__Alignas] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_and_eq] = ACTIONS(5002), + [anon_sym_or_eq] = ACTIONS(5002), + [anon_sym_xor_eq] = ACTIONS(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + [anon_sym_DASH_GT_STAR] = ACTIONS(5002), + }, + [STATE(1737)] = { + [sym__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7433), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7433), + [sym_variadic_parameter_declaration] = STATE(7433), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [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(5036), + [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(3027), + [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(1268), + }, + [STATE(1738)] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2717), + [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(2717), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(5460), + [anon_sym___attribute] = ACTIONS(5460), + [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), + }, + [STATE(1739)] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2717), + [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(2717), + [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), + }, + [STATE(1740)] = { + [sym_template_argument_list] = STATE(1736), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LPAREN2] = ACTIONS(4919), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(5046), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4917), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_const] = ACTIONS(4915), + [anon_sym_constexpr] = ACTIONS(4922), + [anon_sym_volatile] = ACTIONS(4922), + [anon_sym_restrict] = ACTIONS(4922), + [anon_sym___restrict__] = ACTIONS(4922), + [anon_sym__Atomic] = ACTIONS(4922), + [anon_sym__Noreturn] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym__Nonnull] = ACTIONS(4922), + [anon_sym_mutable] = ACTIONS(4922), + [anon_sym_constinit] = ACTIONS(4922), + [anon_sym_consteval] = ACTIONS(4922), + [anon_sym_alignas] = ACTIONS(4922), + [anon_sym__Alignas] = ACTIONS(4922), + [anon_sym_QMARK] = ACTIONS(4917), + [anon_sym_STAR_EQ] = ACTIONS(4917), + [anon_sym_SLASH_EQ] = ACTIONS(4917), + [anon_sym_PERCENT_EQ] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4917), + [anon_sym_DASH_EQ] = ACTIONS(4917), + [anon_sym_LT_LT_EQ] = ACTIONS(4917), + [anon_sym_GT_GT_EQ] = ACTIONS(4917), + [anon_sym_AMP_EQ] = ACTIONS(4917), + [anon_sym_CARET_EQ] = ACTIONS(4917), + [anon_sym_PIPE_EQ] = ACTIONS(4917), + [anon_sym_and_eq] = ACTIONS(4917), + [anon_sym_or_eq] = ACTIONS(4917), + [anon_sym_xor_eq] = ACTIONS(4917), + [anon_sym_LT_EQ_GT] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4924), + [anon_sym_and] = ACTIONS(4924), + [anon_sym_bitor] = ACTIONS(4917), + [anon_sym_xor] = ACTIONS(4924), + [anon_sym_bitand] = ACTIONS(4917), + [anon_sym_not_eq] = ACTIONS(4917), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4922), + [anon_sym_decltype] = ACTIONS(4922), + [anon_sym_DASH_GT_STAR] = ACTIONS(4917), + }, + [STATE(1741)] = { + [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), }, - [STATE(1793)] = { - [sym_identifier] = 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_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___attribute__] = ACTIONS(5525), - [anon_sym___attribute] = ACTIONS(5525), - [anon_sym_COLON] = ACTIONS(5525), - [anon_sym_COLON_COLON] = ACTIONS(5527), - [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(5527), - [anon_sym_RBRACK] = ACTIONS(5527), - [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_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), + [STATE(1742)] = { + [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(5525), - [anon_sym_decltype] = ACTIONS(5525), - [anon_sym_final] = ACTIONS(5525), - [anon_sym_override] = ACTIONS(5525), - [anon_sym_requires] = ACTIONS(5525), + [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), }, - [STATE(1794)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(5529), - [aux_sym_preproc_elif_token1] = ACTIONS(5529), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5529), - [aux_sym_preproc_elifdef_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), + [STATE(1743)] = { + [sym_identifier] = 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), + [aux_sym_preproc_else_token1] = ACTIONS(2739), + [aux_sym_preproc_elif_token1] = ACTIONS(2739), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2739), + [sym_preproc_directive] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [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_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), [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(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_explicit] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_private] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2739), + [anon_sym_protected] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), }, - [STATE(1795)] = { + [STATE(1744)] = { [sym_identifier] = ACTIONS(2879), [aux_sym_preproc_def_token1] = ACTIONS(2879), [aux_sym_preproc_if_token1] = ACTIONS(2879), @@ -255717,537 +252573,1647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(2879), [anon_sym_union] = 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_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), + [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), + }, + [STATE(1745)] = { + [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), + }, + [STATE(1746)] = { + [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(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), + }, + [STATE(1747)] = { + [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), + }, + [STATE(1748)] = { + [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), + }, + [STATE(1749)] = { + [sym_identifier] = ACTIONS(5470), + [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(5472), + [anon_sym_SLASH] = ACTIONS(5470), + [anon_sym_PERCENT] = ACTIONS(5472), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_PIPE] = ACTIONS(5470), + [anon_sym_CARET] = ACTIONS(5472), + [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(5472), + [anon_sym_GT_GT] = ACTIONS(5472), + [anon_sym_SEMI] = ACTIONS(5472), + [anon_sym___extension__] = ACTIONS(5470), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_COLON] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym___based] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5472), + [anon_sym_RBRACE] = ACTIONS(5472), + [anon_sym_signed] = ACTIONS(5470), + [anon_sym_unsigned] = ACTIONS(5470), + [anon_sym_long] = ACTIONS(5470), + [anon_sym_short] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5472), + [anon_sym_RBRACK] = ACTIONS(5472), + [anon_sym_const] = ACTIONS(5470), + [anon_sym_constexpr] = ACTIONS(5470), + [anon_sym_volatile] = ACTIONS(5470), + [anon_sym_restrict] = ACTIONS(5470), + [anon_sym___restrict__] = ACTIONS(5470), + [anon_sym__Atomic] = ACTIONS(5470), + [anon_sym__Noreturn] = ACTIONS(5470), + [anon_sym_noreturn] = ACTIONS(5470), + [anon_sym__Nonnull] = ACTIONS(5470), + [anon_sym_mutable] = ACTIONS(5470), + [anon_sym_constinit] = ACTIONS(5470), + [anon_sym_consteval] = ACTIONS(5470), + [anon_sym_alignas] = ACTIONS(5470), + [anon_sym__Alignas] = ACTIONS(5470), + [sym_primitive_type] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(5472), + [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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_final] = ACTIONS(5470), + [anon_sym_override] = ACTIONS(5470), + [anon_sym_requires] = ACTIONS(5470), + }, + [STATE(1750)] = { + [sym_identifier] = ACTIONS(5476), + [aux_sym_preproc_def_token1] = ACTIONS(5476), + [aux_sym_preproc_if_token1] = ACTIONS(5476), + [aux_sym_preproc_if_token2] = ACTIONS(5476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5476), + [aux_sym_preproc_else_token1] = ACTIONS(5476), + [aux_sym_preproc_elif_token1] = ACTIONS(5476), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5476), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5476), + [sym_preproc_directive] = ACTIONS(5476), + [anon_sym_LPAREN2] = ACTIONS(5478), + [anon_sym_TILDE] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(5476), + [anon_sym_typedef] = ACTIONS(5476), + [anon_sym_virtual] = ACTIONS(5476), + [anon_sym_extern] = ACTIONS(5476), + [anon_sym___attribute__] = ACTIONS(5476), + [anon_sym___attribute] = ACTIONS(5476), + [anon_sym_using] = ACTIONS(5476), + [anon_sym_COLON_COLON] = ACTIONS(5478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5478), + [anon_sym___declspec] = ACTIONS(5476), + [anon_sym___based] = ACTIONS(5476), + [anon_sym_signed] = ACTIONS(5476), + [anon_sym_unsigned] = ACTIONS(5476), + [anon_sym_long] = ACTIONS(5476), + [anon_sym_short] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(5476), + [anon_sym_static] = ACTIONS(5476), + [anon_sym_register] = ACTIONS(5476), + [anon_sym_inline] = ACTIONS(5476), + [anon_sym___inline] = ACTIONS(5476), + [anon_sym___inline__] = ACTIONS(5476), + [anon_sym___forceinline] = ACTIONS(5476), + [anon_sym_thread_local] = ACTIONS(5476), + [anon_sym___thread] = ACTIONS(5476), + [anon_sym_const] = ACTIONS(5476), + [anon_sym_constexpr] = ACTIONS(5476), + [anon_sym_volatile] = ACTIONS(5476), + [anon_sym_restrict] = ACTIONS(5476), + [anon_sym___restrict__] = ACTIONS(5476), + [anon_sym__Atomic] = ACTIONS(5476), + [anon_sym__Noreturn] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym__Nonnull] = ACTIONS(5476), + [anon_sym_mutable] = ACTIONS(5476), + [anon_sym_constinit] = ACTIONS(5476), + [anon_sym_consteval] = ACTIONS(5476), + [anon_sym_alignas] = ACTIONS(5476), + [anon_sym__Alignas] = ACTIONS(5476), + [sym_primitive_type] = ACTIONS(5476), + [anon_sym_enum] = ACTIONS(5476), + [anon_sym_class] = ACTIONS(5476), + [anon_sym_struct] = ACTIONS(5476), + [anon_sym_union] = ACTIONS(5476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5476), + [anon_sym_decltype] = ACTIONS(5476), + [anon_sym_explicit] = ACTIONS(5476), + [anon_sym_typename] = ACTIONS(5476), + [anon_sym_private] = ACTIONS(5476), + [anon_sym_template] = ACTIONS(5476), + [anon_sym_operator] = ACTIONS(5476), + [anon_sym_friend] = ACTIONS(5476), + [anon_sym_public] = ACTIONS(5476), + [anon_sym_protected] = ACTIONS(5476), + [anon_sym_static_assert] = ACTIONS(5476), + }, + [STATE(1751)] = { + [sym_identifier] = 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), + [aux_sym_preproc_else_token1] = ACTIONS(2739), + [aux_sym_preproc_elif_token1] = ACTIONS(2739), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2739), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2739), + [sym_preproc_directive] = ACTIONS(2739), + [anon_sym_LPAREN2] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2741), + [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_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), + [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_private] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2739), + [anon_sym_protected] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), + }, + [STATE(1752)] = { + [sym_identifier] = ACTIONS(3128), + [aux_sym_preproc_def_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token2] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), + [aux_sym_preproc_else_token1] = ACTIONS(3128), + [aux_sym_preproc_elif_token1] = ACTIONS(3128), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3128), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3128), + [sym_preproc_directive] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_AMP_AMP] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_typedef] = ACTIONS(3128), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3128), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_typename] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3128), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_friend] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_static_assert] = ACTIONS(3128), + }, + [STATE(1753)] = { + [sym_identifier] = ACTIONS(5480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5482), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_RPAREN] = ACTIONS(5482), + [anon_sym_LPAREN2] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5480), + [anon_sym_STAR] = ACTIONS(5482), + [anon_sym_SLASH] = ACTIONS(5480), + [anon_sym_PERCENT] = ACTIONS(5482), + [anon_sym_PIPE_PIPE] = ACTIONS(5482), + [anon_sym_AMP_AMP] = ACTIONS(5482), + [anon_sym_PIPE] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5482), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5482), + [anon_sym_BANG_EQ] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5480), + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_LT_LT] = ACTIONS(5482), + [anon_sym_GT_GT] = ACTIONS(5482), + [anon_sym_SEMI] = ACTIONS(5482), + [anon_sym___extension__] = ACTIONS(5480), + [anon_sym___attribute__] = ACTIONS(5480), + [anon_sym___attribute] = ACTIONS(5480), + [anon_sym_COLON] = ACTIONS(5480), + [anon_sym_COLON_COLON] = ACTIONS(5482), + [anon_sym___based] = ACTIONS(5480), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_signed] = ACTIONS(5480), + [anon_sym_unsigned] = ACTIONS(5480), + [anon_sym_long] = ACTIONS(5480), + [anon_sym_short] = ACTIONS(5480), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_RBRACK] = ACTIONS(5482), + [anon_sym_const] = ACTIONS(5480), + [anon_sym_constexpr] = ACTIONS(5480), + [anon_sym_volatile] = ACTIONS(5480), + [anon_sym_restrict] = ACTIONS(5480), + [anon_sym___restrict__] = ACTIONS(5480), + [anon_sym__Atomic] = ACTIONS(5480), + [anon_sym__Noreturn] = ACTIONS(5480), + [anon_sym_noreturn] = ACTIONS(5480), + [anon_sym__Nonnull] = ACTIONS(5480), + [anon_sym_mutable] = ACTIONS(5480), + [anon_sym_constinit] = ACTIONS(5480), + [anon_sym_consteval] = ACTIONS(5480), + [anon_sym_alignas] = ACTIONS(5480), + [anon_sym__Alignas] = ACTIONS(5480), + [sym_primitive_type] = ACTIONS(5480), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_LT_EQ_GT] = ACTIONS(5482), + [anon_sym_or] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_bitor] = ACTIONS(5480), + [anon_sym_xor] = ACTIONS(5480), + [anon_sym_bitand] = ACTIONS(5480), + [anon_sym_not_eq] = ACTIONS(5480), + [anon_sym_DASH_DASH] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5482), + [anon_sym_DOT] = ACTIONS(5480), + [anon_sym_DOT_STAR] = ACTIONS(5482), + [anon_sym_DASH_GT] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5480), + [anon_sym_decltype] = ACTIONS(5480), + [anon_sym_final] = ACTIONS(5480), + [anon_sym_override] = ACTIONS(5480), + [anon_sym_requires] = ACTIONS(5480), + }, + [STATE(1754)] = { + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token2] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), + [aux_sym_preproc_else_token1] = ACTIONS(3132), + [aux_sym_preproc_elif_token1] = ACTIONS(3132), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3132), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3132), + [sym_preproc_directive] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3132), + [anon_sym_virtual] = ACTIONS(3132), + [anon_sym_extern] = ACTIONS(3132), + [anon_sym___attribute__] = ACTIONS(3132), + [anon_sym___attribute] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), + [anon_sym___declspec] = ACTIONS(3132), + [anon_sym___based] = ACTIONS(3132), + [anon_sym_signed] = ACTIONS(3132), + [anon_sym_unsigned] = ACTIONS(3132), + [anon_sym_long] = ACTIONS(3132), + [anon_sym_short] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_register] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym___inline] = ACTIONS(3132), + [anon_sym___inline__] = ACTIONS(3132), + [anon_sym___forceinline] = ACTIONS(3132), + [anon_sym_thread_local] = ACTIONS(3132), + [anon_sym___thread] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_constexpr] = ACTIONS(3132), + [anon_sym_volatile] = ACTIONS(3132), + [anon_sym_restrict] = ACTIONS(3132), + [anon_sym___restrict__] = ACTIONS(3132), + [anon_sym__Atomic] = ACTIONS(3132), + [anon_sym__Noreturn] = ACTIONS(3132), + [anon_sym_noreturn] = ACTIONS(3132), + [anon_sym__Nonnull] = ACTIONS(3132), + [anon_sym_mutable] = ACTIONS(3132), + [anon_sym_constinit] = ACTIONS(3132), + [anon_sym_consteval] = ACTIONS(3132), + [anon_sym_alignas] = ACTIONS(3132), + [anon_sym__Alignas] = ACTIONS(3132), + [sym_primitive_type] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3132), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3132), + [anon_sym_typename] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_friend] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_static_assert] = ACTIONS(3132), + }, + [STATE(1755)] = { + [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), + }, + [STATE(1756)] = { + [sym_identifier] = 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), + [aux_sym_preproc_else_token1] = ACTIONS(2655), + [aux_sym_preproc_elif_token1] = ACTIONS(2655), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2655), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2655), + [sym_preproc_directive] = ACTIONS(2655), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [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_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), + [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_private] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_friend] = ACTIONS(2655), + [anon_sym_public] = ACTIONS(2655), + [anon_sym_protected] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + }, + [STATE(1757)] = { + [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), + }, + [STATE(1758)] = { + [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), + }, + [STATE(1759)] = { + [sym_identifier] = 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), + [aux_sym_preproc_else_token1] = ACTIONS(2755), + [aux_sym_preproc_elif_token1] = ACTIONS(2755), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2755), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2755), + [sym_preproc_directive] = ACTIONS(2755), + [anon_sym_LPAREN2] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [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_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), + [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_private] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_friend] = ACTIONS(2755), + [anon_sym_public] = ACTIONS(2755), + [anon_sym_protected] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), }, - [STATE(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), + [STATE(1760)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2677), + [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_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), [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), + [sym_auto] = ACTIONS(2675), + [anon_sym_decltype] = ACTIONS(2675), + [anon_sym_explicit] = ACTIONS(2675), + [anon_sym_typename] = ACTIONS(2675), + [anon_sym_private] = ACTIONS(2675), + [anon_sym_template] = ACTIONS(2675), + [anon_sym_operator] = ACTIONS(2675), + [anon_sym_friend] = ACTIONS(2675), + [anon_sym_public] = ACTIONS(2675), + [anon_sym_protected] = ACTIONS(2675), + [anon_sym_static_assert] = ACTIONS(2675), }, - [STATE(1797)] = { - [sym_decltype_auto] = STATE(1864), - [sym_identifier] = 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_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___attribute__] = ACTIONS(5533), - [anon_sym___attribute] = 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(5535), - [anon_sym_RBRACK] = ACTIONS(5535), - [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_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), + [STATE(1761)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6474), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6951), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6951), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5537), - [anon_sym_decltype] = ACTIONS(5539), - [anon_sym_final] = ACTIONS(5533), - [anon_sym_override] = ACTIONS(5533), - [anon_sym_requires] = ACTIONS(5533), - }, - [STATE(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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), }, - [STATE(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), + [STATE(1762)] = { + [sym_identifier] = 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), + [aux_sym_preproc_else_token1] = ACTIONS(2755), + [aux_sym_preproc_elif_token1] = ACTIONS(2755), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2755), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2755), + [sym_preproc_directive] = ACTIONS(2755), + [anon_sym_LPAREN2] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2757), + [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_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), + [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_private] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_friend] = ACTIONS(2755), + [anon_sym_public] = ACTIONS(2755), + [anon_sym_protected] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), }, - [STATE(1800)] = { - [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_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___attribute__] = ACTIONS(4980), - [anon_sym___attribute] = ACTIONS(4980), - [anon_sym_COLON] = ACTIONS(4980), - [anon_sym_COLON_COLON] = ACTIONS(4982), - [anon_sym___based] = ACTIONS(4980), - [anon_sym_LBRACE] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_signed] = ACTIONS(4980), - [anon_sym_unsigned] = ACTIONS(4980), - [anon_sym_long] = ACTIONS(4980), - [anon_sym_short] = ACTIONS(4980), - [anon_sym_LBRACK] = ACTIONS(4982), - [anon_sym_RBRACK] = ACTIONS(4982), - [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_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_requires] = ACTIONS(4980), + [STATE(1763)] = { + [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), }, - [STATE(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), + [STATE(1764)] = { + [sym_identifier] = ACTIONS(5502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5504), + [anon_sym_COMMA] = ACTIONS(5504), + [anon_sym_RPAREN] = ACTIONS(5504), + [aux_sym_preproc_if_token2] = ACTIONS(5504), + [aux_sym_preproc_else_token1] = ACTIONS(5504), + [aux_sym_preproc_elif_token1] = ACTIONS(5502), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5504), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5504), + [anon_sym_LPAREN2] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_PLUS] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_SLASH] = ACTIONS(5502), + [anon_sym_PERCENT] = ACTIONS(5502), + [anon_sym_PIPE_PIPE] = ACTIONS(5504), + [anon_sym_AMP_AMP] = ACTIONS(5504), + [anon_sym_PIPE] = ACTIONS(5502), + [anon_sym_CARET] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5502), + [anon_sym_EQ_EQ] = ACTIONS(5504), + [anon_sym_BANG_EQ] = ACTIONS(5504), + [anon_sym_GT] = ACTIONS(5502), + [anon_sym_GT_EQ] = ACTIONS(5504), + [anon_sym_LT_EQ] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5502), + [anon_sym_LT_LT] = ACTIONS(5502), + [anon_sym_GT_GT] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(5504), + [anon_sym_COLON] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(5504), + [anon_sym_LBRACK] = ACTIONS(5504), + [anon_sym_RBRACK] = ACTIONS(5504), + [anon_sym_EQ] = ACTIONS(5502), + [anon_sym_QMARK] = ACTIONS(5504), + [anon_sym_STAR_EQ] = ACTIONS(5504), + [anon_sym_SLASH_EQ] = ACTIONS(5504), + [anon_sym_PERCENT_EQ] = ACTIONS(5504), + [anon_sym_PLUS_EQ] = ACTIONS(5504), + [anon_sym_DASH_EQ] = ACTIONS(5504), + [anon_sym_LT_LT_EQ] = ACTIONS(5504), + [anon_sym_GT_GT_EQ] = ACTIONS(5504), + [anon_sym_AMP_EQ] = ACTIONS(5504), + [anon_sym_CARET_EQ] = ACTIONS(5504), + [anon_sym_PIPE_EQ] = ACTIONS(5504), + [anon_sym_and_eq] = ACTIONS(5502), + [anon_sym_or_eq] = ACTIONS(5502), + [anon_sym_xor_eq] = ACTIONS(5502), + [anon_sym_LT_EQ_GT] = ACTIONS(5504), + [anon_sym_or] = ACTIONS(5502), + [anon_sym_and] = ACTIONS(5502), + [anon_sym_bitor] = ACTIONS(5502), + [anon_sym_xor] = ACTIONS(5502), + [anon_sym_bitand] = ACTIONS(5502), + [anon_sym_not_eq] = ACTIONS(5502), + [anon_sym_DASH_DASH] = ACTIONS(5504), + [anon_sym_PLUS_PLUS] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5502), + [anon_sym_DOT_STAR] = ACTIONS(5504), + [anon_sym_DASH_GT] = ACTIONS(5504), + [anon_sym_L_DQUOTE] = ACTIONS(5504), + [anon_sym_u_DQUOTE] = ACTIONS(5504), + [anon_sym_U_DQUOTE] = ACTIONS(5504), + [anon_sym_u8_DQUOTE] = ACTIONS(5504), + [anon_sym_DQUOTE] = ACTIONS(5504), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5504), + [anon_sym_LR_DQUOTE] = ACTIONS(5504), + [anon_sym_uR_DQUOTE] = ACTIONS(5504), + [anon_sym_UR_DQUOTE] = ACTIONS(5504), + [anon_sym_u8R_DQUOTE] = ACTIONS(5504), + [sym_literal_suffix] = ACTIONS(5502), }, - [STATE(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), + [STATE(1765)] = { + [sym_identifier] = ACTIONS(5470), + [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(5472), + [anon_sym_SLASH] = ACTIONS(5470), + [anon_sym_PERCENT] = ACTIONS(5472), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_PIPE] = ACTIONS(5470), + [anon_sym_CARET] = ACTIONS(5472), + [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(5472), + [anon_sym_GT_GT] = ACTIONS(5472), + [anon_sym_SEMI] = ACTIONS(5472), + [anon_sym___extension__] = ACTIONS(5470), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_COLON] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym___based] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5472), + [anon_sym_RBRACE] = ACTIONS(5472), + [anon_sym_signed] = ACTIONS(5470), + [anon_sym_unsigned] = ACTIONS(5470), + [anon_sym_long] = ACTIONS(5470), + [anon_sym_short] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5472), + [anon_sym_RBRACK] = ACTIONS(5472), + [anon_sym_const] = ACTIONS(5470), + [anon_sym_constexpr] = ACTIONS(5470), + [anon_sym_volatile] = ACTIONS(5470), + [anon_sym_restrict] = ACTIONS(5470), + [anon_sym___restrict__] = ACTIONS(5470), + [anon_sym__Atomic] = ACTIONS(5470), + [anon_sym__Noreturn] = ACTIONS(5470), + [anon_sym_noreturn] = ACTIONS(5470), + [anon_sym__Nonnull] = ACTIONS(5470), + [anon_sym_mutable] = ACTIONS(5470), + [anon_sym_constinit] = ACTIONS(5470), + [anon_sym_consteval] = ACTIONS(5470), + [anon_sym_alignas] = ACTIONS(5470), + [anon_sym__Alignas] = ACTIONS(5470), + [sym_primitive_type] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(5472), + [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), [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), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_final] = ACTIONS(5470), + [anon_sym_override] = ACTIONS(5470), + [anon_sym_requires] = ACTIONS(5470), }, - [STATE(1803)] = { + [STATE(1766)] = { + [sym_template_argument_list] = STATE(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LPAREN2] = ACTIONS(4919), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(5506), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_const] = ACTIONS(4915), + [anon_sym_constexpr] = ACTIONS(4922), + [anon_sym_volatile] = ACTIONS(4922), + [anon_sym_restrict] = ACTIONS(4922), + [anon_sym___restrict__] = ACTIONS(4922), + [anon_sym__Atomic] = ACTIONS(4922), + [anon_sym__Noreturn] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym__Nonnull] = ACTIONS(4922), + [anon_sym_mutable] = ACTIONS(4922), + [anon_sym_constinit] = ACTIONS(4922), + [anon_sym_consteval] = ACTIONS(4922), + [anon_sym_alignas] = ACTIONS(4922), + [anon_sym__Alignas] = ACTIONS(4922), + [anon_sym_QMARK] = ACTIONS(4917), + [anon_sym_STAR_EQ] = ACTIONS(4917), + [anon_sym_SLASH_EQ] = ACTIONS(4917), + [anon_sym_PERCENT_EQ] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4917), + [anon_sym_DASH_EQ] = ACTIONS(4917), + [anon_sym_LT_LT_EQ] = ACTIONS(4917), + [anon_sym_GT_GT_EQ] = ACTIONS(4917), + [anon_sym_AMP_EQ] = ACTIONS(4917), + [anon_sym_CARET_EQ] = ACTIONS(4917), + [anon_sym_PIPE_EQ] = ACTIONS(4917), + [anon_sym_and_eq] = ACTIONS(4917), + [anon_sym_or_eq] = ACTIONS(4917), + [anon_sym_xor_eq] = ACTIONS(4917), + [anon_sym_LT_EQ_GT] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4924), + [anon_sym_and] = ACTIONS(4924), + [anon_sym_bitor] = ACTIONS(4917), + [anon_sym_xor] = ACTIONS(4924), + [anon_sym_bitand] = ACTIONS(4917), + [anon_sym_not_eq] = ACTIONS(4917), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4924), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4922), + [anon_sym_decltype] = ACTIONS(4922), + [anon_sym_DASH_GT_STAR] = ACTIONS(4917), + }, + [STATE(1767)] = { [sym_identifier] = ACTIONS(2923), [aux_sym_preproc_def_token1] = ACTIONS(2923), [aux_sym_preproc_if_token1] = ACTIONS(2923), @@ -256321,451 +254287,969 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2923), [anon_sym_static_assert] = ACTIONS(2923), }, - [STATE(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), + [STATE(1768)] = { + [sym_identifier] = ACTIONS(5509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5511), + [anon_sym_COMMA] = ACTIONS(5511), + [anon_sym_RPAREN] = ACTIONS(5511), + [aux_sym_preproc_if_token2] = ACTIONS(5511), + [aux_sym_preproc_else_token1] = ACTIONS(5511), + [aux_sym_preproc_elif_token1] = ACTIONS(5509), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5511), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5511), + [anon_sym_DASH] = ACTIONS(5509), + [anon_sym_PLUS] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_SLASH] = ACTIONS(5509), + [anon_sym_PERCENT] = ACTIONS(5509), + [anon_sym_PIPE_PIPE] = ACTIONS(5511), + [anon_sym_AMP_AMP] = ACTIONS(5511), + [anon_sym_PIPE] = ACTIONS(5509), + [anon_sym_CARET] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5509), + [anon_sym_EQ_EQ] = ACTIONS(5511), + [anon_sym_BANG_EQ] = ACTIONS(5511), + [anon_sym_GT] = ACTIONS(5509), + [anon_sym_GT_EQ] = ACTIONS(5511), + [anon_sym_LT_EQ] = ACTIONS(5509), + [anon_sym_LT] = ACTIONS(5509), + [anon_sym_LT_LT] = ACTIONS(5509), + [anon_sym_GT_GT] = ACTIONS(5509), + [anon_sym_SEMI] = ACTIONS(5511), + [anon_sym_COLON] = ACTIONS(5511), + [anon_sym_RBRACE] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_RBRACK] = ACTIONS(5511), + [anon_sym_EQ] = ACTIONS(5509), + [anon_sym_QMARK] = ACTIONS(5511), + [anon_sym_STAR_EQ] = ACTIONS(5511), + [anon_sym_SLASH_EQ] = ACTIONS(5511), + [anon_sym_PERCENT_EQ] = ACTIONS(5511), + [anon_sym_PLUS_EQ] = ACTIONS(5511), + [anon_sym_DASH_EQ] = ACTIONS(5511), + [anon_sym_LT_LT_EQ] = ACTIONS(5511), + [anon_sym_GT_GT_EQ] = ACTIONS(5511), + [anon_sym_AMP_EQ] = ACTIONS(5511), + [anon_sym_CARET_EQ] = ACTIONS(5511), + [anon_sym_PIPE_EQ] = ACTIONS(5511), + [anon_sym_and_eq] = ACTIONS(5509), + [anon_sym_or_eq] = ACTIONS(5509), + [anon_sym_xor_eq] = ACTIONS(5509), + [anon_sym_LT_EQ_GT] = ACTIONS(5511), + [anon_sym_or] = ACTIONS(5509), + [anon_sym_and] = ACTIONS(5509), + [anon_sym_bitor] = ACTIONS(5509), + [anon_sym_xor] = ACTIONS(5509), + [anon_sym_bitand] = ACTIONS(5509), + [anon_sym_not_eq] = ACTIONS(5509), + [anon_sym_DASH_DASH] = ACTIONS(5511), + [anon_sym_PLUS_PLUS] = ACTIONS(5511), + [anon_sym_DOT] = ACTIONS(5509), + [anon_sym_DOT_STAR] = ACTIONS(5511), + [anon_sym_DASH_GT] = ACTIONS(5511), + [anon_sym_L_DQUOTE] = ACTIONS(5511), + [anon_sym_u_DQUOTE] = ACTIONS(5511), + [anon_sym_U_DQUOTE] = ACTIONS(5511), + [anon_sym_u8_DQUOTE] = ACTIONS(5511), + [anon_sym_DQUOTE] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5511), + [anon_sym_LR_DQUOTE] = ACTIONS(5511), + [anon_sym_uR_DQUOTE] = ACTIONS(5511), + [anon_sym_UR_DQUOTE] = ACTIONS(5511), + [anon_sym_u8R_DQUOTE] = ACTIONS(5511), + [sym_literal_suffix] = ACTIONS(5509), + }, + [STATE(1769)] = { + [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), + }, + [STATE(1770)] = { + [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), + }, + [STATE(1771)] = { + [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), + }, + [STATE(1772)] = { + [sym_identifier] = 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), + [aux_sym_preproc_else_token1] = ACTIONS(2751), + [aux_sym_preproc_elif_token1] = ACTIONS(2751), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2751), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2751), + [sym_preproc_directive] = ACTIONS(2751), + [anon_sym_LPAREN2] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2753), + [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_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), + [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_private] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_operator] = ACTIONS(2751), + [anon_sym_friend] = ACTIONS(2751), + [anon_sym_public] = ACTIONS(2751), + [anon_sym_protected] = ACTIONS(2751), + [anon_sym_static_assert] = ACTIONS(2751), + }, + [STATE(1773)] = { + [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), + }, + [STATE(1774)] = { + [sym_identifier] = 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(2977), + [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_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), + [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_private] = ACTIONS(2975), + [anon_sym_template] = ACTIONS(2975), + [anon_sym_operator] = ACTIONS(2975), + [anon_sym_friend] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_protected] = ACTIONS(2975), + [anon_sym_static_assert] = ACTIONS(2975), + }, + [STATE(1775)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2669), + [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_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), [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(2667), + [anon_sym_decltype] = ACTIONS(2667), + [anon_sym_explicit] = ACTIONS(2667), + [anon_sym_typename] = ACTIONS(2667), + [anon_sym_private] = ACTIONS(2667), + [anon_sym_template] = ACTIONS(2667), + [anon_sym_operator] = ACTIONS(2667), + [anon_sym_friend] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_protected] = ACTIONS(2667), + [anon_sym_static_assert] = ACTIONS(2667), }, - [STATE(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), + [STATE(1776)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6346), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6951), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6951), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), [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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), }, - [STATE(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), + [STATE(1777)] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [aux_sym_preproc_else_token1] = ACTIONS(3099), + [aux_sym_preproc_elif_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym___attribute] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym__Nonnull] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym__Alignas] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_friend] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), }, - [STATE(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), + [STATE(1778)] = { + [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(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(4984), + [anon_sym_decltype] = ACTIONS(4984), + [anon_sym_final] = ACTIONS(4984), + [anon_sym_override] = ACTIONS(4984), + [anon_sym_requires] = ACTIONS(4984), }, - [STATE(1808)] = { - [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_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___attribute__] = 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), - [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_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), + [STATE(1779)] = { + [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(5545), - [anon_sym_decltype] = ACTIONS(5545), - [anon_sym_final] = ACTIONS(5545), - [anon_sym_override] = ACTIONS(5545), - [anon_sym_requires] = ACTIONS(5545), + [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), }, - [STATE(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), + [STATE(1780)] = { + [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), }, - [STATE(1810)] = { + [STATE(1781)] = { [sym_identifier] = ACTIONS(2931), [aux_sym_preproc_def_token1] = ACTIONS(2931), [aux_sym_preproc_if_token1] = ACTIONS(2931), @@ -256839,7 +255323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2931), [anon_sym_static_assert] = ACTIONS(2931), }, - [STATE(1811)] = { + [STATE(1782)] = { [sym_identifier] = ACTIONS(2935), [aux_sym_preproc_def_token1] = ACTIONS(2935), [aux_sym_preproc_if_token1] = ACTIONS(2935), @@ -256913,7 +255397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2935), [anon_sym_static_assert] = ACTIONS(2935), }, - [STATE(1812)] = { + [STATE(1783)] = { [sym_identifier] = ACTIONS(2939), [aux_sym_preproc_def_token1] = ACTIONS(2939), [aux_sym_preproc_if_token1] = ACTIONS(2939), @@ -256987,7 +255471,969 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2939), [anon_sym_static_assert] = ACTIONS(2939), }, - [STATE(1813)] = { + [STATE(1784)] = { + [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), + }, + [STATE(1785)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6460), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6967), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6967), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), + }, + [STATE(1786)] = { + [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), + }, + [STATE(1787)] = { + [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), + [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), + }, + [STATE(1788)] = { + [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(5523), + [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(5521), + [anon_sym_decltype] = ACTIONS(5521), + [anon_sym_final] = ACTIONS(5521), + [anon_sym_override] = ACTIONS(5521), + [anon_sym_requires] = ACTIONS(5521), + }, + [STATE(1789)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6398), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6967), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6967), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), + }, + [STATE(1790)] = { + [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_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), + }, + [STATE(1791)] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(5529), + [aux_sym_preproc_elif_token1] = ACTIONS(5529), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5529), + [aux_sym_preproc_elifdef_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), + }, + [STATE(1792)] = { + [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_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), + }, + [STATE(1793)] = { + [sym_identifier] = ACTIONS(5537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5539), + [anon_sym_COMMA] = ACTIONS(5539), + [anon_sym_RPAREN] = ACTIONS(5539), + [anon_sym_LPAREN2] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_STAR] = ACTIONS(5539), + [anon_sym_SLASH] = ACTIONS(5537), + [anon_sym_PERCENT] = ACTIONS(5539), + [anon_sym_PIPE_PIPE] = ACTIONS(5539), + [anon_sym_AMP_AMP] = ACTIONS(5539), + [anon_sym_PIPE] = ACTIONS(5537), + [anon_sym_CARET] = ACTIONS(5539), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_EQ_EQ] = ACTIONS(5539), + [anon_sym_BANG_EQ] = ACTIONS(5539), + [anon_sym_GT] = ACTIONS(5537), + [anon_sym_GT_EQ] = ACTIONS(5539), + [anon_sym_LT_EQ] = ACTIONS(5537), + [anon_sym_LT] = ACTIONS(5537), + [anon_sym_LT_LT] = ACTIONS(5539), + [anon_sym_GT_GT] = ACTIONS(5539), + [anon_sym_SEMI] = ACTIONS(5539), + [anon_sym___extension__] = ACTIONS(5537), + [anon_sym___attribute__] = ACTIONS(5537), + [anon_sym___attribute] = ACTIONS(5537), + [anon_sym_COLON] = ACTIONS(5537), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym___based] = ACTIONS(5537), + [anon_sym_LBRACE] = ACTIONS(5539), + [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(5539), + [anon_sym_RBRACK] = ACTIONS(5539), + [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_QMARK] = ACTIONS(5539), + [anon_sym_LT_EQ_GT] = ACTIONS(5539), + [anon_sym_or] = ACTIONS(5537), + [anon_sym_and] = ACTIONS(5537), + [anon_sym_bitor] = ACTIONS(5537), + [anon_sym_xor] = ACTIONS(5537), + [anon_sym_bitand] = ACTIONS(5537), + [anon_sym_not_eq] = ACTIONS(5537), + [anon_sym_DASH_DASH] = ACTIONS(5539), + [anon_sym_PLUS_PLUS] = ACTIONS(5539), + [anon_sym_DOT] = ACTIONS(5537), + [anon_sym_DOT_STAR] = ACTIONS(5539), + [anon_sym_DASH_GT] = ACTIONS(5539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5537), + [anon_sym_decltype] = ACTIONS(5537), + [anon_sym_final] = ACTIONS(5537), + [anon_sym_override] = ACTIONS(5537), + [anon_sym_requires] = ACTIONS(5537), + }, + [STATE(1794)] = { + [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), + }, + [STATE(1795)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6421), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6969), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6969), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), + }, + [STATE(1796)] = { + [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_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), + [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), + }, + [STATE(1797)] = { [sym_identifier] = ACTIONS(5549), [aux_sym_preproc_def_token1] = ACTIONS(5549), [aux_sym_preproc_if_token1] = ACTIONS(5549), @@ -257049,93 +256495,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), + }, + [STATE(1798)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6321), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6960), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6960), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), + }, + [STATE(1799)] = { + [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), }, - [STATE(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), + [STATE(1800)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6312), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6919), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6919), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), [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_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), [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), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_explicit] = ACTIONS(129), [anon_sym_template] = ACTIONS(1268), [anon_sym_operator] = ACTIONS(141), }, - [STATE(1815)] = { + [STATE(1801)] = { + [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_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), + [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), + }, + [STATE(1802)] = { [sym_identifier] = ACTIONS(5553), [aux_sym_preproc_def_token1] = ACTIONS(5553), [aux_sym_preproc_if_token1] = ACTIONS(5553), @@ -257209,229 +256877,451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5553), [anon_sym_static_assert] = ACTIONS(5553), }, - [STATE(1816)] = { - [sym_attribute_specifier] = STATE(2307), - [sym_field_declaration_list] = STATE(2214), - [sym_virtual_specifier] = STATE(7121), - [sym_base_class_clause] = STATE(7692), + [STATE(1803)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6356), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6969), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6969), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), + }, + [STATE(1804)] = { + [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), + }, + [STATE(1805)] = { [sym_identifier] = 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_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), [aux_sym_preproc_elif_token1] = ACTIONS(5557), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5559), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5557), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5557), + [sym_preproc_directive] = ACTIONS(5557), [anon_sym_LPAREN2] = 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_TILDE] = ACTIONS(5559), + [anon_sym_STAR] = 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___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), + [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), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(5557), [anon_sym_decltype] = ACTIONS(5557), - [anon_sym_final] = ACTIONS(5567), - [anon_sym_override] = ACTIONS(5567), + [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), }, - [STATE(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), + [STATE(1806)] = { + [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), }, - [STATE(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), + [STATE(1807)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6332), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6916), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6916), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), [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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), }, - [STATE(1819)] = { + [STATE(1808)] = { + [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), + }, + [STATE(1809)] = { [sym_identifier] = ACTIONS(5569), [aux_sym_preproc_def_token1] = ACTIONS(5569), [aux_sym_preproc_if_token1] = ACTIONS(5569), @@ -257505,81 +257395,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5569), [anon_sym_static_assert] = ACTIONS(5569), }, - [STATE(1820)] = { - [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), + [STATE(1810)] = { + [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(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), + [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), }, - [STATE(1821)] = { + [STATE(1811)] = { [sym_identifier] = ACTIONS(5573), [aux_sym_preproc_def_token1] = ACTIONS(5573), [aux_sym_preproc_if_token1] = ACTIONS(5573), @@ -257653,7 +257543,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5573), [anon_sym_static_assert] = ACTIONS(5573), }, - [STATE(1822)] = { + [STATE(1812)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6385), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6973), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6973), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), + }, + [STATE(1813)] = { [sym_identifier] = ACTIONS(5577), [aux_sym_preproc_def_token1] = ACTIONS(5577), [aux_sym_preproc_if_token1] = ACTIONS(5577), @@ -257727,7 +257691,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5577), [anon_sym_static_assert] = ACTIONS(5577), }, - [STATE(1823)] = { + [STATE(1814)] = { + [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), + }, + [STATE(1815)] = { + [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), + }, + [STATE(1816)] = { + [sym_identifier] = ACTIONS(5569), + [aux_sym_preproc_def_token1] = ACTIONS(5569), + [aux_sym_preproc_if_token1] = ACTIONS(5569), + [aux_sym_preproc_if_token2] = ACTIONS(5569), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5569), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5569), + [aux_sym_preproc_else_token1] = ACTIONS(5569), + [aux_sym_preproc_elif_token1] = ACTIONS(5569), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5569), + [aux_sym_preproc_elifdef_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_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(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), + }, + [STATE(1817)] = { [sym_identifier] = ACTIONS(5581), [aux_sym_preproc_def_token1] = ACTIONS(5581), [aux_sym_preproc_if_token1] = ACTIONS(5581), @@ -257801,81 +257987,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5581), [anon_sym_static_assert] = ACTIONS(5581), }, - [STATE(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), + [STATE(1818)] = { + [sym_identifier] = ACTIONS(5022), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5024), + [anon_sym_COMMA] = ACTIONS(5024), + [anon_sym_RPAREN] = ACTIONS(5024), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_DASH] = ACTIONS(5022), + [anon_sym_PLUS] = ACTIONS(5022), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_SLASH] = ACTIONS(5022), + [anon_sym_PERCENT] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_PIPE] = ACTIONS(5022), + [anon_sym_CARET] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym_EQ_EQ] = ACTIONS(5024), + [anon_sym_BANG_EQ] = ACTIONS(5024), + [anon_sym_GT] = ACTIONS(5022), + [anon_sym_GT_EQ] = ACTIONS(5024), + [anon_sym_LT_EQ] = ACTIONS(5022), + [anon_sym_LT] = ACTIONS(5022), + [anon_sym_LT_LT] = ACTIONS(5024), + [anon_sym_GT_GT] = ACTIONS(5024), + [anon_sym_SEMI] = ACTIONS(5024), + [anon_sym___extension__] = ACTIONS(5022), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_COLON] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym___based] = ACTIONS(5022), + [anon_sym_LBRACE] = ACTIONS(5024), + [anon_sym_RBRACE] = ACTIONS(5024), + [anon_sym_signed] = ACTIONS(5022), + [anon_sym_unsigned] = ACTIONS(5022), + [anon_sym_long] = ACTIONS(5022), + [anon_sym_short] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5024), + [anon_sym_RBRACK] = ACTIONS(5024), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5022), + [anon_sym_volatile] = ACTIONS(5022), + [anon_sym_restrict] = ACTIONS(5022), + [anon_sym___restrict__] = ACTIONS(5022), + [anon_sym__Atomic] = ACTIONS(5022), + [anon_sym__Noreturn] = ACTIONS(5022), + [anon_sym_noreturn] = ACTIONS(5022), + [anon_sym__Nonnull] = ACTIONS(5022), + [anon_sym_mutable] = ACTIONS(5022), + [anon_sym_constinit] = ACTIONS(5022), + [anon_sym_consteval] = ACTIONS(5022), + [anon_sym_alignas] = ACTIONS(5022), + [anon_sym__Alignas] = ACTIONS(5022), + [sym_primitive_type] = ACTIONS(5022), + [anon_sym_QMARK] = ACTIONS(5024), + [anon_sym_LT_EQ_GT] = ACTIONS(5024), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [anon_sym_bitor] = ACTIONS(5022), + [anon_sym_xor] = ACTIONS(5022), + [anon_sym_bitand] = ACTIONS(5022), + [anon_sym_not_eq] = ACTIONS(5022), + [anon_sym_DASH_DASH] = ACTIONS(5024), + [anon_sym_PLUS_PLUS] = ACTIONS(5024), + [anon_sym_DOT] = ACTIONS(5022), + [anon_sym_DOT_STAR] = ACTIONS(5024), + [anon_sym_DASH_GT] = ACTIONS(5024), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + [anon_sym_final] = ACTIONS(5022), + [anon_sym_override] = ACTIONS(5022), + [anon_sym_requires] = ACTIONS(5022), + }, + [STATE(1819)] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(5585), + [aux_sym_preproc_elif_token1] = ACTIONS(5585), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5585), + [aux_sym_preproc_elifdef_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(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), + [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), }, - [STATE(1825)] = { + [STATE(1820)] = { [sym_identifier] = ACTIONS(5585), [aux_sym_preproc_def_token1] = ACTIONS(5585), [aux_sym_preproc_if_token1] = ACTIONS(5585), @@ -257949,7 +258209,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5585), [anon_sym_static_assert] = ACTIONS(5585), }, - [STATE(1826)] = { + [STATE(1821)] = { + [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), + }, + [STATE(1822)] = { [sym_identifier] = ACTIONS(5589), [aux_sym_preproc_def_token1] = ACTIONS(5589), [aux_sym_preproc_if_token1] = ACTIONS(5589), @@ -258023,7 +258357,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5589), [anon_sym_static_assert] = ACTIONS(5589), }, - [STATE(1827)] = { + [STATE(1823)] = { + [sym_identifier] = ACTIONS(5018), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5020), + [anon_sym_COMMA] = ACTIONS(5020), + [anon_sym_RPAREN] = ACTIONS(5020), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_DASH] = ACTIONS(5018), + [anon_sym_PLUS] = ACTIONS(5018), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_SLASH] = ACTIONS(5018), + [anon_sym_PERCENT] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_PIPE] = ACTIONS(5018), + [anon_sym_CARET] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym_EQ_EQ] = ACTIONS(5020), + [anon_sym_BANG_EQ] = ACTIONS(5020), + [anon_sym_GT] = ACTIONS(5018), + [anon_sym_GT_EQ] = ACTIONS(5020), + [anon_sym_LT_EQ] = ACTIONS(5018), + [anon_sym_LT] = ACTIONS(5018), + [anon_sym_LT_LT] = ACTIONS(5020), + [anon_sym_GT_GT] = ACTIONS(5020), + [anon_sym_SEMI] = ACTIONS(5020), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_COLON] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym___based] = ACTIONS(5018), + [anon_sym_LBRACE] = ACTIONS(5020), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_signed] = ACTIONS(5018), + [anon_sym_unsigned] = ACTIONS(5018), + [anon_sym_long] = ACTIONS(5018), + [anon_sym_short] = ACTIONS(5018), + [anon_sym_LBRACK] = ACTIONS(5020), + [anon_sym_RBRACK] = ACTIONS(5020), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym__Nonnull] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [anon_sym_alignas] = ACTIONS(5018), + [anon_sym__Alignas] = ACTIONS(5018), + [sym_primitive_type] = ACTIONS(5018), + [anon_sym_QMARK] = ACTIONS(5020), + [anon_sym_LT_EQ_GT] = ACTIONS(5020), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [anon_sym_bitor] = ACTIONS(5018), + [anon_sym_xor] = ACTIONS(5018), + [anon_sym_bitand] = ACTIONS(5018), + [anon_sym_not_eq] = ACTIONS(5018), + [anon_sym_DASH_DASH] = ACTIONS(5020), + [anon_sym_PLUS_PLUS] = ACTIONS(5020), + [anon_sym_DOT] = ACTIONS(5018), + [anon_sym_DOT_STAR] = ACTIONS(5020), + [anon_sym_DASH_GT] = ACTIONS(5020), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + [anon_sym_final] = ACTIONS(5018), + [anon_sym_override] = ACTIONS(5018), + [anon_sym_requires] = ACTIONS(5018), + }, + [STATE(1824)] = { [sym_identifier] = ACTIONS(5593), [aux_sym_preproc_def_token1] = ACTIONS(5593), [aux_sym_preproc_if_token1] = ACTIONS(5593), @@ -258085,91 +258493,313 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(5593), [anon_sym_union] = ACTIONS(5593), [sym_comment] = ACTIONS(3), - [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), + [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), + }, + [STATE(1825)] = { + [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), + }, + [STATE(1826)] = { + [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), + }, + [STATE(1827)] = { + [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), + [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), }, [STATE(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), + [sym_identifier] = 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_TILDE] = ACTIONS(2961), + [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_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), + [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_private] = ACTIONS(2959), + [anon_sym_template] = ACTIONS(2959), + [anon_sym_operator] = ACTIONS(2959), + [anon_sym_friend] = ACTIONS(2959), + [anon_sym_public] = ACTIONS(2959), + [anon_sym_protected] = ACTIONS(2959), + [anon_sym_static_assert] = ACTIONS(2959), }, [STATE(1829)] = { [sym_identifier] = ACTIONS(5597), @@ -258246,302 +258876,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(5597), }, [STATE(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), + [sym_identifier] = ACTIONS(3329), + [aux_sym_preproc_def_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token2] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), + [aux_sym_preproc_else_token1] = ACTIONS(3329), + [aux_sym_preproc_elif_token1] = ACTIONS(3329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3329), + [sym_preproc_directive] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_AMP_AMP] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym___extension__] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3329), + [anon_sym_virtual] = ACTIONS(3329), + [anon_sym_extern] = ACTIONS(3329), + [anon_sym___attribute__] = ACTIONS(3329), + [anon_sym___attribute] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_COLON_COLON] = ACTIONS(3331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), + [anon_sym___declspec] = ACTIONS(3329), + [anon_sym___based] = ACTIONS(3329), + [anon_sym_signed] = ACTIONS(3329), + [anon_sym_unsigned] = ACTIONS(3329), + [anon_sym_long] = ACTIONS(3329), + [anon_sym_short] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_register] = ACTIONS(3329), + [anon_sym_inline] = ACTIONS(3329), + [anon_sym___inline] = ACTIONS(3329), + [anon_sym___inline__] = ACTIONS(3329), + [anon_sym___forceinline] = ACTIONS(3329), + [anon_sym_thread_local] = ACTIONS(3329), + [anon_sym___thread] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_constexpr] = ACTIONS(3329), + [anon_sym_volatile] = ACTIONS(3329), + [anon_sym_restrict] = ACTIONS(3329), + [anon_sym___restrict__] = ACTIONS(3329), + [anon_sym__Atomic] = ACTIONS(3329), + [anon_sym__Noreturn] = ACTIONS(3329), + [anon_sym_noreturn] = ACTIONS(3329), + [anon_sym__Nonnull] = ACTIONS(3329), + [anon_sym_mutable] = ACTIONS(3329), + [anon_sym_constinit] = ACTIONS(3329), + [anon_sym_consteval] = ACTIONS(3329), + [anon_sym_alignas] = ACTIONS(3329), + [anon_sym__Alignas] = ACTIONS(3329), + [sym_primitive_type] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3329), + [anon_sym_decltype] = ACTIONS(3329), + [anon_sym_explicit] = ACTIONS(3329), + [anon_sym_typename] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_template] = ACTIONS(3329), + [anon_sym_operator] = ACTIONS(3329), + [anon_sym_friend] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_static_assert] = ACTIONS(3329), }, [STATE(1831)] = { - [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), - [aux_sym_preproc_else_token1] = ACTIONS(5597), - [aux_sym_preproc_elif_token1] = ACTIONS(5597), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5597), - [aux_sym_preproc_elifdef_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), - }, - [STATE(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), - }, - [STATE(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(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__declaration_modifiers] = STATE(2125), + [sym__declaration_specifiers] = STATE(4006), + [sym_attribute_specifier] = STATE(2125), + [sym_attribute_declaration] = STATE(2125), + [sym_ms_declspec_modifier] = STATE(2125), + [sym_storage_class_specifier] = STATE(2125), + [sym_type_qualifier] = STATE(2125), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_parameter_declaration] = STATE(7733), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_optional_parameter_declaration] = STATE(7733), + [sym_variadic_parameter_declaration] = STATE(7733), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2125), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [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(5036), + [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(3027), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_class] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1890), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(1914), [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), }, - [STATE(1834)] = { + [STATE(1832)] = { + [sym_attribute_specifier] = STATE(2291), + [sym_field_declaration_list] = STATE(2232), + [sym_virtual_specifier] = STATE(7094), + [sym_base_class_clause] = STATE(7742), [sym_identifier] = ACTIONS(5601), [anon_sym_DOT_DOT_DOT] = ACTIONS(5603), [anon_sym_COMMA] = ACTIONS(5603), @@ -258571,7 +259057,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(5601), [anon_sym_GT_GT] = ACTIONS(5601), [anon_sym_SEMI] = ACTIONS(5603), - [anon_sym_COLON] = ACTIONS(5603), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(5609), [anon_sym_RBRACE] = ACTIONS(5603), [anon_sym_LBRACK] = ACTIONS(5603), [anon_sym_RBRACK] = ACTIONS(5603), @@ -258602,579 +259091,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [STATE(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), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), - }, - [STATE(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(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), - }, - [STATE(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), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), - }, - [STATE(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), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), - }, - [STATE(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(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), + [sym_auto] = ACTIONS(5601), + [anon_sym_decltype] = ACTIONS(5601), + [anon_sym_final] = ACTIONS(5611), + [anon_sym_override] = ACTIONS(5611), }, - [STATE(1840)] = { - [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), + [STATE(1833)] = { + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token2] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [aux_sym_preproc_else_token1] = ACTIONS(3109), + [aux_sym_preproc_elif_token1] = ACTIONS(3109), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym___extension__] = ACTIONS(3109), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym___attribute] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym___inline] = ACTIONS(3109), + [anon_sym___inline__] = ACTIONS(3109), + [anon_sym___forceinline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym___thread] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym__Nonnull] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_alignas] = ACTIONS(3109), + [anon_sym__Alignas] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_private] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_friend] = ACTIONS(3109), + [anon_sym_public] = ACTIONS(3109), + [anon_sym_protected] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), }, - [STATE(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(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), + [STATE(1834)] = { + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token2] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [aux_sym_preproc_else_token1] = ACTIONS(3113), + [aux_sym_preproc_elif_token1] = ACTIONS(3113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym___attribute] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym___inline] = ACTIONS(3113), + [anon_sym___inline__] = ACTIONS(3113), + [anon_sym___forceinline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym___thread] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym__Nonnull] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_alignas] = ACTIONS(3113), + [anon_sym__Alignas] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_friend] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), }, - [STATE(1842)] = { + [STATE(1835)] = { [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_DOT_DOT_DOT] = ACTIONS(5615), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5615), [anon_sym_LPAREN2] = ACTIONS(5615), - [anon_sym_TILDE] = ACTIONS(5615), + [anon_sym_DASH] = ACTIONS(5613), + [anon_sym_PLUS] = ACTIONS(5613), [anon_sym_STAR] = ACTIONS(5615), + [anon_sym_SLASH] = ACTIONS(5613), + [anon_sym_PERCENT] = ACTIONS(5615), + [anon_sym_PIPE_PIPE] = ACTIONS(5615), [anon_sym_AMP_AMP] = ACTIONS(5615), + [anon_sym_PIPE] = ACTIONS(5613), + [anon_sym_CARET] = ACTIONS(5615), [anon_sym_AMP] = ACTIONS(5613), + [anon_sym_EQ_EQ] = ACTIONS(5615), + [anon_sym_BANG_EQ] = ACTIONS(5615), + [anon_sym_GT] = ACTIONS(5613), + [anon_sym_GT_EQ] = ACTIONS(5615), + [anon_sym_LT_EQ] = ACTIONS(5613), + [anon_sym_LT] = ACTIONS(5613), + [anon_sym_LT_LT] = ACTIONS(5615), + [anon_sym_GT_GT] = ACTIONS(5615), [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_COLON] = ACTIONS(5613), + [anon_sym_COLON_COLON] = ACTIONS(5474), [anon_sym___based] = ACTIONS(5613), + [anon_sym_LBRACE] = ACTIONS(5615), + [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_LBRACK] = ACTIONS(5615), + [anon_sym_RBRACK] = ACTIONS(5615), [anon_sym_const] = ACTIONS(5613), [anon_sym_constexpr] = ACTIONS(5613), [anon_sym_volatile] = ACTIONS(5613), @@ -259190,246 +259299,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_QMARK] = ACTIONS(5615), + [anon_sym_LT_EQ_GT] = ACTIONS(5615), + [anon_sym_or] = ACTIONS(5613), + [anon_sym_and] = ACTIONS(5613), + [anon_sym_bitor] = ACTIONS(5613), + [anon_sym_xor] = ACTIONS(5613), + [anon_sym_bitand] = ACTIONS(5613), + [anon_sym_not_eq] = ACTIONS(5613), + [anon_sym_DASH_DASH] = ACTIONS(5615), + [anon_sym_PLUS_PLUS] = ACTIONS(5615), + [anon_sym_DOT] = ACTIONS(5613), + [anon_sym_DOT_STAR] = ACTIONS(5615), + [anon_sym_DASH_GT] = ACTIONS(5615), [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), + [anon_sym_final] = ACTIONS(5613), + [anon_sym_override] = ACTIONS(5613), + [anon_sym_requires] = ACTIONS(5613), }, - [STATE(1843)] = { + [STATE(1836)] = { + [sym_identifier] = ACTIONS(3055), + [aux_sym_preproc_def_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token2] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), + [aux_sym_preproc_else_token1] = ACTIONS(3055), + [aux_sym_preproc_elif_token1] = ACTIONS(3055), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3055), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3055), + [sym_preproc_directive] = ACTIONS(3055), + [anon_sym_LPAREN2] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_virtual] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = ACTIONS(3055), + [anon_sym___attribute] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_COLON_COLON] = ACTIONS(3057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), + [anon_sym___declspec] = ACTIONS(3055), + [anon_sym___based] = ACTIONS(3055), + [anon_sym_signed] = ACTIONS(3055), + [anon_sym_unsigned] = ACTIONS(3055), + [anon_sym_long] = ACTIONS(3055), + [anon_sym_short] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_static] = ACTIONS(3055), + [anon_sym_register] = ACTIONS(3055), + [anon_sym_inline] = ACTIONS(3055), + [anon_sym___inline] = ACTIONS(3055), + [anon_sym___inline__] = ACTIONS(3055), + [anon_sym___forceinline] = ACTIONS(3055), + [anon_sym_thread_local] = ACTIONS(3055), + [anon_sym___thread] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_constexpr] = ACTIONS(3055), + [anon_sym_volatile] = ACTIONS(3055), + [anon_sym_restrict] = ACTIONS(3055), + [anon_sym___restrict__] = ACTIONS(3055), + [anon_sym__Atomic] = ACTIONS(3055), + [anon_sym__Noreturn] = ACTIONS(3055), + [anon_sym_noreturn] = ACTIONS(3055), + [anon_sym__Nonnull] = ACTIONS(3055), + [anon_sym_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = ACTIONS(3055), + [anon_sym_alignas] = ACTIONS(3055), + [anon_sym__Alignas] = ACTIONS(3055), + [sym_primitive_type] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_class] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3055), + [anon_sym_decltype] = ACTIONS(3055), + [anon_sym_explicit] = ACTIONS(3055), + [anon_sym_typename] = ACTIONS(3055), + [anon_sym_private] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(3055), + [anon_sym_friend] = ACTIONS(3055), + [anon_sym_public] = ACTIONS(3055), + [anon_sym_protected] = ACTIONS(3055), + [anon_sym_static_assert] = ACTIONS(3055), + }, + [STATE(1837)] = { + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token2] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [aux_sym_preproc_else_token1] = ACTIONS(3059), + [aux_sym_preproc_elif_token1] = ACTIONS(3059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = ACTIONS(3059), + [anon_sym___attribute] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), + [anon_sym___declspec] = ACTIONS(3059), + [anon_sym___based] = ACTIONS(3059), + [anon_sym_signed] = ACTIONS(3059), + [anon_sym_unsigned] = ACTIONS(3059), + [anon_sym_long] = ACTIONS(3059), + [anon_sym_short] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_register] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym___inline] = ACTIONS(3059), + [anon_sym___inline__] = ACTIONS(3059), + [anon_sym___forceinline] = ACTIONS(3059), + [anon_sym_thread_local] = ACTIONS(3059), + [anon_sym___thread] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_constexpr] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(3059), + [anon_sym_restrict] = ACTIONS(3059), + [anon_sym___restrict__] = ACTIONS(3059), + [anon_sym__Atomic] = ACTIONS(3059), + [anon_sym__Noreturn] = ACTIONS(3059), + [anon_sym_noreturn] = ACTIONS(3059), + [anon_sym__Nonnull] = ACTIONS(3059), + [anon_sym_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(3059), + [anon_sym__Alignas] = ACTIONS(3059), + [sym_primitive_type] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3059), + [anon_sym_decltype] = ACTIONS(3059), + [anon_sym_explicit] = ACTIONS(3059), + [anon_sym_typename] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_friend] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_static_assert] = ACTIONS(3059), + }, + [STATE(1838)] = { [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), - [aux_sym_preproc_else_token1] = 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(5617), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5617), - [sym_preproc_directive] = ACTIONS(5617), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5619), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5619), [anon_sym_LPAREN2] = ACTIONS(5619), - [anon_sym_TILDE] = ACTIONS(5619), - [anon_sym_STAR] = 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___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), + [anon_sym_COLON] = 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), + [anon_sym_L_DQUOTE] = ACTIONS(5619), + [anon_sym_u_DQUOTE] = ACTIONS(5619), + [anon_sym_U_DQUOTE] = ACTIONS(5619), + [anon_sym_u8_DQUOTE] = ACTIONS(5619), + [anon_sym_DQUOTE] = ACTIONS(5619), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5619), + [anon_sym_LR_DQUOTE] = ACTIONS(5619), + [anon_sym_uR_DQUOTE] = ACTIONS(5619), + [anon_sym_UR_DQUOTE] = ACTIONS(5619), + [anon_sym_u8R_DQUOTE] = ACTIONS(5619), + [sym_literal_suffix] = ACTIONS(5617), }, - [STATE(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), + [STATE(1839)] = { + [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(1268), - [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), }, - [STATE(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), + [STATE(1840)] = { + [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), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [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), }, - [STATE(1846)] = { + [STATE(1841)] = { + [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), + }, + [STATE(1842)] = { [sym_identifier] = ACTIONS(5621), [aux_sym_preproc_def_token1] = ACTIONS(5621), [aux_sym_preproc_if_token1] = ACTIONS(5621), @@ -259503,523 +259837,819 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5621), [anon_sym_static_assert] = ACTIONS(5621), }, - [STATE(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), + [STATE(1843)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(3089), + [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_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), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [sym_auto] = ACTIONS(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), }, - [STATE(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), + [STATE(1844)] = { + [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), + [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_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), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_explicit] = ACTIONS(129), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(141), + [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), }, - [STATE(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), + [STATE(1845)] = { + [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), }, - [STATE(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), + [STATE(1846)] = { + [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(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(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), }, - [STATE(1851)] = { - [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), - [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_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), + [STATE(1847)] = { + [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(4998), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_PLUS] = ACTIONS(4996), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_SLASH] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_PIPE] = ACTIONS(4996), + [anon_sym_CARET] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4996), + [anon_sym_EQ_EQ] = ACTIONS(4998), + [anon_sym_BANG_EQ] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4996), + [anon_sym_GT_EQ] = ACTIONS(4998), + [anon_sym_LT_EQ] = ACTIONS(4996), + [anon_sym_LT] = ACTIONS(4996), + [anon_sym_LT_LT] = ACTIONS(4998), + [anon_sym_GT_GT] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [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(4998), + [anon_sym___based] = ACTIONS(4996), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_RBRACE] = ACTIONS(4998), + [anon_sym_signed] = ACTIONS(4996), + [anon_sym_unsigned] = ACTIONS(4996), + [anon_sym_long] = ACTIONS(4996), + [anon_sym_short] = ACTIONS(4996), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_RBRACK] = ACTIONS(4998), + [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_QMARK] = ACTIONS(4998), + [anon_sym_LT_EQ_GT] = ACTIONS(4998), + [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(4998), + [anon_sym_PLUS_PLUS] = ACTIONS(4998), + [anon_sym_DOT] = ACTIONS(4996), + [anon_sym_DOT_STAR] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(4998), [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_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), + [sym_auto] = ACTIONS(4996), + [anon_sym_decltype] = ACTIONS(4996), + [anon_sym_final] = ACTIONS(4996), + [anon_sym_override] = ACTIONS(4996), + [anon_sym_requires] = ACTIONS(4996), }, - [STATE(1852)] = { + [STATE(1848)] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [aux_sym_preproc_else_token1] = ACTIONS(3103), + [aux_sym_preproc_elif_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym___attribute] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym__Nonnull] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym__Alignas] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_friend] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + }, + [STATE(1849)] = { [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), - [aux_sym_preproc_else_token1] = 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(5629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5629), - [sym_preproc_directive] = ACTIONS(5629), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5631), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5631), [anon_sym_LPAREN2] = ACTIONS(5631), - [anon_sym_TILDE] = ACTIONS(5631), - [anon_sym_STAR] = 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___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(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), + [anon_sym_COLON] = 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), + [anon_sym_L_DQUOTE] = ACTIONS(5631), + [anon_sym_u_DQUOTE] = ACTIONS(5631), + [anon_sym_U_DQUOTE] = ACTIONS(5631), + [anon_sym_u8_DQUOTE] = ACTIONS(5631), + [anon_sym_DQUOTE] = ACTIONS(5631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5631), + [anon_sym_LR_DQUOTE] = ACTIONS(5631), + [anon_sym_uR_DQUOTE] = ACTIONS(5631), + [anon_sym_UR_DQUOTE] = ACTIONS(5631), + [anon_sym_u8R_DQUOTE] = ACTIONS(5631), + [sym_literal_suffix] = ACTIONS(5629), + }, + [STATE(1850)] = { + [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), + }, + [STATE(1851)] = { + [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(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), + }, + [STATE(1852)] = { + [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(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), }, [STATE(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_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), - [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), + [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), }, [STATE(1854)] = { [sym_identifier] = ACTIONS(5633), @@ -260096,47 +260726,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(5633), }, [STATE(1855)] = { + [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), + }, + [STATE(1856)] = { + [sym_decltype_auto] = STATE(1883), [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), - [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_DOT_DOT_DOT] = ACTIONS(5639), + [anon_sym_COMMA] = ACTIONS(5639), + [anon_sym_RPAREN] = ACTIONS(5639), [anon_sym_LPAREN2] = ACTIONS(5639), - [anon_sym_TILDE] = ACTIONS(5639), + [anon_sym_DASH] = ACTIONS(5637), + [anon_sym_PLUS] = ACTIONS(5637), [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_using] = ACTIONS(5637), - [anon_sym_COLON_COLON] = ACTIONS(5639), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5639), - [anon_sym___declspec] = ACTIONS(5637), + [anon_sym_COLON] = ACTIONS(5639), [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(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_LBRACK] = ACTIONS(5639), + [anon_sym_RBRACK] = ACTIONS(5639), [anon_sym_const] = ACTIONS(5637), [anon_sym_constexpr] = ACTIONS(5637), [anon_sym_volatile] = ACTIONS(5637), @@ -260152,209 +260853,734 @@ 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_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_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), + [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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5641), + [anon_sym_decltype] = ACTIONS(5643), + [anon_sym_final] = ACTIONS(5637), + [anon_sym_override] = ACTIONS(5637), + [anon_sym_requires] = ACTIONS(5637), + }, + [STATE(1857)] = { + [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(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), + }, + [STATE(1858)] = { + [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(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), + }, + [STATE(1859)] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(5633), + [aux_sym_preproc_elif_token1] = ACTIONS(5633), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5633), + [aux_sym_preproc_elifdef_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), + }, + [STATE(1860)] = { + [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(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), + }, + [STATE(1861)] = { + [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(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), + }, + [STATE(1862)] = { + [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(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), + }, + [STATE(1863)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2685), + [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_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), + [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_private] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_friend] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_protected] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), }, - [STATE(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_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), + [STATE(1864)] = { + [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), + [aux_sym_preproc_else_token1] = ACTIONS(2827), + [aux_sym_preproc_elif_token1] = ACTIONS(2827), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2827), + [aux_sym_preproc_elifdef_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), }, - [STATE(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), + [STATE(1865)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2685), + [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_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), [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), + [sym_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_explicit] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_friend] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_protected] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), }, - [STATE(1858)] = { + [STATE(1866)] = { [sym_identifier] = ACTIONS(5645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5647), - [anon_sym_COMMA] = ACTIONS(5647), - [anon_sym_RPAREN] = ACTIONS(5647), + [aux_sym_preproc_def_token1] = ACTIONS(5645), + [aux_sym_preproc_if_token1] = ACTIONS(5645), + [aux_sym_preproc_if_token2] = ACTIONS(5645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5645), + [aux_sym_preproc_else_token1] = ACTIONS(5645), + [aux_sym_preproc_elif_token1] = ACTIONS(5645), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5645), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5645), + [sym_preproc_directive] = ACTIONS(5645), [anon_sym_LPAREN2] = ACTIONS(5647), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), + [anon_sym_TILDE] = ACTIONS(5647), [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_typedef] = ACTIONS(5645), + [anon_sym_virtual] = ACTIONS(5645), + [anon_sym_extern] = ACTIONS(5645), [anon_sym___attribute__] = ACTIONS(5645), [anon_sym___attribute] = ACTIONS(5645), - [anon_sym_COLON] = ACTIONS(5647), + [anon_sym_using] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5647), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5647), + [anon_sym___declspec] = ACTIONS(5645), [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_LBRACK] = ACTIONS(5645), + [anon_sym_static] = ACTIONS(5645), + [anon_sym_register] = ACTIONS(5645), + [anon_sym_inline] = ACTIONS(5645), + [anon_sym___inline] = ACTIONS(5645), + [anon_sym___inline__] = ACTIONS(5645), + [anon_sym___forceinline] = ACTIONS(5645), + [anon_sym_thread_local] = ACTIONS(5645), + [anon_sym___thread] = ACTIONS(5645), [anon_sym_const] = ACTIONS(5645), [anon_sym_constexpr] = ACTIONS(5645), [anon_sym_volatile] = ACTIONS(5645), @@ -260370,1195 +261596,976 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_enum] = ACTIONS(5645), + [anon_sym_class] = ACTIONS(5645), + [anon_sym_struct] = ACTIONS(5645), + [anon_sym_union] = ACTIONS(5645), [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), + [anon_sym_explicit] = ACTIONS(5645), + [anon_sym_typename] = ACTIONS(5645), + [anon_sym_private] = ACTIONS(5645), + [anon_sym_template] = ACTIONS(5645), + [anon_sym_operator] = ACTIONS(5645), + [anon_sym_friend] = ACTIONS(5645), + [anon_sym_public] = ACTIONS(5645), + [anon_sym_protected] = ACTIONS(5645), + [anon_sym_static_assert] = ACTIONS(5645), }, - [STATE(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), + [STATE(1867)] = { + [sym__declaration_modifiers] = STATE(3294), + [sym_attribute_specifier] = STATE(3294), + [sym_attribute_declaration] = STATE(3294), + [sym_ms_declspec_modifier] = STATE(3294), + [sym_ms_based_modifier] = STATE(8850), + [sym__declarator] = STATE(6887), + [sym_parenthesized_declarator] = STATE(6137), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_function_declarator] = STATE(6445), + [sym_array_declarator] = STATE(6137), + [sym_storage_class_specifier] = STATE(3294), + [sym_type_qualifier] = STATE(3294), + [sym_alignas_qualifier] = STATE(3093), + [sym_decltype] = STATE(8381), + [sym_explicit_function_specifier] = STATE(3294), + [sym_operator_cast] = STATE(6919), + [sym__constructor_specifiers] = STATE(3294), + [sym_reference_declarator] = STATE(6137), + [sym_structured_binding_declarator] = STATE(6137), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5641), + [sym_qualified_identifier] = STATE(6137), + [sym_qualified_operator_cast_identifier] = STATE(6919), + [sym_operator_name] = STATE(6137), + [aux_sym_operator_cast_definition_repeat1] = STATE(3294), + [sym_identifier] = ACTIONS(5484), + [anon_sym_LPAREN2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3011), + [anon_sym___extension__] = ACTIONS(5486), + [anon_sym_virtual] = ACTIONS(5488), + [anon_sym_extern] = ACTIONS(5490), + [anon_sym___attribute__] = ACTIONS(5492), + [anon_sym___attribute] = ACTIONS(5492), + [anon_sym_COLON_COLON] = ACTIONS(5494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5496), + [anon_sym___declspec] = ACTIONS(5498), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(5490), + [anon_sym_register] = ACTIONS(5490), + [anon_sym_inline] = ACTIONS(5490), + [anon_sym___inline] = ACTIONS(5490), + [anon_sym___inline__] = ACTIONS(5490), + [anon_sym___forceinline] = ACTIONS(5490), + [anon_sym_thread_local] = ACTIONS(5490), + [anon_sym___thread] = ACTIONS(5490), + [anon_sym_const] = ACTIONS(5486), + [anon_sym_constexpr] = ACTIONS(5486), + [anon_sym_volatile] = ACTIONS(5486), + [anon_sym_restrict] = ACTIONS(5486), + [anon_sym___restrict__] = ACTIONS(5486), + [anon_sym__Atomic] = ACTIONS(5486), + [anon_sym__Noreturn] = ACTIONS(5486), + [anon_sym_noreturn] = ACTIONS(5486), + [anon_sym__Nonnull] = ACTIONS(5486), + [anon_sym_mutable] = ACTIONS(5486), + [anon_sym_constinit] = ACTIONS(5486), + [anon_sym_consteval] = ACTIONS(5486), + [anon_sym_alignas] = ACTIONS(5500), + [anon_sym__Alignas] = ACTIONS(5500), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_explicit] = ACTIONS(129), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(141), }, - [STATE(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), + [STATE(1868)] = { [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), + [aux_sym_preproc_def_token1] = ACTIONS(5649), + [aux_sym_preproc_if_token1] = ACTIONS(5649), + [aux_sym_preproc_if_token2] = ACTIONS(5649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5649), + [aux_sym_preproc_else_token1] = ACTIONS(5649), + [aux_sym_preproc_elif_token1] = ACTIONS(5649), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5649), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5649), + [sym_preproc_directive] = ACTIONS(5649), + [anon_sym_LPAREN2] = ACTIONS(5651), + [anon_sym_TILDE] = ACTIONS(5651), + [anon_sym_STAR] = ACTIONS(5651), + [anon_sym_AMP_AMP] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5649), + [anon_sym_SEMI] = ACTIONS(5651), + [anon_sym___extension__] = ACTIONS(5649), + [anon_sym_typedef] = ACTIONS(5649), + [anon_sym_virtual] = ACTIONS(5649), + [anon_sym_extern] = ACTIONS(5649), + [anon_sym___attribute__] = ACTIONS(5649), + [anon_sym___attribute] = ACTIONS(5649), + [anon_sym_using] = ACTIONS(5649), + [anon_sym_COLON_COLON] = ACTIONS(5651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5651), + [anon_sym___declspec] = ACTIONS(5649), + [anon_sym___based] = ACTIONS(5649), + [anon_sym_signed] = ACTIONS(5649), + [anon_sym_unsigned] = ACTIONS(5649), + [anon_sym_long] = ACTIONS(5649), + [anon_sym_short] = ACTIONS(5649), + [anon_sym_LBRACK] = ACTIONS(5649), + [anon_sym_static] = ACTIONS(5649), + [anon_sym_register] = ACTIONS(5649), + [anon_sym_inline] = ACTIONS(5649), + [anon_sym___inline] = ACTIONS(5649), + [anon_sym___inline__] = ACTIONS(5649), + [anon_sym___forceinline] = ACTIONS(5649), + [anon_sym_thread_local] = ACTIONS(5649), + [anon_sym___thread] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5649), + [anon_sym_constexpr] = ACTIONS(5649), + [anon_sym_volatile] = ACTIONS(5649), + [anon_sym_restrict] = ACTIONS(5649), + [anon_sym___restrict__] = ACTIONS(5649), + [anon_sym__Atomic] = ACTIONS(5649), + [anon_sym__Noreturn] = ACTIONS(5649), + [anon_sym_noreturn] = ACTIONS(5649), + [anon_sym__Nonnull] = ACTIONS(5649), + [anon_sym_mutable] = ACTIONS(5649), + [anon_sym_constinit] = ACTIONS(5649), + [anon_sym_consteval] = ACTIONS(5649), + [anon_sym_alignas] = ACTIONS(5649), + [anon_sym__Alignas] = ACTIONS(5649), + [sym_primitive_type] = ACTIONS(5649), + [anon_sym_enum] = ACTIONS(5649), + [anon_sym_class] = ACTIONS(5649), + [anon_sym_struct] = ACTIONS(5649), + [anon_sym_union] = ACTIONS(5649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5649), + [anon_sym_explicit] = ACTIONS(5649), + [anon_sym_typename] = ACTIONS(5649), + [anon_sym_private] = ACTIONS(5649), + [anon_sym_template] = ACTIONS(5649), + [anon_sym_operator] = ACTIONS(5649), + [anon_sym_friend] = ACTIONS(5649), + [anon_sym_public] = ACTIONS(5649), + [anon_sym_protected] = ACTIONS(5649), + [anon_sym_static_assert] = ACTIONS(5649), }, - [STATE(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), + [STATE(1869)] = { + [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), }, - [STATE(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), + [STATE(1870)] = { + [sym_identifier] = ACTIONS(5653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5655), + [anon_sym_COMMA] = ACTIONS(5655), + [anon_sym_RPAREN] = ACTIONS(5655), + [anon_sym_LPAREN2] = ACTIONS(5655), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_STAR] = ACTIONS(5655), + [anon_sym_SLASH] = ACTIONS(5653), + [anon_sym_PERCENT] = ACTIONS(5655), + [anon_sym_PIPE_PIPE] = ACTIONS(5655), + [anon_sym_AMP_AMP] = ACTIONS(5655), + [anon_sym_PIPE] = ACTIONS(5653), + [anon_sym_CARET] = ACTIONS(5655), + [anon_sym_AMP] = ACTIONS(5653), + [anon_sym_EQ_EQ] = ACTIONS(5655), + [anon_sym_BANG_EQ] = ACTIONS(5655), + [anon_sym_GT] = ACTIONS(5653), + [anon_sym_GT_EQ] = ACTIONS(5655), + [anon_sym_LT_EQ] = ACTIONS(5653), + [anon_sym_LT] = ACTIONS(5653), + [anon_sym_LT_LT] = ACTIONS(5655), + [anon_sym_GT_GT] = ACTIONS(5655), + [anon_sym_SEMI] = ACTIONS(5655), + [anon_sym___extension__] = ACTIONS(5653), + [anon_sym___attribute__] = ACTIONS(5653), + [anon_sym___attribute] = ACTIONS(5653), + [anon_sym_COLON] = ACTIONS(5655), + [anon_sym___based] = ACTIONS(5653), + [anon_sym_LBRACE] = ACTIONS(5655), + [anon_sym_RBRACE] = ACTIONS(5655), + [anon_sym_signed] = ACTIONS(5653), + [anon_sym_unsigned] = ACTIONS(5653), + [anon_sym_long] = ACTIONS(5653), + [anon_sym_short] = ACTIONS(5653), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_RBRACK] = ACTIONS(5655), + [anon_sym_const] = ACTIONS(5653), + [anon_sym_constexpr] = ACTIONS(5653), + [anon_sym_volatile] = ACTIONS(5653), + [anon_sym_restrict] = ACTIONS(5653), + [anon_sym___restrict__] = ACTIONS(5653), + [anon_sym__Atomic] = ACTIONS(5653), + [anon_sym__Noreturn] = ACTIONS(5653), + [anon_sym_noreturn] = ACTIONS(5653), + [anon_sym__Nonnull] = ACTIONS(5653), + [anon_sym_mutable] = ACTIONS(5653), + [anon_sym_constinit] = ACTIONS(5653), + [anon_sym_consteval] = ACTIONS(5653), + [anon_sym_alignas] = ACTIONS(5653), + [anon_sym__Alignas] = ACTIONS(5653), + [sym_primitive_type] = ACTIONS(5653), + [anon_sym_QMARK] = ACTIONS(5655), + [anon_sym_LT_EQ_GT] = ACTIONS(5655), + [anon_sym_or] = ACTIONS(5653), + [anon_sym_and] = ACTIONS(5653), + [anon_sym_bitor] = ACTIONS(5653), + [anon_sym_xor] = ACTIONS(5653), + [anon_sym_bitand] = ACTIONS(5653), + [anon_sym_not_eq] = ACTIONS(5653), + [anon_sym_DASH_DASH] = ACTIONS(5655), + [anon_sym_PLUS_PLUS] = ACTIONS(5655), + [anon_sym_DOT] = ACTIONS(5653), + [anon_sym_DOT_STAR] = ACTIONS(5655), + [anon_sym_DASH_GT] = ACTIONS(5655), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5653), + [anon_sym_decltype] = ACTIONS(5653), + [anon_sym_final] = ACTIONS(5653), + [anon_sym_override] = ACTIONS(5653), + [anon_sym_requires] = ACTIONS(5653), }, - [STATE(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), + [STATE(1871)] = { + [sym_identifier] = ACTIONS(5657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5659), + [anon_sym_COMMA] = ACTIONS(5659), + [anon_sym_RPAREN] = ACTIONS(5659), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_DASH] = ACTIONS(5657), + [anon_sym_PLUS] = ACTIONS(5657), + [anon_sym_STAR] = ACTIONS(5659), + [anon_sym_SLASH] = ACTIONS(5657), + [anon_sym_PERCENT] = ACTIONS(5659), + [anon_sym_PIPE_PIPE] = ACTIONS(5659), + [anon_sym_AMP_AMP] = ACTIONS(5659), + [anon_sym_PIPE] = ACTIONS(5657), + [anon_sym_CARET] = ACTIONS(5659), + [anon_sym_AMP] = ACTIONS(5657), + [anon_sym_EQ_EQ] = ACTIONS(5659), + [anon_sym_BANG_EQ] = ACTIONS(5659), + [anon_sym_GT] = ACTIONS(5657), + [anon_sym_GT_EQ] = ACTIONS(5659), + [anon_sym_LT_EQ] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(5657), + [anon_sym_LT_LT] = ACTIONS(5659), + [anon_sym_GT_GT] = ACTIONS(5659), + [anon_sym_SEMI] = ACTIONS(5659), + [anon_sym___extension__] = ACTIONS(5657), + [anon_sym___attribute__] = ACTIONS(5657), + [anon_sym___attribute] = ACTIONS(5657), + [anon_sym_COLON] = ACTIONS(5659), + [anon_sym___based] = ACTIONS(5657), + [anon_sym_LBRACE] = ACTIONS(5659), + [anon_sym_RBRACE] = ACTIONS(5659), + [anon_sym_signed] = ACTIONS(5657), + [anon_sym_unsigned] = ACTIONS(5657), + [anon_sym_long] = ACTIONS(5657), + [anon_sym_short] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5659), + [anon_sym_RBRACK] = ACTIONS(5659), + [anon_sym_const] = ACTIONS(5657), + [anon_sym_constexpr] = ACTIONS(5657), + [anon_sym_volatile] = ACTIONS(5657), + [anon_sym_restrict] = ACTIONS(5657), + [anon_sym___restrict__] = ACTIONS(5657), + [anon_sym__Atomic] = ACTIONS(5657), + [anon_sym__Noreturn] = ACTIONS(5657), + [anon_sym_noreturn] = ACTIONS(5657), + [anon_sym__Nonnull] = ACTIONS(5657), + [anon_sym_mutable] = ACTIONS(5657), + [anon_sym_constinit] = ACTIONS(5657), + [anon_sym_consteval] = ACTIONS(5657), + [anon_sym_alignas] = ACTIONS(5657), + [anon_sym__Alignas] = ACTIONS(5657), + [sym_primitive_type] = ACTIONS(5657), + [anon_sym_QMARK] = ACTIONS(5659), + [anon_sym_LT_EQ_GT] = ACTIONS(5659), + [anon_sym_or] = ACTIONS(5657), + [anon_sym_and] = ACTIONS(5657), + [anon_sym_bitor] = ACTIONS(5657), + [anon_sym_xor] = ACTIONS(5657), + [anon_sym_bitand] = ACTIONS(5657), + [anon_sym_not_eq] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(5659), + [anon_sym_PLUS_PLUS] = ACTIONS(5659), + [anon_sym_DOT] = ACTIONS(5657), + [anon_sym_DOT_STAR] = ACTIONS(5659), + [anon_sym_DASH_GT] = ACTIONS(5659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5657), + [anon_sym_decltype] = ACTIONS(5657), + [anon_sym_final] = ACTIONS(5657), + [anon_sym_override] = ACTIONS(5657), + [anon_sym_requires] = ACTIONS(5657), }, - [STATE(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), + [STATE(1872)] = { + [sym_type_qualifier] = STATE(1684), + [sym_alignas_qualifier] = STATE(1719), + [aux_sym__type_definition_type_repeat1] = STATE(1684), + [aux_sym_sized_type_specifier_repeat1] = STATE(3576), + [sym_identifier] = ACTIONS(5661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [aux_sym_preproc_if_token2] = ACTIONS(5102), + [aux_sym_preproc_else_token1] = ACTIONS(5102), + [aux_sym_preproc_elif_token1] = ACTIONS(5104), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5102), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5102), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5102), + [anon_sym_PIPE_PIPE] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5102), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5102), + [anon_sym_BANG_EQ] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5102), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym___extension__] = ACTIONS(5664), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5102), [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), - }, - [STATE(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(5541), - [anon_sym_decltype] = ACTIONS(5541), - [anon_sym_final] = ACTIONS(5541), - [anon_sym_override] = ACTIONS(5541), - [anon_sym_requires] = ACTIONS(5541), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_const] = ACTIONS(5664), + [anon_sym_constexpr] = ACTIONS(5664), + [anon_sym_volatile] = ACTIONS(5664), + [anon_sym_restrict] = ACTIONS(5664), + [anon_sym___restrict__] = ACTIONS(5664), + [anon_sym__Atomic] = ACTIONS(5664), + [anon_sym__Noreturn] = ACTIONS(5664), + [anon_sym_noreturn] = ACTIONS(5664), + [anon_sym__Nonnull] = ACTIONS(5664), + [anon_sym_mutable] = ACTIONS(5664), + [anon_sym_constinit] = ACTIONS(5664), + [anon_sym_consteval] = ACTIONS(5664), + [anon_sym_alignas] = ACTIONS(5668), + [anon_sym__Alignas] = ACTIONS(5668), + [sym_primitive_type] = ACTIONS(5670), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_LT_EQ_GT] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5102), + [anon_sym_DASH_GT] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), }, - [STATE(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), + [STATE(1873)] = { + [sym_catch_clause] = STATE(1892), + [aux_sym_constructor_try_statement_repeat1] = STATE(1892), + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token2] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym___extension__] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym___attribute] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym___inline] = ACTIONS(2541), + [anon_sym___inline__] = ACTIONS(2541), + [anon_sym___forceinline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym___thread] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym___restrict__] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym__Noreturn] = ACTIONS(2541), + [anon_sym_noreturn] = ACTIONS(2541), + [anon_sym__Nonnull] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_alignas] = ACTIONS(2541), + [anon_sym__Alignas] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_private] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_friend] = ACTIONS(2541), + [anon_sym_public] = ACTIONS(2541), + [anon_sym_protected] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_catch] = ACTIONS(5672), }, - [STATE(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), + [STATE(1874)] = { + [sym_identifier] = ACTIONS(5674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_RPAREN] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_STAR] = ACTIONS(5676), + [anon_sym_SLASH] = ACTIONS(5674), + [anon_sym_PERCENT] = ACTIONS(5676), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5674), + [anon_sym_CARET] = ACTIONS(5676), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5674), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5674), + [anon_sym_LT] = ACTIONS(5674), + [anon_sym_LT_LT] = ACTIONS(5676), + [anon_sym_GT_GT] = ACTIONS(5676), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___extension__] = ACTIONS(5674), + [anon_sym___attribute__] = ACTIONS(5674), + [anon_sym___attribute] = ACTIONS(5674), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym___based] = ACTIONS(5674), + [anon_sym_LBRACE] = ACTIONS(5676), + [anon_sym_RBRACE] = ACTIONS(5676), + [anon_sym_signed] = ACTIONS(5674), + [anon_sym_unsigned] = ACTIONS(5674), + [anon_sym_long] = ACTIONS(5674), + [anon_sym_short] = ACTIONS(5674), + [anon_sym_LBRACK] = ACTIONS(5676), + [anon_sym_RBRACK] = ACTIONS(5676), + [anon_sym_const] = ACTIONS(5674), + [anon_sym_constexpr] = ACTIONS(5674), + [anon_sym_volatile] = ACTIONS(5674), + [anon_sym_restrict] = ACTIONS(5674), + [anon_sym___restrict__] = ACTIONS(5674), + [anon_sym__Atomic] = ACTIONS(5674), + [anon_sym__Noreturn] = ACTIONS(5674), + [anon_sym_noreturn] = ACTIONS(5674), + [anon_sym__Nonnull] = ACTIONS(5674), + [anon_sym_mutable] = ACTIONS(5674), + [anon_sym_constinit] = ACTIONS(5674), + [anon_sym_consteval] = ACTIONS(5674), + [anon_sym_alignas] = ACTIONS(5674), + [anon_sym__Alignas] = ACTIONS(5674), [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), - }, - [STATE(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), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5674), + [anon_sym_bitor] = ACTIONS(5674), + [anon_sym_xor] = ACTIONS(5674), + [anon_sym_bitand] = ACTIONS(5674), + [anon_sym_not_eq] = ACTIONS(5674), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5674), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5674), + [anon_sym_decltype] = ACTIONS(5674), + [anon_sym_final] = ACTIONS(5674), + [anon_sym_override] = ACTIONS(5674), + [anon_sym_requires] = ACTIONS(5674), }, - [STATE(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_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(5664), - }, - [STATE(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), + [STATE(1875)] = { + [sym_identifier] = ACTIONS(5678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5680), + [anon_sym_RPAREN] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_DASH] = ACTIONS(5678), + [anon_sym_PLUS] = ACTIONS(5678), + [anon_sym_STAR] = ACTIONS(5680), + [anon_sym_SLASH] = ACTIONS(5678), + [anon_sym_PERCENT] = ACTIONS(5680), + [anon_sym_PIPE_PIPE] = ACTIONS(5680), + [anon_sym_AMP_AMP] = ACTIONS(5680), + [anon_sym_PIPE] = ACTIONS(5678), + [anon_sym_CARET] = ACTIONS(5680), + [anon_sym_AMP] = ACTIONS(5678), + [anon_sym_EQ_EQ] = ACTIONS(5680), + [anon_sym_BANG_EQ] = ACTIONS(5680), + [anon_sym_GT] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5678), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym_LT_LT] = ACTIONS(5680), + [anon_sym_GT_GT] = ACTIONS(5680), + [anon_sym_SEMI] = ACTIONS(5680), + [anon_sym___extension__] = ACTIONS(5678), + [anon_sym___attribute__] = ACTIONS(5678), + [anon_sym___attribute] = ACTIONS(5678), + [anon_sym_COLON] = ACTIONS(5680), + [anon_sym___based] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5680), + [anon_sym_RBRACE] = ACTIONS(5680), + [anon_sym_signed] = ACTIONS(5678), + [anon_sym_unsigned] = ACTIONS(5678), + [anon_sym_long] = ACTIONS(5678), + [anon_sym_short] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_RBRACK] = ACTIONS(5680), + [anon_sym_const] = ACTIONS(5678), + [anon_sym_constexpr] = ACTIONS(5678), + [anon_sym_volatile] = ACTIONS(5678), + [anon_sym_restrict] = ACTIONS(5678), + [anon_sym___restrict__] = ACTIONS(5678), + [anon_sym__Atomic] = ACTIONS(5678), + [anon_sym__Noreturn] = ACTIONS(5678), + [anon_sym_noreturn] = ACTIONS(5678), + [anon_sym__Nonnull] = ACTIONS(5678), + [anon_sym_mutable] = ACTIONS(5678), + [anon_sym_constinit] = ACTIONS(5678), + [anon_sym_consteval] = ACTIONS(5678), + [anon_sym_alignas] = ACTIONS(5678), + [anon_sym__Alignas] = ACTIONS(5678), + [sym_primitive_type] = ACTIONS(5678), + [anon_sym_QMARK] = ACTIONS(5680), + [anon_sym_LT_EQ_GT] = ACTIONS(5680), + [anon_sym_or] = ACTIONS(5678), + [anon_sym_and] = ACTIONS(5678), + [anon_sym_bitor] = ACTIONS(5678), + [anon_sym_xor] = ACTIONS(5678), + [anon_sym_bitand] = ACTIONS(5678), + [anon_sym_not_eq] = ACTIONS(5678), + [anon_sym_DASH_DASH] = ACTIONS(5680), + [anon_sym_PLUS_PLUS] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(5678), + [anon_sym_DOT_STAR] = ACTIONS(5680), + [anon_sym_DASH_GT] = ACTIONS(5680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5678), + [anon_sym_decltype] = ACTIONS(5678), + [anon_sym_final] = ACTIONS(5678), + [anon_sym_override] = ACTIONS(5678), + [anon_sym_requires] = ACTIONS(5678), }, - [STATE(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), + [STATE(1876)] = { + [sym_identifier] = ACTIONS(5682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5684), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_RPAREN] = ACTIONS(5684), + [anon_sym_LPAREN2] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_STAR] = ACTIONS(5684), + [anon_sym_SLASH] = ACTIONS(5682), + [anon_sym_PERCENT] = ACTIONS(5684), + [anon_sym_PIPE_PIPE] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5684), + [anon_sym_PIPE] = ACTIONS(5682), + [anon_sym_CARET] = ACTIONS(5684), + [anon_sym_AMP] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5684), + [anon_sym_BANG_EQ] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5684), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym_LT_LT] = ACTIONS(5684), + [anon_sym_GT_GT] = ACTIONS(5684), + [anon_sym_SEMI] = ACTIONS(5684), + [anon_sym___extension__] = ACTIONS(5682), + [anon_sym___attribute__] = ACTIONS(5682), + [anon_sym___attribute] = ACTIONS(5682), + [anon_sym_COLON] = ACTIONS(5684), + [anon_sym___based] = ACTIONS(5682), + [anon_sym_LBRACE] = ACTIONS(5684), + [anon_sym_RBRACE] = ACTIONS(5684), + [anon_sym_signed] = ACTIONS(5682), + [anon_sym_unsigned] = ACTIONS(5682), + [anon_sym_long] = ACTIONS(5682), + [anon_sym_short] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5684), + [anon_sym_RBRACK] = ACTIONS(5684), + [anon_sym_const] = ACTIONS(5682), + [anon_sym_constexpr] = ACTIONS(5682), + [anon_sym_volatile] = ACTIONS(5682), + [anon_sym_restrict] = ACTIONS(5682), + [anon_sym___restrict__] = ACTIONS(5682), + [anon_sym__Atomic] = ACTIONS(5682), + [anon_sym__Noreturn] = ACTIONS(5682), + [anon_sym_noreturn] = ACTIONS(5682), + [anon_sym__Nonnull] = ACTIONS(5682), + [anon_sym_mutable] = ACTIONS(5682), + [anon_sym_constinit] = ACTIONS(5682), + [anon_sym_consteval] = ACTIONS(5682), + [anon_sym_alignas] = ACTIONS(5682), + [anon_sym__Alignas] = ACTIONS(5682), + [sym_primitive_type] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_LT_EQ_GT] = ACTIONS(5684), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_bitor] = ACTIONS(5682), + [anon_sym_xor] = ACTIONS(5682), + [anon_sym_bitand] = ACTIONS(5682), + [anon_sym_not_eq] = ACTIONS(5682), + [anon_sym_DASH_DASH] = ACTIONS(5684), + [anon_sym_PLUS_PLUS] = ACTIONS(5684), + [anon_sym_DOT] = ACTIONS(5682), + [anon_sym_DOT_STAR] = ACTIONS(5684), + [anon_sym_DASH_GT] = ACTIONS(5684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5682), + [anon_sym_decltype] = ACTIONS(5682), + [anon_sym_final] = ACTIONS(5682), + [anon_sym_override] = ACTIONS(5682), + [anon_sym_requires] = ACTIONS(5682), }, - [STATE(1872)] = { - [sym_identifier] = ACTIONS(5681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5683), - [anon_sym_COMMA] = ACTIONS(5683), - [anon_sym_RPAREN] = ACTIONS(5683), - [anon_sym_LPAREN2] = ACTIONS(5683), - [anon_sym_DASH] = ACTIONS(5681), - [anon_sym_PLUS] = ACTIONS(5681), - [anon_sym_STAR] = ACTIONS(5683), - [anon_sym_SLASH] = ACTIONS(5681), - [anon_sym_PERCENT] = ACTIONS(5683), - [anon_sym_PIPE_PIPE] = ACTIONS(5683), - [anon_sym_AMP_AMP] = ACTIONS(5683), - [anon_sym_PIPE] = ACTIONS(5681), - [anon_sym_CARET] = ACTIONS(5683), - [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(5683), - [anon_sym_GT_GT] = ACTIONS(5683), - [anon_sym_SEMI] = ACTIONS(5683), - [anon_sym___extension__] = ACTIONS(5681), - [anon_sym___attribute__] = ACTIONS(5681), - [anon_sym___attribute] = ACTIONS(5681), - [anon_sym_COLON] = ACTIONS(5683), - [anon_sym___based] = ACTIONS(5681), - [anon_sym_LBRACE] = ACTIONS(5683), - [anon_sym_RBRACE] = ACTIONS(5683), - [anon_sym_signed] = ACTIONS(5681), - [anon_sym_unsigned] = ACTIONS(5681), - [anon_sym_long] = ACTIONS(5681), - [anon_sym_short] = ACTIONS(5681), - [anon_sym_LBRACK] = ACTIONS(5683), - [anon_sym_RBRACK] = ACTIONS(5683), - [anon_sym_const] = ACTIONS(5681), - [anon_sym_constexpr] = ACTIONS(5681), - [anon_sym_volatile] = ACTIONS(5681), - [anon_sym_restrict] = ACTIONS(5681), - [anon_sym___restrict__] = ACTIONS(5681), - [anon_sym__Atomic] = ACTIONS(5681), - [anon_sym__Noreturn] = ACTIONS(5681), - [anon_sym_noreturn] = ACTIONS(5681), - [anon_sym__Nonnull] = ACTIONS(5681), - [anon_sym_mutable] = ACTIONS(5681), - [anon_sym_constinit] = ACTIONS(5681), - [anon_sym_consteval] = ACTIONS(5681), - [anon_sym_alignas] = ACTIONS(5681), - [anon_sym__Alignas] = ACTIONS(5681), - [sym_primitive_type] = ACTIONS(5681), - [anon_sym_QMARK] = ACTIONS(5683), - [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(5681), - [anon_sym_decltype] = ACTIONS(5681), - [anon_sym_final] = ACTIONS(5681), - [anon_sym_override] = ACTIONS(5681), - [anon_sym_requires] = ACTIONS(5681), + [STATE(1877)] = { + [sym_identifier] = ACTIONS(5686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5688), + [anon_sym_RPAREN] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(5686), + [anon_sym_PLUS] = ACTIONS(5686), + [anon_sym_STAR] = ACTIONS(5688), + [anon_sym_SLASH] = ACTIONS(5686), + [anon_sym_PERCENT] = ACTIONS(5688), + [anon_sym_PIPE_PIPE] = ACTIONS(5688), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE] = ACTIONS(5686), + [anon_sym_CARET] = ACTIONS(5688), + [anon_sym_AMP] = ACTIONS(5686), + [anon_sym_EQ_EQ] = ACTIONS(5688), + [anon_sym_BANG_EQ] = ACTIONS(5688), + [anon_sym_GT] = ACTIONS(5686), + [anon_sym_GT_EQ] = ACTIONS(5688), + [anon_sym_LT_EQ] = ACTIONS(5686), + [anon_sym_LT] = ACTIONS(5686), + [anon_sym_LT_LT] = ACTIONS(5688), + [anon_sym_GT_GT] = ACTIONS(5688), + [anon_sym_SEMI] = ACTIONS(5688), + [anon_sym___extension__] = ACTIONS(5686), + [anon_sym___attribute__] = ACTIONS(5686), + [anon_sym___attribute] = ACTIONS(5686), + [anon_sym_COLON] = ACTIONS(5688), + [anon_sym___based] = ACTIONS(5686), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(5688), + [anon_sym_signed] = ACTIONS(5686), + [anon_sym_unsigned] = ACTIONS(5686), + [anon_sym_long] = ACTIONS(5686), + [anon_sym_short] = ACTIONS(5686), + [anon_sym_LBRACK] = ACTIONS(5688), + [anon_sym_RBRACK] = ACTIONS(5688), + [anon_sym_const] = ACTIONS(5686), + [anon_sym_constexpr] = ACTIONS(5686), + [anon_sym_volatile] = ACTIONS(5686), + [anon_sym_restrict] = ACTIONS(5686), + [anon_sym___restrict__] = ACTIONS(5686), + [anon_sym__Atomic] = ACTIONS(5686), + [anon_sym__Noreturn] = ACTIONS(5686), + [anon_sym_noreturn] = ACTIONS(5686), + [anon_sym__Nonnull] = ACTIONS(5686), + [anon_sym_mutable] = ACTIONS(5686), + [anon_sym_constinit] = ACTIONS(5686), + [anon_sym_consteval] = ACTIONS(5686), + [anon_sym_alignas] = ACTIONS(5686), + [anon_sym__Alignas] = ACTIONS(5686), + [sym_primitive_type] = ACTIONS(5686), + [anon_sym_QMARK] = ACTIONS(5688), + [anon_sym_LT_EQ_GT] = ACTIONS(5688), + [anon_sym_or] = ACTIONS(5686), + [anon_sym_and] = ACTIONS(5686), + [anon_sym_bitor] = ACTIONS(5686), + [anon_sym_xor] = ACTIONS(5686), + [anon_sym_bitand] = ACTIONS(5686), + [anon_sym_not_eq] = ACTIONS(5686), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DOT] = ACTIONS(5686), + [anon_sym_DOT_STAR] = ACTIONS(5688), + [anon_sym_DASH_GT] = ACTIONS(5688), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5686), + [anon_sym_decltype] = ACTIONS(5686), + [anon_sym_final] = ACTIONS(5686), + [anon_sym_override] = ACTIONS(5686), + [anon_sym_requires] = ACTIONS(5686), }, - [STATE(1873)] = { - [sym_identifier] = ACTIONS(5685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5687), - [anon_sym_COMMA] = ACTIONS(5687), - [anon_sym_RPAREN] = ACTIONS(5687), - [anon_sym_LPAREN2] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(5685), - [anon_sym_PLUS] = ACTIONS(5685), - [anon_sym_STAR] = ACTIONS(5687), - [anon_sym_SLASH] = ACTIONS(5685), - [anon_sym_PERCENT] = ACTIONS(5687), - [anon_sym_PIPE_PIPE] = ACTIONS(5687), - [anon_sym_AMP_AMP] = ACTIONS(5687), - [anon_sym_PIPE] = ACTIONS(5685), - [anon_sym_CARET] = ACTIONS(5687), - [anon_sym_AMP] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5687), - [anon_sym_BANG_EQ] = ACTIONS(5687), - [anon_sym_GT] = ACTIONS(5685), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_LT_EQ] = ACTIONS(5685), - [anon_sym_LT] = ACTIONS(5685), - [anon_sym_LT_LT] = ACTIONS(5687), - [anon_sym_GT_GT] = ACTIONS(5687), - [anon_sym_SEMI] = ACTIONS(5687), - [anon_sym___extension__] = ACTIONS(5685), - [anon_sym___attribute__] = ACTIONS(5685), - [anon_sym___attribute] = ACTIONS(5685), - [anon_sym_COLON] = ACTIONS(5687), - [anon_sym___based] = ACTIONS(5685), - [anon_sym_LBRACE] = ACTIONS(5687), - [anon_sym_RBRACE] = ACTIONS(5687), - [anon_sym_signed] = ACTIONS(5685), - [anon_sym_unsigned] = ACTIONS(5685), - [anon_sym_long] = ACTIONS(5685), - [anon_sym_short] = ACTIONS(5685), - [anon_sym_LBRACK] = ACTIONS(5687), - [anon_sym_RBRACK] = ACTIONS(5687), - [anon_sym_const] = ACTIONS(5685), - [anon_sym_constexpr] = ACTIONS(5685), - [anon_sym_volatile] = ACTIONS(5685), - [anon_sym_restrict] = ACTIONS(5685), - [anon_sym___restrict__] = ACTIONS(5685), - [anon_sym__Atomic] = ACTIONS(5685), - [anon_sym__Noreturn] = ACTIONS(5685), - [anon_sym_noreturn] = ACTIONS(5685), - [anon_sym__Nonnull] = ACTIONS(5685), - [anon_sym_mutable] = ACTIONS(5685), - [anon_sym_constinit] = ACTIONS(5685), - [anon_sym_consteval] = ACTIONS(5685), - [anon_sym_alignas] = ACTIONS(5685), - [anon_sym__Alignas] = ACTIONS(5685), - [sym_primitive_type] = ACTIONS(5685), - [anon_sym_QMARK] = ACTIONS(5687), - [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), - [anon_sym_final] = ACTIONS(5685), - [anon_sym_override] = ACTIONS(5685), - [anon_sym_requires] = ACTIONS(5685), + [STATE(1878)] = { + [sym_identifier] = ACTIONS(5096), + [anon_sym_LPAREN2] = ACTIONS(5098), + [anon_sym_BANG] = ACTIONS(5098), + [anon_sym_TILDE] = ACTIONS(5098), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5098), + [anon_sym___extension__] = ACTIONS(5096), + [anon_sym_COLON_COLON] = ACTIONS(5098), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_static] = ACTIONS(5096), + [anon_sym_RBRACK] = ACTIONS(5098), + [anon_sym_const] = ACTIONS(5096), + [anon_sym_constexpr] = ACTIONS(5096), + [anon_sym_volatile] = ACTIONS(5096), + [anon_sym_restrict] = ACTIONS(5096), + [anon_sym___restrict__] = ACTIONS(5096), + [anon_sym__Atomic] = ACTIONS(5096), + [anon_sym__Noreturn] = ACTIONS(5096), + [anon_sym_noreturn] = ACTIONS(5096), + [anon_sym__Nonnull] = ACTIONS(5096), + [anon_sym_mutable] = ACTIONS(5096), + [anon_sym_constinit] = ACTIONS(5096), + [anon_sym_consteval] = ACTIONS(5096), + [anon_sym_alignas] = ACTIONS(5096), + [anon_sym__Alignas] = ACTIONS(5096), + [sym_primitive_type] = ACTIONS(5096), + [anon_sym_not] = ACTIONS(5096), + [anon_sym_compl] = ACTIONS(5096), + [anon_sym_DASH_DASH] = ACTIONS(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5098), + [anon_sym_sizeof] = ACTIONS(5096), + [anon_sym___alignof__] = ACTIONS(5096), + [anon_sym___alignof] = ACTIONS(5096), + [anon_sym__alignof] = ACTIONS(5096), + [anon_sym_alignof] = ACTIONS(5096), + [anon_sym__Alignof] = ACTIONS(5096), + [anon_sym_offsetof] = ACTIONS(5096), + [anon_sym__Generic] = ACTIONS(5096), + [anon_sym_asm] = ACTIONS(5096), + [anon_sym___asm__] = ACTIONS(5096), + [anon_sym___asm] = ACTIONS(5096), + [sym_number_literal] = ACTIONS(5098), + [anon_sym_L_SQUOTE] = ACTIONS(5098), + [anon_sym_u_SQUOTE] = ACTIONS(5098), + [anon_sym_U_SQUOTE] = ACTIONS(5098), + [anon_sym_u8_SQUOTE] = ACTIONS(5098), + [anon_sym_SQUOTE] = ACTIONS(5098), + [anon_sym_L_DQUOTE] = ACTIONS(5098), + [anon_sym_u_DQUOTE] = ACTIONS(5098), + [anon_sym_U_DQUOTE] = ACTIONS(5098), + [anon_sym_u8_DQUOTE] = ACTIONS(5098), + [anon_sym_DQUOTE] = ACTIONS(5098), + [sym_true] = ACTIONS(5096), + [sym_false] = ACTIONS(5096), + [anon_sym_NULL] = ACTIONS(5096), + [anon_sym_nullptr] = ACTIONS(5096), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_template] = ACTIONS(5096), + [anon_sym_delete] = ACTIONS(5096), + [anon_sym_R_DQUOTE] = ACTIONS(5098), + [anon_sym_LR_DQUOTE] = ACTIONS(5098), + [anon_sym_uR_DQUOTE] = ACTIONS(5098), + [anon_sym_UR_DQUOTE] = ACTIONS(5098), + [anon_sym_u8R_DQUOTE] = ACTIONS(5098), + [anon_sym_co_await] = ACTIONS(5096), + [anon_sym_new] = ACTIONS(5096), + [anon_sym_requires] = ACTIONS(5096), + [sym_this] = ACTIONS(5096), }, - [STATE(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), + [STATE(1879)] = { + [sym_template_argument_list] = STATE(1943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_LPAREN2] = ACTIONS(4919), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4924), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(5690), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_const] = ACTIONS(4915), + [anon_sym_constexpr] = ACTIONS(4922), + [anon_sym_volatile] = ACTIONS(4922), + [anon_sym_restrict] = ACTIONS(4922), + [anon_sym___restrict__] = ACTIONS(4922), + [anon_sym__Atomic] = ACTIONS(4922), + [anon_sym__Noreturn] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym__Nonnull] = ACTIONS(4922), + [anon_sym_mutable] = ACTIONS(4922), + [anon_sym_constinit] = ACTIONS(4922), + [anon_sym_consteval] = ACTIONS(4922), + [anon_sym_alignas] = ACTIONS(4922), + [anon_sym__Alignas] = ACTIONS(4922), + [anon_sym_QMARK] = ACTIONS(4917), + [anon_sym_STAR_EQ] = ACTIONS(4917), + [anon_sym_SLASH_EQ] = ACTIONS(4917), + [anon_sym_PERCENT_EQ] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4917), + [anon_sym_DASH_EQ] = ACTIONS(4917), + [anon_sym_LT_LT_EQ] = ACTIONS(4917), + [anon_sym_GT_GT_EQ] = ACTIONS(4924), + [anon_sym_AMP_EQ] = ACTIONS(4917), + [anon_sym_CARET_EQ] = ACTIONS(4917), + [anon_sym_PIPE_EQ] = ACTIONS(4917), + [anon_sym_and_eq] = ACTIONS(4917), + [anon_sym_or_eq] = ACTIONS(4917), + [anon_sym_xor_eq] = ACTIONS(4917), + [anon_sym_LT_EQ_GT] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4924), + [anon_sym_and] = ACTIONS(4924), + [anon_sym_bitor] = ACTIONS(4917), + [anon_sym_xor] = ACTIONS(4924), + [anon_sym_bitand] = ACTIONS(4917), + [anon_sym_not_eq] = ACTIONS(4917), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4922), + [anon_sym_decltype] = ACTIONS(4922), + [anon_sym_GT2] = ACTIONS(4919), }, - [STATE(1875)] = { + [STATE(1880)] = { [sym_identifier] = ACTIONS(5693), [anon_sym_DOT_DOT_DOT] = ACTIONS(5695), [anon_sym_COMMA] = ACTIONS(5695), @@ -261631,7 +262638,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(5693), [anon_sym_requires] = ACTIONS(5693), }, - [STATE(1876)] = { + [STATE(1881)] = { [sym_identifier] = ACTIONS(5697), [anon_sym_DOT_DOT_DOT] = ACTIONS(5699), [anon_sym_COMMA] = ACTIONS(5699), @@ -261704,44 +262711,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(5697), [anon_sym_requires] = ACTIONS(5697), }, - [STATE(1877)] = { + [STATE(1882)] = { [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_TILDE] = ACTIONS(5703), [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_virtual] = ACTIONS(5701), + [anon_sym_extern] = ACTIONS(5701), [anon_sym___attribute__] = ACTIONS(5701), [anon_sym___attribute] = ACTIONS(5701), - [anon_sym_COLON] = ACTIONS(5703), + [anon_sym_COLON_COLON] = ACTIONS(5703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5703), + [anon_sym___declspec] = ACTIONS(5701), [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_LBRACK] = ACTIONS(5701), + [anon_sym_static] = ACTIONS(5701), + [anon_sym_EQ] = ACTIONS(5703), + [anon_sym_register] = ACTIONS(5701), + [anon_sym_inline] = ACTIONS(5701), + [anon_sym___inline] = ACTIONS(5701), + [anon_sym___inline__] = ACTIONS(5701), + [anon_sym___forceinline] = ACTIONS(5701), + [anon_sym_thread_local] = ACTIONS(5701), + [anon_sym___thread] = ACTIONS(5701), [anon_sym_const] = ACTIONS(5701), [anon_sym_constexpr] = ACTIONS(5701), [anon_sym_volatile] = ACTIONS(5701), @@ -261757,27 +262761,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_enum] = ACTIONS(5701), + [anon_sym_class] = ACTIONS(5701), + [anon_sym_struct] = ACTIONS(5701), + [anon_sym_union] = ACTIONS(5701), + [anon_sym_asm] = ACTIONS(5701), + [anon_sym___asm__] = ACTIONS(5701), + [anon_sym___asm] = ACTIONS(5701), [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_explicit] = ACTIONS(5701), + [anon_sym_typename] = ACTIONS(5701), + [anon_sym_template] = ACTIONS(5701), + [anon_sym_GT2] = ACTIONS(5703), + [anon_sym_operator] = ACTIONS(5701), + [anon_sym_try] = ACTIONS(5701), + [anon_sym_noexcept] = ACTIONS(5701), + [anon_sym_throw] = ACTIONS(5701), [anon_sym_requires] = ACTIONS(5701), }, - [STATE(1878)] = { + [STATE(1883)] = { [sym_identifier] = ACTIONS(5705), [anon_sym_DOT_DOT_DOT] = ACTIONS(5707), [anon_sym_COMMA] = ACTIONS(5707), @@ -261850,956 +262857,810 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(5705), [anon_sym_requires] = ACTIONS(5705), }, - [STATE(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_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), - [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(5709), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, [STATE(1884)] = { - [sym_identifier] = ACTIONS(5728), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5730), - [anon_sym_COMMA] = ACTIONS(5730), - [anon_sym_RPAREN] = ACTIONS(5730), - [anon_sym_LPAREN2] = ACTIONS(5730), - [anon_sym_DASH] = ACTIONS(5728), - [anon_sym_PLUS] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(5730), - [anon_sym_SLASH] = ACTIONS(5728), - [anon_sym_PERCENT] = ACTIONS(5730), - [anon_sym_PIPE_PIPE] = ACTIONS(5730), - [anon_sym_AMP_AMP] = ACTIONS(5730), - [anon_sym_PIPE] = ACTIONS(5728), - [anon_sym_CARET] = ACTIONS(5730), - [anon_sym_AMP] = ACTIONS(5728), - [anon_sym_EQ_EQ] = ACTIONS(5730), - [anon_sym_BANG_EQ] = ACTIONS(5730), - [anon_sym_GT] = ACTIONS(5728), - [anon_sym_GT_EQ] = ACTIONS(5730), - [anon_sym_LT_EQ] = ACTIONS(5728), - [anon_sym_LT] = ACTIONS(5728), - [anon_sym_LT_LT] = ACTIONS(5730), - [anon_sym_GT_GT] = ACTIONS(5730), - [anon_sym_SEMI] = ACTIONS(5730), - [anon_sym___extension__] = ACTIONS(5728), - [anon_sym___attribute__] = ACTIONS(5728), - [anon_sym___attribute] = ACTIONS(5728), - [anon_sym_COLON] = ACTIONS(5730), - [anon_sym___based] = ACTIONS(5728), - [anon_sym_LBRACE] = ACTIONS(5730), - [anon_sym_RBRACE] = ACTIONS(5730), - [anon_sym_signed] = ACTIONS(5728), - [anon_sym_unsigned] = ACTIONS(5728), - [anon_sym_long] = ACTIONS(5728), - [anon_sym_short] = ACTIONS(5728), - [anon_sym_LBRACK] = ACTIONS(5730), - [anon_sym_RBRACK] = ACTIONS(5730), - [anon_sym_const] = ACTIONS(5728), - [anon_sym_constexpr] = ACTIONS(5728), - [anon_sym_volatile] = ACTIONS(5728), - [anon_sym_restrict] = ACTIONS(5728), - [anon_sym___restrict__] = ACTIONS(5728), - [anon_sym__Atomic] = ACTIONS(5728), - [anon_sym__Noreturn] = ACTIONS(5728), - [anon_sym_noreturn] = ACTIONS(5728), - [anon_sym__Nonnull] = ACTIONS(5728), - [anon_sym_mutable] = ACTIONS(5728), - [anon_sym_constinit] = ACTIONS(5728), - [anon_sym_consteval] = ACTIONS(5728), - [anon_sym_alignas] = ACTIONS(5728), - [anon_sym__Alignas] = ACTIONS(5728), - [sym_primitive_type] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5730), - [anon_sym_LT_EQ_GT] = ACTIONS(5730), - [anon_sym_or] = ACTIONS(5728), - [anon_sym_and] = ACTIONS(5728), - [anon_sym_bitor] = ACTIONS(5728), - [anon_sym_xor] = ACTIONS(5728), - [anon_sym_bitand] = ACTIONS(5728), - [anon_sym_not_eq] = ACTIONS(5728), - [anon_sym_DASH_DASH] = ACTIONS(5730), - [anon_sym_PLUS_PLUS] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5728), - [anon_sym_DOT_STAR] = ACTIONS(5730), - [anon_sym_DASH_GT] = ACTIONS(5730), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5728), - [anon_sym_decltype] = ACTIONS(5728), - [anon_sym_final] = ACTIONS(5728), - [anon_sym_override] = ACTIONS(5728), - [anon_sym_requires] = ACTIONS(5728), + [sym_identifier] = ACTIONS(5709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5711), + [anon_sym_COMMA] = ACTIONS(5711), + [anon_sym_RPAREN] = ACTIONS(5711), + [anon_sym_LPAREN2] = ACTIONS(5711), + [anon_sym_DASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(5711), + [anon_sym_SLASH] = ACTIONS(5709), + [anon_sym_PERCENT] = ACTIONS(5711), + [anon_sym_PIPE_PIPE] = ACTIONS(5711), + [anon_sym_AMP_AMP] = ACTIONS(5711), + [anon_sym_PIPE] = ACTIONS(5709), + [anon_sym_CARET] = ACTIONS(5711), + [anon_sym_AMP] = ACTIONS(5709), + [anon_sym_EQ_EQ] = ACTIONS(5711), + [anon_sym_BANG_EQ] = ACTIONS(5711), + [anon_sym_GT] = ACTIONS(5709), + [anon_sym_GT_EQ] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5709), + [anon_sym_LT] = ACTIONS(5709), + [anon_sym_LT_LT] = ACTIONS(5711), + [anon_sym_GT_GT] = ACTIONS(5711), + [anon_sym_SEMI] = ACTIONS(5711), + [anon_sym___extension__] = ACTIONS(5709), + [anon_sym___attribute__] = ACTIONS(5709), + [anon_sym___attribute] = ACTIONS(5709), + [anon_sym_COLON] = ACTIONS(5711), + [anon_sym___based] = ACTIONS(5709), + [anon_sym_LBRACE] = ACTIONS(5711), + [anon_sym_RBRACE] = ACTIONS(5711), + [anon_sym_signed] = ACTIONS(5709), + [anon_sym_unsigned] = ACTIONS(5709), + [anon_sym_long] = ACTIONS(5709), + [anon_sym_short] = ACTIONS(5709), + [anon_sym_LBRACK] = ACTIONS(5711), + [anon_sym_RBRACK] = ACTIONS(5711), + [anon_sym_const] = ACTIONS(5709), + [anon_sym_constexpr] = ACTIONS(5709), + [anon_sym_volatile] = ACTIONS(5709), + [anon_sym_restrict] = ACTIONS(5709), + [anon_sym___restrict__] = ACTIONS(5709), + [anon_sym__Atomic] = ACTIONS(5709), + [anon_sym__Noreturn] = ACTIONS(5709), + [anon_sym_noreturn] = ACTIONS(5709), + [anon_sym__Nonnull] = ACTIONS(5709), + [anon_sym_mutable] = ACTIONS(5709), + [anon_sym_constinit] = ACTIONS(5709), + [anon_sym_consteval] = ACTIONS(5709), + [anon_sym_alignas] = ACTIONS(5709), + [anon_sym__Alignas] = ACTIONS(5709), + [sym_primitive_type] = ACTIONS(5709), + [anon_sym_QMARK] = ACTIONS(5711), + [anon_sym_LT_EQ_GT] = ACTIONS(5711), + [anon_sym_or] = ACTIONS(5709), + [anon_sym_and] = ACTIONS(5709), + [anon_sym_bitor] = ACTIONS(5709), + [anon_sym_xor] = ACTIONS(5709), + [anon_sym_bitand] = ACTIONS(5709), + [anon_sym_not_eq] = ACTIONS(5709), + [anon_sym_DASH_DASH] = ACTIONS(5711), + [anon_sym_PLUS_PLUS] = ACTIONS(5711), + [anon_sym_DOT] = ACTIONS(5709), + [anon_sym_DOT_STAR] = ACTIONS(5711), + [anon_sym_DASH_GT] = ACTIONS(5711), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5709), + [anon_sym_decltype] = ACTIONS(5709), + [anon_sym_final] = ACTIONS(5709), + [anon_sym_override] = ACTIONS(5709), + [anon_sym_requires] = ACTIONS(5709), }, [STATE(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), + [sym_identifier] = ACTIONS(5713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5715), + [anon_sym_COMMA] = ACTIONS(5715), + [anon_sym_RPAREN] = ACTIONS(5715), + [anon_sym_LPAREN2] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(5715), + [anon_sym_SLASH] = ACTIONS(5713), + [anon_sym_PERCENT] = ACTIONS(5715), + [anon_sym_PIPE_PIPE] = ACTIONS(5715), + [anon_sym_AMP_AMP] = ACTIONS(5715), + [anon_sym_PIPE] = ACTIONS(5713), + [anon_sym_CARET] = ACTIONS(5715), + [anon_sym_AMP] = ACTIONS(5713), + [anon_sym_EQ_EQ] = ACTIONS(5715), + [anon_sym_BANG_EQ] = ACTIONS(5715), + [anon_sym_GT] = ACTIONS(5713), + [anon_sym_GT_EQ] = ACTIONS(5715), + [anon_sym_LT_EQ] = ACTIONS(5713), + [anon_sym_LT] = ACTIONS(5713), + [anon_sym_LT_LT] = ACTIONS(5715), + [anon_sym_GT_GT] = ACTIONS(5715), + [anon_sym_SEMI] = ACTIONS(5715), + [anon_sym___extension__] = ACTIONS(5713), + [anon_sym___attribute__] = ACTIONS(5713), + [anon_sym___attribute] = ACTIONS(5713), + [anon_sym_COLON] = ACTIONS(5715), + [anon_sym___based] = ACTIONS(5713), + [anon_sym_LBRACE] = ACTIONS(5715), + [anon_sym_RBRACE] = ACTIONS(5715), + [anon_sym_signed] = ACTIONS(5713), + [anon_sym_unsigned] = ACTIONS(5713), + [anon_sym_long] = ACTIONS(5713), + [anon_sym_short] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(5715), + [anon_sym_RBRACK] = ACTIONS(5715), + [anon_sym_const] = ACTIONS(5713), + [anon_sym_constexpr] = ACTIONS(5713), + [anon_sym_volatile] = ACTIONS(5713), + [anon_sym_restrict] = ACTIONS(5713), + [anon_sym___restrict__] = ACTIONS(5713), + [anon_sym__Atomic] = ACTIONS(5713), + [anon_sym__Noreturn] = ACTIONS(5713), + [anon_sym_noreturn] = ACTIONS(5713), + [anon_sym__Nonnull] = ACTIONS(5713), + [anon_sym_mutable] = ACTIONS(5713), + [anon_sym_constinit] = ACTIONS(5713), + [anon_sym_consteval] = ACTIONS(5713), + [anon_sym_alignas] = ACTIONS(5713), + [anon_sym__Alignas] = ACTIONS(5713), + [sym_primitive_type] = ACTIONS(5713), + [anon_sym_QMARK] = ACTIONS(5715), + [anon_sym_LT_EQ_GT] = ACTIONS(5715), + [anon_sym_or] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_bitor] = ACTIONS(5713), + [anon_sym_xor] = ACTIONS(5713), + [anon_sym_bitand] = ACTIONS(5713), + [anon_sym_not_eq] = ACTIONS(5713), + [anon_sym_DASH_DASH] = ACTIONS(5715), + [anon_sym_PLUS_PLUS] = ACTIONS(5715), + [anon_sym_DOT] = ACTIONS(5713), + [anon_sym_DOT_STAR] = ACTIONS(5715), + [anon_sym_DASH_GT] = ACTIONS(5715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5713), + [anon_sym_decltype] = ACTIONS(5713), + [anon_sym_final] = ACTIONS(5713), + [anon_sym_override] = ACTIONS(5713), + [anon_sym_requires] = ACTIONS(5713), }, [STATE(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), + [sym_catch_clause] = STATE(1906), + [aux_sym_constructor_try_statement_repeat1] = STATE(1906), + [sym_identifier] = ACTIONS(2593), + [aux_sym_preproc_def_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2593), + [sym_preproc_directive] = ACTIONS(2593), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_AMP_AMP] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym___extension__] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2593), + [anon_sym_virtual] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym___attribute__] = ACTIONS(2593), + [anon_sym___attribute] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2595), + [anon_sym___declspec] = ACTIONS(2593), + [anon_sym___based] = ACTIONS(2593), + [anon_sym_RBRACE] = ACTIONS(2595), + [anon_sym_signed] = ACTIONS(2593), + [anon_sym_unsigned] = ACTIONS(2593), + [anon_sym_long] = ACTIONS(2593), + [anon_sym_short] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_register] = ACTIONS(2593), + [anon_sym_inline] = ACTIONS(2593), + [anon_sym___inline] = ACTIONS(2593), + [anon_sym___inline__] = ACTIONS(2593), + [anon_sym___forceinline] = ACTIONS(2593), + [anon_sym_thread_local] = ACTIONS(2593), + [anon_sym___thread] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_constexpr] = ACTIONS(2593), + [anon_sym_volatile] = ACTIONS(2593), + [anon_sym_restrict] = ACTIONS(2593), + [anon_sym___restrict__] = ACTIONS(2593), + [anon_sym__Atomic] = ACTIONS(2593), + [anon_sym__Noreturn] = ACTIONS(2593), + [anon_sym_noreturn] = ACTIONS(2593), + [anon_sym__Nonnull] = ACTIONS(2593), + [anon_sym_mutable] = ACTIONS(2593), + [anon_sym_constinit] = ACTIONS(2593), + [anon_sym_consteval] = ACTIONS(2593), + [anon_sym_alignas] = ACTIONS(2593), + [anon_sym__Alignas] = ACTIONS(2593), + [sym_primitive_type] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2593), + [anon_sym_decltype] = ACTIONS(2593), + [anon_sym_explicit] = ACTIONS(2593), + [anon_sym_typename] = ACTIONS(2593), + [anon_sym_private] = ACTIONS(2593), + [anon_sym_template] = ACTIONS(2593), + [anon_sym_operator] = ACTIONS(2593), + [anon_sym_friend] = ACTIONS(2593), + [anon_sym_public] = ACTIONS(2593), + [anon_sym_protected] = ACTIONS(2593), + [anon_sym_static_assert] = ACTIONS(2593), + [anon_sym_catch] = ACTIONS(5717), }, [STATE(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(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), + [sym_identifier] = ACTIONS(5719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5721), + [anon_sym_COMMA] = ACTIONS(5721), + [anon_sym_RPAREN] = ACTIONS(5721), + [anon_sym_LPAREN2] = ACTIONS(5721), + [anon_sym_DASH] = ACTIONS(5719), + [anon_sym_PLUS] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(5721), + [anon_sym_SLASH] = ACTIONS(5719), + [anon_sym_PERCENT] = ACTIONS(5721), + [anon_sym_PIPE_PIPE] = ACTIONS(5721), + [anon_sym_AMP_AMP] = ACTIONS(5721), + [anon_sym_PIPE] = ACTIONS(5719), + [anon_sym_CARET] = ACTIONS(5721), + [anon_sym_AMP] = ACTIONS(5719), + [anon_sym_EQ_EQ] = ACTIONS(5721), + [anon_sym_BANG_EQ] = ACTIONS(5721), + [anon_sym_GT] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5721), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_LT] = ACTIONS(5719), + [anon_sym_LT_LT] = ACTIONS(5721), + [anon_sym_GT_GT] = ACTIONS(5721), + [anon_sym_SEMI] = ACTIONS(5721), + [anon_sym___extension__] = ACTIONS(5719), + [anon_sym___attribute__] = ACTIONS(5719), + [anon_sym___attribute] = ACTIONS(5719), + [anon_sym_COLON] = ACTIONS(5721), + [anon_sym___based] = ACTIONS(5719), + [anon_sym_LBRACE] = ACTIONS(5721), + [anon_sym_RBRACE] = ACTIONS(5721), + [anon_sym_signed] = ACTIONS(5719), + [anon_sym_unsigned] = ACTIONS(5719), + [anon_sym_long] = ACTIONS(5719), + [anon_sym_short] = ACTIONS(5719), + [anon_sym_LBRACK] = ACTIONS(5721), + [anon_sym_RBRACK] = ACTIONS(5721), + [anon_sym_const] = ACTIONS(5719), + [anon_sym_constexpr] = ACTIONS(5719), + [anon_sym_volatile] = ACTIONS(5719), + [anon_sym_restrict] = ACTIONS(5719), + [anon_sym___restrict__] = ACTIONS(5719), + [anon_sym__Atomic] = ACTIONS(5719), + [anon_sym__Noreturn] = ACTIONS(5719), + [anon_sym_noreturn] = ACTIONS(5719), + [anon_sym__Nonnull] = ACTIONS(5719), + [anon_sym_mutable] = ACTIONS(5719), + [anon_sym_constinit] = ACTIONS(5719), + [anon_sym_consteval] = ACTIONS(5719), + [anon_sym_alignas] = ACTIONS(5719), + [anon_sym__Alignas] = ACTIONS(5719), + [sym_primitive_type] = ACTIONS(5719), + [anon_sym_QMARK] = ACTIONS(5721), + [anon_sym_LT_EQ_GT] = ACTIONS(5721), + [anon_sym_or] = ACTIONS(5719), + [anon_sym_and] = ACTIONS(5719), + [anon_sym_bitor] = ACTIONS(5719), + [anon_sym_xor] = ACTIONS(5719), + [anon_sym_bitand] = ACTIONS(5719), + [anon_sym_not_eq] = ACTIONS(5719), + [anon_sym_DASH_DASH] = ACTIONS(5721), + [anon_sym_PLUS_PLUS] = ACTIONS(5721), + [anon_sym_DOT] = ACTIONS(5719), + [anon_sym_DOT_STAR] = ACTIONS(5721), + [anon_sym_DASH_GT] = ACTIONS(5721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5719), + [anon_sym_decltype] = ACTIONS(5719), + [anon_sym_final] = ACTIONS(5719), + [anon_sym_override] = ACTIONS(5719), + [anon_sym_requires] = ACTIONS(5719), }, [STATE(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), + [sym_identifier] = ACTIONS(5723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), + [anon_sym_COMMA] = ACTIONS(5725), + [anon_sym_RPAREN] = ACTIONS(5725), + [anon_sym_LPAREN2] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(5723), + [anon_sym_PLUS] = ACTIONS(5723), + [anon_sym_STAR] = ACTIONS(5725), + [anon_sym_SLASH] = ACTIONS(5723), + [anon_sym_PERCENT] = ACTIONS(5725), + [anon_sym_PIPE_PIPE] = ACTIONS(5725), + [anon_sym_AMP_AMP] = ACTIONS(5725), + [anon_sym_PIPE] = ACTIONS(5723), + [anon_sym_CARET] = ACTIONS(5725), + [anon_sym_AMP] = ACTIONS(5723), + [anon_sym_EQ_EQ] = ACTIONS(5725), + [anon_sym_BANG_EQ] = ACTIONS(5725), + [anon_sym_GT] = ACTIONS(5723), + [anon_sym_GT_EQ] = ACTIONS(5725), + [anon_sym_LT_EQ] = ACTIONS(5723), + [anon_sym_LT] = ACTIONS(5723), + [anon_sym_LT_LT] = ACTIONS(5725), + [anon_sym_GT_GT] = ACTIONS(5725), + [anon_sym_SEMI] = ACTIONS(5725), + [anon_sym___extension__] = ACTIONS(5723), + [anon_sym___attribute__] = ACTIONS(5723), + [anon_sym___attribute] = ACTIONS(5723), + [anon_sym_COLON] = ACTIONS(5725), + [anon_sym___based] = ACTIONS(5723), + [anon_sym_LBRACE] = ACTIONS(5725), + [anon_sym_RBRACE] = ACTIONS(5725), + [anon_sym_signed] = ACTIONS(5723), + [anon_sym_unsigned] = ACTIONS(5723), + [anon_sym_long] = ACTIONS(5723), + [anon_sym_short] = ACTIONS(5723), + [anon_sym_LBRACK] = ACTIONS(5725), + [anon_sym_RBRACK] = ACTIONS(5725), + [anon_sym_const] = ACTIONS(5723), + [anon_sym_constexpr] = ACTIONS(5723), + [anon_sym_volatile] = ACTIONS(5723), + [anon_sym_restrict] = ACTIONS(5723), + [anon_sym___restrict__] = ACTIONS(5723), + [anon_sym__Atomic] = ACTIONS(5723), + [anon_sym__Noreturn] = ACTIONS(5723), + [anon_sym_noreturn] = ACTIONS(5723), + [anon_sym__Nonnull] = ACTIONS(5723), + [anon_sym_mutable] = ACTIONS(5723), + [anon_sym_constinit] = ACTIONS(5723), + [anon_sym_consteval] = ACTIONS(5723), + [anon_sym_alignas] = ACTIONS(5723), + [anon_sym__Alignas] = ACTIONS(5723), + [sym_primitive_type] = ACTIONS(5723), + [anon_sym_QMARK] = ACTIONS(5725), + [anon_sym_LT_EQ_GT] = ACTIONS(5725), + [anon_sym_or] = ACTIONS(5723), + [anon_sym_and] = ACTIONS(5723), + [anon_sym_bitor] = ACTIONS(5723), + [anon_sym_xor] = ACTIONS(5723), + [anon_sym_bitand] = ACTIONS(5723), + [anon_sym_not_eq] = ACTIONS(5723), + [anon_sym_DASH_DASH] = ACTIONS(5725), + [anon_sym_PLUS_PLUS] = ACTIONS(5725), + [anon_sym_DOT] = ACTIONS(5723), + [anon_sym_DOT_STAR] = ACTIONS(5725), + [anon_sym_DASH_GT] = ACTIONS(5725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5723), + [anon_sym_decltype] = ACTIONS(5723), + [anon_sym_final] = ACTIONS(5723), + [anon_sym_override] = ACTIONS(5723), + [anon_sym_requires] = ACTIONS(5723), }, [STATE(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), + [sym_identifier] = ACTIONS(5727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), + [anon_sym_COMMA] = ACTIONS(5729), + [anon_sym_RPAREN] = ACTIONS(5729), + [anon_sym_LPAREN2] = ACTIONS(5729), + [anon_sym_DASH] = ACTIONS(5727), + [anon_sym_PLUS] = ACTIONS(5727), + [anon_sym_STAR] = ACTIONS(5729), + [anon_sym_SLASH] = ACTIONS(5727), + [anon_sym_PERCENT] = ACTIONS(5729), + [anon_sym_PIPE_PIPE] = ACTIONS(5729), + [anon_sym_AMP_AMP] = ACTIONS(5729), + [anon_sym_PIPE] = ACTIONS(5727), + [anon_sym_CARET] = ACTIONS(5729), + [anon_sym_AMP] = ACTIONS(5727), + [anon_sym_EQ_EQ] = ACTIONS(5729), + [anon_sym_BANG_EQ] = ACTIONS(5729), + [anon_sym_GT] = ACTIONS(5727), + [anon_sym_GT_EQ] = ACTIONS(5729), + [anon_sym_LT_EQ] = ACTIONS(5727), + [anon_sym_LT] = ACTIONS(5727), + [anon_sym_LT_LT] = ACTIONS(5729), + [anon_sym_GT_GT] = ACTIONS(5729), + [anon_sym_SEMI] = ACTIONS(5729), + [anon_sym___extension__] = ACTIONS(5727), + [anon_sym___attribute__] = ACTIONS(5727), + [anon_sym___attribute] = ACTIONS(5727), + [anon_sym_COLON] = ACTIONS(5729), + [anon_sym___based] = ACTIONS(5727), + [anon_sym_LBRACE] = ACTIONS(5729), + [anon_sym_RBRACE] = ACTIONS(5729), + [anon_sym_signed] = ACTIONS(5727), + [anon_sym_unsigned] = ACTIONS(5727), + [anon_sym_long] = ACTIONS(5727), + [anon_sym_short] = ACTIONS(5727), + [anon_sym_LBRACK] = ACTIONS(5729), + [anon_sym_RBRACK] = ACTIONS(5729), + [anon_sym_const] = ACTIONS(5727), + [anon_sym_constexpr] = ACTIONS(5727), + [anon_sym_volatile] = ACTIONS(5727), + [anon_sym_restrict] = ACTIONS(5727), + [anon_sym___restrict__] = ACTIONS(5727), + [anon_sym__Atomic] = ACTIONS(5727), + [anon_sym__Noreturn] = ACTIONS(5727), + [anon_sym_noreturn] = ACTIONS(5727), + [anon_sym__Nonnull] = ACTIONS(5727), + [anon_sym_mutable] = ACTIONS(5727), + [anon_sym_constinit] = ACTIONS(5727), + [anon_sym_consteval] = ACTIONS(5727), + [anon_sym_alignas] = ACTIONS(5727), + [anon_sym__Alignas] = ACTIONS(5727), + [sym_primitive_type] = ACTIONS(5727), + [anon_sym_QMARK] = ACTIONS(5729), + [anon_sym_LT_EQ_GT] = ACTIONS(5729), + [anon_sym_or] = ACTIONS(5727), + [anon_sym_and] = ACTIONS(5727), + [anon_sym_bitor] = ACTIONS(5727), + [anon_sym_xor] = ACTIONS(5727), + [anon_sym_bitand] = ACTIONS(5727), + [anon_sym_not_eq] = ACTIONS(5727), + [anon_sym_DASH_DASH] = ACTIONS(5729), + [anon_sym_PLUS_PLUS] = ACTIONS(5729), + [anon_sym_DOT] = ACTIONS(5727), + [anon_sym_DOT_STAR] = ACTIONS(5729), + [anon_sym_DASH_GT] = ACTIONS(5729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5727), + [anon_sym_decltype] = ACTIONS(5727), + [anon_sym_final] = ACTIONS(5727), + [anon_sym_override] = ACTIONS(5727), + [anon_sym_requires] = ACTIONS(5727), }, [STATE(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), + [sym_identifier] = ACTIONS(5731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5733), + [anon_sym_COMMA] = ACTIONS(5733), + [anon_sym_RPAREN] = ACTIONS(5733), + [anon_sym_LPAREN2] = ACTIONS(5733), + [anon_sym_DASH] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_STAR] = ACTIONS(5733), + [anon_sym_SLASH] = ACTIONS(5731), + [anon_sym_PERCENT] = ACTIONS(5733), + [anon_sym_PIPE_PIPE] = ACTIONS(5733), + [anon_sym_AMP_AMP] = ACTIONS(5733), + [anon_sym_PIPE] = ACTIONS(5731), + [anon_sym_CARET] = ACTIONS(5733), + [anon_sym_AMP] = ACTIONS(5731), + [anon_sym_EQ_EQ] = ACTIONS(5733), + [anon_sym_BANG_EQ] = ACTIONS(5733), + [anon_sym_GT] = ACTIONS(5731), + [anon_sym_GT_EQ] = ACTIONS(5733), + [anon_sym_LT_EQ] = ACTIONS(5731), + [anon_sym_LT] = ACTIONS(5731), + [anon_sym_LT_LT] = ACTIONS(5733), + [anon_sym_GT_GT] = ACTIONS(5733), + [anon_sym_SEMI] = ACTIONS(5733), + [anon_sym___extension__] = ACTIONS(5731), + [anon_sym___attribute__] = ACTIONS(5731), + [anon_sym___attribute] = ACTIONS(5731), + [anon_sym_COLON] = ACTIONS(5733), + [anon_sym___based] = ACTIONS(5731), + [anon_sym_LBRACE] = ACTIONS(5733), + [anon_sym_RBRACE] = ACTIONS(5733), + [anon_sym_signed] = ACTIONS(5731), + [anon_sym_unsigned] = ACTIONS(5731), + [anon_sym_long] = ACTIONS(5731), + [anon_sym_short] = ACTIONS(5731), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_RBRACK] = ACTIONS(5733), + [anon_sym_const] = ACTIONS(5731), + [anon_sym_constexpr] = ACTIONS(5731), + [anon_sym_volatile] = ACTIONS(5731), + [anon_sym_restrict] = ACTIONS(5731), + [anon_sym___restrict__] = ACTIONS(5731), + [anon_sym__Atomic] = ACTIONS(5731), + [anon_sym__Noreturn] = ACTIONS(5731), + [anon_sym_noreturn] = ACTIONS(5731), + [anon_sym__Nonnull] = ACTIONS(5731), + [anon_sym_mutable] = ACTIONS(5731), + [anon_sym_constinit] = ACTIONS(5731), + [anon_sym_consteval] = ACTIONS(5731), + [anon_sym_alignas] = ACTIONS(5731), + [anon_sym__Alignas] = ACTIONS(5731), + [sym_primitive_type] = ACTIONS(5731), + [anon_sym_QMARK] = ACTIONS(5733), + [anon_sym_LT_EQ_GT] = ACTIONS(5733), + [anon_sym_or] = ACTIONS(5731), + [anon_sym_and] = ACTIONS(5731), + [anon_sym_bitor] = ACTIONS(5731), + [anon_sym_xor] = ACTIONS(5731), + [anon_sym_bitand] = ACTIONS(5731), + [anon_sym_not_eq] = ACTIONS(5731), + [anon_sym_DASH_DASH] = ACTIONS(5733), + [anon_sym_PLUS_PLUS] = ACTIONS(5733), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_STAR] = ACTIONS(5733), + [anon_sym_DASH_GT] = ACTIONS(5733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5731), + [anon_sym_decltype] = ACTIONS(5731), + [anon_sym_final] = ACTIONS(5731), + [anon_sym_override] = ACTIONS(5731), + [anon_sym_requires] = ACTIONS(5731), }, [STATE(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), + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [sym_identifier] = ACTIONS(4168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [aux_sym_preproc_if_token2] = ACTIONS(4161), + [aux_sym_preproc_else_token1] = ACTIONS(4161), + [aux_sym_preproc_elif_token1] = ACTIONS(4168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4161), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5735), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(5738), + [anon_sym_QMARK] = ACTIONS(4161), + [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(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4168), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4168), + [anon_sym_not_eq] = ACTIONS(4168), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), }, [STATE(1892)] = { + [sym_catch_clause] = STATE(1892), + [aux_sym_constructor_try_statement_repeat1] = STATE(1892), + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token2] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_AMP_AMP] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_virtual] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_using] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___based] = ACTIONS(2490), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_mutable] = ACTIONS(2490), + [anon_sym_constinit] = ACTIONS(2490), + [anon_sym_consteval] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2490), + [anon_sym_decltype] = ACTIONS(2490), + [anon_sym_explicit] = ACTIONS(2490), + [anon_sym_typename] = ACTIONS(2490), + [anon_sym_private] = ACTIONS(2490), + [anon_sym_template] = ACTIONS(2490), + [anon_sym_operator] = ACTIONS(2490), + [anon_sym_friend] = ACTIONS(2490), + [anon_sym_public] = ACTIONS(2490), + [anon_sym_protected] = ACTIONS(2490), + [anon_sym_static_assert] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(5742), + }, + [STATE(1893)] = { + [sym_identifier] = ACTIONS(5745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5747), + [anon_sym_COMMA] = ACTIONS(5747), + [anon_sym_RPAREN] = ACTIONS(5747), + [anon_sym_LPAREN2] = ACTIONS(5747), + [anon_sym_DASH] = ACTIONS(5745), + [anon_sym_PLUS] = ACTIONS(5745), + [anon_sym_STAR] = ACTIONS(5747), + [anon_sym_SLASH] = ACTIONS(5745), + [anon_sym_PERCENT] = ACTIONS(5747), + [anon_sym_PIPE_PIPE] = ACTIONS(5747), + [anon_sym_AMP_AMP] = ACTIONS(5747), + [anon_sym_PIPE] = ACTIONS(5745), + [anon_sym_CARET] = ACTIONS(5747), + [anon_sym_AMP] = ACTIONS(5745), + [anon_sym_EQ_EQ] = ACTIONS(5747), + [anon_sym_BANG_EQ] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5745), + [anon_sym_GT_EQ] = ACTIONS(5747), + [anon_sym_LT_EQ] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5745), + [anon_sym_LT_LT] = ACTIONS(5747), + [anon_sym_GT_GT] = ACTIONS(5747), + [anon_sym_SEMI] = ACTIONS(5747), + [anon_sym___extension__] = ACTIONS(5745), + [anon_sym___attribute__] = ACTIONS(5745), + [anon_sym___attribute] = ACTIONS(5745), + [anon_sym_COLON] = ACTIONS(5747), + [anon_sym___based] = ACTIONS(5745), + [anon_sym_LBRACE] = ACTIONS(5747), + [anon_sym_RBRACE] = ACTIONS(5747), + [anon_sym_signed] = ACTIONS(5745), + [anon_sym_unsigned] = ACTIONS(5745), + [anon_sym_long] = ACTIONS(5745), + [anon_sym_short] = ACTIONS(5745), + [anon_sym_LBRACK] = ACTIONS(5747), + [anon_sym_RBRACK] = ACTIONS(5747), + [anon_sym_const] = ACTIONS(5745), + [anon_sym_constexpr] = ACTIONS(5745), + [anon_sym_volatile] = ACTIONS(5745), + [anon_sym_restrict] = ACTIONS(5745), + [anon_sym___restrict__] = ACTIONS(5745), + [anon_sym__Atomic] = ACTIONS(5745), + [anon_sym__Noreturn] = ACTIONS(5745), + [anon_sym_noreturn] = ACTIONS(5745), + [anon_sym__Nonnull] = ACTIONS(5745), + [anon_sym_mutable] = ACTIONS(5745), + [anon_sym_constinit] = ACTIONS(5745), + [anon_sym_consteval] = ACTIONS(5745), + [anon_sym_alignas] = ACTIONS(5745), + [anon_sym__Alignas] = ACTIONS(5745), + [sym_primitive_type] = ACTIONS(5745), + [anon_sym_QMARK] = ACTIONS(5747), + [anon_sym_LT_EQ_GT] = ACTIONS(5747), + [anon_sym_or] = ACTIONS(5745), + [anon_sym_and] = ACTIONS(5745), + [anon_sym_bitor] = ACTIONS(5745), + [anon_sym_xor] = ACTIONS(5745), + [anon_sym_bitand] = ACTIONS(5745), + [anon_sym_not_eq] = ACTIONS(5745), + [anon_sym_DASH_DASH] = ACTIONS(5747), + [anon_sym_PLUS_PLUS] = ACTIONS(5747), + [anon_sym_DOT] = ACTIONS(5745), + [anon_sym_DOT_STAR] = ACTIONS(5747), + [anon_sym_DASH_GT] = ACTIONS(5747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5745), + [anon_sym_decltype] = ACTIONS(5745), + [anon_sym_final] = ACTIONS(5745), + [anon_sym_override] = ACTIONS(5745), + [anon_sym_requires] = ACTIONS(5745), + }, + [STATE(1894)] = { + [sym_identifier] = ACTIONS(5749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5751), + [anon_sym_COMMA] = ACTIONS(5751), + [anon_sym_RPAREN] = ACTIONS(5751), + [anon_sym_LPAREN2] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5749), + [anon_sym_STAR] = ACTIONS(5751), + [anon_sym_SLASH] = ACTIONS(5749), + [anon_sym_PERCENT] = ACTIONS(5751), + [anon_sym_PIPE_PIPE] = ACTIONS(5751), + [anon_sym_AMP_AMP] = ACTIONS(5751), + [anon_sym_PIPE] = ACTIONS(5749), + [anon_sym_CARET] = ACTIONS(5751), + [anon_sym_AMP] = ACTIONS(5749), + [anon_sym_EQ_EQ] = ACTIONS(5751), + [anon_sym_BANG_EQ] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5749), + [anon_sym_GT_EQ] = ACTIONS(5751), + [anon_sym_LT_EQ] = ACTIONS(5749), + [anon_sym_LT] = ACTIONS(5749), + [anon_sym_LT_LT] = ACTIONS(5751), + [anon_sym_GT_GT] = ACTIONS(5751), + [anon_sym_SEMI] = ACTIONS(5751), + [anon_sym___extension__] = ACTIONS(5749), + [anon_sym___attribute__] = ACTIONS(5749), + [anon_sym___attribute] = ACTIONS(5749), + [anon_sym_COLON] = ACTIONS(5751), + [anon_sym___based] = ACTIONS(5749), + [anon_sym_LBRACE] = ACTIONS(5751), + [anon_sym_RBRACE] = ACTIONS(5751), + [anon_sym_signed] = ACTIONS(5749), + [anon_sym_unsigned] = ACTIONS(5749), + [anon_sym_long] = ACTIONS(5749), + [anon_sym_short] = ACTIONS(5749), + [anon_sym_LBRACK] = ACTIONS(5751), + [anon_sym_RBRACK] = ACTIONS(5751), + [anon_sym_const] = ACTIONS(5749), + [anon_sym_constexpr] = ACTIONS(5749), + [anon_sym_volatile] = ACTIONS(5749), + [anon_sym_restrict] = ACTIONS(5749), + [anon_sym___restrict__] = ACTIONS(5749), + [anon_sym__Atomic] = ACTIONS(5749), + [anon_sym__Noreturn] = ACTIONS(5749), + [anon_sym_noreturn] = ACTIONS(5749), + [anon_sym__Nonnull] = ACTIONS(5749), + [anon_sym_mutable] = ACTIONS(5749), + [anon_sym_constinit] = ACTIONS(5749), + [anon_sym_consteval] = ACTIONS(5749), + [anon_sym_alignas] = ACTIONS(5749), + [anon_sym__Alignas] = ACTIONS(5749), + [sym_primitive_type] = ACTIONS(5749), + [anon_sym_QMARK] = ACTIONS(5751), + [anon_sym_LT_EQ_GT] = ACTIONS(5751), + [anon_sym_or] = ACTIONS(5749), + [anon_sym_and] = ACTIONS(5749), + [anon_sym_bitor] = ACTIONS(5749), + [anon_sym_xor] = ACTIONS(5749), + [anon_sym_bitand] = ACTIONS(5749), + [anon_sym_not_eq] = ACTIONS(5749), + [anon_sym_DASH_DASH] = ACTIONS(5751), + [anon_sym_PLUS_PLUS] = ACTIONS(5751), + [anon_sym_DOT] = ACTIONS(5749), + [anon_sym_DOT_STAR] = ACTIONS(5751), + [anon_sym_DASH_GT] = ACTIONS(5751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5749), + [anon_sym_decltype] = ACTIONS(5749), + [anon_sym_final] = ACTIONS(5749), + [anon_sym_override] = ACTIONS(5749), + [anon_sym_requires] = ACTIONS(5749), + }, + [STATE(1895)] = { [sym_identifier] = ACTIONS(5753), [anon_sym_DOT_DOT_DOT] = ACTIONS(5755), [anon_sym_COMMA] = ACTIONS(5755), @@ -262872,299 +263733,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(5753), [anon_sym_requires] = ACTIONS(5753), }, - [STATE(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(4991), - [anon_sym_decltype] = ACTIONS(4991), - [anon_sym_DASH_GT_STAR] = ACTIONS(4986), - }, - [STATE(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), + [STATE(1896)] = { + [sym_identifier] = ACTIONS(5757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5759), + [anon_sym_COMMA] = ACTIONS(5759), + [anon_sym_RPAREN] = ACTIONS(5759), + [anon_sym_LPAREN2] = ACTIONS(5759), + [anon_sym_DASH] = ACTIONS(5757), + [anon_sym_PLUS] = ACTIONS(5757), + [anon_sym_STAR] = ACTIONS(5759), + [anon_sym_SLASH] = ACTIONS(5757), + [anon_sym_PERCENT] = ACTIONS(5759), + [anon_sym_PIPE_PIPE] = ACTIONS(5759), + [anon_sym_AMP_AMP] = ACTIONS(5759), + [anon_sym_PIPE] = ACTIONS(5757), + [anon_sym_CARET] = ACTIONS(5759), + [anon_sym_AMP] = ACTIONS(5757), + [anon_sym_EQ_EQ] = ACTIONS(5759), + [anon_sym_BANG_EQ] = ACTIONS(5759), + [anon_sym_GT] = ACTIONS(5757), + [anon_sym_GT_EQ] = ACTIONS(5759), + [anon_sym_LT_EQ] = ACTIONS(5757), [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), - }, - [STATE(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), + [anon_sym_LT_LT] = ACTIONS(5759), + [anon_sym_GT_GT] = ACTIONS(5759), + [anon_sym_SEMI] = ACTIONS(5759), + [anon_sym___extension__] = ACTIONS(5757), + [anon_sym___attribute__] = ACTIONS(5757), + [anon_sym___attribute] = ACTIONS(5757), + [anon_sym_COLON] = ACTIONS(5759), + [anon_sym___based] = ACTIONS(5757), + [anon_sym_LBRACE] = ACTIONS(5759), + [anon_sym_RBRACE] = ACTIONS(5759), + [anon_sym_signed] = ACTIONS(5757), + [anon_sym_unsigned] = ACTIONS(5757), + [anon_sym_long] = ACTIONS(5757), + [anon_sym_short] = ACTIONS(5757), + [anon_sym_LBRACK] = ACTIONS(5759), + [anon_sym_RBRACK] = ACTIONS(5759), + [anon_sym_const] = ACTIONS(5757), + [anon_sym_constexpr] = ACTIONS(5757), + [anon_sym_volatile] = ACTIONS(5757), + [anon_sym_restrict] = ACTIONS(5757), + [anon_sym___restrict__] = ACTIONS(5757), + [anon_sym__Atomic] = ACTIONS(5757), + [anon_sym__Noreturn] = ACTIONS(5757), + [anon_sym_noreturn] = ACTIONS(5757), + [anon_sym__Nonnull] = ACTIONS(5757), + [anon_sym_mutable] = ACTIONS(5757), + [anon_sym_constinit] = ACTIONS(5757), + [anon_sym_consteval] = ACTIONS(5757), + [anon_sym_alignas] = ACTIONS(5757), + [anon_sym__Alignas] = ACTIONS(5757), + [sym_primitive_type] = ACTIONS(5757), + [anon_sym_QMARK] = ACTIONS(5759), + [anon_sym_LT_EQ_GT] = ACTIONS(5759), + [anon_sym_or] = ACTIONS(5757), + [anon_sym_and] = ACTIONS(5757), + [anon_sym_bitor] = ACTIONS(5757), + [anon_sym_xor] = ACTIONS(5757), + [anon_sym_bitand] = ACTIONS(5757), + [anon_sym_not_eq] = ACTIONS(5757), + [anon_sym_DASH_DASH] = ACTIONS(5759), + [anon_sym_PLUS_PLUS] = ACTIONS(5759), + [anon_sym_DOT] = ACTIONS(5757), + [anon_sym_DOT_STAR] = ACTIONS(5759), + [anon_sym_DASH_GT] = ACTIONS(5759), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5757), + [anon_sym_decltype] = ACTIONS(5757), + [anon_sym_final] = ACTIONS(5757), + [anon_sym_override] = ACTIONS(5757), + [anon_sym_requires] = ACTIONS(5757), }, - [STATE(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), + [STATE(1897)] = { + [sym_type_qualifier] = STATE(1872), + [sym_alignas_qualifier] = STATE(1719), + [aux_sym__type_definition_type_repeat1] = STATE(1872), + [aux_sym_sized_type_specifier_repeat1] = STATE(2219), + [sym_identifier] = ACTIONS(5761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [aux_sym_preproc_if_token2] = ACTIONS(5123), + [aux_sym_preproc_else_token1] = ACTIONS(5123), + [aux_sym_preproc_elif_token1] = ACTIONS(5125), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5123), + [anon_sym_LPAREN2] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_LT_LT] = ACTIONS(5123), + [anon_sym_GT_GT] = ACTIONS(5123), + [anon_sym___extension__] = ACTIONS(5664), + [anon_sym___attribute__] = ACTIONS(5125), + [anon_sym___attribute] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5123), [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), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_const] = ACTIONS(5664), + [anon_sym_constexpr] = ACTIONS(5664), + [anon_sym_volatile] = ACTIONS(5664), + [anon_sym_restrict] = ACTIONS(5664), + [anon_sym___restrict__] = ACTIONS(5664), + [anon_sym__Atomic] = ACTIONS(5664), + [anon_sym__Noreturn] = ACTIONS(5664), + [anon_sym_noreturn] = ACTIONS(5664), + [anon_sym__Nonnull] = ACTIONS(5664), + [anon_sym_mutable] = ACTIONS(5664), + [anon_sym_constinit] = ACTIONS(5664), + [anon_sym_consteval] = ACTIONS(5664), + [anon_sym_alignas] = ACTIONS(5668), + [anon_sym__Alignas] = ACTIONS(5668), + [sym_primitive_type] = ACTIONS(5766), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_LT_EQ_GT] = ACTIONS(5123), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_bitor] = ACTIONS(5125), + [anon_sym_xor] = ACTIONS(5125), + [anon_sym_bitand] = ACTIONS(5125), + [anon_sym_not_eq] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_DOT_STAR] = ACTIONS(5123), + [anon_sym_DASH_GT] = ACTIONS(5123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5125), + [anon_sym_decltype] = ACTIONS(5125), }, - [STATE(1897)] = { + [STATE(1898)] = { [sym_identifier] = ACTIONS(5768), [anon_sym_DOT_DOT_DOT] = ACTIONS(5770), [anon_sym_COMMA] = ACTIONS(5770), @@ -263237,299 +263952,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(5768), [anon_sym_requires] = ACTIONS(5768), }, - [STATE(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), - }, [STATE(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_type_qualifier] = STATE(1684), + [sym_alignas_qualifier] = STATE(1719), + [aux_sym__type_definition_type_repeat1] = STATE(1684), + [aux_sym_sized_type_specifier_repeat1] = STATE(1991), + [sym_identifier] = ACTIONS(5772), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5102), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5102), + [anon_sym_PIPE_PIPE] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5102), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5102), + [anon_sym_BANG_EQ] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5102), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5102), + [anon_sym_GT_GT] = ACTIONS(5102), + [anon_sym_SEMI] = ACTIONS(5102), + [anon_sym___extension__] = ACTIONS(5664), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_COLON] = ACTIONS(5102), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_RBRACE] = ACTIONS(5102), + [anon_sym_signed] = ACTIONS(5774), + [anon_sym_unsigned] = ACTIONS(5774), + [anon_sym_long] = ACTIONS(5774), + [anon_sym_short] = ACTIONS(5774), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_RBRACK] = ACTIONS(5102), + [anon_sym_const] = ACTIONS(5664), + [anon_sym_constexpr] = ACTIONS(5664), + [anon_sym_volatile] = ACTIONS(5664), + [anon_sym_restrict] = ACTIONS(5664), + [anon_sym___restrict__] = ACTIONS(5664), + [anon_sym__Atomic] = ACTIONS(5664), + [anon_sym__Noreturn] = ACTIONS(5664), + [anon_sym_noreturn] = ACTIONS(5664), + [anon_sym__Nonnull] = ACTIONS(5664), + [anon_sym_mutable] = ACTIONS(5664), + [anon_sym_constinit] = ACTIONS(5664), + [anon_sym_consteval] = ACTIONS(5664), + [anon_sym_alignas] = ACTIONS(5668), + [anon_sym__Alignas] = ACTIONS(5668), [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), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_LT_EQ_GT] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5102), + [anon_sym_DASH_GT] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), }, [STATE(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), + [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), + [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), }, [STATE(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), + [sym_type_qualifier] = STATE(1899), + [sym_alignas_qualifier] = STATE(1719), + [aux_sym__type_definition_type_repeat1] = STATE(1899), + [aux_sym_sized_type_specifier_repeat1] = STATE(2205), + [sym_identifier] = ACTIONS(5782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(5123), + [anon_sym_LPAREN2] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5123), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_LT_LT] = ACTIONS(5123), + [anon_sym_GT_GT] = ACTIONS(5123), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym___extension__] = ACTIONS(5664), + [anon_sym___attribute__] = ACTIONS(5125), + [anon_sym___attribute] = ACTIONS(5125), + [anon_sym_COLON] = ACTIONS(5123), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_RBRACE] = ACTIONS(5123), [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), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_RBRACK] = ACTIONS(5123), + [anon_sym_const] = ACTIONS(5664), + [anon_sym_constexpr] = ACTIONS(5664), + [anon_sym_volatile] = ACTIONS(5664), + [anon_sym_restrict] = ACTIONS(5664), + [anon_sym___restrict__] = ACTIONS(5664), + [anon_sym__Atomic] = ACTIONS(5664), + [anon_sym__Noreturn] = ACTIONS(5664), + [anon_sym_noreturn] = ACTIONS(5664), + [anon_sym__Nonnull] = ACTIONS(5664), + [anon_sym_mutable] = ACTIONS(5664), + [anon_sym_constinit] = ACTIONS(5664), + [anon_sym_consteval] = ACTIONS(5664), + [anon_sym_alignas] = ACTIONS(5668), + [anon_sym__Alignas] = ACTIONS(5668), + [sym_primitive_type] = ACTIONS(5786), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_LT_EQ_GT] = ACTIONS(5123), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_bitor] = ACTIONS(5125), + [anon_sym_xor] = ACTIONS(5125), + [anon_sym_bitand] = ACTIONS(5125), + [anon_sym_not_eq] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_DOT_STAR] = ACTIONS(5123), + [anon_sym_DASH_GT] = ACTIONS(5123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5125), + [anon_sym_decltype] = ACTIONS(5125), }, [STATE(1902)] = { + [sym_identifier] = ACTIONS(5657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5659), + [anon_sym_COMMA] = ACTIONS(5659), + [anon_sym_RPAREN] = ACTIONS(5659), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_DASH] = ACTIONS(5657), + [anon_sym_PLUS] = ACTIONS(5657), + [anon_sym_STAR] = ACTIONS(5659), + [anon_sym_SLASH] = ACTIONS(5657), + [anon_sym_PERCENT] = ACTIONS(5659), + [anon_sym_PIPE_PIPE] = ACTIONS(5659), + [anon_sym_AMP_AMP] = ACTIONS(5659), + [anon_sym_PIPE] = ACTIONS(5657), + [anon_sym_CARET] = ACTIONS(5659), + [anon_sym_AMP] = ACTIONS(5657), + [anon_sym_EQ_EQ] = ACTIONS(5659), + [anon_sym_BANG_EQ] = ACTIONS(5659), + [anon_sym_GT] = ACTIONS(5657), + [anon_sym_GT_EQ] = ACTIONS(5659), + [anon_sym_LT_EQ] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(5657), + [anon_sym_LT_LT] = ACTIONS(5659), + [anon_sym_GT_GT] = ACTIONS(5659), + [anon_sym_SEMI] = ACTIONS(5659), + [anon_sym___extension__] = ACTIONS(5657), + [anon_sym___attribute__] = ACTIONS(5657), + [anon_sym___attribute] = ACTIONS(5657), + [anon_sym_COLON] = ACTIONS(5659), + [anon_sym___based] = ACTIONS(5657), + [anon_sym_LBRACE] = ACTIONS(5659), + [anon_sym_RBRACE] = ACTIONS(5659), + [anon_sym_signed] = ACTIONS(5657), + [anon_sym_unsigned] = ACTIONS(5657), + [anon_sym_long] = ACTIONS(5657), + [anon_sym_short] = ACTIONS(5657), + [anon_sym_LBRACK] = ACTIONS(5659), + [anon_sym_RBRACK] = ACTIONS(5659), + [anon_sym_const] = ACTIONS(5657), + [anon_sym_constexpr] = ACTIONS(5657), + [anon_sym_volatile] = ACTIONS(5657), + [anon_sym_restrict] = ACTIONS(5657), + [anon_sym___restrict__] = ACTIONS(5657), + [anon_sym__Atomic] = ACTIONS(5657), + [anon_sym__Noreturn] = ACTIONS(5657), + [anon_sym_noreturn] = ACTIONS(5657), + [anon_sym__Nonnull] = ACTIONS(5657), + [anon_sym_mutable] = ACTIONS(5657), + [anon_sym_constinit] = ACTIONS(5657), + [anon_sym_consteval] = ACTIONS(5657), + [anon_sym_alignas] = ACTIONS(5657), + [anon_sym__Alignas] = ACTIONS(5657), + [sym_primitive_type] = ACTIONS(5657), + [anon_sym_QMARK] = ACTIONS(5659), + [anon_sym_LT_EQ_GT] = ACTIONS(5659), + [anon_sym_or] = ACTIONS(5657), + [anon_sym_and] = ACTIONS(5657), + [anon_sym_bitor] = ACTIONS(5657), + [anon_sym_xor] = ACTIONS(5657), + [anon_sym_bitand] = ACTIONS(5657), + [anon_sym_not_eq] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(5659), + [anon_sym_PLUS_PLUS] = ACTIONS(5659), + [anon_sym_DOT] = ACTIONS(5657), + [anon_sym_DOT_STAR] = ACTIONS(5659), + [anon_sym_DASH_GT] = ACTIONS(5659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5657), + [anon_sym_decltype] = ACTIONS(5657), + [anon_sym_final] = ACTIONS(5657), + [anon_sym_override] = ACTIONS(5657), + [anon_sym_requires] = ACTIONS(5657), + }, + [STATE(1903)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_const] = ACTIONS(5000), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym___restrict__] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym__Noreturn] = ACTIONS(5007), + [anon_sym_noreturn] = ACTIONS(5007), + [anon_sym__Nonnull] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_constinit] = ACTIONS(5007), + [anon_sym_consteval] = ACTIONS(5007), + [anon_sym_alignas] = ACTIONS(5007), + [anon_sym__Alignas] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_and_eq] = ACTIONS(5002), + [anon_sym_or_eq] = ACTIONS(5002), + [anon_sym_xor_eq] = ACTIONS(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5009), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + [anon_sym_DASH_GT_STAR] = ACTIONS(5002), + }, + [STATE(1904)] = { [sym_identifier] = ACTIONS(5788), [anon_sym_DOT_DOT_DOT] = ACTIONS(5790), [anon_sym_COMMA] = ACTIONS(5790), @@ -263602,2179 +264390,2477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(5788), [anon_sym_requires] = ACTIONS(5788), }, - [STATE(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(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), - }, - [STATE(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), - }, [STATE(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), + [sym_identifier] = ACTIONS(5470), + [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(5472), + [anon_sym_SLASH] = ACTIONS(5470), + [anon_sym_PERCENT] = ACTIONS(5472), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_PIPE] = ACTIONS(5470), + [anon_sym_CARET] = ACTIONS(5472), + [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(5472), + [anon_sym_GT_GT] = ACTIONS(5472), + [anon_sym_SEMI] = ACTIONS(5472), + [anon_sym___extension__] = ACTIONS(5470), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_COLON] = ACTIONS(5472), + [anon_sym___based] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5472), + [anon_sym_RBRACE] = ACTIONS(5472), + [anon_sym_signed] = ACTIONS(5470), + [anon_sym_unsigned] = ACTIONS(5470), + [anon_sym_long] = ACTIONS(5470), + [anon_sym_short] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5472), + [anon_sym_RBRACK] = ACTIONS(5472), + [anon_sym_const] = ACTIONS(5470), + [anon_sym_constexpr] = ACTIONS(5470), + [anon_sym_volatile] = ACTIONS(5470), + [anon_sym_restrict] = ACTIONS(5470), + [anon_sym___restrict__] = ACTIONS(5470), + [anon_sym__Atomic] = ACTIONS(5470), + [anon_sym__Noreturn] = ACTIONS(5470), + [anon_sym_noreturn] = ACTIONS(5470), + [anon_sym__Nonnull] = ACTIONS(5470), + [anon_sym_mutable] = ACTIONS(5470), + [anon_sym_constinit] = ACTIONS(5470), + [anon_sym_consteval] = ACTIONS(5470), + [anon_sym_alignas] = ACTIONS(5470), + [anon_sym__Alignas] = ACTIONS(5470), + [sym_primitive_type] = ACTIONS(5470), + [anon_sym_QMARK] = ACTIONS(5472), + [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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_final] = ACTIONS(5470), + [anon_sym_override] = ACTIONS(5470), + [anon_sym_requires] = ACTIONS(5470), }, [STATE(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), + [sym_catch_clause] = STATE(1906), + [aux_sym_constructor_try_statement_repeat1] = STATE(1906), + [sym_identifier] = ACTIONS(2490), + [aux_sym_preproc_def_token1] = ACTIONS(2490), + [aux_sym_preproc_if_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2490), + [sym_preproc_directive] = ACTIONS(2490), + [anon_sym_LPAREN2] = ACTIONS(2492), + [anon_sym_TILDE] = ACTIONS(2492), + [anon_sym_STAR] = ACTIONS(2492), + [anon_sym_AMP_AMP] = ACTIONS(2492), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_SEMI] = ACTIONS(2492), + [anon_sym___extension__] = ACTIONS(2490), + [anon_sym_typedef] = ACTIONS(2490), + [anon_sym_virtual] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym___attribute__] = ACTIONS(2490), + [anon_sym___attribute] = ACTIONS(2490), + [anon_sym_using] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2492), + [anon_sym___declspec] = ACTIONS(2490), + [anon_sym___based] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_signed] = ACTIONS(2490), + [anon_sym_unsigned] = ACTIONS(2490), + [anon_sym_long] = ACTIONS(2490), + [anon_sym_short] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_static] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_inline] = ACTIONS(2490), + [anon_sym___inline] = ACTIONS(2490), + [anon_sym___inline__] = ACTIONS(2490), + [anon_sym___forceinline] = ACTIONS(2490), + [anon_sym_thread_local] = ACTIONS(2490), + [anon_sym___thread] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [anon_sym_constexpr] = ACTIONS(2490), + [anon_sym_volatile] = ACTIONS(2490), + [anon_sym_restrict] = ACTIONS(2490), + [anon_sym___restrict__] = ACTIONS(2490), + [anon_sym__Atomic] = ACTIONS(2490), + [anon_sym__Noreturn] = ACTIONS(2490), + [anon_sym_noreturn] = ACTIONS(2490), + [anon_sym__Nonnull] = ACTIONS(2490), + [anon_sym_mutable] = ACTIONS(2490), + [anon_sym_constinit] = ACTIONS(2490), + [anon_sym_consteval] = ACTIONS(2490), + [anon_sym_alignas] = ACTIONS(2490), + [anon_sym__Alignas] = ACTIONS(2490), + [sym_primitive_type] = ACTIONS(2490), + [anon_sym_enum] = ACTIONS(2490), + [anon_sym_class] = ACTIONS(2490), + [anon_sym_struct] = ACTIONS(2490), + [anon_sym_union] = ACTIONS(2490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2490), + [anon_sym_decltype] = ACTIONS(2490), + [anon_sym_explicit] = ACTIONS(2490), + [anon_sym_typename] = ACTIONS(2490), + [anon_sym_private] = ACTIONS(2490), + [anon_sym_template] = ACTIONS(2490), + [anon_sym_operator] = ACTIONS(2490), + [anon_sym_friend] = ACTIONS(2490), + [anon_sym_public] = ACTIONS(2490), + [anon_sym_protected] = ACTIONS(2490), + [anon_sym_static_assert] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(5792), }, [STATE(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), + [sym_identifier] = ACTIONS(5537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5539), + [anon_sym_COMMA] = ACTIONS(5539), + [anon_sym_RPAREN] = ACTIONS(5539), + [anon_sym_LPAREN2] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_STAR] = ACTIONS(5539), + [anon_sym_SLASH] = ACTIONS(5537), + [anon_sym_PERCENT] = ACTIONS(5539), + [anon_sym_PIPE_PIPE] = ACTIONS(5539), + [anon_sym_AMP_AMP] = ACTIONS(5539), + [anon_sym_PIPE] = ACTIONS(5537), + [anon_sym_CARET] = ACTIONS(5539), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_EQ_EQ] = ACTIONS(5539), + [anon_sym_BANG_EQ] = ACTIONS(5539), + [anon_sym_GT] = ACTIONS(5537), + [anon_sym_GT_EQ] = ACTIONS(5539), + [anon_sym_LT_EQ] = ACTIONS(5537), + [anon_sym_LT] = ACTIONS(5537), + [anon_sym_LT_LT] = ACTIONS(5539), + [anon_sym_GT_GT] = ACTIONS(5539), + [anon_sym_SEMI] = ACTIONS(5539), + [anon_sym___extension__] = ACTIONS(5537), + [anon_sym___attribute__] = ACTIONS(5537), + [anon_sym___attribute] = ACTIONS(5537), + [anon_sym_COLON] = ACTIONS(5539), + [anon_sym___based] = ACTIONS(5537), + [anon_sym_LBRACE] = ACTIONS(5539), + [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(5539), + [anon_sym_RBRACK] = ACTIONS(5539), + [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_QMARK] = ACTIONS(5539), + [anon_sym_LT_EQ_GT] = ACTIONS(5539), + [anon_sym_or] = ACTIONS(5537), + [anon_sym_and] = ACTIONS(5537), + [anon_sym_bitor] = ACTIONS(5537), + [anon_sym_xor] = ACTIONS(5537), + [anon_sym_bitand] = ACTIONS(5537), + [anon_sym_not_eq] = ACTIONS(5537), + [anon_sym_DASH_DASH] = ACTIONS(5539), + [anon_sym_PLUS_PLUS] = ACTIONS(5539), + [anon_sym_DOT] = ACTIONS(5537), + [anon_sym_DOT_STAR] = ACTIONS(5539), + [anon_sym_DASH_GT] = ACTIONS(5539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5537), + [anon_sym_decltype] = ACTIONS(5537), + [anon_sym_final] = ACTIONS(5537), + [anon_sym_override] = ACTIONS(5537), + [anon_sym_requires] = ACTIONS(5537), }, [STATE(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), + [sym_catch_clause] = STATE(1892), + [aux_sym_constructor_try_statement_repeat1] = STATE(1892), + [sym_identifier] = ACTIONS(2589), + [aux_sym_preproc_def_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token2] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_AMP_AMP] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym___extension__] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_virtual] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym___attribute__] = ACTIONS(2589), + [anon_sym___attribute] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2591), + [anon_sym___declspec] = ACTIONS(2589), + [anon_sym___based] = ACTIONS(2589), + [anon_sym_signed] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym___inline] = ACTIONS(2589), + [anon_sym___inline__] = ACTIONS(2589), + [anon_sym___forceinline] = ACTIONS(2589), + [anon_sym_thread_local] = ACTIONS(2589), + [anon_sym___thread] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym___restrict__] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym__Noreturn] = ACTIONS(2589), + [anon_sym_noreturn] = ACTIONS(2589), + [anon_sym__Nonnull] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_constinit] = ACTIONS(2589), + [anon_sym_consteval] = ACTIONS(2589), + [anon_sym_alignas] = ACTIONS(2589), + [anon_sym__Alignas] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2589), + [anon_sym_decltype] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_private] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_operator] = ACTIONS(2589), + [anon_sym_friend] = ACTIONS(2589), + [anon_sym_public] = ACTIONS(2589), + [anon_sym_protected] = ACTIONS(2589), + [anon_sym_static_assert] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(5672), }, [STATE(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), + [sym_identifier] = ACTIONS(5795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5797), + [anon_sym_COMMA] = ACTIONS(5797), + [anon_sym_RPAREN] = ACTIONS(5797), + [anon_sym_LPAREN2] = ACTIONS(5797), + [anon_sym_DASH] = ACTIONS(5795), + [anon_sym_PLUS] = ACTIONS(5795), + [anon_sym_STAR] = ACTIONS(5797), + [anon_sym_SLASH] = ACTIONS(5795), + [anon_sym_PERCENT] = ACTIONS(5797), + [anon_sym_PIPE_PIPE] = ACTIONS(5797), + [anon_sym_AMP_AMP] = ACTIONS(5797), + [anon_sym_PIPE] = ACTIONS(5795), + [anon_sym_CARET] = ACTIONS(5797), + [anon_sym_AMP] = ACTIONS(5795), + [anon_sym_EQ_EQ] = ACTIONS(5797), + [anon_sym_BANG_EQ] = ACTIONS(5797), + [anon_sym_GT] = ACTIONS(5795), + [anon_sym_GT_EQ] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5795), + [anon_sym_LT] = ACTIONS(5795), + [anon_sym_LT_LT] = ACTIONS(5797), + [anon_sym_GT_GT] = ACTIONS(5797), + [anon_sym_SEMI] = ACTIONS(5797), + [anon_sym___extension__] = ACTIONS(5795), + [anon_sym___attribute__] = ACTIONS(5795), + [anon_sym___attribute] = ACTIONS(5795), + [anon_sym_COLON] = ACTIONS(5797), + [anon_sym___based] = ACTIONS(5795), + [anon_sym_LBRACE] = ACTIONS(5797), + [anon_sym_RBRACE] = ACTIONS(5797), + [anon_sym_signed] = ACTIONS(5795), + [anon_sym_unsigned] = ACTIONS(5795), + [anon_sym_long] = ACTIONS(5795), + [anon_sym_short] = ACTIONS(5795), + [anon_sym_LBRACK] = ACTIONS(5797), + [anon_sym_RBRACK] = ACTIONS(5797), + [anon_sym_const] = ACTIONS(5795), + [anon_sym_constexpr] = ACTIONS(5795), + [anon_sym_volatile] = ACTIONS(5795), + [anon_sym_restrict] = ACTIONS(5795), + [anon_sym___restrict__] = ACTIONS(5795), + [anon_sym__Atomic] = ACTIONS(5795), + [anon_sym__Noreturn] = ACTIONS(5795), + [anon_sym_noreturn] = ACTIONS(5795), + [anon_sym__Nonnull] = ACTIONS(5795), + [anon_sym_mutable] = ACTIONS(5795), + [anon_sym_constinit] = ACTIONS(5795), + [anon_sym_consteval] = ACTIONS(5795), + [anon_sym_alignas] = ACTIONS(5795), + [anon_sym__Alignas] = ACTIONS(5795), + [sym_primitive_type] = ACTIONS(5795), + [anon_sym_QMARK] = ACTIONS(5797), + [anon_sym_LT_EQ_GT] = ACTIONS(5797), + [anon_sym_or] = ACTIONS(5795), + [anon_sym_and] = ACTIONS(5795), + [anon_sym_bitor] = ACTIONS(5795), + [anon_sym_xor] = ACTIONS(5795), + [anon_sym_bitand] = ACTIONS(5795), + [anon_sym_not_eq] = ACTIONS(5795), + [anon_sym_DASH_DASH] = ACTIONS(5797), + [anon_sym_PLUS_PLUS] = ACTIONS(5797), + [anon_sym_DOT] = ACTIONS(5795), + [anon_sym_DOT_STAR] = ACTIONS(5797), + [anon_sym_DASH_GT] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5795), + [anon_sym_decltype] = ACTIONS(5795), + [anon_sym_final] = ACTIONS(5795), + [anon_sym_override] = ACTIONS(5795), + [anon_sym_requires] = ACTIONS(5795), }, [STATE(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), + [sym_identifier] = ACTIONS(2572), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_BANG] = ACTIONS(2562), + [anon_sym_TILDE] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2562), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym_COLON_COLON] = ACTIONS(2562), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_RBRACK] = ACTIONS(2562), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_not] = ACTIONS(2572), + [anon_sym_compl] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_sizeof] = ACTIONS(2572), + [anon_sym___alignof__] = ACTIONS(2572), + [anon_sym___alignof] = ACTIONS(2572), + [anon_sym__alignof] = ACTIONS(2572), + [anon_sym_alignof] = ACTIONS(2572), + [anon_sym__Alignof] = ACTIONS(2572), + [anon_sym_offsetof] = ACTIONS(2572), + [anon_sym__Generic] = ACTIONS(2572), + [anon_sym_asm] = ACTIONS(2572), + [anon_sym___asm__] = ACTIONS(2572), + [anon_sym___asm] = ACTIONS(2572), + [sym_number_literal] = ACTIONS(2562), + [anon_sym_L_SQUOTE] = ACTIONS(2562), + [anon_sym_u_SQUOTE] = ACTIONS(2562), + [anon_sym_U_SQUOTE] = ACTIONS(2562), + [anon_sym_u8_SQUOTE] = ACTIONS(2562), + [anon_sym_SQUOTE] = ACTIONS(2562), + [anon_sym_L_DQUOTE] = ACTIONS(2562), + [anon_sym_u_DQUOTE] = ACTIONS(2562), + [anon_sym_U_DQUOTE] = ACTIONS(2562), + [anon_sym_u8_DQUOTE] = ACTIONS(2562), + [anon_sym_DQUOTE] = ACTIONS(2562), + [sym_true] = ACTIONS(2572), + [sym_false] = ACTIONS(2572), + [anon_sym_NULL] = ACTIONS(2572), + [anon_sym_nullptr] = ACTIONS(2572), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2572), + [anon_sym_template] = ACTIONS(2572), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_R_DQUOTE] = ACTIONS(2562), + [anon_sym_LR_DQUOTE] = ACTIONS(2562), + [anon_sym_uR_DQUOTE] = ACTIONS(2562), + [anon_sym_UR_DQUOTE] = ACTIONS(2562), + [anon_sym_u8R_DQUOTE] = ACTIONS(2562), + [anon_sym_co_await] = ACTIONS(2572), + [anon_sym_new] = ACTIONS(2572), + [anon_sym_requires] = ACTIONS(2572), + [sym_this] = ACTIONS(2572), }, [STATE(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), + [sym_identifier] = ACTIONS(5799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [anon_sym_LPAREN2] = ACTIONS(5801), + [anon_sym_DASH] = ACTIONS(5799), + [anon_sym_PLUS] = ACTIONS(5799), + [anon_sym_STAR] = ACTIONS(5801), + [anon_sym_SLASH] = ACTIONS(5799), + [anon_sym_PERCENT] = ACTIONS(5801), + [anon_sym_PIPE_PIPE] = ACTIONS(5801), + [anon_sym_AMP_AMP] = ACTIONS(5801), + [anon_sym_PIPE] = ACTIONS(5799), + [anon_sym_CARET] = ACTIONS(5801), + [anon_sym_AMP] = ACTIONS(5799), + [anon_sym_EQ_EQ] = ACTIONS(5801), + [anon_sym_BANG_EQ] = ACTIONS(5801), + [anon_sym_GT] = ACTIONS(5799), + [anon_sym_GT_EQ] = ACTIONS(5801), + [anon_sym_LT_EQ] = ACTIONS(5799), + [anon_sym_LT] = ACTIONS(5799), + [anon_sym_LT_LT] = ACTIONS(5801), + [anon_sym_GT_GT] = ACTIONS(5801), + [anon_sym_SEMI] = ACTIONS(5801), + [anon_sym___extension__] = ACTIONS(5799), + [anon_sym___attribute__] = ACTIONS(5799), + [anon_sym___attribute] = ACTIONS(5799), + [anon_sym_COLON] = ACTIONS(5801), + [anon_sym___based] = ACTIONS(5799), + [anon_sym_LBRACE] = ACTIONS(5801), + [anon_sym_RBRACE] = ACTIONS(5801), + [anon_sym_signed] = ACTIONS(5799), + [anon_sym_unsigned] = ACTIONS(5799), + [anon_sym_long] = ACTIONS(5799), + [anon_sym_short] = ACTIONS(5799), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_const] = ACTIONS(5799), + [anon_sym_constexpr] = ACTIONS(5799), + [anon_sym_volatile] = ACTIONS(5799), + [anon_sym_restrict] = ACTIONS(5799), + [anon_sym___restrict__] = ACTIONS(5799), + [anon_sym__Atomic] = ACTIONS(5799), + [anon_sym__Noreturn] = ACTIONS(5799), + [anon_sym_noreturn] = ACTIONS(5799), + [anon_sym__Nonnull] = ACTIONS(5799), + [anon_sym_mutable] = ACTIONS(5799), + [anon_sym_constinit] = ACTIONS(5799), + [anon_sym_consteval] = ACTIONS(5799), + [anon_sym_alignas] = ACTIONS(5799), + [anon_sym__Alignas] = ACTIONS(5799), + [sym_primitive_type] = ACTIONS(5799), + [anon_sym_QMARK] = ACTIONS(5801), + [anon_sym_LT_EQ_GT] = ACTIONS(5801), + [anon_sym_or] = ACTIONS(5799), + [anon_sym_and] = ACTIONS(5799), + [anon_sym_bitor] = ACTIONS(5799), + [anon_sym_xor] = ACTIONS(5799), + [anon_sym_bitand] = ACTIONS(5799), + [anon_sym_not_eq] = ACTIONS(5799), + [anon_sym_DASH_DASH] = ACTIONS(5801), + [anon_sym_PLUS_PLUS] = ACTIONS(5801), + [anon_sym_DOT] = ACTIONS(5799), + [anon_sym_DOT_STAR] = ACTIONS(5801), + [anon_sym_DASH_GT] = ACTIONS(5801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5799), + [anon_sym_decltype] = ACTIONS(5799), + [anon_sym_final] = ACTIONS(5799), + [anon_sym_override] = ACTIONS(5799), + [anon_sym_requires] = ACTIONS(5799), }, [STATE(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), + [sym_identifier] = ACTIONS(5803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [anon_sym_LPAREN2] = ACTIONS(5805), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5805), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_PERCENT] = ACTIONS(5805), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5805), + [anon_sym_AMP] = ACTIONS(5803), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_LT_LT] = ACTIONS(5805), + [anon_sym_GT_GT] = ACTIONS(5805), + [anon_sym_SEMI] = ACTIONS(5805), + [anon_sym___extension__] = ACTIONS(5803), + [anon_sym___attribute__] = ACTIONS(5803), + [anon_sym___attribute] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5805), + [anon_sym___based] = ACTIONS(5803), + [anon_sym_LBRACE] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_signed] = ACTIONS(5803), + [anon_sym_unsigned] = ACTIONS(5803), + [anon_sym_long] = ACTIONS(5803), + [anon_sym_short] = ACTIONS(5803), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_const] = ACTIONS(5803), + [anon_sym_constexpr] = ACTIONS(5803), + [anon_sym_volatile] = ACTIONS(5803), + [anon_sym_restrict] = ACTIONS(5803), + [anon_sym___restrict__] = ACTIONS(5803), + [anon_sym__Atomic] = ACTIONS(5803), + [anon_sym__Noreturn] = ACTIONS(5803), + [anon_sym_noreturn] = ACTIONS(5803), + [anon_sym__Nonnull] = ACTIONS(5803), + [anon_sym_mutable] = ACTIONS(5803), + [anon_sym_constinit] = ACTIONS(5803), + [anon_sym_consteval] = ACTIONS(5803), + [anon_sym_alignas] = ACTIONS(5803), + [anon_sym__Alignas] = ACTIONS(5803), + [sym_primitive_type] = ACTIONS(5803), + [anon_sym_QMARK] = ACTIONS(5805), + [anon_sym_LT_EQ_GT] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5803), + [anon_sym_and] = ACTIONS(5803), + [anon_sym_bitor] = ACTIONS(5803), + [anon_sym_xor] = ACTIONS(5803), + [anon_sym_bitand] = ACTIONS(5803), + [anon_sym_not_eq] = ACTIONS(5803), + [anon_sym_DASH_DASH] = ACTIONS(5805), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DOT] = ACTIONS(5803), + [anon_sym_DOT_STAR] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5803), + [anon_sym_decltype] = ACTIONS(5803), + [anon_sym_final] = ACTIONS(5803), + [anon_sym_override] = ACTIONS(5803), + [anon_sym_requires] = ACTIONS(5803), }, [STATE(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), + [sym_identifier] = ACTIONS(5807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LPAREN2] = ACTIONS(5809), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5809), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_PERCENT] = ACTIONS(5809), + [anon_sym_PIPE_PIPE] = ACTIONS(5809), + [anon_sym_AMP_AMP] = ACTIONS(5809), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5809), + [anon_sym_BANG_EQ] = ACTIONS(5809), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_GT_EQ] = ACTIONS(5809), + [anon_sym_LT_EQ] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_LT_LT] = ACTIONS(5809), + [anon_sym_GT_GT] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(5809), + [anon_sym___extension__] = ACTIONS(5807), + [anon_sym___attribute__] = ACTIONS(5807), + [anon_sym___attribute] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5809), + [anon_sym___based] = ACTIONS(5807), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_signed] = ACTIONS(5807), + [anon_sym_unsigned] = ACTIONS(5807), + [anon_sym_long] = ACTIONS(5807), + [anon_sym_short] = ACTIONS(5807), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_const] = ACTIONS(5807), + [anon_sym_constexpr] = ACTIONS(5807), + [anon_sym_volatile] = ACTIONS(5807), + [anon_sym_restrict] = ACTIONS(5807), + [anon_sym___restrict__] = ACTIONS(5807), + [anon_sym__Atomic] = ACTIONS(5807), + [anon_sym__Noreturn] = ACTIONS(5807), + [anon_sym_noreturn] = ACTIONS(5807), + [anon_sym__Nonnull] = ACTIONS(5807), + [anon_sym_mutable] = ACTIONS(5807), + [anon_sym_constinit] = ACTIONS(5807), + [anon_sym_consteval] = ACTIONS(5807), + [anon_sym_alignas] = ACTIONS(5807), + [anon_sym__Alignas] = ACTIONS(5807), + [sym_primitive_type] = ACTIONS(5807), + [anon_sym_QMARK] = ACTIONS(5809), + [anon_sym_LT_EQ_GT] = ACTIONS(5809), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_and] = ACTIONS(5807), + [anon_sym_bitor] = ACTIONS(5807), + [anon_sym_xor] = ACTIONS(5807), + [anon_sym_bitand] = ACTIONS(5807), + [anon_sym_not_eq] = ACTIONS(5807), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_DOT_STAR] = ACTIONS(5809), + [anon_sym_DASH_GT] = ACTIONS(5809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5807), + [anon_sym_decltype] = ACTIONS(5807), + [anon_sym_final] = ACTIONS(5807), + [anon_sym_override] = ACTIONS(5807), + [anon_sym_requires] = ACTIONS(5807), }, [STATE(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), + [sym_identifier] = ACTIONS(5811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [anon_sym_LPAREN2] = ACTIONS(5813), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5813), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_PERCENT] = ACTIONS(5813), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5813), + [anon_sym_AMP] = ACTIONS(5811), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_LT_LT] = ACTIONS(5813), + [anon_sym_GT_GT] = ACTIONS(5813), + [anon_sym_SEMI] = ACTIONS(5813), + [anon_sym___extension__] = ACTIONS(5811), + [anon_sym___attribute__] = ACTIONS(5811), + [anon_sym___attribute] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5813), + [anon_sym___based] = ACTIONS(5811), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [anon_sym_signed] = ACTIONS(5811), + [anon_sym_unsigned] = ACTIONS(5811), + [anon_sym_long] = ACTIONS(5811), + [anon_sym_short] = ACTIONS(5811), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_const] = ACTIONS(5811), + [anon_sym_constexpr] = ACTIONS(5811), + [anon_sym_volatile] = ACTIONS(5811), + [anon_sym_restrict] = ACTIONS(5811), + [anon_sym___restrict__] = ACTIONS(5811), + [anon_sym__Atomic] = ACTIONS(5811), + [anon_sym__Noreturn] = ACTIONS(5811), + [anon_sym_noreturn] = ACTIONS(5811), + [anon_sym__Nonnull] = ACTIONS(5811), + [anon_sym_mutable] = ACTIONS(5811), + [anon_sym_constinit] = ACTIONS(5811), + [anon_sym_consteval] = ACTIONS(5811), + [anon_sym_alignas] = ACTIONS(5811), + [anon_sym__Alignas] = ACTIONS(5811), + [sym_primitive_type] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5813), + [anon_sym_LT_EQ_GT] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5811), + [anon_sym_and] = ACTIONS(5811), + [anon_sym_bitor] = ACTIONS(5811), + [anon_sym_xor] = ACTIONS(5811), + [anon_sym_bitand] = ACTIONS(5811), + [anon_sym_not_eq] = ACTIONS(5811), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DOT] = ACTIONS(5811), + [anon_sym_DOT_STAR] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5811), + [anon_sym_decltype] = ACTIONS(5811), + [anon_sym_final] = ACTIONS(5811), + [anon_sym_override] = ACTIONS(5811), + [anon_sym_requires] = ACTIONS(5811), }, [STATE(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), + [sym_identifier] = ACTIONS(5815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [anon_sym_LPAREN2] = ACTIONS(5817), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5817), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_PERCENT] = ACTIONS(5817), + [anon_sym_PIPE_PIPE] = ACTIONS(5817), + [anon_sym_AMP_AMP] = ACTIONS(5817), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5817), + [anon_sym_AMP] = ACTIONS(5815), + [anon_sym_EQ_EQ] = ACTIONS(5817), + [anon_sym_BANG_EQ] = ACTIONS(5817), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_GT_EQ] = ACTIONS(5817), + [anon_sym_LT_EQ] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_LT_LT] = ACTIONS(5817), + [anon_sym_GT_GT] = ACTIONS(5817), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym___extension__] = ACTIONS(5815), + [anon_sym___attribute__] = ACTIONS(5815), + [anon_sym___attribute] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5817), + [anon_sym___based] = ACTIONS(5815), + [anon_sym_LBRACE] = ACTIONS(5817), + [anon_sym_RBRACE] = ACTIONS(5817), + [anon_sym_signed] = ACTIONS(5815), + [anon_sym_unsigned] = ACTIONS(5815), + [anon_sym_long] = ACTIONS(5815), + [anon_sym_short] = ACTIONS(5815), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_const] = ACTIONS(5815), + [anon_sym_constexpr] = ACTIONS(5815), + [anon_sym_volatile] = ACTIONS(5815), + [anon_sym_restrict] = ACTIONS(5815), + [anon_sym___restrict__] = ACTIONS(5815), + [anon_sym__Atomic] = ACTIONS(5815), + [anon_sym__Noreturn] = ACTIONS(5815), + [anon_sym_noreturn] = ACTIONS(5815), + [anon_sym__Nonnull] = ACTIONS(5815), + [anon_sym_mutable] = ACTIONS(5815), + [anon_sym_constinit] = ACTIONS(5815), + [anon_sym_consteval] = ACTIONS(5815), + [anon_sym_alignas] = ACTIONS(5815), + [anon_sym__Alignas] = ACTIONS(5815), + [sym_primitive_type] = ACTIONS(5815), + [anon_sym_QMARK] = ACTIONS(5817), + [anon_sym_LT_EQ_GT] = ACTIONS(5817), + [anon_sym_or] = ACTIONS(5815), + [anon_sym_and] = ACTIONS(5815), + [anon_sym_bitor] = ACTIONS(5815), + [anon_sym_xor] = ACTIONS(5815), + [anon_sym_bitand] = ACTIONS(5815), + [anon_sym_not_eq] = ACTIONS(5815), + [anon_sym_DASH_DASH] = ACTIONS(5817), + [anon_sym_PLUS_PLUS] = ACTIONS(5817), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_DOT_STAR] = ACTIONS(5817), + [anon_sym_DASH_GT] = ACTIONS(5817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5815), + [anon_sym_decltype] = ACTIONS(5815), + [anon_sym_final] = ACTIONS(5815), + [anon_sym_override] = ACTIONS(5815), + [anon_sym_requires] = ACTIONS(5815), }, [STATE(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), + [sym_catch_clause] = STATE(1906), + [aux_sym_constructor_try_statement_repeat1] = STATE(1906), + [sym_identifier] = ACTIONS(2541), + [aux_sym_preproc_def_token1] = ACTIONS(2541), + [aux_sym_preproc_if_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2541), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2541), + [sym_preproc_directive] = ACTIONS(2541), + [anon_sym_LPAREN2] = ACTIONS(2543), + [anon_sym_TILDE] = ACTIONS(2543), + [anon_sym_STAR] = ACTIONS(2543), + [anon_sym_AMP_AMP] = ACTIONS(2543), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_SEMI] = ACTIONS(2543), + [anon_sym___extension__] = ACTIONS(2541), + [anon_sym_typedef] = ACTIONS(2541), + [anon_sym_virtual] = ACTIONS(2541), + [anon_sym_extern] = ACTIONS(2541), + [anon_sym___attribute__] = ACTIONS(2541), + [anon_sym___attribute] = ACTIONS(2541), + [anon_sym_using] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2543), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2543), + [anon_sym___declspec] = ACTIONS(2541), + [anon_sym___based] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_signed] = ACTIONS(2541), + [anon_sym_unsigned] = ACTIONS(2541), + [anon_sym_long] = ACTIONS(2541), + [anon_sym_short] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_static] = ACTIONS(2541), + [anon_sym_register] = ACTIONS(2541), + [anon_sym_inline] = ACTIONS(2541), + [anon_sym___inline] = ACTIONS(2541), + [anon_sym___inline__] = ACTIONS(2541), + [anon_sym___forceinline] = ACTIONS(2541), + [anon_sym_thread_local] = ACTIONS(2541), + [anon_sym___thread] = ACTIONS(2541), + [anon_sym_const] = ACTIONS(2541), + [anon_sym_constexpr] = ACTIONS(2541), + [anon_sym_volatile] = ACTIONS(2541), + [anon_sym_restrict] = ACTIONS(2541), + [anon_sym___restrict__] = ACTIONS(2541), + [anon_sym__Atomic] = ACTIONS(2541), + [anon_sym__Noreturn] = ACTIONS(2541), + [anon_sym_noreturn] = ACTIONS(2541), + [anon_sym__Nonnull] = ACTIONS(2541), + [anon_sym_mutable] = ACTIONS(2541), + [anon_sym_constinit] = ACTIONS(2541), + [anon_sym_consteval] = ACTIONS(2541), + [anon_sym_alignas] = ACTIONS(2541), + [anon_sym__Alignas] = ACTIONS(2541), + [sym_primitive_type] = ACTIONS(2541), + [anon_sym_enum] = ACTIONS(2541), + [anon_sym_class] = ACTIONS(2541), + [anon_sym_struct] = ACTIONS(2541), + [anon_sym_union] = ACTIONS(2541), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2541), + [anon_sym_decltype] = ACTIONS(2541), + [anon_sym_explicit] = ACTIONS(2541), + [anon_sym_typename] = ACTIONS(2541), + [anon_sym_private] = ACTIONS(2541), + [anon_sym_template] = ACTIONS(2541), + [anon_sym_operator] = ACTIONS(2541), + [anon_sym_friend] = ACTIONS(2541), + [anon_sym_public] = ACTIONS(2541), + [anon_sym_protected] = ACTIONS(2541), + [anon_sym_static_assert] = ACTIONS(2541), + [anon_sym_catch] = ACTIONS(5717), }, [STATE(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), + [sym_identifier] = ACTIONS(5727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), + [anon_sym_COMMA] = ACTIONS(5729), + [anon_sym_RPAREN] = ACTIONS(5729), + [anon_sym_LPAREN2] = ACTIONS(5729), + [anon_sym_DASH] = ACTIONS(5727), + [anon_sym_PLUS] = ACTIONS(5727), + [anon_sym_STAR] = ACTIONS(5729), + [anon_sym_SLASH] = ACTIONS(5727), + [anon_sym_PERCENT] = ACTIONS(5729), + [anon_sym_PIPE_PIPE] = ACTIONS(5729), + [anon_sym_AMP_AMP] = ACTIONS(5729), + [anon_sym_PIPE] = ACTIONS(5727), + [anon_sym_CARET] = ACTIONS(5729), + [anon_sym_AMP] = ACTIONS(5727), + [anon_sym_EQ_EQ] = ACTIONS(5729), + [anon_sym_BANG_EQ] = ACTIONS(5729), + [anon_sym_GT] = ACTIONS(5727), + [anon_sym_GT_EQ] = ACTIONS(5729), + [anon_sym_LT_EQ] = ACTIONS(5727), + [anon_sym_LT] = ACTIONS(5727), + [anon_sym_LT_LT] = ACTIONS(5729), + [anon_sym_GT_GT] = ACTIONS(5729), + [anon_sym_SEMI] = ACTIONS(5729), + [anon_sym___extension__] = ACTIONS(5727), + [anon_sym___attribute__] = ACTIONS(5727), + [anon_sym___attribute] = ACTIONS(5727), + [anon_sym_COLON] = ACTIONS(5729), + [anon_sym___based] = ACTIONS(5727), + [anon_sym_LBRACE] = ACTIONS(5729), + [anon_sym_RBRACE] = ACTIONS(5729), + [anon_sym_signed] = ACTIONS(5727), + [anon_sym_unsigned] = ACTIONS(5727), + [anon_sym_long] = ACTIONS(5727), + [anon_sym_short] = ACTIONS(5727), + [anon_sym_LBRACK] = ACTIONS(5729), + [anon_sym_RBRACK] = ACTIONS(5729), + [anon_sym_const] = ACTIONS(5727), + [anon_sym_constexpr] = ACTIONS(5727), + [anon_sym_volatile] = ACTIONS(5727), + [anon_sym_restrict] = ACTIONS(5727), + [anon_sym___restrict__] = ACTIONS(5727), + [anon_sym__Atomic] = ACTIONS(5727), + [anon_sym__Noreturn] = ACTIONS(5727), + [anon_sym_noreturn] = ACTIONS(5727), + [anon_sym__Nonnull] = ACTIONS(5727), + [anon_sym_mutable] = ACTIONS(5727), + [anon_sym_constinit] = ACTIONS(5727), + [anon_sym_consteval] = ACTIONS(5727), + [anon_sym_alignas] = ACTIONS(5727), + [anon_sym__Alignas] = ACTIONS(5727), + [sym_primitive_type] = ACTIONS(5727), + [anon_sym_QMARK] = ACTIONS(5729), + [anon_sym_LT_EQ_GT] = ACTIONS(5729), + [anon_sym_or] = ACTIONS(5727), + [anon_sym_and] = ACTIONS(5727), + [anon_sym_bitor] = ACTIONS(5727), + [anon_sym_xor] = ACTIONS(5727), + [anon_sym_bitand] = ACTIONS(5727), + [anon_sym_not_eq] = ACTIONS(5727), + [anon_sym_DASH_DASH] = ACTIONS(5729), + [anon_sym_PLUS_PLUS] = ACTIONS(5729), + [anon_sym_DOT] = ACTIONS(5727), + [anon_sym_DOT_STAR] = ACTIONS(5729), + [anon_sym_DASH_GT] = ACTIONS(5729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5727), + [anon_sym_decltype] = ACTIONS(5727), + [anon_sym_final] = ACTIONS(5727), + [anon_sym_override] = ACTIONS(5727), + [anon_sym_requires] = ACTIONS(5727), }, [STATE(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), + [sym_identifier] = ACTIONS(5819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5821), + [anon_sym_RPAREN] = ACTIONS(5821), + [anon_sym_LPAREN2] = ACTIONS(5821), + [anon_sym_DASH] = ACTIONS(5819), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_STAR] = ACTIONS(5821), + [anon_sym_SLASH] = ACTIONS(5819), + [anon_sym_PERCENT] = ACTIONS(5821), + [anon_sym_PIPE_PIPE] = ACTIONS(5821), + [anon_sym_AMP_AMP] = ACTIONS(5821), + [anon_sym_PIPE] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5821), + [anon_sym_AMP] = ACTIONS(5819), + [anon_sym_EQ_EQ] = ACTIONS(5821), + [anon_sym_BANG_EQ] = ACTIONS(5821), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_GT_EQ] = ACTIONS(5821), + [anon_sym_LT_EQ] = ACTIONS(5819), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_LT_LT] = ACTIONS(5821), + [anon_sym_GT_GT] = ACTIONS(5821), + [anon_sym_SEMI] = ACTIONS(5821), + [anon_sym___extension__] = ACTIONS(5819), + [anon_sym___attribute__] = ACTIONS(5819), + [anon_sym___attribute] = ACTIONS(5819), + [anon_sym_COLON] = ACTIONS(5821), + [anon_sym___based] = ACTIONS(5819), + [anon_sym_LBRACE] = ACTIONS(5821), + [anon_sym_RBRACE] = ACTIONS(5821), + [anon_sym_signed] = ACTIONS(5819), + [anon_sym_unsigned] = ACTIONS(5819), + [anon_sym_long] = ACTIONS(5819), + [anon_sym_short] = ACTIONS(5819), + [anon_sym_LBRACK] = ACTIONS(5821), + [anon_sym_RBRACK] = ACTIONS(5821), + [anon_sym_const] = ACTIONS(5819), + [anon_sym_constexpr] = ACTIONS(5819), + [anon_sym_volatile] = ACTIONS(5819), + [anon_sym_restrict] = ACTIONS(5819), + [anon_sym___restrict__] = ACTIONS(5819), + [anon_sym__Atomic] = ACTIONS(5819), + [anon_sym__Noreturn] = ACTIONS(5819), + [anon_sym_noreturn] = ACTIONS(5819), + [anon_sym__Nonnull] = ACTIONS(5819), + [anon_sym_mutable] = ACTIONS(5819), + [anon_sym_constinit] = ACTIONS(5819), + [anon_sym_consteval] = ACTIONS(5819), + [anon_sym_alignas] = ACTIONS(5819), + [anon_sym__Alignas] = ACTIONS(5819), + [sym_primitive_type] = ACTIONS(5819), + [anon_sym_QMARK] = ACTIONS(5821), + [anon_sym_LT_EQ_GT] = ACTIONS(5821), + [anon_sym_or] = ACTIONS(5819), + [anon_sym_and] = ACTIONS(5819), + [anon_sym_bitor] = ACTIONS(5819), + [anon_sym_xor] = ACTIONS(5819), + [anon_sym_bitand] = ACTIONS(5819), + [anon_sym_not_eq] = ACTIONS(5819), + [anon_sym_DASH_DASH] = ACTIONS(5821), + [anon_sym_PLUS_PLUS] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5819), + [anon_sym_DOT_STAR] = ACTIONS(5821), + [anon_sym_DASH_GT] = ACTIONS(5821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5819), + [anon_sym_decltype] = ACTIONS(5819), + [anon_sym_final] = ACTIONS(5819), + [anon_sym_override] = ACTIONS(5819), + [anon_sym_requires] = ACTIONS(5819), }, [STATE(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), + [sym_identifier] = ACTIONS(5823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5825), + [anon_sym_COMMA] = ACTIONS(5825), + [anon_sym_RPAREN] = ACTIONS(5825), + [anon_sym_LPAREN2] = ACTIONS(5825), + [anon_sym_DASH] = ACTIONS(5823), + [anon_sym_PLUS] = ACTIONS(5823), + [anon_sym_STAR] = ACTIONS(5825), + [anon_sym_SLASH] = ACTIONS(5823), + [anon_sym_PERCENT] = ACTIONS(5825), + [anon_sym_PIPE_PIPE] = ACTIONS(5825), + [anon_sym_AMP_AMP] = ACTIONS(5825), + [anon_sym_PIPE] = ACTIONS(5823), + [anon_sym_CARET] = ACTIONS(5825), + [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(5825), + [anon_sym_GT_GT] = ACTIONS(5825), + [anon_sym_SEMI] = ACTIONS(5825), + [anon_sym___extension__] = ACTIONS(5823), + [anon_sym___attribute__] = ACTIONS(5823), + [anon_sym___attribute] = ACTIONS(5823), + [anon_sym_COLON] = ACTIONS(5825), + [anon_sym___based] = ACTIONS(5823), + [anon_sym_LBRACE] = ACTIONS(5825), + [anon_sym_RBRACE] = ACTIONS(5825), + [anon_sym_signed] = ACTIONS(5823), + [anon_sym_unsigned] = ACTIONS(5823), + [anon_sym_long] = ACTIONS(5823), + [anon_sym_short] = ACTIONS(5823), + [anon_sym_LBRACK] = ACTIONS(5825), + [anon_sym_RBRACK] = ACTIONS(5825), + [anon_sym_const] = ACTIONS(5823), + [anon_sym_constexpr] = ACTIONS(5823), + [anon_sym_volatile] = ACTIONS(5823), + [anon_sym_restrict] = ACTIONS(5823), + [anon_sym___restrict__] = ACTIONS(5823), + [anon_sym__Atomic] = ACTIONS(5823), + [anon_sym__Noreturn] = ACTIONS(5823), + [anon_sym_noreturn] = ACTIONS(5823), + [anon_sym__Nonnull] = ACTIONS(5823), + [anon_sym_mutable] = ACTIONS(5823), + [anon_sym_constinit] = ACTIONS(5823), + [anon_sym_consteval] = ACTIONS(5823), + [anon_sym_alignas] = ACTIONS(5823), + [anon_sym__Alignas] = ACTIONS(5823), + [sym_primitive_type] = ACTIONS(5823), + [anon_sym_QMARK] = ACTIONS(5825), + [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(5823), + [anon_sym_decltype] = ACTIONS(5823), + [anon_sym_final] = ACTIONS(5823), + [anon_sym_override] = ACTIONS(5823), + [anon_sym_requires] = ACTIONS(5823), }, [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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_identifier] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_RPAREN] = ACTIONS(5007), + [aux_sym_preproc_if_token2] = ACTIONS(5007), + [aux_sym_preproc_else_token1] = ACTIONS(5007), + [aux_sym_preproc_elif_token1] = ACTIONS(5000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5007), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5007), + [anon_sym_LPAREN2] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym_AMP] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_LT_LT] = ACTIONS(5007), + [anon_sym_GT_GT] = ACTIONS(5007), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym___extension__] = ACTIONS(5000), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_RBRACK] = ACTIONS(5007), + [anon_sym_const] = ACTIONS(5000), + [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(5007), + [anon_sym_LT_EQ_GT] = ACTIONS(5007), + [anon_sym_or] = ACTIONS(5000), + [anon_sym_and] = ACTIONS(5000), + [anon_sym_bitor] = ACTIONS(5000), + [anon_sym_xor] = ACTIONS(5000), + [anon_sym_bitand] = ACTIONS(5000), + [anon_sym_not_eq] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_DOT_STAR] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5849), - [anon_sym_decltype] = ACTIONS(5851), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_final] = ACTIONS(5000), + [anon_sym_override] = ACTIONS(5000), + [anon_sym_requires] = ACTIONS(5000), + }, + [STATE(1921)] = { + [sym_identifier] = ACTIONS(5827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5829), + [anon_sym_COMMA] = ACTIONS(5829), + [anon_sym_RPAREN] = ACTIONS(5829), + [anon_sym_LPAREN2] = ACTIONS(5829), + [anon_sym_DASH] = ACTIONS(5827), + [anon_sym_PLUS] = ACTIONS(5827), + [anon_sym_STAR] = ACTIONS(5829), + [anon_sym_SLASH] = ACTIONS(5827), + [anon_sym_PERCENT] = ACTIONS(5829), + [anon_sym_PIPE_PIPE] = ACTIONS(5829), + [anon_sym_AMP_AMP] = ACTIONS(5829), + [anon_sym_PIPE] = ACTIONS(5827), + [anon_sym_CARET] = ACTIONS(5829), + [anon_sym_AMP] = ACTIONS(5827), + [anon_sym_EQ_EQ] = ACTIONS(5829), + [anon_sym_BANG_EQ] = ACTIONS(5829), + [anon_sym_GT] = ACTIONS(5827), + [anon_sym_GT_EQ] = ACTIONS(5829), + [anon_sym_LT_EQ] = ACTIONS(5827), + [anon_sym_LT] = ACTIONS(5827), + [anon_sym_LT_LT] = ACTIONS(5829), + [anon_sym_GT_GT] = ACTIONS(5829), + [anon_sym_SEMI] = ACTIONS(5829), + [anon_sym___extension__] = ACTIONS(5827), + [anon_sym___attribute__] = ACTIONS(5827), + [anon_sym___attribute] = ACTIONS(5827), + [anon_sym_COLON] = ACTIONS(5829), + [anon_sym___based] = ACTIONS(5827), + [anon_sym_LBRACE] = ACTIONS(5829), + [anon_sym_RBRACE] = ACTIONS(5829), + [anon_sym_signed] = ACTIONS(5827), + [anon_sym_unsigned] = ACTIONS(5827), + [anon_sym_long] = ACTIONS(5827), + [anon_sym_short] = ACTIONS(5827), + [anon_sym_LBRACK] = ACTIONS(5829), + [anon_sym_RBRACK] = ACTIONS(5829), + [anon_sym_const] = ACTIONS(5827), + [anon_sym_constexpr] = ACTIONS(5827), + [anon_sym_volatile] = ACTIONS(5827), + [anon_sym_restrict] = ACTIONS(5827), + [anon_sym___restrict__] = ACTIONS(5827), + [anon_sym__Atomic] = ACTIONS(5827), + [anon_sym__Noreturn] = ACTIONS(5827), + [anon_sym_noreturn] = ACTIONS(5827), + [anon_sym__Nonnull] = ACTIONS(5827), + [anon_sym_mutable] = ACTIONS(5827), + [anon_sym_constinit] = ACTIONS(5827), + [anon_sym_consteval] = ACTIONS(5827), + [anon_sym_alignas] = ACTIONS(5827), + [anon_sym__Alignas] = ACTIONS(5827), + [sym_primitive_type] = ACTIONS(5827), + [anon_sym_QMARK] = ACTIONS(5829), + [anon_sym_LT_EQ_GT] = ACTIONS(5829), + [anon_sym_or] = ACTIONS(5827), + [anon_sym_and] = ACTIONS(5827), + [anon_sym_bitor] = ACTIONS(5827), + [anon_sym_xor] = ACTIONS(5827), + [anon_sym_bitand] = ACTIONS(5827), + [anon_sym_not_eq] = ACTIONS(5827), + [anon_sym_DASH_DASH] = ACTIONS(5829), + [anon_sym_PLUS_PLUS] = ACTIONS(5829), + [anon_sym_DOT] = ACTIONS(5827), + [anon_sym_DOT_STAR] = ACTIONS(5829), + [anon_sym_DASH_GT] = ACTIONS(5829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5827), + [anon_sym_decltype] = ACTIONS(5827), + [anon_sym_final] = ACTIONS(5827), + [anon_sym_override] = ACTIONS(5827), + [anon_sym_requires] = ACTIONS(5827), + }, + [STATE(1922)] = { + [sym_identifier] = ACTIONS(5831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5833), + [anon_sym_COMMA] = ACTIONS(5833), + [anon_sym_RPAREN] = ACTIONS(5833), + [anon_sym_LPAREN2] = ACTIONS(5833), + [anon_sym_DASH] = ACTIONS(5831), + [anon_sym_PLUS] = ACTIONS(5831), + [anon_sym_STAR] = ACTIONS(5833), + [anon_sym_SLASH] = ACTIONS(5831), + [anon_sym_PERCENT] = ACTIONS(5833), + [anon_sym_PIPE_PIPE] = ACTIONS(5833), + [anon_sym_AMP_AMP] = ACTIONS(5833), + [anon_sym_PIPE] = ACTIONS(5831), + [anon_sym_CARET] = ACTIONS(5833), + [anon_sym_AMP] = ACTIONS(5831), + [anon_sym_EQ_EQ] = ACTIONS(5833), + [anon_sym_BANG_EQ] = ACTIONS(5833), + [anon_sym_GT] = ACTIONS(5831), + [anon_sym_GT_EQ] = ACTIONS(5833), + [anon_sym_LT_EQ] = ACTIONS(5831), + [anon_sym_LT] = ACTIONS(5831), + [anon_sym_LT_LT] = ACTIONS(5833), + [anon_sym_GT_GT] = ACTIONS(5833), + [anon_sym_SEMI] = ACTIONS(5833), + [anon_sym___extension__] = ACTIONS(5831), + [anon_sym___attribute__] = ACTIONS(5831), + [anon_sym___attribute] = ACTIONS(5831), + [anon_sym_COLON] = ACTIONS(5833), + [anon_sym___based] = ACTIONS(5831), + [anon_sym_LBRACE] = ACTIONS(5833), + [anon_sym_RBRACE] = ACTIONS(5833), + [anon_sym_signed] = ACTIONS(5831), + [anon_sym_unsigned] = ACTIONS(5831), + [anon_sym_long] = ACTIONS(5831), + [anon_sym_short] = ACTIONS(5831), + [anon_sym_LBRACK] = ACTIONS(5833), + [anon_sym_RBRACK] = ACTIONS(5833), + [anon_sym_const] = ACTIONS(5831), + [anon_sym_constexpr] = ACTIONS(5831), + [anon_sym_volatile] = ACTIONS(5831), + [anon_sym_restrict] = ACTIONS(5831), + [anon_sym___restrict__] = ACTIONS(5831), + [anon_sym__Atomic] = ACTIONS(5831), + [anon_sym__Noreturn] = ACTIONS(5831), + [anon_sym_noreturn] = ACTIONS(5831), + [anon_sym__Nonnull] = ACTIONS(5831), + [anon_sym_mutable] = ACTIONS(5831), + [anon_sym_constinit] = ACTIONS(5831), + [anon_sym_consteval] = ACTIONS(5831), + [anon_sym_alignas] = ACTIONS(5831), + [anon_sym__Alignas] = ACTIONS(5831), + [sym_primitive_type] = ACTIONS(5831), + [anon_sym_QMARK] = ACTIONS(5833), + [anon_sym_LT_EQ_GT] = ACTIONS(5833), + [anon_sym_or] = ACTIONS(5831), + [anon_sym_and] = ACTIONS(5831), + [anon_sym_bitor] = ACTIONS(5831), + [anon_sym_xor] = ACTIONS(5831), + [anon_sym_bitand] = ACTIONS(5831), + [anon_sym_not_eq] = ACTIONS(5831), + [anon_sym_DASH_DASH] = ACTIONS(5833), + [anon_sym_PLUS_PLUS] = ACTIONS(5833), + [anon_sym_DOT] = ACTIONS(5831), + [anon_sym_DOT_STAR] = ACTIONS(5833), + [anon_sym_DASH_GT] = ACTIONS(5833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5831), + [anon_sym_decltype] = ACTIONS(5831), + [anon_sym_final] = ACTIONS(5831), + [anon_sym_override] = ACTIONS(5831), + [anon_sym_requires] = ACTIONS(5831), + }, + [STATE(1923)] = { + [sym_identifier] = ACTIONS(5727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), + [anon_sym_COMMA] = ACTIONS(5729), + [anon_sym_RPAREN] = ACTIONS(5729), + [anon_sym_LPAREN2] = ACTIONS(5729), + [anon_sym_DASH] = ACTIONS(5727), + [anon_sym_PLUS] = ACTIONS(5727), + [anon_sym_STAR] = ACTIONS(5729), + [anon_sym_SLASH] = ACTIONS(5727), + [anon_sym_PERCENT] = ACTIONS(5729), + [anon_sym_PIPE_PIPE] = ACTIONS(5729), + [anon_sym_AMP_AMP] = ACTIONS(5729), + [anon_sym_PIPE] = ACTIONS(5727), + [anon_sym_CARET] = ACTIONS(5729), + [anon_sym_AMP] = ACTIONS(5727), + [anon_sym_EQ_EQ] = ACTIONS(5729), + [anon_sym_BANG_EQ] = ACTIONS(5729), + [anon_sym_GT] = ACTIONS(5727), + [anon_sym_GT_EQ] = ACTIONS(5729), + [anon_sym_LT_EQ] = ACTIONS(5727), + [anon_sym_LT] = ACTIONS(5727), + [anon_sym_LT_LT] = ACTIONS(5729), + [anon_sym_GT_GT] = ACTIONS(5729), + [anon_sym_SEMI] = ACTIONS(5729), + [anon_sym___extension__] = ACTIONS(5727), + [anon_sym___attribute__] = ACTIONS(5727), + [anon_sym___attribute] = ACTIONS(5727), + [anon_sym_COLON] = ACTIONS(5729), + [anon_sym___based] = ACTIONS(5727), + [anon_sym_LBRACE] = ACTIONS(5729), + [anon_sym_RBRACE] = ACTIONS(5729), + [anon_sym_signed] = ACTIONS(5727), + [anon_sym_unsigned] = ACTIONS(5727), + [anon_sym_long] = ACTIONS(5727), + [anon_sym_short] = ACTIONS(5727), + [anon_sym_LBRACK] = ACTIONS(5729), + [anon_sym_RBRACK] = ACTIONS(5729), + [anon_sym_const] = ACTIONS(5727), + [anon_sym_constexpr] = ACTIONS(5727), + [anon_sym_volatile] = ACTIONS(5727), + [anon_sym_restrict] = ACTIONS(5727), + [anon_sym___restrict__] = ACTIONS(5727), + [anon_sym__Atomic] = ACTIONS(5727), + [anon_sym__Noreturn] = ACTIONS(5727), + [anon_sym_noreturn] = ACTIONS(5727), + [anon_sym__Nonnull] = ACTIONS(5727), + [anon_sym_mutable] = ACTIONS(5727), + [anon_sym_constinit] = ACTIONS(5727), + [anon_sym_consteval] = ACTIONS(5727), + [anon_sym_alignas] = ACTIONS(5727), + [anon_sym__Alignas] = ACTIONS(5727), + [sym_primitive_type] = ACTIONS(5727), + [anon_sym_QMARK] = ACTIONS(5729), + [anon_sym_LT_EQ_GT] = ACTIONS(5729), + [anon_sym_or] = ACTIONS(5727), + [anon_sym_and] = ACTIONS(5727), + [anon_sym_bitor] = ACTIONS(5727), + [anon_sym_xor] = ACTIONS(5727), + [anon_sym_bitand] = ACTIONS(5727), + [anon_sym_not_eq] = ACTIONS(5727), + [anon_sym_DASH_DASH] = ACTIONS(5729), + [anon_sym_PLUS_PLUS] = ACTIONS(5729), + [anon_sym_DOT] = ACTIONS(5727), + [anon_sym_DOT_STAR] = ACTIONS(5729), + [anon_sym_DASH_GT] = ACTIONS(5729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5727), + [anon_sym_decltype] = ACTIONS(5727), + [anon_sym_final] = ACTIONS(5727), + [anon_sym_override] = ACTIONS(5727), + [anon_sym_requires] = ACTIONS(5727), + }, + [STATE(1924)] = { + [sym_catch_clause] = STATE(1906), + [aux_sym_constructor_try_statement_repeat1] = STATE(1906), + [sym_identifier] = ACTIONS(2589), + [aux_sym_preproc_def_token1] = ACTIONS(2589), + [aux_sym_preproc_if_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2589), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_LPAREN2] = ACTIONS(2591), + [anon_sym_TILDE] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2591), + [anon_sym_AMP_AMP] = ACTIONS(2591), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2591), + [anon_sym___extension__] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_virtual] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym___attribute__] = ACTIONS(2589), + [anon_sym___attribute] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2591), + [anon_sym___declspec] = ACTIONS(2589), + [anon_sym___based] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2591), + [anon_sym_signed] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym___inline] = ACTIONS(2589), + [anon_sym___inline__] = ACTIONS(2589), + [anon_sym___forceinline] = ACTIONS(2589), + [anon_sym_thread_local] = ACTIONS(2589), + [anon_sym___thread] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym___restrict__] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym__Noreturn] = ACTIONS(2589), + [anon_sym_noreturn] = ACTIONS(2589), + [anon_sym__Nonnull] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_constinit] = ACTIONS(2589), + [anon_sym_consteval] = ACTIONS(2589), + [anon_sym_alignas] = ACTIONS(2589), + [anon_sym__Alignas] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_class] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2589), + [anon_sym_decltype] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_private] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_operator] = ACTIONS(2589), + [anon_sym_friend] = ACTIONS(2589), + [anon_sym_public] = ACTIONS(2589), + [anon_sym_protected] = ACTIONS(2589), + [anon_sym_static_assert] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(5717), + }, + [STATE(1925)] = { + [sym_identifier] = ACTIONS(5835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5837), + [anon_sym_COMMA] = ACTIONS(5837), + [anon_sym_RPAREN] = ACTIONS(5837), + [anon_sym_LPAREN2] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5835), + [anon_sym_STAR] = ACTIONS(5837), + [anon_sym_SLASH] = ACTIONS(5835), + [anon_sym_PERCENT] = ACTIONS(5837), + [anon_sym_PIPE_PIPE] = ACTIONS(5837), + [anon_sym_AMP_AMP] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5835), + [anon_sym_CARET] = ACTIONS(5837), + [anon_sym_AMP] = ACTIONS(5835), + [anon_sym_EQ_EQ] = ACTIONS(5837), + [anon_sym_BANG_EQ] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5835), + [anon_sym_GT_EQ] = ACTIONS(5837), + [anon_sym_LT_EQ] = ACTIONS(5835), + [anon_sym_LT] = ACTIONS(5835), + [anon_sym_LT_LT] = ACTIONS(5837), + [anon_sym_GT_GT] = ACTIONS(5837), + [anon_sym_SEMI] = ACTIONS(5837), + [anon_sym___extension__] = ACTIONS(5835), + [anon_sym___attribute__] = ACTIONS(5835), + [anon_sym___attribute] = ACTIONS(5835), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym___based] = ACTIONS(5835), + [anon_sym_LBRACE] = ACTIONS(5837), + [anon_sym_RBRACE] = ACTIONS(5837), + [anon_sym_signed] = ACTIONS(5835), + [anon_sym_unsigned] = ACTIONS(5835), + [anon_sym_long] = ACTIONS(5835), + [anon_sym_short] = ACTIONS(5835), + [anon_sym_LBRACK] = ACTIONS(5837), + [anon_sym_RBRACK] = ACTIONS(5837), + [anon_sym_const] = ACTIONS(5835), + [anon_sym_constexpr] = ACTIONS(5835), + [anon_sym_volatile] = ACTIONS(5835), + [anon_sym_restrict] = ACTIONS(5835), + [anon_sym___restrict__] = ACTIONS(5835), + [anon_sym__Atomic] = ACTIONS(5835), + [anon_sym__Noreturn] = ACTIONS(5835), + [anon_sym_noreturn] = ACTIONS(5835), + [anon_sym__Nonnull] = ACTIONS(5835), + [anon_sym_mutable] = ACTIONS(5835), + [anon_sym_constinit] = ACTIONS(5835), + [anon_sym_consteval] = ACTIONS(5835), + [anon_sym_alignas] = ACTIONS(5835), + [anon_sym__Alignas] = ACTIONS(5835), + [sym_primitive_type] = ACTIONS(5835), + [anon_sym_QMARK] = ACTIONS(5837), + [anon_sym_LT_EQ_GT] = ACTIONS(5837), + [anon_sym_or] = ACTIONS(5835), + [anon_sym_and] = ACTIONS(5835), + [anon_sym_bitor] = ACTIONS(5835), + [anon_sym_xor] = ACTIONS(5835), + [anon_sym_bitand] = ACTIONS(5835), + [anon_sym_not_eq] = ACTIONS(5835), + [anon_sym_DASH_DASH] = ACTIONS(5837), + [anon_sym_PLUS_PLUS] = ACTIONS(5837), + [anon_sym_DOT] = ACTIONS(5835), + [anon_sym_DOT_STAR] = ACTIONS(5837), + [anon_sym_DASH_GT] = ACTIONS(5837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5835), + [anon_sym_decltype] = ACTIONS(5835), + [anon_sym_final] = ACTIONS(5835), + [anon_sym_override] = ACTIONS(5835), + [anon_sym_requires] = ACTIONS(5835), + }, + [STATE(1926)] = { + [sym_catch_clause] = STATE(1892), + [aux_sym_constructor_try_statement_repeat1] = STATE(1892), + [sym_identifier] = ACTIONS(2593), + [aux_sym_preproc_def_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token1] = ACTIONS(2593), + [aux_sym_preproc_if_token2] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token1] = ACTIONS(2593), + [aux_sym_preproc_ifdef_token2] = ACTIONS(2593), + [sym_preproc_directive] = ACTIONS(2593), + [anon_sym_LPAREN2] = ACTIONS(2595), + [anon_sym_TILDE] = ACTIONS(2595), + [anon_sym_STAR] = ACTIONS(2595), + [anon_sym_AMP_AMP] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym___extension__] = ACTIONS(2593), + [anon_sym_typedef] = ACTIONS(2593), + [anon_sym_virtual] = ACTIONS(2593), + [anon_sym_extern] = ACTIONS(2593), + [anon_sym___attribute__] = ACTIONS(2593), + [anon_sym___attribute] = ACTIONS(2593), + [anon_sym_using] = ACTIONS(2593), + [anon_sym_COLON_COLON] = ACTIONS(2595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2595), + [anon_sym___declspec] = ACTIONS(2593), + [anon_sym___based] = ACTIONS(2593), + [anon_sym_signed] = ACTIONS(2593), + [anon_sym_unsigned] = ACTIONS(2593), + [anon_sym_long] = ACTIONS(2593), + [anon_sym_short] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_register] = ACTIONS(2593), + [anon_sym_inline] = ACTIONS(2593), + [anon_sym___inline] = ACTIONS(2593), + [anon_sym___inline__] = ACTIONS(2593), + [anon_sym___forceinline] = ACTIONS(2593), + [anon_sym_thread_local] = ACTIONS(2593), + [anon_sym___thread] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2593), + [anon_sym_constexpr] = ACTIONS(2593), + [anon_sym_volatile] = ACTIONS(2593), + [anon_sym_restrict] = ACTIONS(2593), + [anon_sym___restrict__] = ACTIONS(2593), + [anon_sym__Atomic] = ACTIONS(2593), + [anon_sym__Noreturn] = ACTIONS(2593), + [anon_sym_noreturn] = ACTIONS(2593), + [anon_sym__Nonnull] = ACTIONS(2593), + [anon_sym_mutable] = ACTIONS(2593), + [anon_sym_constinit] = ACTIONS(2593), + [anon_sym_consteval] = ACTIONS(2593), + [anon_sym_alignas] = ACTIONS(2593), + [anon_sym__Alignas] = ACTIONS(2593), + [sym_primitive_type] = ACTIONS(2593), + [anon_sym_enum] = ACTIONS(2593), + [anon_sym_class] = ACTIONS(2593), + [anon_sym_struct] = ACTIONS(2593), + [anon_sym_union] = ACTIONS(2593), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2593), + [anon_sym_decltype] = ACTIONS(2593), + [anon_sym_explicit] = ACTIONS(2593), + [anon_sym_typename] = ACTIONS(2593), + [anon_sym_private] = ACTIONS(2593), + [anon_sym_template] = ACTIONS(2593), + [anon_sym_operator] = ACTIONS(2593), + [anon_sym_friend] = ACTIONS(2593), + [anon_sym_public] = ACTIONS(2593), + [anon_sym_protected] = ACTIONS(2593), + [anon_sym_static_assert] = ACTIONS(2593), + [anon_sym_catch] = ACTIONS(5672), + }, + [STATE(1927)] = { + [sym_template_argument_list] = STATE(1975), + [sym_identifier] = ACTIONS(5839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4180), + [anon_sym_COMMA] = ACTIONS(4180), + [anon_sym_RPAREN] = ACTIONS(4180), + [aux_sym_preproc_if_token2] = ACTIONS(4180), + [aux_sym_preproc_else_token1] = ACTIONS(4180), + [aux_sym_preproc_elif_token1] = ACTIONS(5839), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4180), + [anon_sym_LPAREN2] = ACTIONS(4180), + [anon_sym_DASH] = ACTIONS(5839), + [anon_sym_PLUS] = ACTIONS(5839), + [anon_sym_STAR] = ACTIONS(5839), + [anon_sym_SLASH] = ACTIONS(5839), + [anon_sym_PERCENT] = ACTIONS(5839), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_PIPE] = ACTIONS(5839), + [anon_sym_CARET] = ACTIONS(5839), + [anon_sym_AMP] = ACTIONS(5839), + [anon_sym_EQ_EQ] = ACTIONS(4180), + [anon_sym_BANG_EQ] = ACTIONS(4180), + [anon_sym_GT] = ACTIONS(5839), + [anon_sym_GT_EQ] = ACTIONS(4180), + [anon_sym_LT_EQ] = ACTIONS(5839), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_LT_LT] = ACTIONS(5839), + [anon_sym_GT_GT] = ACTIONS(5839), + [anon_sym_SEMI] = ACTIONS(4180), + [anon_sym___attribute__] = ACTIONS(5839), + [anon_sym___attribute] = ACTIONS(5839), + [anon_sym_COLON] = ACTIONS(5839), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4180), + [anon_sym_RBRACK] = ACTIONS(4180), + [anon_sym_EQ] = ACTIONS(5839), + [anon_sym_QMARK] = ACTIONS(4180), + [anon_sym_STAR_EQ] = ACTIONS(4180), + [anon_sym_SLASH_EQ] = ACTIONS(4180), + [anon_sym_PERCENT_EQ] = ACTIONS(4180), + [anon_sym_PLUS_EQ] = ACTIONS(4180), + [anon_sym_DASH_EQ] = ACTIONS(4180), + [anon_sym_LT_LT_EQ] = ACTIONS(4180), + [anon_sym_GT_GT_EQ] = ACTIONS(4180), + [anon_sym_AMP_EQ] = ACTIONS(4180), + [anon_sym_CARET_EQ] = ACTIONS(4180), + [anon_sym_PIPE_EQ] = ACTIONS(4180), + [anon_sym_and_eq] = ACTIONS(5839), + [anon_sym_or_eq] = ACTIONS(5839), + [anon_sym_xor_eq] = ACTIONS(5839), + [anon_sym_LT_EQ_GT] = ACTIONS(4180), + [anon_sym_or] = ACTIONS(5839), + [anon_sym_and] = ACTIONS(5839), + [anon_sym_bitor] = ACTIONS(5839), + [anon_sym_xor] = ACTIONS(5839), + [anon_sym_bitand] = ACTIONS(5839), + [anon_sym_not_eq] = ACTIONS(5839), + [anon_sym_DASH_DASH] = ACTIONS(4180), + [anon_sym_PLUS_PLUS] = ACTIONS(4180), + [anon_sym_DOT] = ACTIONS(5839), + [anon_sym_DOT_STAR] = ACTIONS(4180), + [anon_sym_DASH_GT] = ACTIONS(4180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5839), + [anon_sym_decltype] = ACTIONS(5839), + [anon_sym_final] = ACTIONS(5839), + [anon_sym_override] = ACTIONS(5839), + }, + [STATE(1928)] = { + [sym_identifier] = ACTIONS(3967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3969), + [anon_sym_COMMA] = ACTIONS(3969), + [anon_sym_RPAREN] = ACTIONS(3969), + [anon_sym_LPAREN2] = ACTIONS(3969), + [anon_sym_TILDE] = ACTIONS(3969), + [anon_sym_STAR] = ACTIONS(3969), + [anon_sym_AMP_AMP] = ACTIONS(3969), + [anon_sym_AMP] = ACTIONS(3967), + [anon_sym_SEMI] = ACTIONS(3969), + [anon_sym___extension__] = ACTIONS(3967), + [anon_sym_virtual] = ACTIONS(3967), + [anon_sym_extern] = ACTIONS(3967), + [anon_sym___attribute__] = ACTIONS(3967), + [anon_sym___attribute] = ACTIONS(3967), + [anon_sym_COLON] = ACTIONS(3967), + [anon_sym_COLON_COLON] = ACTIONS(3969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3969), + [anon_sym___declspec] = ACTIONS(3967), + [anon_sym___based] = ACTIONS(3967), + [anon_sym___cdecl] = ACTIONS(3967), + [anon_sym___clrcall] = ACTIONS(3967), + [anon_sym___stdcall] = ACTIONS(3967), + [anon_sym___fastcall] = ACTIONS(3967), + [anon_sym___thiscall] = ACTIONS(3967), + [anon_sym___vectorcall] = ACTIONS(3967), + [anon_sym_LBRACE] = ACTIONS(3969), + [anon_sym_LBRACK] = ACTIONS(3967), + [anon_sym_static] = ACTIONS(3967), + [anon_sym_EQ] = ACTIONS(3969), + [anon_sym_register] = ACTIONS(3967), + [anon_sym_inline] = ACTIONS(3967), + [anon_sym___inline] = ACTIONS(3967), + [anon_sym___inline__] = ACTIONS(3967), + [anon_sym___forceinline] = ACTIONS(3967), + [anon_sym_thread_local] = ACTIONS(3967), + [anon_sym___thread] = ACTIONS(3967), + [anon_sym_const] = ACTIONS(3967), + [anon_sym_constexpr] = ACTIONS(3967), + [anon_sym_volatile] = ACTIONS(3967), + [anon_sym_restrict] = ACTIONS(3967), + [anon_sym___restrict__] = ACTIONS(3967), + [anon_sym__Atomic] = ACTIONS(3967), + [anon_sym__Noreturn] = ACTIONS(3967), + [anon_sym_noreturn] = ACTIONS(3967), + [anon_sym__Nonnull] = ACTIONS(3967), + [anon_sym_mutable] = ACTIONS(3967), + [anon_sym_constinit] = ACTIONS(3967), + [anon_sym_consteval] = ACTIONS(3967), + [anon_sym_alignas] = ACTIONS(3967), + [anon_sym__Alignas] = ACTIONS(3967), + [anon_sym_asm] = ACTIONS(3967), + [anon_sym___asm__] = ACTIONS(3967), + [anon_sym___asm] = ACTIONS(3967), + [anon_sym_DASH_GT] = ACTIONS(3969), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3967), + [anon_sym_final] = ACTIONS(3967), + [anon_sym_override] = ACTIONS(3967), + [anon_sym_explicit] = ACTIONS(3967), + [anon_sym_private] = ACTIONS(3967), + [anon_sym_template] = ACTIONS(3967), + [anon_sym_GT2] = ACTIONS(3969), + [anon_sym_operator] = ACTIONS(3967), + [anon_sym_try] = ACTIONS(3967), + [anon_sym_public] = ACTIONS(3967), + [anon_sym_protected] = ACTIONS(3967), + [anon_sym_noexcept] = ACTIONS(3967), + [anon_sym_throw] = ACTIONS(3967), + [anon_sym_requires] = ACTIONS(3967), + }, + [STATE(1929)] = { + [sym_template_argument_list] = STATE(1954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4917), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LPAREN2] = ACTIONS(4919), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4926), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4919), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4926), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(5843), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_const] = ACTIONS(4915), + [anon_sym_constexpr] = ACTIONS(4922), + [anon_sym_volatile] = ACTIONS(4922), + [anon_sym_restrict] = ACTIONS(4922), + [anon_sym___restrict__] = ACTIONS(4922), + [anon_sym__Atomic] = ACTIONS(4922), + [anon_sym__Noreturn] = ACTIONS(4922), + [anon_sym_noreturn] = ACTIONS(4922), + [anon_sym__Nonnull] = ACTIONS(4922), + [anon_sym_mutable] = ACTIONS(4922), + [anon_sym_constinit] = ACTIONS(4922), + [anon_sym_consteval] = ACTIONS(4922), + [anon_sym_alignas] = ACTIONS(4922), + [anon_sym__Alignas] = ACTIONS(4922), + [anon_sym_QMARK] = ACTIONS(4917), + [anon_sym_STAR_EQ] = ACTIONS(4917), + [anon_sym_SLASH_EQ] = ACTIONS(4917), + [anon_sym_PERCENT_EQ] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4917), + [anon_sym_DASH_EQ] = ACTIONS(4917), + [anon_sym_LT_LT_EQ] = ACTIONS(4917), + [anon_sym_GT_GT_EQ] = ACTIONS(4917), + [anon_sym_AMP_EQ] = ACTIONS(4917), + [anon_sym_CARET_EQ] = ACTIONS(4917), + [anon_sym_PIPE_EQ] = ACTIONS(4917), + [anon_sym_and_eq] = ACTIONS(4917), + [anon_sym_or_eq] = ACTIONS(4917), + [anon_sym_xor_eq] = ACTIONS(4917), + [anon_sym_LT_EQ_GT] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4924), + [anon_sym_and] = ACTIONS(4924), + [anon_sym_bitor] = ACTIONS(4917), + [anon_sym_xor] = ACTIONS(4924), + [anon_sym_bitand] = ACTIONS(4917), + [anon_sym_not_eq] = ACTIONS(4917), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4922), + [anon_sym_decltype] = ACTIONS(4922), }, [STATE(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), + [sym_argument_list] = STATE(2530), + [sym_initializer_list] = STATE(2530), + [sym_decltype_auto] = STATE(2271), + [sym_new_declarator] = STATE(2298), + [sym_identifier] = ACTIONS(5846), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5848), + [anon_sym_COMMA] = ACTIONS(5848), + [anon_sym_RPAREN] = ACTIONS(5848), + [aux_sym_preproc_if_token2] = ACTIONS(5848), + [aux_sym_preproc_else_token1] = ACTIONS(5848), + [aux_sym_preproc_elif_token1] = ACTIONS(5846), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5848), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5848), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5846), + [anon_sym_PLUS] = ACTIONS(5846), + [anon_sym_STAR] = ACTIONS(5846), + [anon_sym_SLASH] = ACTIONS(5846), + [anon_sym_PERCENT] = ACTIONS(5846), + [anon_sym_PIPE_PIPE] = ACTIONS(5848), + [anon_sym_AMP_AMP] = ACTIONS(5848), + [anon_sym_PIPE] = ACTIONS(5846), + [anon_sym_CARET] = ACTIONS(5846), + [anon_sym_AMP] = ACTIONS(5846), + [anon_sym_EQ_EQ] = ACTIONS(5848), + [anon_sym_BANG_EQ] = ACTIONS(5848), + [anon_sym_GT] = ACTIONS(5846), + [anon_sym_GT_EQ] = ACTIONS(5848), + [anon_sym_LT_EQ] = ACTIONS(5846), + [anon_sym_LT] = ACTIONS(5846), + [anon_sym_LT_LT] = ACTIONS(5846), + [anon_sym_GT_GT] = ACTIONS(5846), + [anon_sym_SEMI] = ACTIONS(5848), + [anon_sym___attribute__] = ACTIONS(5846), + [anon_sym___attribute] = ACTIONS(5846), + [anon_sym_COLON] = ACTIONS(5848), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(5848), + [anon_sym_LBRACK] = ACTIONS(5852), + [anon_sym_RBRACK] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(5846), + [anon_sym_QMARK] = ACTIONS(5848), + [anon_sym_STAR_EQ] = ACTIONS(5848), + [anon_sym_SLASH_EQ] = ACTIONS(5848), + [anon_sym_PERCENT_EQ] = ACTIONS(5848), + [anon_sym_PLUS_EQ] = ACTIONS(5848), + [anon_sym_DASH_EQ] = ACTIONS(5848), + [anon_sym_LT_LT_EQ] = ACTIONS(5848), + [anon_sym_GT_GT_EQ] = ACTIONS(5848), + [anon_sym_AMP_EQ] = ACTIONS(5848), + [anon_sym_CARET_EQ] = ACTIONS(5848), + [anon_sym_PIPE_EQ] = ACTIONS(5848), + [anon_sym_and_eq] = ACTIONS(5846), + [anon_sym_or_eq] = ACTIONS(5846), + [anon_sym_xor_eq] = ACTIONS(5846), + [anon_sym_LT_EQ_GT] = ACTIONS(5848), + [anon_sym_or] = ACTIONS(5846), + [anon_sym_and] = ACTIONS(5846), + [anon_sym_bitor] = ACTIONS(5846), + [anon_sym_xor] = ACTIONS(5846), + [anon_sym_bitand] = ACTIONS(5846), + [anon_sym_not_eq] = ACTIONS(5846), + [anon_sym_DASH_DASH] = ACTIONS(5848), + [anon_sym_PLUS_PLUS] = ACTIONS(5848), + [anon_sym_DOT] = ACTIONS(5846), + [anon_sym_DOT_STAR] = ACTIONS(5848), + [anon_sym_DASH_GT] = ACTIONS(5848), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5854), + [anon_sym_decltype] = ACTIONS(5856), }, [STATE(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), + [sym_identifier] = ACTIONS(5470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(5472), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_TILDE] = ACTIONS(5472), + [anon_sym_STAR] = ACTIONS(5472), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym_SEMI] = ACTIONS(5472), + [anon_sym___extension__] = ACTIONS(5470), + [anon_sym_virtual] = ACTIONS(5470), + [anon_sym_extern] = ACTIONS(5470), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_COLON] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), + [anon_sym___declspec] = ACTIONS(5470), + [anon_sym___based] = ACTIONS(5470), + [anon_sym___cdecl] = ACTIONS(5470), + [anon_sym___clrcall] = ACTIONS(5470), + [anon_sym___stdcall] = ACTIONS(5470), + [anon_sym___fastcall] = ACTIONS(5470), + [anon_sym___thiscall] = ACTIONS(5470), + [anon_sym___vectorcall] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_static] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(5472), + [anon_sym_register] = ACTIONS(5470), + [anon_sym_inline] = ACTIONS(5470), + [anon_sym___inline] = ACTIONS(5470), + [anon_sym___inline__] = ACTIONS(5470), + [anon_sym___forceinline] = ACTIONS(5470), + [anon_sym_thread_local] = ACTIONS(5470), + [anon_sym___thread] = ACTIONS(5470), + [anon_sym_const] = ACTIONS(5470), + [anon_sym_constexpr] = ACTIONS(5470), + [anon_sym_volatile] = ACTIONS(5470), + [anon_sym_restrict] = ACTIONS(5470), + [anon_sym___restrict__] = ACTIONS(5470), + [anon_sym__Atomic] = ACTIONS(5470), + [anon_sym__Noreturn] = ACTIONS(5470), + [anon_sym_noreturn] = ACTIONS(5470), + [anon_sym__Nonnull] = ACTIONS(5470), + [anon_sym_mutable] = ACTIONS(5470), + [anon_sym_constinit] = ACTIONS(5470), + [anon_sym_consteval] = ACTIONS(5470), + [anon_sym_alignas] = ACTIONS(5470), + [anon_sym__Alignas] = ACTIONS(5470), + [anon_sym_or] = ACTIONS(5470), + [anon_sym_and] = ACTIONS(5470), + [anon_sym_asm] = ACTIONS(5470), + [anon_sym___asm__] = ACTIONS(5470), + [anon_sym___asm] = ACTIONS(5470), + [anon_sym_DASH_GT] = ACTIONS(5472), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_final] = ACTIONS(5470), + [anon_sym_override] = ACTIONS(5470), + [anon_sym_template] = ACTIONS(5470), + [anon_sym_GT2] = ACTIONS(5472), + [anon_sym_operator] = ACTIONS(5470), + [anon_sym_try] = ACTIONS(5470), + [anon_sym_noexcept] = ACTIONS(5470), + [anon_sym_throw] = ACTIONS(5470), + [anon_sym_requires] = ACTIONS(5470), }, [STATE(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_ms_based_modifier] = STATE(8310), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(3870), + [sym__declarator] = STATE(6433), + [sym__abstract_declarator] = STATE(6689), + [sym_parenthesized_declarator] = STATE(6137), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_function_declarator] = STATE(6137), + [sym_abstract_function_declarator] = STATE(6117), + [sym_array_declarator] = STATE(6137), + [sym_abstract_array_declarator] = STATE(6117), + [sym_type_qualifier] = STATE(2607), + [sym_alignas_qualifier] = STATE(4359), + [sym_parameter_list] = STATE(3100), + [sym_decltype] = STATE(8381), + [sym_reference_declarator] = STATE(6137), + [sym_abstract_reference_declarator] = STATE(6117), + [sym_structured_binding_declarator] = STATE(6137), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5965), + [sym_qualified_identifier] = STATE(6137), + [sym_operator_name] = STATE(6137), + [aux_sym__type_definition_type_repeat1] = STATE(2607), + [aux_sym_pointer_declarator_repeat1] = STATE(3870), + [sym_identifier] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(5860), + [anon_sym_LPAREN2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(5862), + [anon_sym_AMP_AMP] = ACTIONS(5864), + [anon_sym_AMP] = ACTIONS(5866), + [anon_sym___extension__] = ACTIONS(3351), + [anon_sym___attribute__] = ACTIONS(5868), + [anon_sym___attribute] = ACTIONS(5868), + [anon_sym_COLON_COLON] = ACTIONS(5870), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_EQ] = ACTIONS(5860), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), [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), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(5860), + [anon_sym_operator] = ACTIONS(1850), }, [STATE(1933)] = { + [sym_argument_list] = STATE(2486), + [sym_initializer_list] = STATE(2486), + [sym_decltype_auto] = STATE(2271), + [sym_new_declarator] = STATE(2337), + [sym_identifier] = ACTIONS(5874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5876), + [anon_sym_COMMA] = ACTIONS(5876), + [anon_sym_RPAREN] = ACTIONS(5876), + [aux_sym_preproc_if_token2] = ACTIONS(5876), + [aux_sym_preproc_else_token1] = ACTIONS(5876), + [aux_sym_preproc_elif_token1] = ACTIONS(5874), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5876), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5876), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5874), + [anon_sym_PLUS] = ACTIONS(5874), + [anon_sym_STAR] = ACTIONS(5874), + [anon_sym_SLASH] = ACTIONS(5874), + [anon_sym_PERCENT] = ACTIONS(5874), + [anon_sym_PIPE_PIPE] = ACTIONS(5876), + [anon_sym_AMP_AMP] = ACTIONS(5876), + [anon_sym_PIPE] = ACTIONS(5874), + [anon_sym_CARET] = ACTIONS(5874), + [anon_sym_AMP] = ACTIONS(5874), + [anon_sym_EQ_EQ] = ACTIONS(5876), + [anon_sym_BANG_EQ] = ACTIONS(5876), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_GT_EQ] = ACTIONS(5876), + [anon_sym_LT_EQ] = ACTIONS(5874), + [anon_sym_LT] = ACTIONS(5874), + [anon_sym_LT_LT] = ACTIONS(5874), + [anon_sym_GT_GT] = ACTIONS(5874), + [anon_sym_SEMI] = ACTIONS(5876), + [anon_sym___attribute__] = ACTIONS(5874), + [anon_sym___attribute] = ACTIONS(5874), + [anon_sym_COLON] = ACTIONS(5876), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(5852), + [anon_sym_RBRACK] = ACTIONS(5876), + [anon_sym_EQ] = ACTIONS(5874), + [anon_sym_QMARK] = ACTIONS(5876), + [anon_sym_STAR_EQ] = ACTIONS(5876), + [anon_sym_SLASH_EQ] = ACTIONS(5876), + [anon_sym_PERCENT_EQ] = ACTIONS(5876), + [anon_sym_PLUS_EQ] = ACTIONS(5876), + [anon_sym_DASH_EQ] = ACTIONS(5876), + [anon_sym_LT_LT_EQ] = ACTIONS(5876), + [anon_sym_GT_GT_EQ] = ACTIONS(5876), + [anon_sym_AMP_EQ] = ACTIONS(5876), + [anon_sym_CARET_EQ] = ACTIONS(5876), + [anon_sym_PIPE_EQ] = ACTIONS(5876), + [anon_sym_and_eq] = ACTIONS(5874), + [anon_sym_or_eq] = ACTIONS(5874), + [anon_sym_xor_eq] = ACTIONS(5874), + [anon_sym_LT_EQ_GT] = ACTIONS(5876), + [anon_sym_or] = ACTIONS(5874), + [anon_sym_and] = ACTIONS(5874), + [anon_sym_bitor] = ACTIONS(5874), + [anon_sym_xor] = ACTIONS(5874), + [anon_sym_bitand] = ACTIONS(5874), + [anon_sym_not_eq] = ACTIONS(5874), + [anon_sym_DASH_DASH] = ACTIONS(5876), + [anon_sym_PLUS_PLUS] = ACTIONS(5876), + [anon_sym_DOT] = ACTIONS(5874), + [anon_sym_DOT_STAR] = ACTIONS(5876), + [anon_sym_DASH_GT] = ACTIONS(5876), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5854), + [anon_sym_decltype] = ACTIONS(5856), + }, + [STATE(1934)] = { + [sym_identifier] = ACTIONS(3963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3965), + [anon_sym_COMMA] = ACTIONS(3965), + [anon_sym_RPAREN] = ACTIONS(3965), + [anon_sym_LPAREN2] = ACTIONS(3965), + [anon_sym_TILDE] = ACTIONS(3965), + [anon_sym_STAR] = ACTIONS(3965), + [anon_sym_AMP_AMP] = ACTIONS(3965), + [anon_sym_AMP] = ACTIONS(3963), + [anon_sym_SEMI] = ACTIONS(3965), + [anon_sym___extension__] = ACTIONS(3963), + [anon_sym_virtual] = ACTIONS(3963), + [anon_sym_extern] = ACTIONS(3963), + [anon_sym___attribute__] = ACTIONS(3963), + [anon_sym___attribute] = ACTIONS(3963), + [anon_sym_COLON] = ACTIONS(3963), + [anon_sym_COLON_COLON] = ACTIONS(3965), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3965), + [anon_sym___declspec] = ACTIONS(3963), + [anon_sym___based] = ACTIONS(3963), + [anon_sym___cdecl] = ACTIONS(3963), + [anon_sym___clrcall] = ACTIONS(3963), + [anon_sym___stdcall] = ACTIONS(3963), + [anon_sym___fastcall] = ACTIONS(3963), + [anon_sym___thiscall] = ACTIONS(3963), + [anon_sym___vectorcall] = ACTIONS(3963), + [anon_sym_LBRACE] = ACTIONS(3965), + [anon_sym_LBRACK] = ACTIONS(3963), + [anon_sym_static] = ACTIONS(3963), + [anon_sym_EQ] = ACTIONS(3965), + [anon_sym_register] = ACTIONS(3963), + [anon_sym_inline] = ACTIONS(3963), + [anon_sym___inline] = ACTIONS(3963), + [anon_sym___inline__] = ACTIONS(3963), + [anon_sym___forceinline] = ACTIONS(3963), + [anon_sym_thread_local] = ACTIONS(3963), + [anon_sym___thread] = ACTIONS(3963), + [anon_sym_const] = ACTIONS(3963), + [anon_sym_constexpr] = ACTIONS(3963), + [anon_sym_volatile] = ACTIONS(3963), + [anon_sym_restrict] = ACTIONS(3963), + [anon_sym___restrict__] = ACTIONS(3963), + [anon_sym__Atomic] = ACTIONS(3963), + [anon_sym__Noreturn] = ACTIONS(3963), + [anon_sym_noreturn] = ACTIONS(3963), + [anon_sym__Nonnull] = ACTIONS(3963), + [anon_sym_mutable] = ACTIONS(3963), + [anon_sym_constinit] = ACTIONS(3963), + [anon_sym_consteval] = ACTIONS(3963), + [anon_sym_alignas] = ACTIONS(3963), + [anon_sym__Alignas] = ACTIONS(3963), + [anon_sym_asm] = ACTIONS(3963), + [anon_sym___asm__] = ACTIONS(3963), + [anon_sym___asm] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(3965), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3963), + [anon_sym_final] = ACTIONS(3963), + [anon_sym_override] = ACTIONS(3963), + [anon_sym_explicit] = ACTIONS(3963), + [anon_sym_private] = ACTIONS(3963), + [anon_sym_template] = ACTIONS(3963), + [anon_sym_GT2] = ACTIONS(3965), + [anon_sym_operator] = ACTIONS(3963), + [anon_sym_try] = ACTIONS(3963), + [anon_sym_public] = ACTIONS(3963), + [anon_sym_protected] = ACTIONS(3963), + [anon_sym_noexcept] = ACTIONS(3963), + [anon_sym_throw] = ACTIONS(3963), + [anon_sym_requires] = ACTIONS(3963), + }, + [STATE(1935)] = { + [sym_template_argument_list] = STATE(1975), + [sym_identifier] = ACTIONS(4915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4922), + [anon_sym_COMMA] = ACTIONS(4922), + [anon_sym_RPAREN] = ACTIONS(4922), + [aux_sym_preproc_if_token2] = ACTIONS(4922), + [aux_sym_preproc_else_token1] = ACTIONS(4922), + [aux_sym_preproc_elif_token1] = ACTIONS(4915), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4922), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4922), + [anon_sym_LPAREN2] = ACTIONS(4922), + [anon_sym_DASH] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4915), + [anon_sym_STAR] = ACTIONS(4915), + [anon_sym_SLASH] = ACTIONS(4915), + [anon_sym_PERCENT] = ACTIONS(4915), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_PIPE] = ACTIONS(4915), + [anon_sym_CARET] = ACTIONS(4915), + [anon_sym_AMP] = ACTIONS(4915), + [anon_sym_EQ_EQ] = ACTIONS(4922), + [anon_sym_BANG_EQ] = ACTIONS(4922), + [anon_sym_GT] = ACTIONS(4915), + [anon_sym_GT_EQ] = ACTIONS(4922), + [anon_sym_LT_EQ] = ACTIONS(4915), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_LT_LT] = ACTIONS(4915), + [anon_sym_GT_GT] = ACTIONS(4915), + [anon_sym_SEMI] = ACTIONS(4922), + [anon_sym___attribute__] = ACTIONS(4915), + [anon_sym___attribute] = ACTIONS(4915), + [anon_sym_COLON] = ACTIONS(4915), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4922), + [anon_sym_LBRACK] = ACTIONS(4922), + [anon_sym_RBRACK] = ACTIONS(4922), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_QMARK] = ACTIONS(4922), + [anon_sym_STAR_EQ] = ACTIONS(4922), + [anon_sym_SLASH_EQ] = ACTIONS(4922), + [anon_sym_PERCENT_EQ] = ACTIONS(4922), + [anon_sym_PLUS_EQ] = ACTIONS(4922), + [anon_sym_DASH_EQ] = ACTIONS(4922), + [anon_sym_LT_LT_EQ] = ACTIONS(4922), + [anon_sym_GT_GT_EQ] = ACTIONS(4922), + [anon_sym_AMP_EQ] = ACTIONS(4922), + [anon_sym_CARET_EQ] = ACTIONS(4922), + [anon_sym_PIPE_EQ] = ACTIONS(4922), + [anon_sym_and_eq] = ACTIONS(4915), + [anon_sym_or_eq] = ACTIONS(4915), + [anon_sym_xor_eq] = ACTIONS(4915), + [anon_sym_LT_EQ_GT] = ACTIONS(4922), + [anon_sym_or] = ACTIONS(4915), + [anon_sym_and] = ACTIONS(4915), + [anon_sym_bitor] = ACTIONS(4915), + [anon_sym_xor] = ACTIONS(4915), + [anon_sym_bitand] = ACTIONS(4915), + [anon_sym_not_eq] = ACTIONS(4915), + [anon_sym_DASH_DASH] = ACTIONS(4922), + [anon_sym_PLUS_PLUS] = ACTIONS(4922), + [anon_sym_DOT] = ACTIONS(4915), + [anon_sym_DOT_STAR] = ACTIONS(4922), + [anon_sym_DASH_GT] = ACTIONS(4922), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4915), + [anon_sym_decltype] = ACTIONS(4915), + [anon_sym_final] = ACTIONS(4915), + [anon_sym_override] = ACTIONS(4915), + }, + [STATE(1936)] = { + [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(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_LBRACE] = ACTIONS(5703), + [anon_sym_RBRACE] = ACTIONS(5703), + [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), + [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), + }, + [STATE(1937)] = { + [sym_identifier] = ACTIONS(5470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(5472), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_TILDE] = ACTIONS(5472), + [anon_sym_STAR] = ACTIONS(5472), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym_SEMI] = ACTIONS(5472), + [anon_sym___extension__] = ACTIONS(5470), + [anon_sym_virtual] = ACTIONS(5470), + [anon_sym_extern] = ACTIONS(5470), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_COLON] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), + [anon_sym___declspec] = ACTIONS(5470), + [anon_sym___based] = ACTIONS(5470), + [anon_sym___cdecl] = ACTIONS(5470), + [anon_sym___clrcall] = ACTIONS(5470), + [anon_sym___stdcall] = ACTIONS(5470), + [anon_sym___fastcall] = ACTIONS(5470), + [anon_sym___thiscall] = ACTIONS(5470), + [anon_sym___vectorcall] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_static] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(5472), + [anon_sym_register] = ACTIONS(5470), + [anon_sym_inline] = ACTIONS(5470), + [anon_sym___inline] = ACTIONS(5470), + [anon_sym___inline__] = ACTIONS(5470), + [anon_sym___forceinline] = ACTIONS(5470), + [anon_sym_thread_local] = ACTIONS(5470), + [anon_sym___thread] = ACTIONS(5470), + [anon_sym_const] = ACTIONS(5470), + [anon_sym_constexpr] = ACTIONS(5470), + [anon_sym_volatile] = ACTIONS(5470), + [anon_sym_restrict] = ACTIONS(5470), + [anon_sym___restrict__] = ACTIONS(5470), + [anon_sym__Atomic] = ACTIONS(5470), + [anon_sym__Noreturn] = ACTIONS(5470), + [anon_sym_noreturn] = ACTIONS(5470), + [anon_sym__Nonnull] = ACTIONS(5470), + [anon_sym_mutable] = ACTIONS(5470), + [anon_sym_constinit] = ACTIONS(5470), + [anon_sym_consteval] = ACTIONS(5470), + [anon_sym_alignas] = ACTIONS(5470), + [anon_sym__Alignas] = ACTIONS(5470), + [anon_sym_or] = ACTIONS(5470), + [anon_sym_and] = ACTIONS(5470), + [anon_sym_asm] = ACTIONS(5470), + [anon_sym___asm__] = ACTIONS(5470), + [anon_sym___asm] = ACTIONS(5470), + [anon_sym_DASH_GT] = ACTIONS(5472), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_final] = ACTIONS(5470), + [anon_sym_override] = ACTIONS(5470), + [anon_sym_template] = ACTIONS(5470), + [anon_sym_GT2] = ACTIONS(5472), + [anon_sym_operator] = ACTIONS(5470), + [anon_sym_try] = ACTIONS(5470), + [anon_sym_noexcept] = ACTIONS(5470), + [anon_sym_throw] = ACTIONS(5470), + [anon_sym_requires] = ACTIONS(5470), + }, + [STATE(1938)] = { + [sym_identifier] = ACTIONS(5470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5472), + [anon_sym_COMMA] = ACTIONS(5472), + [anon_sym_RPAREN] = ACTIONS(5472), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_TILDE] = ACTIONS(5472), + [anon_sym_STAR] = ACTIONS(5472), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym_SEMI] = ACTIONS(5472), + [anon_sym___extension__] = ACTIONS(5470), + [anon_sym_virtual] = ACTIONS(5470), + [anon_sym_extern] = ACTIONS(5470), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_COLON] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), + [anon_sym___declspec] = ACTIONS(5470), + [anon_sym___based] = ACTIONS(5470), + [anon_sym___cdecl] = ACTIONS(5470), + [anon_sym___clrcall] = ACTIONS(5470), + [anon_sym___stdcall] = ACTIONS(5470), + [anon_sym___fastcall] = ACTIONS(5470), + [anon_sym___thiscall] = ACTIONS(5470), + [anon_sym___vectorcall] = ACTIONS(5470), + [anon_sym_LBRACE] = ACTIONS(5472), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_static] = ACTIONS(5470), + [anon_sym_EQ] = ACTIONS(5472), + [anon_sym_register] = ACTIONS(5470), + [anon_sym_inline] = ACTIONS(5470), + [anon_sym___inline] = ACTIONS(5470), + [anon_sym___inline__] = ACTIONS(5470), + [anon_sym___forceinline] = ACTIONS(5470), + [anon_sym_thread_local] = ACTIONS(5470), + [anon_sym___thread] = ACTIONS(5470), + [anon_sym_const] = ACTIONS(5470), + [anon_sym_constexpr] = ACTIONS(5470), + [anon_sym_volatile] = ACTIONS(5470), + [anon_sym_restrict] = ACTIONS(5470), + [anon_sym___restrict__] = ACTIONS(5470), + [anon_sym__Atomic] = ACTIONS(5470), + [anon_sym__Noreturn] = ACTIONS(5470), + [anon_sym_noreturn] = ACTIONS(5470), + [anon_sym__Nonnull] = ACTIONS(5470), + [anon_sym_mutable] = ACTIONS(5470), + [anon_sym_constinit] = ACTIONS(5470), + [anon_sym_consteval] = ACTIONS(5470), + [anon_sym_alignas] = ACTIONS(5470), + [anon_sym__Alignas] = ACTIONS(5470), + [anon_sym_or] = ACTIONS(5470), + [anon_sym_and] = ACTIONS(5470), + [anon_sym_asm] = ACTIONS(5470), + [anon_sym___asm__] = ACTIONS(5470), + [anon_sym___asm] = ACTIONS(5470), + [anon_sym_DASH_GT] = ACTIONS(5472), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_final] = ACTIONS(5470), + [anon_sym_override] = ACTIONS(5470), + [anon_sym_template] = ACTIONS(5470), + [anon_sym_GT2] = ACTIONS(5472), + [anon_sym_operator] = ACTIONS(5470), + [anon_sym_try] = ACTIONS(5470), + [anon_sym_noexcept] = ACTIONS(5470), + [anon_sym_throw] = ACTIONS(5470), + [anon_sym_requires] = ACTIONS(5470), + }, + [STATE(1939)] = { [sym_identifier] = ACTIONS(1940), [anon_sym_LPAREN2] = ACTIONS(1938), [anon_sym_TILDE] = ACTIONS(1938), @@ -265846,79 +266932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1940), [anon_sym_concept] = ACTIONS(1940), }, - [STATE(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(4991), - [anon_sym_decltype] = ACTIONS(4991), - [anon_sym_GT2] = ACTIONS(4988), - }, - [STATE(1935)] = { + [STATE(1940)] = { [sym_identifier] = ACTIONS(1936), [anon_sym_LPAREN2] = ACTIONS(1934), [anon_sym_TILDE] = ACTIONS(1934), @@ -265990,11 +267004,514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(1936), [anon_sym_concept] = ACTIONS(1936), }, - [STATE(1936)] = { + [STATE(1941)] = { + [sym_identifier] = ACTIONS(5537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5539), + [anon_sym_COMMA] = ACTIONS(5539), + [anon_sym_RPAREN] = ACTIONS(5539), + [aux_sym_preproc_if_token2] = ACTIONS(5539), + [aux_sym_preproc_else_token1] = ACTIONS(5539), + [aux_sym_preproc_elif_token1] = ACTIONS(5537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5539), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5539), + [anon_sym_LPAREN2] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_STAR] = ACTIONS(5539), + [anon_sym_SLASH] = ACTIONS(5537), + [anon_sym_PERCENT] = ACTIONS(5539), + [anon_sym_PIPE_PIPE] = ACTIONS(5539), + [anon_sym_AMP_AMP] = ACTIONS(5539), + [anon_sym_PIPE] = ACTIONS(5537), + [anon_sym_CARET] = ACTIONS(5539), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_EQ_EQ] = ACTIONS(5539), + [anon_sym_BANG_EQ] = ACTIONS(5539), + [anon_sym_GT] = ACTIONS(5537), + [anon_sym_GT_EQ] = ACTIONS(5539), + [anon_sym_LT_EQ] = ACTIONS(5537), + [anon_sym_LT] = ACTIONS(5537), + [anon_sym_LT_LT] = ACTIONS(5539), + [anon_sym_GT_GT] = ACTIONS(5539), + [anon_sym_SEMI] = ACTIONS(5539), + [anon_sym___extension__] = ACTIONS(5537), + [anon_sym___attribute__] = ACTIONS(5537), + [anon_sym___attribute] = ACTIONS(5537), + [anon_sym_COLON] = ACTIONS(5539), + [anon_sym_LBRACE] = ACTIONS(5539), + [anon_sym_RBRACE] = ACTIONS(5539), + [anon_sym_LBRACK] = ACTIONS(5539), + [anon_sym_RBRACK] = ACTIONS(5539), + [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), + [anon_sym_QMARK] = ACTIONS(5539), + [anon_sym_LT_EQ_GT] = ACTIONS(5539), + [anon_sym_or] = ACTIONS(5537), + [anon_sym_and] = ACTIONS(5537), + [anon_sym_bitor] = ACTIONS(5537), + [anon_sym_xor] = ACTIONS(5537), + [anon_sym_bitand] = ACTIONS(5537), + [anon_sym_not_eq] = ACTIONS(5537), + [anon_sym_DASH_DASH] = ACTIONS(5539), + [anon_sym_PLUS_PLUS] = ACTIONS(5539), + [anon_sym_DOT] = ACTIONS(5537), + [anon_sym_DOT_STAR] = ACTIONS(5539), + [anon_sym_DASH_GT] = ACTIONS(5539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5537), + [anon_sym_decltype] = ACTIONS(5537), + [anon_sym_final] = ACTIONS(5537), + [anon_sym_override] = ACTIONS(5537), + [anon_sym_requires] = ACTIONS(5537), + }, + [STATE(1942)] = { + [sym_argument_list] = STATE(2519), + [sym_initializer_list] = STATE(2519), + [sym_decltype_auto] = STATE(2271), + [sym_new_declarator] = STATE(2336), + [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(5850), + [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(5852), + [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(5854), + [anon_sym_decltype] = ACTIONS(5856), + }, + [STATE(1943)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5004), + [anon_sym_COMMA] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5009), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_const] = ACTIONS(5000), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym___restrict__] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym__Noreturn] = ACTIONS(5007), + [anon_sym_noreturn] = ACTIONS(5007), + [anon_sym__Nonnull] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_constinit] = ACTIONS(5007), + [anon_sym_consteval] = ACTIONS(5007), + [anon_sym_alignas] = ACTIONS(5007), + [anon_sym__Alignas] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5009), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_and_eq] = ACTIONS(5002), + [anon_sym_or_eq] = ACTIONS(5002), + [anon_sym_xor_eq] = ACTIONS(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + [anon_sym_GT2] = ACTIONS(5004), + }, + [STATE(1944)] = { + [sym_argument_list] = STATE(2555), + [sym_initializer_list] = STATE(2555), + [sym_decltype_auto] = STATE(2271), + [sym_new_declarator] = STATE(2273), + [sym_identifier] = ACTIONS(5885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5887), + [anon_sym_COMMA] = ACTIONS(5887), + [anon_sym_RPAREN] = ACTIONS(5887), + [aux_sym_preproc_if_token2] = ACTIONS(5887), + [aux_sym_preproc_else_token1] = ACTIONS(5887), + [aux_sym_preproc_elif_token1] = ACTIONS(5885), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5887), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5887), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(5885), + [anon_sym_PLUS] = ACTIONS(5885), + [anon_sym_STAR] = ACTIONS(5885), + [anon_sym_SLASH] = ACTIONS(5885), + [anon_sym_PERCENT] = ACTIONS(5885), + [anon_sym_PIPE_PIPE] = ACTIONS(5887), + [anon_sym_AMP_AMP] = ACTIONS(5887), + [anon_sym_PIPE] = ACTIONS(5885), + [anon_sym_CARET] = ACTIONS(5885), + [anon_sym_AMP] = ACTIONS(5885), + [anon_sym_EQ_EQ] = ACTIONS(5887), + [anon_sym_BANG_EQ] = ACTIONS(5887), + [anon_sym_GT] = ACTIONS(5885), + [anon_sym_GT_EQ] = ACTIONS(5887), + [anon_sym_LT_EQ] = ACTIONS(5885), + [anon_sym_LT] = ACTIONS(5885), + [anon_sym_LT_LT] = ACTIONS(5885), + [anon_sym_GT_GT] = ACTIONS(5885), + [anon_sym_SEMI] = ACTIONS(5887), + [anon_sym___attribute__] = ACTIONS(5885), + [anon_sym___attribute] = ACTIONS(5885), + [anon_sym_COLON] = ACTIONS(5887), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(5887), + [anon_sym_LBRACK] = ACTIONS(5852), + [anon_sym_RBRACK] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(5885), + [anon_sym_QMARK] = ACTIONS(5887), + [anon_sym_STAR_EQ] = ACTIONS(5887), + [anon_sym_SLASH_EQ] = ACTIONS(5887), + [anon_sym_PERCENT_EQ] = ACTIONS(5887), + [anon_sym_PLUS_EQ] = ACTIONS(5887), + [anon_sym_DASH_EQ] = ACTIONS(5887), + [anon_sym_LT_LT_EQ] = ACTIONS(5887), + [anon_sym_GT_GT_EQ] = ACTIONS(5887), + [anon_sym_AMP_EQ] = ACTIONS(5887), + [anon_sym_CARET_EQ] = ACTIONS(5887), + [anon_sym_PIPE_EQ] = ACTIONS(5887), + [anon_sym_and_eq] = ACTIONS(5885), + [anon_sym_or_eq] = ACTIONS(5885), + [anon_sym_xor_eq] = ACTIONS(5885), + [anon_sym_LT_EQ_GT] = ACTIONS(5887), + [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(5887), + [anon_sym_PLUS_PLUS] = ACTIONS(5887), + [anon_sym_DOT] = ACTIONS(5885), + [anon_sym_DOT_STAR] = ACTIONS(5887), + [anon_sym_DASH_GT] = ACTIONS(5887), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5854), + [anon_sym_decltype] = ACTIONS(5856), + }, + [STATE(1945)] = { + [sym_ms_based_modifier] = STATE(8310), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(1932), + [sym__declarator] = STATE(6473), + [sym__abstract_declarator] = STATE(6688), + [sym_parenthesized_declarator] = STATE(6137), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_function_declarator] = STATE(6137), + [sym_abstract_function_declarator] = STATE(6117), + [sym_array_declarator] = STATE(6137), + [sym_abstract_array_declarator] = STATE(6117), + [sym_type_qualifier] = STATE(2605), + [sym_alignas_qualifier] = STATE(4359), + [sym_parameter_list] = STATE(3100), + [sym_decltype] = STATE(8381), + [sym_reference_declarator] = STATE(6137), + [sym_abstract_reference_declarator] = STATE(6117), + [sym_structured_binding_declarator] = STATE(6137), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5965), + [sym_qualified_identifier] = STATE(6137), + [sym_operator_name] = STATE(6137), + [aux_sym__type_definition_type_repeat1] = STATE(2605), + [aux_sym_pointer_declarator_repeat1] = STATE(1932), + [sym_identifier] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5889), + [anon_sym_LPAREN2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(5862), + [anon_sym_AMP_AMP] = ACTIONS(5864), + [anon_sym_AMP] = ACTIONS(5866), + [anon_sym___extension__] = ACTIONS(3351), + [anon_sym___attribute__] = ACTIONS(5891), + [anon_sym___attribute] = ACTIONS(5891), + [anon_sym_COLON_COLON] = ACTIONS(5870), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_EQ] = ACTIONS(5889), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(5889), + [anon_sym_operator] = ACTIONS(1850), + }, + [STATE(1946)] = { + [sym_identifier] = ACTIONS(5613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5615), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5615), + [anon_sym_LPAREN2] = ACTIONS(5615), + [anon_sym_TILDE] = ACTIONS(5615), + [anon_sym_STAR] = ACTIONS(5615), + [anon_sym_PIPE_PIPE] = 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_virtual] = ACTIONS(5613), + [anon_sym_extern] = ACTIONS(5613), + [anon_sym___attribute__] = ACTIONS(5613), + [anon_sym___attribute] = ACTIONS(5613), + [anon_sym_COLON] = ACTIONS(5613), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5615), + [anon_sym___declspec] = ACTIONS(5613), + [anon_sym___based] = ACTIONS(5613), + [anon_sym___cdecl] = ACTIONS(5613), + [anon_sym___clrcall] = ACTIONS(5613), + [anon_sym___stdcall] = ACTIONS(5613), + [anon_sym___fastcall] = ACTIONS(5613), + [anon_sym___thiscall] = ACTIONS(5613), + [anon_sym___vectorcall] = ACTIONS(5613), + [anon_sym_LBRACE] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(5613), + [anon_sym_static] = ACTIONS(5613), + [anon_sym_EQ] = ACTIONS(5615), + [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), + [anon_sym_or] = ACTIONS(5613), + [anon_sym_and] = ACTIONS(5613), + [anon_sym_asm] = ACTIONS(5613), + [anon_sym___asm__] = ACTIONS(5613), + [anon_sym___asm] = ACTIONS(5613), + [anon_sym_DASH_GT] = ACTIONS(5615), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5613), + [anon_sym_decltype] = ACTIONS(5613), + [anon_sym_final] = ACTIONS(5613), + [anon_sym_override] = ACTIONS(5613), + [anon_sym_template] = ACTIONS(5613), + [anon_sym_GT2] = ACTIONS(5615), + [anon_sym_operator] = ACTIONS(5613), + [anon_sym_try] = ACTIONS(5613), + [anon_sym_noexcept] = ACTIONS(5613), + [anon_sym_throw] = ACTIONS(5613), + [anon_sym_requires] = ACTIONS(5613), + }, + [STATE(1947)] = { + [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(5523), + [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), + }, + [STATE(1948)] = { [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), @@ -266015,6 +267532,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), @@ -266061,149 +267579,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1936), [anon_sym_catch] = ACTIONS(1936), }, - [STATE(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), + [STATE(1949)] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2717), + [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(2717), + [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), }, - [STATE(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), + [STATE(1950)] = { + [sym_identifier] = ACTIONS(5893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5895), + [anon_sym_COMMA] = ACTIONS(5895), + [anon_sym_RPAREN] = ACTIONS(5895), + [aux_sym_preproc_if_token2] = ACTIONS(5895), + [aux_sym_preproc_else_token1] = ACTIONS(5895), + [aux_sym_preproc_elif_token1] = ACTIONS(5893), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5895), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5895), + [anon_sym_LPAREN2] = ACTIONS(5895), [anon_sym_DASH] = ACTIONS(5893), [anon_sym_PLUS] = ACTIONS(5893), - [anon_sym_STAR] = ACTIONS(5891), + [anon_sym_STAR] = ACTIONS(5893), [anon_sym_SLASH] = ACTIONS(5893), - [anon_sym_PERCENT] = ACTIONS(5891), - [anon_sym_PIPE_PIPE] = ACTIONS(5891), - [anon_sym_AMP_AMP] = ACTIONS(5891), + [anon_sym_PERCENT] = ACTIONS(5893), + [anon_sym_PIPE_PIPE] = ACTIONS(5895), + [anon_sym_AMP_AMP] = ACTIONS(5895), [anon_sym_PIPE] = ACTIONS(5893), - [anon_sym_CARET] = ACTIONS(5891), + [anon_sym_CARET] = ACTIONS(5893), [anon_sym_AMP] = ACTIONS(5893), - [anon_sym_EQ_EQ] = ACTIONS(5891), - [anon_sym_BANG_EQ] = ACTIONS(5891), + [anon_sym_EQ_EQ] = ACTIONS(5895), + [anon_sym_BANG_EQ] = ACTIONS(5895), [anon_sym_GT] = ACTIONS(5893), - [anon_sym_GT_EQ] = ACTIONS(5891), + [anon_sym_GT_EQ] = ACTIONS(5895), [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_LT_LT] = ACTIONS(5893), + [anon_sym_GT_GT] = ACTIONS(5893), + [anon_sym_SEMI] = ACTIONS(5895), + [anon_sym___attribute__] = ACTIONS(5893), [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_COLON] = ACTIONS(5895), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5895), + [anon_sym_LBRACE] = ACTIONS(5895), + [anon_sym_RBRACE] = ACTIONS(5895), + [anon_sym_LBRACK] = ACTIONS(5893), + [anon_sym_RBRACK] = ACTIONS(5895), + [anon_sym_EQ] = ACTIONS(5893), + [anon_sym_QMARK] = ACTIONS(5895), + [anon_sym_STAR_EQ] = ACTIONS(5895), + [anon_sym_SLASH_EQ] = ACTIONS(5895), + [anon_sym_PERCENT_EQ] = ACTIONS(5895), + [anon_sym_PLUS_EQ] = ACTIONS(5895), + [anon_sym_DASH_EQ] = ACTIONS(5895), + [anon_sym_LT_LT_EQ] = ACTIONS(5895), + [anon_sym_GT_GT_EQ] = ACTIONS(5895), + [anon_sym_AMP_EQ] = ACTIONS(5895), + [anon_sym_CARET_EQ] = ACTIONS(5895), + [anon_sym_PIPE_EQ] = ACTIONS(5895), + [anon_sym_and_eq] = ACTIONS(5893), + [anon_sym_or_eq] = ACTIONS(5893), + [anon_sym_xor_eq] = ACTIONS(5893), + [anon_sym_LT_EQ_GT] = ACTIONS(5895), + [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(5895), + [anon_sym_PLUS_PLUS] = ACTIONS(5895), + [anon_sym_asm] = ACTIONS(5893), + [anon_sym___asm__] = ACTIONS(5893), + [anon_sym___asm] = ACTIONS(5893), [anon_sym_DOT] = ACTIONS(5893), - [anon_sym_DOT_STAR] = ACTIONS(5891), - [anon_sym_DASH_GT] = ACTIONS(5891), + [anon_sym_DOT_STAR] = ACTIONS(5895), + [anon_sym_DASH_GT] = ACTIONS(5895), [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), + [anon_sym_try] = ACTIONS(5893), }, - [STATE(1939)] = { + [STATE(1951)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5897), + [anon_sym_COMMA] = ACTIONS(5897), + [anon_sym_RPAREN] = ACTIONS(5897), + [anon_sym_LPAREN2] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5899), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_PERCENT] = ACTIONS(5897), + [anon_sym_PIPE_PIPE] = ACTIONS(5897), + [anon_sym_AMP_AMP] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym_AMP] = ACTIONS(5899), + [anon_sym_EQ_EQ] = ACTIONS(5897), + [anon_sym_BANG_EQ] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5899), + [anon_sym_GT_EQ] = ACTIONS(5897), + [anon_sym_LT_EQ] = ACTIONS(5899), + [anon_sym_LT] = ACTIONS(5899), + [anon_sym_LT_LT] = ACTIONS(5897), + [anon_sym_GT_GT] = ACTIONS(5897), + [anon_sym_SEMI] = ACTIONS(5897), + [anon_sym___extension__] = ACTIONS(5897), + [anon_sym___attribute__] = ACTIONS(5897), + [anon_sym___attribute] = ACTIONS(5899), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_LBRACE] = ACTIONS(5897), + [anon_sym_RBRACE] = ACTIONS(5897), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5897), + [anon_sym_RBRACK] = ACTIONS(5897), + [anon_sym_const] = ACTIONS(5899), + [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(5897), + [anon_sym__Alignas] = ACTIONS(5897), + [anon_sym_QMARK] = ACTIONS(5897), + [anon_sym_LT_EQ_GT] = ACTIONS(5897), + [anon_sym_or] = ACTIONS(5897), + [anon_sym_and] = ACTIONS(5897), + [anon_sym_bitor] = ACTIONS(5897), + [anon_sym_xor] = ACTIONS(5897), + [anon_sym_bitand] = ACTIONS(5897), + [anon_sym_not_eq] = ACTIONS(5897), + [anon_sym_DASH_DASH] = ACTIONS(5897), + [anon_sym_PLUS_PLUS] = ACTIONS(5897), + [anon_sym_DOT] = ACTIONS(5899), + [anon_sym_DOT_STAR] = ACTIONS(5897), + [anon_sym_DASH_GT] = ACTIONS(5897), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5897), + [anon_sym_decltype] = ACTIONS(5897), + [anon_sym_final] = ACTIONS(5897), + [anon_sym_override] = ACTIONS(5897), + [anon_sym_requires] = ACTIONS(5897), + }, + [STATE(1952)] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), [aux_sym_preproc_if_token1] = ACTIONS(1940), @@ -266274,78 +267863,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(1940), [anon_sym_catch] = ACTIONS(1940), }, - [STATE(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), + [STATE(1953)] = { + [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), + [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), }, - [STATE(1941)] = { + [STATE(1954)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(5004), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5011), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5004), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5011), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5004), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_const] = ACTIONS(5000), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym___restrict__] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym__Noreturn] = ACTIONS(5007), + [anon_sym_noreturn] = ACTIONS(5007), + [anon_sym__Nonnull] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_constinit] = ACTIONS(5007), + [anon_sym_consteval] = ACTIONS(5007), + [anon_sym_alignas] = ACTIONS(5007), + [anon_sym__Alignas] = ACTIONS(5007), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_and_eq] = ACTIONS(5002), + [anon_sym_or_eq] = ACTIONS(5002), + [anon_sym_xor_eq] = ACTIONS(5002), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5002), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5002), + [anon_sym_not_eq] = ACTIONS(5002), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5007), + [anon_sym_decltype] = ACTIONS(5007), + }, + [STATE(1955)] = { [sym_identifier] = ACTIONS(5903), [anon_sym_DOT_DOT_DOT] = ACTIONS(5905), [anon_sym_COMMA] = ACTIONS(5905), @@ -266416,7 +268076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_try] = ACTIONS(5903), }, - [STATE(1942)] = { + [STATE(1956)] = { [sym_identifier] = ACTIONS(5907), [anon_sym_DOT_DOT_DOT] = ACTIONS(5909), [anon_sym_COMMA] = ACTIONS(5909), @@ -266485,151 +268145,861 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(5909), [anon_sym_DASH_GT] = ACTIONS(5909), [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5907), + [anon_sym_try] = ACTIONS(5907), + }, + [STATE(1957)] = { + [sym_identifier] = ACTIONS(5911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [aux_sym_preproc_if_token2] = ACTIONS(5913), + [aux_sym_preproc_else_token1] = ACTIONS(5913), + [aux_sym_preproc_elif_token1] = ACTIONS(5911), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5913), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5913), + [anon_sym_LPAREN2] = ACTIONS(5913), + [anon_sym_DASH] = ACTIONS(5911), + [anon_sym_PLUS] = ACTIONS(5911), + [anon_sym_STAR] = ACTIONS(5911), + [anon_sym_SLASH] = ACTIONS(5911), + [anon_sym_PERCENT] = ACTIONS(5911), + [anon_sym_PIPE_PIPE] = ACTIONS(5913), + [anon_sym_AMP_AMP] = ACTIONS(5913), + [anon_sym_PIPE] = ACTIONS(5911), + [anon_sym_CARET] = ACTIONS(5911), + [anon_sym_AMP] = ACTIONS(5911), + [anon_sym_EQ_EQ] = ACTIONS(5913), + [anon_sym_BANG_EQ] = ACTIONS(5913), + [anon_sym_GT] = ACTIONS(5911), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_EQ] = ACTIONS(5911), + [anon_sym_LT] = ACTIONS(5911), + [anon_sym_LT_LT] = ACTIONS(5911), + [anon_sym_GT_GT] = ACTIONS(5911), + [anon_sym_SEMI] = ACTIONS(5913), + [anon_sym___attribute__] = ACTIONS(5911), + [anon_sym___attribute] = ACTIONS(5911), + [anon_sym_COLON] = ACTIONS(5913), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_RBRACE] = ACTIONS(5913), + [anon_sym_LBRACK] = ACTIONS(5911), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_EQ] = ACTIONS(5911), + [anon_sym_QMARK] = ACTIONS(5913), + [anon_sym_STAR_EQ] = ACTIONS(5913), + [anon_sym_SLASH_EQ] = ACTIONS(5913), + [anon_sym_PERCENT_EQ] = ACTIONS(5913), + [anon_sym_PLUS_EQ] = ACTIONS(5913), + [anon_sym_DASH_EQ] = ACTIONS(5913), + [anon_sym_LT_LT_EQ] = ACTIONS(5913), + [anon_sym_GT_GT_EQ] = ACTIONS(5913), + [anon_sym_AMP_EQ] = ACTIONS(5913), + [anon_sym_CARET_EQ] = ACTIONS(5913), + [anon_sym_PIPE_EQ] = ACTIONS(5913), + [anon_sym_and_eq] = ACTIONS(5911), + [anon_sym_or_eq] = ACTIONS(5911), + [anon_sym_xor_eq] = ACTIONS(5911), + [anon_sym_LT_EQ_GT] = ACTIONS(5913), + [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(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5913), + [anon_sym_asm] = ACTIONS(5911), + [anon_sym___asm__] = ACTIONS(5911), + [anon_sym___asm] = ACTIONS(5911), + [anon_sym_DOT] = ACTIONS(5911), + [anon_sym_DOT_STAR] = ACTIONS(5913), + [anon_sym_DASH_GT] = ACTIONS(5913), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5911), + }, + [STATE(1958)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LPAREN2] = ACTIONS(5809), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5809), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_PERCENT] = ACTIONS(5809), + [anon_sym_PIPE_PIPE] = ACTIONS(5809), + [anon_sym_AMP_AMP] = ACTIONS(5809), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5809), + [anon_sym_BANG_EQ] = ACTIONS(5809), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_GT_EQ] = ACTIONS(5809), + [anon_sym_LT_EQ] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_LT_LT] = ACTIONS(5809), + [anon_sym_GT_GT] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(5809), + [anon_sym___extension__] = ACTIONS(5809), + [anon_sym___attribute__] = ACTIONS(5809), + [anon_sym___attribute] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_signed] = ACTIONS(5915), + [anon_sym_unsigned] = ACTIONS(5915), + [anon_sym_long] = ACTIONS(5915), + [anon_sym_short] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_const] = ACTIONS(5807), + [anon_sym_constexpr] = ACTIONS(5809), + [anon_sym_volatile] = ACTIONS(5809), + [anon_sym_restrict] = ACTIONS(5809), + [anon_sym___restrict__] = ACTIONS(5809), + [anon_sym__Atomic] = ACTIONS(5809), + [anon_sym__Noreturn] = ACTIONS(5809), + [anon_sym_noreturn] = ACTIONS(5809), + [anon_sym__Nonnull] = ACTIONS(5809), + [anon_sym_mutable] = ACTIONS(5809), + [anon_sym_constinit] = ACTIONS(5809), + [anon_sym_consteval] = ACTIONS(5809), + [anon_sym_alignas] = ACTIONS(5809), + [anon_sym__Alignas] = ACTIONS(5809), + [anon_sym_QMARK] = ACTIONS(5809), + [anon_sym_LT_EQ_GT] = ACTIONS(5809), + [anon_sym_or] = ACTIONS(5809), + [anon_sym_and] = ACTIONS(5809), + [anon_sym_bitor] = ACTIONS(5809), + [anon_sym_xor] = ACTIONS(5809), + [anon_sym_bitand] = ACTIONS(5809), + [anon_sym_not_eq] = ACTIONS(5809), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_DOT_STAR] = ACTIONS(5809), + [anon_sym_DASH_GT] = ACTIONS(5809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5809), + [anon_sym_decltype] = ACTIONS(5809), + [anon_sym_final] = ACTIONS(5809), + [anon_sym_override] = ACTIONS(5809), + [anon_sym_requires] = ACTIONS(5809), + }, + [STATE(1959)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(5318), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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(3027), + [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), + }, + [STATE(1960)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1978), + [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(5919), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5917), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_PERCENT] = ACTIONS(5917), + [anon_sym_PIPE_PIPE] = ACTIONS(5917), + [anon_sym_AMP_AMP] = ACTIONS(5917), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5917), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_EQ_EQ] = ACTIONS(5917), + [anon_sym_BANG_EQ] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_GT_EQ] = ACTIONS(5917), + [anon_sym_LT_EQ] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_LT_LT] = ACTIONS(5917), + [anon_sym_GT_GT] = ACTIONS(5917), + [anon_sym_SEMI] = ACTIONS(5917), + [anon_sym___extension__] = ACTIONS(5917), + [anon_sym___attribute__] = ACTIONS(5917), + [anon_sym___attribute] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [anon_sym_RBRACE] = ACTIONS(5917), + [anon_sym_signed] = ACTIONS(5921), + [anon_sym_unsigned] = ACTIONS(5921), + [anon_sym_long] = ACTIONS(5921), + [anon_sym_short] = ACTIONS(5921), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_const] = ACTIONS(5919), + [anon_sym_constexpr] = ACTIONS(5917), + [anon_sym_volatile] = ACTIONS(5917), + [anon_sym_restrict] = ACTIONS(5917), + [anon_sym___restrict__] = ACTIONS(5917), + [anon_sym__Atomic] = ACTIONS(5917), + [anon_sym__Noreturn] = ACTIONS(5917), + [anon_sym_noreturn] = ACTIONS(5917), + [anon_sym__Nonnull] = ACTIONS(5917), + [anon_sym_mutable] = ACTIONS(5917), + [anon_sym_constinit] = ACTIONS(5917), + [anon_sym_consteval] = ACTIONS(5917), + [anon_sym_alignas] = ACTIONS(5917), + [anon_sym__Alignas] = ACTIONS(5917), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_LT_EQ_GT] = ACTIONS(5917), + [anon_sym_or] = ACTIONS(5917), + [anon_sym_and] = ACTIONS(5917), + [anon_sym_bitor] = ACTIONS(5917), + [anon_sym_xor] = ACTIONS(5917), + [anon_sym_bitand] = ACTIONS(5917), + [anon_sym_not_eq] = ACTIONS(5917), + [anon_sym_DASH_DASH] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5919), + [anon_sym_DOT_STAR] = ACTIONS(5917), + [anon_sym_DASH_GT] = ACTIONS(5917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5917), + [anon_sym_decltype] = ACTIONS(5917), + [anon_sym_final] = ACTIONS(5917), + [anon_sym_override] = ACTIONS(5917), + [anon_sym_requires] = ACTIONS(5917), + }, + [STATE(1961)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1979), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5923), + [anon_sym_COMMA] = ACTIONS(5923), + [anon_sym_RPAREN] = ACTIONS(5923), + [anon_sym_LPAREN2] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5925), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5925), + [anon_sym_PERCENT] = ACTIONS(5923), + [anon_sym_PIPE_PIPE] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5925), + [anon_sym_EQ_EQ] = ACTIONS(5923), + [anon_sym_BANG_EQ] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_GT_EQ] = ACTIONS(5923), + [anon_sym_LT_EQ] = ACTIONS(5925), + [anon_sym_LT] = ACTIONS(5925), + [anon_sym_LT_LT] = ACTIONS(5923), + [anon_sym_GT_GT] = ACTIONS(5923), + [anon_sym_SEMI] = ACTIONS(5923), + [anon_sym___extension__] = ACTIONS(5923), + [anon_sym___attribute__] = ACTIONS(5923), + [anon_sym___attribute] = ACTIONS(5925), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_LBRACE] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(5927), + [anon_sym_unsigned] = ACTIONS(5927), + [anon_sym_long] = ACTIONS(5927), + [anon_sym_short] = ACTIONS(5927), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_RBRACK] = ACTIONS(5923), + [anon_sym_const] = ACTIONS(5925), + [anon_sym_constexpr] = ACTIONS(5923), + [anon_sym_volatile] = ACTIONS(5923), + [anon_sym_restrict] = ACTIONS(5923), + [anon_sym___restrict__] = ACTIONS(5923), + [anon_sym__Atomic] = ACTIONS(5923), + [anon_sym__Noreturn] = ACTIONS(5923), + [anon_sym_noreturn] = ACTIONS(5923), + [anon_sym__Nonnull] = ACTIONS(5923), + [anon_sym_mutable] = ACTIONS(5923), + [anon_sym_constinit] = ACTIONS(5923), + [anon_sym_consteval] = ACTIONS(5923), + [anon_sym_alignas] = ACTIONS(5923), + [anon_sym__Alignas] = ACTIONS(5923), + [anon_sym_QMARK] = ACTIONS(5923), + [anon_sym_LT_EQ_GT] = ACTIONS(5923), + [anon_sym_or] = ACTIONS(5923), + [anon_sym_and] = ACTIONS(5923), + [anon_sym_bitor] = ACTIONS(5923), + [anon_sym_xor] = ACTIONS(5923), + [anon_sym_bitand] = ACTIONS(5923), + [anon_sym_not_eq] = ACTIONS(5923), + [anon_sym_DASH_DASH] = ACTIONS(5923), + [anon_sym_PLUS_PLUS] = ACTIONS(5923), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_DOT_STAR] = ACTIONS(5923), + [anon_sym_DASH_GT] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5923), + [anon_sym_decltype] = ACTIONS(5923), + [anon_sym_final] = ACTIONS(5923), + [anon_sym_override] = ACTIONS(5923), + [anon_sym_requires] = ACTIONS(5923), + }, + [STATE(1962)] = { + [sym_identifier] = ACTIONS(1940), + [aux_sym_preproc_def_token1] = ACTIONS(1940), + [anon_sym_COMMA] = ACTIONS(2717), + [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_TILDE] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_AMP_AMP] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(2717), + [anon_sym___extension__] = ACTIONS(1940), + [anon_sym_typedef] = ACTIONS(1940), + [anon_sym_virtual] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym___attribute__] = ACTIONS(5460), + [anon_sym___attribute] = ACTIONS(5460), + [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), + [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), + }, + [STATE(1963)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [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(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [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), + }, + [STATE(1964)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [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(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [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), }, - [STATE(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), + [STATE(1965)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4894), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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(3027), + [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(5521), - [anon_sym_decltype] = ACTIONS(5521), - [anon_sym_final] = ACTIONS(5521), - [anon_sym_override] = ACTIONS(5521), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1966)] = { + [sym_identifier] = ACTIONS(5613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5615), + [anon_sym_COMMA] = ACTIONS(5615), + [anon_sym_RPAREN] = ACTIONS(5615), + [aux_sym_preproc_if_token2] = ACTIONS(5615), + [aux_sym_preproc_else_token1] = ACTIONS(5615), + [aux_sym_preproc_elif_token1] = ACTIONS(5613), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5615), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5615), + [anon_sym_LPAREN2] = ACTIONS(5615), + [anon_sym_DASH] = ACTIONS(5613), + [anon_sym_PLUS] = ACTIONS(5613), + [anon_sym_STAR] = ACTIONS(5613), + [anon_sym_SLASH] = ACTIONS(5613), + [anon_sym_PERCENT] = ACTIONS(5613), + [anon_sym_PIPE_PIPE] = ACTIONS(5615), + [anon_sym_AMP_AMP] = ACTIONS(5615), + [anon_sym_PIPE] = ACTIONS(5613), + [anon_sym_CARET] = ACTIONS(5613), + [anon_sym_AMP] = ACTIONS(5613), + [anon_sym_EQ_EQ] = ACTIONS(5615), + [anon_sym_BANG_EQ] = ACTIONS(5615), + [anon_sym_GT] = ACTIONS(5613), + [anon_sym_GT_EQ] = ACTIONS(5615), + [anon_sym_LT_EQ] = ACTIONS(5613), + [anon_sym_LT] = ACTIONS(5613), + [anon_sym_LT_LT] = ACTIONS(5613), + [anon_sym_GT_GT] = ACTIONS(5613), + [anon_sym_SEMI] = ACTIONS(5615), + [anon_sym___attribute__] = ACTIONS(5613), + [anon_sym___attribute] = ACTIONS(5613), + [anon_sym_COLON] = ACTIONS(5613), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym_LBRACE] = ACTIONS(5615), + [anon_sym_RBRACE] = ACTIONS(5615), + [anon_sym_LBRACK] = ACTIONS(5615), + [anon_sym_RBRACK] = ACTIONS(5615), + [anon_sym_EQ] = ACTIONS(5613), + [anon_sym_QMARK] = ACTIONS(5615), + [anon_sym_STAR_EQ] = ACTIONS(5615), + [anon_sym_SLASH_EQ] = ACTIONS(5615), + [anon_sym_PERCENT_EQ] = ACTIONS(5615), + [anon_sym_PLUS_EQ] = ACTIONS(5615), + [anon_sym_DASH_EQ] = ACTIONS(5615), + [anon_sym_LT_LT_EQ] = ACTIONS(5615), + [anon_sym_GT_GT_EQ] = ACTIONS(5615), + [anon_sym_AMP_EQ] = ACTIONS(5615), + [anon_sym_CARET_EQ] = ACTIONS(5615), + [anon_sym_PIPE_EQ] = ACTIONS(5615), + [anon_sym_and_eq] = ACTIONS(5613), + [anon_sym_or_eq] = ACTIONS(5613), + [anon_sym_xor_eq] = ACTIONS(5613), + [anon_sym_LT_EQ_GT] = ACTIONS(5615), + [anon_sym_or] = ACTIONS(5613), + [anon_sym_and] = ACTIONS(5613), + [anon_sym_bitor] = ACTIONS(5613), + [anon_sym_xor] = ACTIONS(5613), + [anon_sym_bitand] = ACTIONS(5613), + [anon_sym_not_eq] = ACTIONS(5613), + [anon_sym_DASH_DASH] = ACTIONS(5615), + [anon_sym_PLUS_PLUS] = ACTIONS(5615), + [anon_sym_DOT] = ACTIONS(5613), + [anon_sym_DOT_STAR] = ACTIONS(5615), + [anon_sym_DASH_GT] = ACTIONS(5615), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5541), - [anon_sym_decltype] = ACTIONS(5541), - [anon_sym_final] = ACTIONS(5541), - [anon_sym_override] = ACTIONS(5541), + [sym_auto] = ACTIONS(5613), + [anon_sym_decltype] = ACTIONS(5613), + [anon_sym_final] = ACTIONS(5613), + [anon_sym_override] = ACTIONS(5613), }, - [STATE(1945)] = { + [STATE(1967)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1992), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5539), + [anon_sym_COMMA] = ACTIONS(5539), + [anon_sym_RPAREN] = ACTIONS(5539), + [anon_sym_LPAREN2] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_STAR] = ACTIONS(5539), + [anon_sym_SLASH] = ACTIONS(5537), + [anon_sym_PERCENT] = ACTIONS(5539), + [anon_sym_PIPE_PIPE] = ACTIONS(5539), + [anon_sym_AMP_AMP] = ACTIONS(5539), + [anon_sym_PIPE] = ACTIONS(5537), + [anon_sym_CARET] = ACTIONS(5539), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_EQ_EQ] = ACTIONS(5539), + [anon_sym_BANG_EQ] = ACTIONS(5539), + [anon_sym_GT] = ACTIONS(5537), + [anon_sym_GT_EQ] = ACTIONS(5539), + [anon_sym_LT_EQ] = ACTIONS(5537), + [anon_sym_LT] = ACTIONS(5537), + [anon_sym_LT_LT] = ACTIONS(5539), + [anon_sym_GT_GT] = ACTIONS(5539), + [anon_sym_SEMI] = ACTIONS(5539), + [anon_sym___extension__] = ACTIONS(5539), + [anon_sym___attribute__] = ACTIONS(5539), + [anon_sym___attribute] = ACTIONS(5537), + [anon_sym_COLON] = ACTIONS(5539), + [anon_sym_LBRACE] = ACTIONS(5539), + [anon_sym_RBRACE] = ACTIONS(5539), + [anon_sym_signed] = ACTIONS(5915), + [anon_sym_unsigned] = ACTIONS(5915), + [anon_sym_long] = ACTIONS(5915), + [anon_sym_short] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5539), + [anon_sym_RBRACK] = ACTIONS(5539), + [anon_sym_const] = ACTIONS(5537), + [anon_sym_constexpr] = ACTIONS(5539), + [anon_sym_volatile] = ACTIONS(5539), + [anon_sym_restrict] = ACTIONS(5539), + [anon_sym___restrict__] = ACTIONS(5539), + [anon_sym__Atomic] = ACTIONS(5539), + [anon_sym__Noreturn] = ACTIONS(5539), + [anon_sym_noreturn] = ACTIONS(5539), + [anon_sym__Nonnull] = ACTIONS(5539), + [anon_sym_mutable] = ACTIONS(5539), + [anon_sym_constinit] = ACTIONS(5539), + [anon_sym_consteval] = ACTIONS(5539), + [anon_sym_alignas] = ACTIONS(5539), + [anon_sym__Alignas] = ACTIONS(5539), + [anon_sym_QMARK] = ACTIONS(5539), + [anon_sym_LT_EQ_GT] = ACTIONS(5539), + [anon_sym_or] = ACTIONS(5539), + [anon_sym_and] = ACTIONS(5539), + [anon_sym_bitor] = ACTIONS(5539), + [anon_sym_xor] = ACTIONS(5539), + [anon_sym_bitand] = ACTIONS(5539), + [anon_sym_not_eq] = ACTIONS(5539), + [anon_sym_DASH_DASH] = ACTIONS(5539), + [anon_sym_PLUS_PLUS] = ACTIONS(5539), + [anon_sym_DOT] = ACTIONS(5537), + [anon_sym_DOT_STAR] = ACTIONS(5539), + [anon_sym_DASH_GT] = ACTIONS(5539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5539), + [anon_sym_decltype] = ACTIONS(5539), + [anon_sym_final] = ACTIONS(5539), + [anon_sym_override] = ACTIONS(5539), + [anon_sym_requires] = ACTIONS(5539), + }, + [STATE(1968)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1968), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LPAREN2] = ACTIONS(5091), + [anon_sym_TILDE] = ACTIONS(5091), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_AMP] = ACTIONS(5089), + [anon_sym_SEMI] = ACTIONS(5091), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym_virtual] = ACTIONS(5089), + [anon_sym_extern] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5089), + [anon_sym___attribute] = ACTIONS(5089), + [anon_sym_COLON_COLON] = ACTIONS(5091), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5091), + [anon_sym___declspec] = ACTIONS(5089), + [anon_sym___based] = ACTIONS(5089), + [anon_sym___cdecl] = ACTIONS(5089), + [anon_sym___clrcall] = ACTIONS(5089), + [anon_sym___stdcall] = ACTIONS(5089), + [anon_sym___fastcall] = ACTIONS(5089), + [anon_sym___thiscall] = ACTIONS(5089), + [anon_sym___vectorcall] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_signed] = ACTIONS(5937), + [anon_sym_unsigned] = ACTIONS(5937), + [anon_sym_long] = ACTIONS(5937), + [anon_sym_short] = ACTIONS(5937), + [anon_sym_LBRACK] = ACTIONS(5089), + [anon_sym_static] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_register] = ACTIONS(5089), + [anon_sym_inline] = ACTIONS(5089), + [anon_sym___inline] = ACTIONS(5089), + [anon_sym___inline__] = ACTIONS(5089), + [anon_sym___forceinline] = ACTIONS(5089), + [anon_sym_thread_local] = ACTIONS(5089), + [anon_sym___thread] = ACTIONS(5089), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_asm] = ACTIONS(5089), + [anon_sym___asm__] = ACTIONS(5089), + [anon_sym___asm] = ACTIONS(5089), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5089), + [anon_sym_decltype] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_template] = ACTIONS(5089), + [anon_sym_GT2] = ACTIONS(5091), + [anon_sym_operator] = ACTIONS(5089), + [anon_sym_try] = ACTIONS(5089), + [anon_sym_requires] = ACTIONS(5089), + }, + [STATE(1969)] = { [sym_identifier] = ACTIONS(2611), [aux_sym_preproc_def_token1] = ACTIONS(2611), [aux_sym_preproc_if_token1] = ACTIONS(2611), @@ -266700,135 +269070,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(2611), [anon_sym_catch] = ACTIONS(2611), }, - [STATE(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), + [STATE(1970)] = { + [sym_identifier] = ACTIONS(5940), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5942), + [anon_sym_COMMA] = ACTIONS(5942), + [anon_sym_RPAREN] = ACTIONS(5942), + [aux_sym_preproc_if_token2] = ACTIONS(5942), + [aux_sym_preproc_else_token1] = ACTIONS(5942), + [aux_sym_preproc_elif_token1] = ACTIONS(5940), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5942), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5942), + [anon_sym_LPAREN2] = ACTIONS(5942), + [anon_sym_DASH] = ACTIONS(5940), + [anon_sym_PLUS] = ACTIONS(5940), + [anon_sym_STAR] = ACTIONS(5940), + [anon_sym_SLASH] = ACTIONS(5940), + [anon_sym_PERCENT] = ACTIONS(5940), + [anon_sym_PIPE_PIPE] = ACTIONS(5942), + [anon_sym_AMP_AMP] = ACTIONS(5942), + [anon_sym_PIPE] = ACTIONS(5940), + [anon_sym_CARET] = ACTIONS(5940), + [anon_sym_AMP] = ACTIONS(5940), + [anon_sym_EQ_EQ] = ACTIONS(5942), + [anon_sym_BANG_EQ] = ACTIONS(5942), + [anon_sym_GT] = ACTIONS(5940), + [anon_sym_GT_EQ] = ACTIONS(5942), + [anon_sym_LT_EQ] = ACTIONS(5940), + [anon_sym_LT] = ACTIONS(5940), + [anon_sym_LT_LT] = ACTIONS(5940), + [anon_sym_GT_GT] = ACTIONS(5940), + [anon_sym_SEMI] = ACTIONS(5942), + [anon_sym___attribute__] = ACTIONS(5940), + [anon_sym___attribute] = ACTIONS(5940), + [anon_sym_COLON] = ACTIONS(5942), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5942), + [anon_sym_LBRACE] = ACTIONS(5942), + [anon_sym_RBRACE] = ACTIONS(5942), + [anon_sym_LBRACK] = ACTIONS(5940), + [anon_sym_RBRACK] = ACTIONS(5942), + [anon_sym_EQ] = ACTIONS(5940), + [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(5940), + [anon_sym_or_eq] = ACTIONS(5940), + [anon_sym_xor_eq] = ACTIONS(5940), + [anon_sym_LT_EQ_GT] = ACTIONS(5942), + [anon_sym_or] = ACTIONS(5940), + [anon_sym_and] = ACTIONS(5940), + [anon_sym_bitor] = ACTIONS(5940), + [anon_sym_xor] = ACTIONS(5940), + [anon_sym_bitand] = ACTIONS(5940), + [anon_sym_not_eq] = ACTIONS(5940), + [anon_sym_DASH_DASH] = ACTIONS(5942), + [anon_sym_PLUS_PLUS] = ACTIONS(5942), + [anon_sym_asm] = ACTIONS(5940), + [anon_sym___asm__] = ACTIONS(5940), + [anon_sym___asm] = ACTIONS(5940), + [anon_sym_DOT] = ACTIONS(5940), + [anon_sym_DOT_STAR] = ACTIONS(5942), + [anon_sym_DASH_GT] = ACTIONS(5942), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5940), }, - [STATE(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), + [STATE(1971)] = { + [sym_identifier] = ACTIONS(5944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5946), + [anon_sym_COMMA] = ACTIONS(5946), + [anon_sym_RPAREN] = ACTIONS(5946), + [aux_sym_preproc_if_token2] = ACTIONS(5946), + [aux_sym_preproc_else_token1] = ACTIONS(5946), + [aux_sym_preproc_elif_token1] = ACTIONS(5944), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5946), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5946), + [anon_sym_LPAREN2] = ACTIONS(5946), + [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(5946), + [anon_sym_AMP_AMP] = ACTIONS(5946), + [anon_sym_PIPE] = ACTIONS(5944), + [anon_sym_CARET] = ACTIONS(5944), + [anon_sym_AMP] = ACTIONS(5944), + [anon_sym_EQ_EQ] = ACTIONS(5946), + [anon_sym_BANG_EQ] = ACTIONS(5946), + [anon_sym_GT] = ACTIONS(5944), + [anon_sym_GT_EQ] = ACTIONS(5946), + [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(5946), + [anon_sym___attribute__] = ACTIONS(5944), + [anon_sym___attribute] = ACTIONS(5944), + [anon_sym_COLON] = ACTIONS(5946), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5946), + [anon_sym_LBRACE] = ACTIONS(5946), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_LBRACK] = ACTIONS(5944), + [anon_sym_RBRACK] = ACTIONS(5946), + [anon_sym_EQ] = ACTIONS(5944), + [anon_sym_QMARK] = ACTIONS(5946), + [anon_sym_STAR_EQ] = ACTIONS(5946), + [anon_sym_SLASH_EQ] = ACTIONS(5946), + [anon_sym_PERCENT_EQ] = ACTIONS(5946), + [anon_sym_PLUS_EQ] = ACTIONS(5946), + [anon_sym_DASH_EQ] = ACTIONS(5946), + [anon_sym_LT_LT_EQ] = ACTIONS(5946), + [anon_sym_GT_GT_EQ] = ACTIONS(5946), + [anon_sym_AMP_EQ] = ACTIONS(5946), + [anon_sym_CARET_EQ] = ACTIONS(5946), + [anon_sym_PIPE_EQ] = ACTIONS(5946), + [anon_sym_and_eq] = ACTIONS(5944), + [anon_sym_or_eq] = ACTIONS(5944), + [anon_sym_xor_eq] = ACTIONS(5944), + [anon_sym_LT_EQ_GT] = ACTIONS(5946), + [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(5946), + [anon_sym_PLUS_PLUS] = ACTIONS(5946), + [anon_sym_asm] = ACTIONS(5944), + [anon_sym___asm__] = ACTIONS(5944), + [anon_sym___asm] = ACTIONS(5944), + [anon_sym_DOT] = ACTIONS(5944), + [anon_sym_DOT_STAR] = ACTIONS(5946), + [anon_sym_DASH_GT] = ACTIONS(5946), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5944), + }, + [STATE(1972)] = { + [sym_string_literal] = STATE(1726), + [sym_raw_string_literal] = STATE(1726), + [sym_identifier] = ACTIONS(5948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5950), + [anon_sym_COMMA] = ACTIONS(5950), + [aux_sym_preproc_if_token2] = ACTIONS(5950), + [aux_sym_preproc_else_token1] = ACTIONS(5950), + [aux_sym_preproc_elif_token1] = ACTIONS(5948), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5950), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5950), + [anon_sym_LPAREN2] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5948), + [anon_sym_PLUS] = ACTIONS(5948), + [anon_sym_STAR] = ACTIONS(5948), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_PERCENT] = ACTIONS(5948), + [anon_sym_PIPE_PIPE] = ACTIONS(5950), + [anon_sym_AMP_AMP] = ACTIONS(5950), + [anon_sym_PIPE] = ACTIONS(5948), + [anon_sym_CARET] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5948), + [anon_sym_EQ_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_LT_EQ] = ACTIONS(5948), + [anon_sym_LT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_GT_GT] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_EQ] = ACTIONS(5948), + [anon_sym_QMARK] = ACTIONS(5950), + [anon_sym_STAR_EQ] = ACTIONS(5950), + [anon_sym_SLASH_EQ] = ACTIONS(5950), + [anon_sym_PERCENT_EQ] = ACTIONS(5950), + [anon_sym_PLUS_EQ] = ACTIONS(5950), + [anon_sym_DASH_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_EQ] = ACTIONS(5950), + [anon_sym_GT_GT_EQ] = ACTIONS(5950), + [anon_sym_AMP_EQ] = ACTIONS(5950), + [anon_sym_CARET_EQ] = ACTIONS(5950), + [anon_sym_PIPE_EQ] = ACTIONS(5950), + [anon_sym_and_eq] = ACTIONS(5948), + [anon_sym_or_eq] = ACTIONS(5948), + [anon_sym_xor_eq] = ACTIONS(5948), + [anon_sym_LT_EQ_GT] = ACTIONS(5950), + [anon_sym_or] = ACTIONS(5948), + [anon_sym_and] = ACTIONS(5948), + [anon_sym_bitor] = ACTIONS(5948), + [anon_sym_xor] = ACTIONS(5948), + [anon_sym_bitand] = ACTIONS(5948), + [anon_sym_not_eq] = ACTIONS(5948), + [anon_sym_DASH_DASH] = ACTIONS(5950), + [anon_sym_PLUS_PLUS] = ACTIONS(5950), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_DOT_STAR] = ACTIONS(5950), + [anon_sym_DASH_GT] = ACTIONS(5950), [anon_sym_L_DQUOTE] = ACTIONS(1972), [anon_sym_u_DQUOTE] = ACTIONS(1972), [anon_sym_U_DQUOTE] = ACTIONS(1972), @@ -266840,154 +269281,296 @@ 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(5915), + [sym_literal_suffix] = ACTIONS(5948), }, - [STATE(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), + [STATE(1973)] = { + [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___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_COLON] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym_LBRACE] = 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), [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), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_final] = ACTIONS(5470), + [anon_sym_override] = ACTIONS(5470), }, - [STATE(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), + [STATE(1974)] = { + [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(5523), + [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(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), + [sym_auto] = ACTIONS(5521), + [anon_sym_decltype] = ACTIONS(5521), + [anon_sym_final] = ACTIONS(5521), + [anon_sym_override] = ACTIONS(5521), }, - [STATE(1950)] = { + [STATE(1975)] = { + [sym_identifier] = ACTIONS(5000), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5007), + [anon_sym_COMMA] = ACTIONS(5007), + [anon_sym_RPAREN] = ACTIONS(5007), + [aux_sym_preproc_if_token2] = ACTIONS(5007), + [aux_sym_preproc_else_token1] = ACTIONS(5007), + [aux_sym_preproc_elif_token1] = ACTIONS(5000), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5007), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5007), + [anon_sym_LPAREN2] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5000), + [anon_sym_PLUS] = ACTIONS(5000), + [anon_sym_STAR] = ACTIONS(5000), + [anon_sym_SLASH] = ACTIONS(5000), + [anon_sym_PERCENT] = ACTIONS(5000), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5000), + [anon_sym_CARET] = ACTIONS(5000), + [anon_sym_AMP] = ACTIONS(5000), + [anon_sym_EQ_EQ] = ACTIONS(5007), + [anon_sym_BANG_EQ] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5000), + [anon_sym_GT_EQ] = ACTIONS(5007), + [anon_sym_LT_EQ] = ACTIONS(5000), + [anon_sym_LT] = ACTIONS(5000), + [anon_sym_LT_LT] = ACTIONS(5000), + [anon_sym_GT_GT] = ACTIONS(5000), + [anon_sym_SEMI] = ACTIONS(5007), + [anon_sym___attribute__] = ACTIONS(5000), + [anon_sym___attribute] = ACTIONS(5000), + [anon_sym_COLON] = ACTIONS(5000), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_LBRACK] = ACTIONS(5007), + [anon_sym_RBRACK] = ACTIONS(5007), + [anon_sym_EQ] = ACTIONS(5000), + [anon_sym_QMARK] = ACTIONS(5007), + [anon_sym_STAR_EQ] = ACTIONS(5007), + [anon_sym_SLASH_EQ] = ACTIONS(5007), + [anon_sym_PERCENT_EQ] = ACTIONS(5007), + [anon_sym_PLUS_EQ] = ACTIONS(5007), + [anon_sym_DASH_EQ] = ACTIONS(5007), + [anon_sym_LT_LT_EQ] = ACTIONS(5007), + [anon_sym_GT_GT_EQ] = ACTIONS(5007), + [anon_sym_AMP_EQ] = ACTIONS(5007), + [anon_sym_CARET_EQ] = ACTIONS(5007), + [anon_sym_PIPE_EQ] = ACTIONS(5007), + [anon_sym_and_eq] = ACTIONS(5000), + [anon_sym_or_eq] = ACTIONS(5000), + [anon_sym_xor_eq] = ACTIONS(5000), + [anon_sym_LT_EQ_GT] = ACTIONS(5007), + [anon_sym_or] = ACTIONS(5000), + [anon_sym_and] = ACTIONS(5000), + [anon_sym_bitor] = ACTIONS(5000), + [anon_sym_xor] = ACTIONS(5000), + [anon_sym_bitand] = ACTIONS(5000), + [anon_sym_not_eq] = ACTIONS(5000), + [anon_sym_DASH_DASH] = ACTIONS(5007), + [anon_sym_PLUS_PLUS] = ACTIONS(5007), + [anon_sym_DOT] = ACTIONS(5000), + [anon_sym_DOT_STAR] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5007), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5000), + [anon_sym_decltype] = ACTIONS(5000), + [anon_sym_final] = ACTIONS(5000), + [anon_sym_override] = ACTIONS(5000), + }, + [STATE(1976)] = { + [sym_identifier] = ACTIONS(5952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5954), + [anon_sym_COMMA] = ACTIONS(5954), + [anon_sym_RPAREN] = ACTIONS(5954), + [aux_sym_preproc_if_token2] = ACTIONS(5954), + [aux_sym_preproc_else_token1] = ACTIONS(5954), + [aux_sym_preproc_elif_token1] = ACTIONS(5952), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5954), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5954), + [anon_sym_LPAREN2] = ACTIONS(5954), + [anon_sym_DASH] = ACTIONS(5952), + [anon_sym_PLUS] = ACTIONS(5952), + [anon_sym_STAR] = ACTIONS(5952), + [anon_sym_SLASH] = ACTIONS(5952), + [anon_sym_PERCENT] = ACTIONS(5952), + [anon_sym_PIPE_PIPE] = ACTIONS(5954), + [anon_sym_AMP_AMP] = ACTIONS(5954), + [anon_sym_PIPE] = ACTIONS(5952), + [anon_sym_CARET] = ACTIONS(5952), + [anon_sym_AMP] = ACTIONS(5952), + [anon_sym_EQ_EQ] = ACTIONS(5954), + [anon_sym_BANG_EQ] = ACTIONS(5954), + [anon_sym_GT] = ACTIONS(5952), + [anon_sym_GT_EQ] = ACTIONS(5954), + [anon_sym_LT_EQ] = ACTIONS(5952), + [anon_sym_LT] = ACTIONS(5952), + [anon_sym_LT_LT] = ACTIONS(5952), + [anon_sym_GT_GT] = ACTIONS(5952), + [anon_sym_SEMI] = ACTIONS(5954), + [anon_sym___attribute__] = ACTIONS(5952), + [anon_sym___attribute] = ACTIONS(5952), + [anon_sym_COLON] = ACTIONS(5954), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5954), + [anon_sym_LBRACE] = ACTIONS(5954), + [anon_sym_RBRACE] = ACTIONS(5954), + [anon_sym_LBRACK] = ACTIONS(5952), + [anon_sym_RBRACK] = ACTIONS(5954), + [anon_sym_EQ] = ACTIONS(5952), + [anon_sym_QMARK] = ACTIONS(5954), + [anon_sym_STAR_EQ] = ACTIONS(5954), + [anon_sym_SLASH_EQ] = ACTIONS(5954), + [anon_sym_PERCENT_EQ] = ACTIONS(5954), + [anon_sym_PLUS_EQ] = ACTIONS(5954), + [anon_sym_DASH_EQ] = ACTIONS(5954), + [anon_sym_LT_LT_EQ] = ACTIONS(5954), + [anon_sym_GT_GT_EQ] = ACTIONS(5954), + [anon_sym_AMP_EQ] = ACTIONS(5954), + [anon_sym_CARET_EQ] = ACTIONS(5954), + [anon_sym_PIPE_EQ] = ACTIONS(5954), + [anon_sym_and_eq] = ACTIONS(5952), + [anon_sym_or_eq] = ACTIONS(5952), + [anon_sym_xor_eq] = ACTIONS(5952), + [anon_sym_LT_EQ_GT] = ACTIONS(5954), + [anon_sym_or] = ACTIONS(5952), + [anon_sym_and] = ACTIONS(5952), + [anon_sym_bitor] = ACTIONS(5952), + [anon_sym_xor] = ACTIONS(5952), + [anon_sym_bitand] = ACTIONS(5952), + [anon_sym_not_eq] = ACTIONS(5952), + [anon_sym_DASH_DASH] = ACTIONS(5954), + [anon_sym_PLUS_PLUS] = ACTIONS(5954), + [anon_sym_asm] = ACTIONS(5952), + [anon_sym___asm__] = ACTIONS(5952), + [anon_sym___asm] = ACTIONS(5952), + [anon_sym_DOT] = ACTIONS(5952), + [anon_sym_DOT_STAR] = ACTIONS(5954), + [anon_sym_DASH_GT] = ACTIONS(5954), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5952), + }, + [STATE(1977)] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2717), [aux_sym_preproc_if_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token1] = ACTIONS(1940), [aux_sym_preproc_ifdef_token2] = ACTIONS(1940), @@ -266997,13 +269580,13 @@ 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(2729), + [anon_sym_SEMI] = ACTIONS(2717), [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___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), @@ -267055,83 +269638,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1940), [anon_sym_static_assert] = ACTIONS(1940), }, - [STATE(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), + [STATE(1978)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_COMMA] = ACTIONS(5956), + [anon_sym_RPAREN] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_PLUS] = ACTIONS(5958), + [anon_sym_STAR] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5958), + [anon_sym_PERCENT] = ACTIONS(5956), + [anon_sym_PIPE_PIPE] = ACTIONS(5956), + [anon_sym_AMP_AMP] = ACTIONS(5956), + [anon_sym_PIPE] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [anon_sym_EQ_EQ] = ACTIONS(5956), + [anon_sym_BANG_EQ] = ACTIONS(5956), + [anon_sym_GT] = ACTIONS(5958), + [anon_sym_GT_EQ] = ACTIONS(5956), + [anon_sym_LT_EQ] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5958), + [anon_sym_LT_LT] = ACTIONS(5956), + [anon_sym_GT_GT] = ACTIONS(5956), + [anon_sym_SEMI] = ACTIONS(5956), + [anon_sym___extension__] = ACTIONS(5956), + [anon_sym___attribute__] = ACTIONS(5956), + [anon_sym___attribute] = ACTIONS(5958), + [anon_sym_COLON] = ACTIONS(5956), + [anon_sym_LBRACE] = ACTIONS(5956), + [anon_sym_RBRACE] = ACTIONS(5956), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5956), + [anon_sym_RBRACK] = ACTIONS(5956), + [anon_sym_const] = ACTIONS(5958), + [anon_sym_constexpr] = ACTIONS(5956), + [anon_sym_volatile] = ACTIONS(5956), + [anon_sym_restrict] = ACTIONS(5956), + [anon_sym___restrict__] = ACTIONS(5956), + [anon_sym__Atomic] = ACTIONS(5956), + [anon_sym__Noreturn] = ACTIONS(5956), + [anon_sym_noreturn] = ACTIONS(5956), + [anon_sym__Nonnull] = ACTIONS(5956), + [anon_sym_mutable] = ACTIONS(5956), + [anon_sym_constinit] = ACTIONS(5956), + [anon_sym_consteval] = ACTIONS(5956), + [anon_sym_alignas] = ACTIONS(5956), + [anon_sym__Alignas] = ACTIONS(5956), + [anon_sym_QMARK] = ACTIONS(5956), + [anon_sym_LT_EQ_GT] = ACTIONS(5956), + [anon_sym_or] = ACTIONS(5956), + [anon_sym_and] = ACTIONS(5956), + [anon_sym_bitor] = ACTIONS(5956), + [anon_sym_xor] = ACTIONS(5956), + [anon_sym_bitand] = ACTIONS(5956), + [anon_sym_not_eq] = ACTIONS(5956), + [anon_sym_DASH_DASH] = ACTIONS(5956), + [anon_sym_PLUS_PLUS] = ACTIONS(5956), + [anon_sym_DOT] = ACTIONS(5958), + [anon_sym_DOT_STAR] = ACTIONS(5956), + [anon_sym_DASH_GT] = ACTIONS(5956), [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_requires] = ACTIONS(5517), + [sym_auto] = ACTIONS(5956), + [anon_sym_decltype] = ACTIONS(5956), + [anon_sym_final] = ACTIONS(5956), + [anon_sym_override] = ACTIONS(5956), + [anon_sym_requires] = ACTIONS(5956), }, - [STATE(1952)] = { + [STATE(1979)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5960), + [anon_sym_COMMA] = ACTIONS(5960), + [anon_sym_RPAREN] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_PLUS] = ACTIONS(5962), + [anon_sym_STAR] = ACTIONS(5960), + [anon_sym_SLASH] = ACTIONS(5962), + [anon_sym_PERCENT] = ACTIONS(5960), + [anon_sym_PIPE_PIPE] = ACTIONS(5960), + [anon_sym_AMP_AMP] = ACTIONS(5960), + [anon_sym_PIPE] = ACTIONS(5962), + [anon_sym_CARET] = ACTIONS(5960), + [anon_sym_AMP] = ACTIONS(5962), + [anon_sym_EQ_EQ] = ACTIONS(5960), + [anon_sym_BANG_EQ] = ACTIONS(5960), + [anon_sym_GT] = ACTIONS(5962), + [anon_sym_GT_EQ] = ACTIONS(5960), + [anon_sym_LT_EQ] = ACTIONS(5962), + [anon_sym_LT] = ACTIONS(5962), + [anon_sym_LT_LT] = ACTIONS(5960), + [anon_sym_GT_GT] = ACTIONS(5960), + [anon_sym_SEMI] = ACTIONS(5960), + [anon_sym___extension__] = ACTIONS(5960), + [anon_sym___attribute__] = ACTIONS(5960), + [anon_sym___attribute] = ACTIONS(5962), + [anon_sym_COLON] = ACTIONS(5960), + [anon_sym_LBRACE] = ACTIONS(5960), + [anon_sym_RBRACE] = ACTIONS(5960), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5960), + [anon_sym_RBRACK] = ACTIONS(5960), + [anon_sym_const] = ACTIONS(5962), + [anon_sym_constexpr] = ACTIONS(5960), + [anon_sym_volatile] = ACTIONS(5960), + [anon_sym_restrict] = ACTIONS(5960), + [anon_sym___restrict__] = ACTIONS(5960), + [anon_sym__Atomic] = ACTIONS(5960), + [anon_sym__Noreturn] = ACTIONS(5960), + [anon_sym_noreturn] = ACTIONS(5960), + [anon_sym__Nonnull] = ACTIONS(5960), + [anon_sym_mutable] = ACTIONS(5960), + [anon_sym_constinit] = ACTIONS(5960), + [anon_sym_consteval] = ACTIONS(5960), + [anon_sym_alignas] = ACTIONS(5960), + [anon_sym__Alignas] = ACTIONS(5960), + [anon_sym_QMARK] = ACTIONS(5960), + [anon_sym_LT_EQ_GT] = ACTIONS(5960), + [anon_sym_or] = ACTIONS(5960), + [anon_sym_and] = ACTIONS(5960), + [anon_sym_bitor] = ACTIONS(5960), + [anon_sym_xor] = ACTIONS(5960), + [anon_sym_bitand] = ACTIONS(5960), + [anon_sym_not_eq] = ACTIONS(5960), + [anon_sym_DASH_DASH] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5960), + [anon_sym_DOT] = ACTIONS(5962), + [anon_sym_DOT_STAR] = ACTIONS(5960), + [anon_sym_DASH_GT] = ACTIONS(5960), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5960), + [anon_sym_decltype] = ACTIONS(5960), + [anon_sym_final] = ACTIONS(5960), + [anon_sym_override] = ACTIONS(5960), + [anon_sym_requires] = ACTIONS(5960), + }, + [STATE(1980)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5964), + [anon_sym_COMMA] = ACTIONS(5964), + [anon_sym_RPAREN] = ACTIONS(5964), + [anon_sym_LPAREN2] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5966), + [anon_sym_PLUS] = ACTIONS(5966), + [anon_sym_STAR] = ACTIONS(5964), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5964), + [anon_sym_PIPE_PIPE] = ACTIONS(5964), + [anon_sym_AMP_AMP] = ACTIONS(5964), + [anon_sym_PIPE] = ACTIONS(5966), + [anon_sym_CARET] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(5966), + [anon_sym_EQ_EQ] = ACTIONS(5964), + [anon_sym_BANG_EQ] = ACTIONS(5964), + [anon_sym_GT] = ACTIONS(5966), + [anon_sym_GT_EQ] = ACTIONS(5964), + [anon_sym_LT_EQ] = ACTIONS(5966), + [anon_sym_LT] = ACTIONS(5966), + [anon_sym_LT_LT] = ACTIONS(5964), + [anon_sym_GT_GT] = ACTIONS(5964), + [anon_sym_SEMI] = ACTIONS(5964), + [anon_sym___extension__] = ACTIONS(5964), + [anon_sym___attribute__] = ACTIONS(5964), + [anon_sym___attribute] = ACTIONS(5966), + [anon_sym_COLON] = ACTIONS(5964), + [anon_sym_LBRACE] = ACTIONS(5964), + [anon_sym_RBRACE] = ACTIONS(5964), + [anon_sym_signed] = ACTIONS(5968), + [anon_sym_unsigned] = ACTIONS(5968), + [anon_sym_long] = ACTIONS(5968), + [anon_sym_short] = ACTIONS(5968), + [anon_sym_LBRACK] = ACTIONS(5964), + [anon_sym_RBRACK] = ACTIONS(5964), + [anon_sym_const] = ACTIONS(5966), + [anon_sym_constexpr] = ACTIONS(5964), + [anon_sym_volatile] = ACTIONS(5964), + [anon_sym_restrict] = ACTIONS(5964), + [anon_sym___restrict__] = ACTIONS(5964), + [anon_sym__Atomic] = ACTIONS(5964), + [anon_sym__Noreturn] = ACTIONS(5964), + [anon_sym_noreturn] = ACTIONS(5964), + [anon_sym__Nonnull] = ACTIONS(5964), + [anon_sym_mutable] = ACTIONS(5964), + [anon_sym_constinit] = ACTIONS(5964), + [anon_sym_consteval] = ACTIONS(5964), + [anon_sym_alignas] = ACTIONS(5964), + [anon_sym__Alignas] = ACTIONS(5964), + [anon_sym_QMARK] = ACTIONS(5964), + [anon_sym_LT_EQ_GT] = ACTIONS(5964), + [anon_sym_or] = ACTIONS(5964), + [anon_sym_and] = ACTIONS(5964), + [anon_sym_bitor] = ACTIONS(5964), + [anon_sym_xor] = ACTIONS(5964), + [anon_sym_bitand] = ACTIONS(5964), + [anon_sym_not_eq] = ACTIONS(5964), + [anon_sym_DASH_DASH] = ACTIONS(5964), + [anon_sym_PLUS_PLUS] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5966), + [anon_sym_DOT_STAR] = ACTIONS(5964), + [anon_sym_DASH_GT] = ACTIONS(5964), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5964), + [anon_sym_decltype] = ACTIONS(5964), + [anon_sym_final] = ACTIONS(5964), + [anon_sym_override] = ACTIONS(5964), + [anon_sym_requires] = ACTIONS(5964), + }, + [STATE(1981)] = { [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), @@ -267140,7 +269863,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(2729), + [anon_sym_SEMI] = ACTIONS(1938), [anon_sym___extension__] = ACTIONS(1940), [anon_sym_typedef] = ACTIONS(1940), [anon_sym_virtual] = ACTIONS(1940), @@ -267152,6 +269875,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), @@ -267196,110 +269920,182 @@ 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), }, - [STATE(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), + [STATE(1982)] = { + [sym_identifier] = ACTIONS(5970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5972), + [anon_sym_COMMA] = ACTIONS(5972), + [anon_sym_RPAREN] = ACTIONS(5972), + [aux_sym_preproc_if_token2] = ACTIONS(5972), + [aux_sym_preproc_else_token1] = ACTIONS(5972), + [aux_sym_preproc_elif_token1] = ACTIONS(5970), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5972), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5972), + [anon_sym_LPAREN2] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5970), + [anon_sym_PLUS] = ACTIONS(5970), + [anon_sym_STAR] = ACTIONS(5970), + [anon_sym_SLASH] = ACTIONS(5970), + [anon_sym_PERCENT] = ACTIONS(5970), + [anon_sym_PIPE_PIPE] = ACTIONS(5972), + [anon_sym_AMP_AMP] = ACTIONS(5972), + [anon_sym_PIPE] = ACTIONS(5970), + [anon_sym_CARET] = ACTIONS(5970), + [anon_sym_AMP] = ACTIONS(5970), + [anon_sym_EQ_EQ] = ACTIONS(5972), + [anon_sym_BANG_EQ] = ACTIONS(5972), + [anon_sym_GT] = ACTIONS(5970), + [anon_sym_GT_EQ] = ACTIONS(5972), + [anon_sym_LT_EQ] = ACTIONS(5970), + [anon_sym_LT] = ACTIONS(5970), + [anon_sym_LT_LT] = ACTIONS(5970), + [anon_sym_GT_GT] = ACTIONS(5970), + [anon_sym_SEMI] = ACTIONS(5972), + [anon_sym___attribute__] = ACTIONS(5970), + [anon_sym___attribute] = ACTIONS(5970), + [anon_sym_COLON] = ACTIONS(5972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5972), + [anon_sym_LBRACE] = ACTIONS(5972), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_LBRACK] = ACTIONS(5970), + [anon_sym_RBRACK] = ACTIONS(5972), + [anon_sym_EQ] = ACTIONS(5970), + [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(5970), + [anon_sym_or_eq] = ACTIONS(5970), + [anon_sym_xor_eq] = ACTIONS(5970), + [anon_sym_LT_EQ_GT] = ACTIONS(5972), + [anon_sym_or] = ACTIONS(5970), + [anon_sym_and] = ACTIONS(5970), + [anon_sym_bitor] = ACTIONS(5970), + [anon_sym_xor] = ACTIONS(5970), + [anon_sym_bitand] = ACTIONS(5970), + [anon_sym_not_eq] = ACTIONS(5970), + [anon_sym_DASH_DASH] = ACTIONS(5972), + [anon_sym_PLUS_PLUS] = ACTIONS(5972), + [anon_sym_asm] = ACTIONS(5970), + [anon_sym___asm__] = ACTIONS(5970), + [anon_sym___asm] = ACTIONS(5970), + [anon_sym_DOT] = ACTIONS(5970), + [anon_sym_DOT_STAR] = ACTIONS(5972), + [anon_sym_DASH_GT] = ACTIONS(5972), [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(5925), + [anon_sym_try] = ACTIONS(5970), }, - [STATE(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), + [STATE(1983)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5974), + [anon_sym_COMMA] = ACTIONS(5974), + [anon_sym_RPAREN] = ACTIONS(5974), + [anon_sym_LPAREN2] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5976), + [anon_sym_PLUS] = ACTIONS(5976), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5976), + [anon_sym_PERCENT] = ACTIONS(5974), + [anon_sym_PIPE_PIPE] = ACTIONS(5974), + [anon_sym_AMP_AMP] = ACTIONS(5974), + [anon_sym_PIPE] = ACTIONS(5976), + [anon_sym_CARET] = ACTIONS(5974), + [anon_sym_AMP] = ACTIONS(5976), + [anon_sym_EQ_EQ] = ACTIONS(5974), + [anon_sym_BANG_EQ] = ACTIONS(5974), + [anon_sym_GT] = ACTIONS(5976), + [anon_sym_GT_EQ] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5976), + [anon_sym_LT] = ACTIONS(5976), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5974), + [anon_sym_SEMI] = ACTIONS(5974), + [anon_sym___extension__] = ACTIONS(5974), + [anon_sym___attribute__] = ACTIONS(5974), + [anon_sym___attribute] = ACTIONS(5976), + [anon_sym_COLON] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_RBRACE] = ACTIONS(5974), + [anon_sym_signed] = ACTIONS(5978), + [anon_sym_unsigned] = ACTIONS(5978), + [anon_sym_long] = ACTIONS(5978), + [anon_sym_short] = ACTIONS(5978), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_RBRACK] = ACTIONS(5974), + [anon_sym_const] = ACTIONS(5976), + [anon_sym_constexpr] = ACTIONS(5974), + [anon_sym_volatile] = ACTIONS(5974), + [anon_sym_restrict] = ACTIONS(5974), + [anon_sym___restrict__] = ACTIONS(5974), + [anon_sym__Atomic] = ACTIONS(5974), + [anon_sym__Noreturn] = ACTIONS(5974), + [anon_sym_noreturn] = ACTIONS(5974), + [anon_sym__Nonnull] = ACTIONS(5974), + [anon_sym_mutable] = ACTIONS(5974), + [anon_sym_constinit] = ACTIONS(5974), + [anon_sym_consteval] = ACTIONS(5974), + [anon_sym_alignas] = ACTIONS(5974), + [anon_sym__Alignas] = ACTIONS(5974), + [anon_sym_QMARK] = ACTIONS(5974), + [anon_sym_LT_EQ_GT] = ACTIONS(5974), + [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(5974), + [anon_sym_PLUS_PLUS] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5976), + [anon_sym_DOT_STAR] = ACTIONS(5974), + [anon_sym_DASH_GT] = ACTIONS(5974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5974), + [anon_sym_decltype] = ACTIONS(5974), + [anon_sym_final] = ACTIONS(5974), + [anon_sym_override] = ACTIONS(5974), + [anon_sym_requires] = ACTIONS(5974), + }, + [STATE(1984)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4919), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), [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_COLON_COLON] = ACTIONS(5236), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -267328,7 +270124,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(3019), + [sym_primitive_type] = ACTIONS(3027), [anon_sym_enum] = ACTIONS(73), [anon_sym_class] = ACTIONS(75), [anon_sym_struct] = ACTIONS(77), @@ -267339,109 +270135,393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(131), [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1985)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4868), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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(3027), + [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(5541), - [anon_sym_decltype] = ACTIONS(5541), - [anon_sym_final] = ACTIONS(5541), - [anon_sym_override] = ACTIONS(5541), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(1986)] = { + [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), + }, + [STATE(1987)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4891), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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(3027), + [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), + }, + [STATE(1988)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4896), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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(3027), + [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), + }, + [STATE(1989)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4905), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [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(5236), + [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(3027), + [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), + }, + [STATE(1990)] = { + [sym__declaration_modifiers] = STATE(2054), + [sym__declaration_specifiers] = STATE(4913), + [sym_attribute_specifier] = STATE(2054), + [sym_attribute_declaration] = STATE(2054), + [sym_ms_declspec_modifier] = STATE(2054), + [sym_storage_class_specifier] = STATE(2054), + [sym_type_qualifier] = STATE(2054), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2439), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(2054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), [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_COLON_COLON] = ACTIONS(5236), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -267470,22 +270550,307 @@ 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(3019), + [sym_primitive_type] = ACTIONS(3027), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), + }, + [STATE(1991)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5980), + [anon_sym_COMMA] = ACTIONS(5980), + [anon_sym_RPAREN] = ACTIONS(5980), + [anon_sym_LPAREN2] = ACTIONS(5980), + [anon_sym_DASH] = ACTIONS(5982), + [anon_sym_PLUS] = ACTIONS(5982), + [anon_sym_STAR] = ACTIONS(5980), + [anon_sym_SLASH] = ACTIONS(5982), + [anon_sym_PERCENT] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5980), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE] = ACTIONS(5982), + [anon_sym_CARET] = ACTIONS(5980), + [anon_sym_AMP] = ACTIONS(5982), + [anon_sym_EQ_EQ] = ACTIONS(5980), + [anon_sym_BANG_EQ] = ACTIONS(5980), + [anon_sym_GT] = ACTIONS(5982), + [anon_sym_GT_EQ] = ACTIONS(5980), + [anon_sym_LT_EQ] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(5982), + [anon_sym_LT_LT] = ACTIONS(5980), + [anon_sym_GT_GT] = ACTIONS(5980), + [anon_sym_SEMI] = ACTIONS(5980), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(5980), + [anon_sym___attribute] = ACTIONS(5982), + [anon_sym_COLON] = ACTIONS(5980), + [anon_sym_LBRACE] = ACTIONS(5980), + [anon_sym_RBRACE] = ACTIONS(5980), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5980), + [anon_sym_RBRACK] = ACTIONS(5980), + [anon_sym_const] = ACTIONS(5982), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5980), + [anon_sym__Alignas] = ACTIONS(5980), + [anon_sym_QMARK] = ACTIONS(5980), + [anon_sym_LT_EQ_GT] = ACTIONS(5980), + [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(5980), + [anon_sym_PLUS_PLUS] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5982), + [anon_sym_DOT_STAR] = ACTIONS(5980), + [anon_sym_DASH_GT] = ACTIONS(5980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5980), + [anon_sym_decltype] = ACTIONS(5980), + [anon_sym_final] = ACTIONS(5980), + [anon_sym_override] = ACTIONS(5980), + [anon_sym_requires] = ACTIONS(5980), + }, + [STATE(1992)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_RPAREN] = ACTIONS(5984), + [anon_sym_LPAREN2] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5986), + [anon_sym_STAR] = ACTIONS(5984), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_PERCENT] = ACTIONS(5984), + [anon_sym_PIPE_PIPE] = ACTIONS(5984), + [anon_sym_AMP_AMP] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5984), + [anon_sym_LT_EQ] = ACTIONS(5986), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5984), + [anon_sym_GT_GT] = ACTIONS(5984), + [anon_sym_SEMI] = ACTIONS(5984), + [anon_sym___extension__] = ACTIONS(5984), + [anon_sym___attribute__] = ACTIONS(5984), + [anon_sym___attribute] = ACTIONS(5986), + [anon_sym_COLON] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(5984), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_signed] = ACTIONS(5901), + [anon_sym_unsigned] = ACTIONS(5901), + [anon_sym_long] = ACTIONS(5901), + [anon_sym_short] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(5984), + [anon_sym_RBRACK] = ACTIONS(5984), + [anon_sym_const] = ACTIONS(5986), + [anon_sym_constexpr] = ACTIONS(5984), + [anon_sym_volatile] = ACTIONS(5984), + [anon_sym_restrict] = ACTIONS(5984), + [anon_sym___restrict__] = ACTIONS(5984), + [anon_sym__Atomic] = ACTIONS(5984), + [anon_sym__Noreturn] = ACTIONS(5984), + [anon_sym_noreturn] = ACTIONS(5984), + [anon_sym__Nonnull] = ACTIONS(5984), + [anon_sym_mutable] = ACTIONS(5984), + [anon_sym_constinit] = ACTIONS(5984), + [anon_sym_consteval] = ACTIONS(5984), + [anon_sym_alignas] = ACTIONS(5984), + [anon_sym__Alignas] = ACTIONS(5984), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_LT_EQ_GT] = ACTIONS(5984), + [anon_sym_or] = ACTIONS(5984), + [anon_sym_and] = ACTIONS(5984), + [anon_sym_bitor] = ACTIONS(5984), + [anon_sym_xor] = ACTIONS(5984), + [anon_sym_bitand] = ACTIONS(5984), + [anon_sym_not_eq] = ACTIONS(5984), + [anon_sym_DASH_DASH] = ACTIONS(5984), + [anon_sym_PLUS_PLUS] = ACTIONS(5984), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_DOT_STAR] = ACTIONS(5984), + [anon_sym_DASH_GT] = ACTIONS(5984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5984), + [anon_sym_decltype] = ACTIONS(5984), + [anon_sym_final] = ACTIONS(5984), + [anon_sym_override] = ACTIONS(5984), + [anon_sym_requires] = ACTIONS(5984), + }, + [STATE(1993)] = { + [sym_type_qualifier] = STATE(1993), + [sym_alignas_qualifier] = STATE(2343), + [aux_sym__type_definition_type_repeat1] = STATE(1993), + [sym_identifier] = ACTIONS(5060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5062), + [anon_sym_COMMA] = ACTIONS(5062), + [anon_sym_LPAREN2] = ACTIONS(5062), + [anon_sym_DASH] = ACTIONS(5060), + [anon_sym_PLUS] = ACTIONS(5060), + [anon_sym_STAR] = ACTIONS(5062), + [anon_sym_SLASH] = ACTIONS(5060), + [anon_sym_PERCENT] = ACTIONS(5062), + [anon_sym_PIPE_PIPE] = ACTIONS(5062), + [anon_sym_AMP_AMP] = ACTIONS(5062), + [anon_sym_PIPE] = ACTIONS(5060), + [anon_sym_CARET] = ACTIONS(5062), + [anon_sym_AMP] = ACTIONS(5060), + [anon_sym_EQ_EQ] = ACTIONS(5062), + [anon_sym_BANG_EQ] = ACTIONS(5062), + [anon_sym_GT] = ACTIONS(5060), + [anon_sym_GT_EQ] = ACTIONS(5060), + [anon_sym_LT_EQ] = ACTIONS(5060), + [anon_sym_LT] = ACTIONS(5060), + [anon_sym_LT_LT] = ACTIONS(5062), + [anon_sym_GT_GT] = ACTIONS(5060), + [anon_sym___extension__] = ACTIONS(5988), + [anon_sym___attribute__] = ACTIONS(5060), + [anon_sym___attribute] = ACTIONS(5060), + [anon_sym_LBRACE] = ACTIONS(5062), + [anon_sym_signed] = ACTIONS(5060), + [anon_sym_unsigned] = ACTIONS(5060), + [anon_sym_long] = ACTIONS(5060), + [anon_sym_short] = ACTIONS(5060), + [anon_sym_LBRACK] = ACTIONS(5062), + [anon_sym_const] = ACTIONS(5988), + [anon_sym_constexpr] = ACTIONS(5988), + [anon_sym_volatile] = ACTIONS(5988), + [anon_sym_restrict] = ACTIONS(5988), + [anon_sym___restrict__] = ACTIONS(5988), + [anon_sym__Atomic] = ACTIONS(5988), + [anon_sym__Noreturn] = ACTIONS(5988), + [anon_sym_noreturn] = ACTIONS(5988), + [anon_sym__Nonnull] = ACTIONS(5988), + [anon_sym_mutable] = ACTIONS(5988), + [anon_sym_constinit] = ACTIONS(5988), + [anon_sym_consteval] = ACTIONS(5988), + [anon_sym_alignas] = ACTIONS(5991), + [anon_sym__Alignas] = ACTIONS(5991), + [sym_primitive_type] = ACTIONS(5060), + [anon_sym_QMARK] = ACTIONS(5062), + [anon_sym_LT_EQ_GT] = ACTIONS(5062), + [anon_sym_or] = ACTIONS(5060), + [anon_sym_and] = ACTIONS(5060), + [anon_sym_bitor] = ACTIONS(5060), + [anon_sym_xor] = ACTIONS(5060), + [anon_sym_bitand] = ACTIONS(5060), + [anon_sym_not_eq] = ACTIONS(5060), + [anon_sym_DASH_DASH] = ACTIONS(5062), + [anon_sym_PLUS_PLUS] = ACTIONS(5062), + [anon_sym_DOT] = ACTIONS(5060), + [anon_sym_DOT_STAR] = ACTIONS(5062), + [anon_sym_DASH_GT] = ACTIONS(5062), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5060), + [anon_sym_decltype] = ACTIONS(5060), + [anon_sym_final] = ACTIONS(5060), + [anon_sym_override] = ACTIONS(5060), + [anon_sym_GT2] = ACTIONS(5062), + [anon_sym_requires] = ACTIONS(5060), + }, + [STATE(1994)] = { + [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), }, - [STATE(1957)] = { + [STATE(1995)] = { [sym_identifier] = ACTIONS(1940), [aux_sym_preproc_def_token1] = ACTIONS(1940), - [anon_sym_COMMA] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2717), [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), @@ -267494,19 +270859,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(2729), + [anon_sym_SEMI] = ACTIONS(2717), [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(5460), + [anon_sym___attribute] = ACTIONS(5460), [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), @@ -267552,1671 +270916,2490 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1940), [anon_sym_static_assert] = ACTIONS(1940), }, - [STATE(1958)] = { - [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), - [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), + [STATE(1996)] = { + [sym_identifier] = ACTIONS(5998), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6000), + [anon_sym_COMMA] = ACTIONS(6000), + [anon_sym_RPAREN] = ACTIONS(6000), + [aux_sym_preproc_if_token2] = ACTIONS(6000), + [aux_sym_preproc_else_token1] = ACTIONS(6000), + [aux_sym_preproc_elif_token1] = ACTIONS(5998), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6000), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6000), + [anon_sym_LPAREN2] = ACTIONS(6000), + [anon_sym_DASH] = ACTIONS(5998), + [anon_sym_PLUS] = ACTIONS(5998), + [anon_sym_STAR] = ACTIONS(5998), + [anon_sym_SLASH] = ACTIONS(5998), + [anon_sym_PERCENT] = ACTIONS(5998), + [anon_sym_PIPE_PIPE] = ACTIONS(6000), + [anon_sym_AMP_AMP] = ACTIONS(6000), + [anon_sym_PIPE] = ACTIONS(5998), + [anon_sym_CARET] = ACTIONS(5998), + [anon_sym_AMP] = ACTIONS(5998), + [anon_sym_EQ_EQ] = ACTIONS(6000), + [anon_sym_BANG_EQ] = ACTIONS(6000), + [anon_sym_GT] = ACTIONS(5998), + [anon_sym_GT_EQ] = ACTIONS(6000), + [anon_sym_LT_EQ] = ACTIONS(5998), + [anon_sym_LT] = ACTIONS(5998), + [anon_sym_LT_LT] = ACTIONS(5998), + [anon_sym_GT_GT] = ACTIONS(5998), + [anon_sym_SEMI] = ACTIONS(6000), + [anon_sym___attribute__] = ACTIONS(5998), + [anon_sym___attribute] = ACTIONS(5998), + [anon_sym_COLON] = ACTIONS(6000), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6000), + [anon_sym_LBRACE] = ACTIONS(6000), + [anon_sym_RBRACE] = ACTIONS(6000), + [anon_sym_LBRACK] = ACTIONS(5998), + [anon_sym_RBRACK] = ACTIONS(6000), + [anon_sym_EQ] = ACTIONS(5998), + [anon_sym_QMARK] = ACTIONS(6000), + [anon_sym_STAR_EQ] = ACTIONS(6000), + [anon_sym_SLASH_EQ] = ACTIONS(6000), + [anon_sym_PERCENT_EQ] = ACTIONS(6000), + [anon_sym_PLUS_EQ] = ACTIONS(6000), + [anon_sym_DASH_EQ] = ACTIONS(6000), + [anon_sym_LT_LT_EQ] = ACTIONS(6000), + [anon_sym_GT_GT_EQ] = ACTIONS(6000), + [anon_sym_AMP_EQ] = ACTIONS(6000), + [anon_sym_CARET_EQ] = ACTIONS(6000), + [anon_sym_PIPE_EQ] = ACTIONS(6000), + [anon_sym_and_eq] = ACTIONS(5998), + [anon_sym_or_eq] = ACTIONS(5998), + [anon_sym_xor_eq] = ACTIONS(5998), + [anon_sym_LT_EQ_GT] = ACTIONS(6000), + [anon_sym_or] = ACTIONS(5998), + [anon_sym_and] = ACTIONS(5998), + [anon_sym_bitor] = ACTIONS(5998), + [anon_sym_xor] = ACTIONS(5998), + [anon_sym_bitand] = ACTIONS(5998), + [anon_sym_not_eq] = ACTIONS(5998), + [anon_sym_DASH_DASH] = ACTIONS(6000), + [anon_sym_PLUS_PLUS] = ACTIONS(6000), + [anon_sym_asm] = ACTIONS(5998), + [anon_sym___asm__] = ACTIONS(5998), + [anon_sym___asm] = ACTIONS(5998), + [anon_sym_DOT] = ACTIONS(5998), + [anon_sym_DOT_STAR] = ACTIONS(6000), + [anon_sym_DASH_GT] = ACTIONS(6000), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(5998), + }, + [STATE(1997)] = { + [sym_identifier] = ACTIONS(6002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6004), + [anon_sym_COMMA] = ACTIONS(6004), + [anon_sym_RPAREN] = ACTIONS(6004), + [aux_sym_preproc_if_token2] = ACTIONS(6004), + [aux_sym_preproc_else_token1] = ACTIONS(6004), + [aux_sym_preproc_elif_token1] = ACTIONS(6002), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6004), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6004), + [anon_sym_LPAREN2] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(6002), + [anon_sym_PLUS] = ACTIONS(6002), + [anon_sym_STAR] = ACTIONS(6002), + [anon_sym_SLASH] = ACTIONS(6002), + [anon_sym_PERCENT] = ACTIONS(6002), + [anon_sym_PIPE_PIPE] = ACTIONS(6004), + [anon_sym_AMP_AMP] = ACTIONS(6004), + [anon_sym_PIPE] = ACTIONS(6002), + [anon_sym_CARET] = ACTIONS(6002), + [anon_sym_AMP] = ACTIONS(6002), + [anon_sym_EQ_EQ] = ACTIONS(6004), + [anon_sym_BANG_EQ] = ACTIONS(6004), + [anon_sym_GT] = ACTIONS(6002), + [anon_sym_GT_EQ] = ACTIONS(6004), + [anon_sym_LT_EQ] = ACTIONS(6002), + [anon_sym_LT] = ACTIONS(6002), + [anon_sym_LT_LT] = ACTIONS(6002), + [anon_sym_GT_GT] = ACTIONS(6002), + [anon_sym_SEMI] = ACTIONS(6004), + [anon_sym___attribute__] = ACTIONS(6002), + [anon_sym___attribute] = ACTIONS(6002), + [anon_sym_COLON] = ACTIONS(6004), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6004), + [anon_sym_LBRACE] = ACTIONS(6004), + [anon_sym_RBRACE] = ACTIONS(6004), + [anon_sym_LBRACK] = ACTIONS(6002), + [anon_sym_RBRACK] = ACTIONS(6004), + [anon_sym_EQ] = ACTIONS(6002), + [anon_sym_QMARK] = ACTIONS(6004), + [anon_sym_STAR_EQ] = ACTIONS(6004), + [anon_sym_SLASH_EQ] = ACTIONS(6004), + [anon_sym_PERCENT_EQ] = ACTIONS(6004), + [anon_sym_PLUS_EQ] = ACTIONS(6004), + [anon_sym_DASH_EQ] = ACTIONS(6004), + [anon_sym_LT_LT_EQ] = ACTIONS(6004), + [anon_sym_GT_GT_EQ] = ACTIONS(6004), + [anon_sym_AMP_EQ] = ACTIONS(6004), + [anon_sym_CARET_EQ] = ACTIONS(6004), + [anon_sym_PIPE_EQ] = ACTIONS(6004), + [anon_sym_and_eq] = ACTIONS(6002), + [anon_sym_or_eq] = ACTIONS(6002), + [anon_sym_xor_eq] = ACTIONS(6002), + [anon_sym_LT_EQ_GT] = ACTIONS(6004), + [anon_sym_or] = ACTIONS(6002), + [anon_sym_and] = ACTIONS(6002), + [anon_sym_bitor] = ACTIONS(6002), + [anon_sym_xor] = ACTIONS(6002), + [anon_sym_bitand] = ACTIONS(6002), + [anon_sym_not_eq] = ACTIONS(6002), + [anon_sym_DASH_DASH] = ACTIONS(6004), + [anon_sym_PLUS_PLUS] = ACTIONS(6004), + [anon_sym_asm] = ACTIONS(6002), + [anon_sym___asm__] = ACTIONS(6002), + [anon_sym___asm] = ACTIONS(6002), + [anon_sym_DOT] = ACTIONS(6002), + [anon_sym_DOT_STAR] = ACTIONS(6004), + [anon_sym_DASH_GT] = ACTIONS(6004), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(6002), + }, + [STATE(1998)] = { + [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___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_COLON] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym_LBRACE] = 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), [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(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_final] = ACTIONS(5470), + [anon_sym_override] = ACTIONS(5470), }, - [STATE(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), + [STATE(1999)] = { + [sym_template_argument_list] = STATE(1635), + [sym_identifier] = ACTIONS(5839), + [anon_sym_LPAREN2] = ACTIONS(4180), + [anon_sym_TILDE] = ACTIONS(4180), + [anon_sym_STAR] = ACTIONS(4180), + [anon_sym_PIPE_PIPE] = ACTIONS(4180), + [anon_sym_AMP_AMP] = ACTIONS(4180), + [anon_sym_AMP] = ACTIONS(5839), + [anon_sym_LT] = ACTIONS(6006), + [anon_sym___extension__] = ACTIONS(5839), + [anon_sym_virtual] = ACTIONS(5839), + [anon_sym_extern] = ACTIONS(5839), + [anon_sym___attribute__] = ACTIONS(5839), + [anon_sym___attribute] = ACTIONS(5839), + [anon_sym_using] = ACTIONS(5839), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4180), + [anon_sym___declspec] = ACTIONS(5839), + [anon_sym___based] = ACTIONS(5839), + [anon_sym___cdecl] = ACTIONS(5839), + [anon_sym___clrcall] = ACTIONS(5839), + [anon_sym___stdcall] = ACTIONS(5839), + [anon_sym___fastcall] = ACTIONS(5839), + [anon_sym___thiscall] = ACTIONS(5839), + [anon_sym___vectorcall] = ACTIONS(5839), + [anon_sym_signed] = ACTIONS(5839), + [anon_sym_unsigned] = ACTIONS(5839), + [anon_sym_long] = ACTIONS(5839), + [anon_sym_short] = ACTIONS(5839), + [anon_sym_LBRACK] = ACTIONS(5839), + [anon_sym_static] = ACTIONS(5839), + [anon_sym_register] = ACTIONS(5839), + [anon_sym_inline] = ACTIONS(5839), + [anon_sym___inline] = ACTIONS(5839), + [anon_sym___inline__] = ACTIONS(5839), + [anon_sym___forceinline] = ACTIONS(5839), + [anon_sym_thread_local] = ACTIONS(5839), + [anon_sym___thread] = ACTIONS(5839), + [anon_sym_const] = ACTIONS(5839), + [anon_sym_constexpr] = ACTIONS(5839), + [anon_sym_volatile] = ACTIONS(5839), + [anon_sym_restrict] = ACTIONS(5839), + [anon_sym___restrict__] = ACTIONS(5839), + [anon_sym__Atomic] = ACTIONS(5839), + [anon_sym__Noreturn] = ACTIONS(5839), + [anon_sym_noreturn] = ACTIONS(5839), + [anon_sym__Nonnull] = ACTIONS(5839), + [anon_sym_mutable] = ACTIONS(5839), + [anon_sym_constinit] = ACTIONS(5839), + [anon_sym_consteval] = ACTIONS(5839), + [anon_sym_alignas] = ACTIONS(5839), + [anon_sym__Alignas] = ACTIONS(5839), + [sym_primitive_type] = ACTIONS(5839), + [anon_sym_enum] = ACTIONS(5839), + [anon_sym_class] = ACTIONS(5839), + [anon_sym_struct] = ACTIONS(5839), + [anon_sym_union] = ACTIONS(5839), + [anon_sym_or] = ACTIONS(5839), + [anon_sym_and] = ACTIONS(5839), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5839), + [anon_sym_decltype] = ACTIONS(5839), + [anon_sym_explicit] = ACTIONS(5839), + [anon_sym_typename] = ACTIONS(5839), + [anon_sym_template] = ACTIONS(5839), + [anon_sym_operator] = ACTIONS(5839), + [anon_sym_friend] = ACTIONS(5839), + [anon_sym_concept] = ACTIONS(5839), + }, + [STATE(2000)] = { + [sym_identifier] = ACTIONS(5621), + [aux_sym_preproc_def_token1] = ACTIONS(5621), + [aux_sym_preproc_if_token1] = ACTIONS(5621), + [aux_sym_preproc_if_token2] = 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_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(5929), - [anon_sym_decltype] = ACTIONS(5929), - [anon_sym_final] = ACTIONS(5929), - [anon_sym_override] = ACTIONS(5929), - [anon_sym_requires] = ACTIONS(5929), + [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), }, - [STATE(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), + [STATE(2001)] = { + [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(5933), - [anon_sym_decltype] = ACTIONS(5933), - [anon_sym_final] = ACTIONS(5933), - [anon_sym_override] = ACTIONS(5933), - [anon_sym_requires] = ACTIONS(5933), + [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), }, - [STATE(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), + [STATE(2002)] = { + [sym_ms_based_modifier] = STATE(8310), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(2010), + [sym__declarator] = STATE(6473), + [sym__abstract_declarator] = STATE(6767), + [sym_parenthesized_declarator] = STATE(6137), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_function_declarator] = STATE(6137), + [sym_abstract_function_declarator] = STATE(6117), + [sym_array_declarator] = STATE(6137), + [sym_abstract_array_declarator] = STATE(6117), + [sym_type_qualifier] = STATE(2754), + [sym_alignas_qualifier] = STATE(4359), + [sym_parameter_list] = STATE(3343), + [sym_decltype] = STATE(8381), + [sym_reference_declarator] = STATE(6137), + [sym_abstract_reference_declarator] = STATE(6117), + [sym_structured_binding_declarator] = STATE(6137), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5965), + [sym_qualified_identifier] = STATE(6137), + [sym_operator_name] = STATE(6137), + [aux_sym__type_definition_type_repeat1] = STATE(2754), + [aux_sym_pointer_declarator_repeat1] = STATE(2010), + [sym_identifier] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5889), + [anon_sym_RPAREN] = ACTIONS(5889), + [anon_sym_LPAREN2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(6008), + [anon_sym_AMP_AMP] = ACTIONS(6010), + [anon_sym_AMP] = ACTIONS(6012), + [anon_sym___extension__] = ACTIONS(3351), + [anon_sym___attribute__] = ACTIONS(5891), + [anon_sym___attribute] = ACTIONS(5891), + [anon_sym_COLON_COLON] = ACTIONS(5870), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), + [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(2003)] = { + [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(5778), - [anon_sym_decltype] = ACTIONS(5778), - [anon_sym_final] = ACTIONS(5778), - [anon_sym_override] = ACTIONS(5778), - [anon_sym_requires] = ACTIONS(5778), + [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), }, - [STATE(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), + [STATE(2004)] = { + [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(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [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), + }, + [STATE(2005)] = { + [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), + }, + [STATE(2006)] = { + [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), + }, + [STATE(2007)] = { + [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), + }, + [STATE(2008)] = { + [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), + }, + [STATE(2009)] = { + [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), + }, + [STATE(2010)] = { + [sym_ms_based_modifier] = STATE(8310), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(3870), + [sym__declarator] = STATE(6433), + [sym__abstract_declarator] = STATE(6847), + [sym_parenthesized_declarator] = STATE(6137), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_function_declarator] = STATE(6137), + [sym_abstract_function_declarator] = STATE(6117), + [sym_array_declarator] = STATE(6137), + [sym_abstract_array_declarator] = STATE(6117), + [sym_type_qualifier] = STATE(2755), + [sym_alignas_qualifier] = STATE(4359), + [sym_parameter_list] = STATE(3343), + [sym_decltype] = STATE(8381), + [sym_reference_declarator] = STATE(6137), + [sym_abstract_reference_declarator] = STATE(6117), + [sym_structured_binding_declarator] = STATE(6137), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5965), + [sym_qualified_identifier] = STATE(6137), + [sym_operator_name] = STATE(6137), + [aux_sym__type_definition_type_repeat1] = STATE(2755), + [aux_sym_pointer_declarator_repeat1] = STATE(3870), + [sym_identifier] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(5860), + [anon_sym_LPAREN2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(6008), + [anon_sym_AMP_AMP] = ACTIONS(6010), + [anon_sym_AMP] = ACTIONS(6012), + [anon_sym___extension__] = ACTIONS(3351), + [anon_sym___attribute__] = ACTIONS(5868), + [anon_sym___attribute] = ACTIONS(5868), + [anon_sym_COLON_COLON] = ACTIONS(5870), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(2011)] = { + [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), + }, + [STATE(2012)] = { + [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), + }, + [STATE(2013)] = { + [sym_identifier] = ACTIONS(5649), + [aux_sym_preproc_def_token1] = ACTIONS(5649), + [aux_sym_preproc_if_token1] = ACTIONS(5649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5649), + [sym_preproc_directive] = ACTIONS(5649), + [anon_sym_LPAREN2] = ACTIONS(5651), + [anon_sym_TILDE] = ACTIONS(5651), + [anon_sym_STAR] = ACTIONS(5651), + [anon_sym_AMP_AMP] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5649), + [anon_sym_SEMI] = ACTIONS(5651), + [anon_sym___extension__] = ACTIONS(5649), + [anon_sym_typedef] = ACTIONS(5649), + [anon_sym_virtual] = ACTIONS(5649), + [anon_sym_extern] = ACTIONS(5649), + [anon_sym___attribute__] = ACTIONS(5649), + [anon_sym___attribute] = ACTIONS(5649), + [anon_sym_using] = ACTIONS(5649), + [anon_sym_COLON_COLON] = ACTIONS(5651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5651), + [anon_sym___declspec] = ACTIONS(5649), + [anon_sym___based] = ACTIONS(5649), + [anon_sym_RBRACE] = ACTIONS(5651), + [anon_sym_signed] = ACTIONS(5649), + [anon_sym_unsigned] = ACTIONS(5649), + [anon_sym_long] = ACTIONS(5649), + [anon_sym_short] = ACTIONS(5649), + [anon_sym_LBRACK] = ACTIONS(5649), + [anon_sym_static] = ACTIONS(5649), + [anon_sym_register] = ACTIONS(5649), + [anon_sym_inline] = ACTIONS(5649), + [anon_sym___inline] = ACTIONS(5649), + [anon_sym___inline__] = ACTIONS(5649), + [anon_sym___forceinline] = ACTIONS(5649), + [anon_sym_thread_local] = ACTIONS(5649), + [anon_sym___thread] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5649), + [anon_sym_constexpr] = ACTIONS(5649), + [anon_sym_volatile] = ACTIONS(5649), + [anon_sym_restrict] = ACTIONS(5649), + [anon_sym___restrict__] = ACTIONS(5649), + [anon_sym__Atomic] = ACTIONS(5649), + [anon_sym__Noreturn] = ACTIONS(5649), + [anon_sym_noreturn] = ACTIONS(5649), + [anon_sym__Nonnull] = ACTIONS(5649), + [anon_sym_mutable] = ACTIONS(5649), + [anon_sym_constinit] = ACTIONS(5649), + [anon_sym_consteval] = ACTIONS(5649), + [anon_sym_alignas] = ACTIONS(5649), + [anon_sym__Alignas] = ACTIONS(5649), + [sym_primitive_type] = ACTIONS(5649), + [anon_sym_enum] = ACTIONS(5649), + [anon_sym_class] = ACTIONS(5649), + [anon_sym_struct] = ACTIONS(5649), + [anon_sym_union] = ACTIONS(5649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5649), + [anon_sym_explicit] = ACTIONS(5649), + [anon_sym_typename] = ACTIONS(5649), + [anon_sym_private] = ACTIONS(5649), + [anon_sym_template] = ACTIONS(5649), + [anon_sym_operator] = ACTIONS(5649), + [anon_sym_friend] = ACTIONS(5649), + [anon_sym_public] = ACTIONS(5649), + [anon_sym_protected] = ACTIONS(5649), + [anon_sym_static_assert] = ACTIONS(5649), + }, + [STATE(2014)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2015)] = { + [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(1268), + [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), }, - [STATE(1966)] = { + [STATE(2016)] = { + [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(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), + }, + [STATE(2017)] = { [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), + [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_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_TILDE] = ACTIONS(5547), + [anon_sym_STAR] = 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___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_COLON] = ACTIONS(5545), + [anon_sym_using] = 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), + [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), [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_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), }, - [STATE(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(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), + [STATE(2018)] = { + [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), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [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), }, - [STATE(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(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), + [STATE(2019)] = { + [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), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), + [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), }, - [STATE(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), + [STATE(2020)] = { + [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), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(2021)] = { + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym___extension__] = ACTIONS(3109), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym___attribute] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym_RBRACE] = ACTIONS(3111), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym___inline] = ACTIONS(3109), + [anon_sym___inline__] = ACTIONS(3109), + [anon_sym___forceinline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym___thread] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym__Nonnull] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_alignas] = ACTIONS(3109), + [anon_sym__Alignas] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_private] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_friend] = ACTIONS(3109), + [anon_sym_public] = ACTIONS(3109), + [anon_sym_protected] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), }, - [STATE(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), + [STATE(2022)] = { + [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(4984), - [anon_sym_decltype] = ACTIONS(4984), - [anon_sym_final] = ACTIONS(4984), - [anon_sym_override] = ACTIONS(4984), + [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), }, - [STATE(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), + [STATE(2023)] = { + [sym_identifier] = ACTIONS(5581), + [aux_sym_preproc_def_token1] = ACTIONS(5581), + [aux_sym_preproc_if_token1] = ACTIONS(5581), + [aux_sym_preproc_if_token2] = ACTIONS(5581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5581), + [sym_preproc_directive] = ACTIONS(5581), + [anon_sym_LPAREN2] = ACTIONS(5583), + [anon_sym_TILDE] = ACTIONS(5583), + [anon_sym_STAR] = ACTIONS(5583), + [anon_sym_AMP_AMP] = ACTIONS(5583), + [anon_sym_AMP] = ACTIONS(5581), + [anon_sym_SEMI] = ACTIONS(5583), + [anon_sym___extension__] = ACTIONS(5581), + [anon_sym_typedef] = ACTIONS(5581), + [anon_sym_virtual] = ACTIONS(5581), + [anon_sym_extern] = ACTIONS(5581), + [anon_sym___attribute__] = ACTIONS(5581), + [anon_sym___attribute] = ACTIONS(5581), + [anon_sym_using] = ACTIONS(5581), + [anon_sym_COLON_COLON] = ACTIONS(5583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5583), + [anon_sym___declspec] = ACTIONS(5581), + [anon_sym___based] = ACTIONS(5581), + [anon_sym_signed] = ACTIONS(5581), + [anon_sym_unsigned] = ACTIONS(5581), + [anon_sym_long] = ACTIONS(5581), + [anon_sym_short] = ACTIONS(5581), + [anon_sym_LBRACK] = ACTIONS(5581), + [anon_sym_static] = ACTIONS(5581), + [anon_sym_register] = ACTIONS(5581), + [anon_sym_inline] = ACTIONS(5581), + [anon_sym___inline] = ACTIONS(5581), + [anon_sym___inline__] = ACTIONS(5581), + [anon_sym___forceinline] = ACTIONS(5581), + [anon_sym_thread_local] = ACTIONS(5581), + [anon_sym___thread] = ACTIONS(5581), + [anon_sym_const] = ACTIONS(5581), + [anon_sym_constexpr] = ACTIONS(5581), + [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), }, - [STATE(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), + [STATE(2024)] = { + [sym_string_literal] = STATE(2198), + [sym_template_argument_list] = STATE(2395), + [sym_raw_string_literal] = STATE(2198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5386), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___attribute__] = ACTIONS(4161), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(6014), + [anon_sym_u_DQUOTE] = ACTIONS(6014), + [anon_sym_U_DQUOTE] = ACTIONS(6014), + [anon_sym_u8_DQUOTE] = ACTIONS(6014), + [anon_sym_DQUOTE] = ACTIONS(6014), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6016), + [anon_sym_LR_DQUOTE] = ACTIONS(6016), + [anon_sym_uR_DQUOTE] = ACTIONS(6016), + [anon_sym_UR_DQUOTE] = ACTIONS(6016), + [anon_sym_u8R_DQUOTE] = ACTIONS(6016), }, - [STATE(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), + [STATE(2025)] = { + [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(4991), - [anon_sym_decltype] = ACTIONS(4991), + [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), }, - [STATE(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), + [STATE(2026)] = { + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym___attribute] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3115), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym___inline] = ACTIONS(3113), + [anon_sym___inline__] = ACTIONS(3113), + [anon_sym___forceinline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym___thread] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym__Nonnull] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_alignas] = ACTIONS(3113), + [anon_sym__Alignas] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_friend] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), }, - [STATE(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), + [STATE(2027)] = { + [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), - [anon_sym_try] = ACTIONS(5962), + [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), }, - [STATE(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), + [STATE(2028)] = { + [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(5966), - [anon_sym_decltype] = ACTIONS(5966), - [anon_sym_final] = ACTIONS(5966), - [anon_sym_override] = ACTIONS(5966), - [anon_sym_requires] = ACTIONS(5966), + [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), }, - [STATE(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), + [STATE(2029)] = { + [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(5972), - [anon_sym_decltype] = ACTIONS(5972), - [anon_sym_final] = ACTIONS(5972), - [anon_sym_override] = ACTIONS(5972), - [anon_sym_requires] = ACTIONS(5972), + [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), }, - [STATE(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), + [STATE(2030)] = { + [sym_identifier] = ACTIONS(5569), + [aux_sym_preproc_def_token1] = ACTIONS(5569), + [aux_sym_preproc_if_token1] = ACTIONS(5569), + [aux_sym_preproc_if_token2] = 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_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(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), }, - [STATE(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), + [STATE(2031)] = { + [sym__declaration_modifiers] = STATE(3358), + [sym_attribute_specifier] = STATE(3358), + [sym_attribute_declaration] = STATE(3358), + [sym_ms_declspec_modifier] = STATE(3358), + [sym_storage_class_specifier] = STATE(3358), + [sym_type_qualifier] = STATE(3358), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2436), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(3358), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1262), + [anon_sym_virtual] = ACTIONS(6018), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5228), + [anon_sym_COLON_COLON] = ACTIONS(5236), [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), @@ -269232,3680 +273415,3534 @@ 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(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), - }, - [STATE(1982)] = { - [sym_identifier] = 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_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_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), - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [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(3027), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3033), + [anon_sym_union] = ACTIONS(3035), [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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(3037), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(2032)] = { + [sym_identifier] = ACTIONS(3329), + [aux_sym_preproc_def_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), + [sym_preproc_directive] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_AMP_AMP] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym___extension__] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3329), + [anon_sym_virtual] = ACTIONS(3329), + [anon_sym_extern] = ACTIONS(3329), + [anon_sym___attribute__] = ACTIONS(3329), + [anon_sym___attribute] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_COLON_COLON] = ACTIONS(3331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), + [anon_sym___declspec] = ACTIONS(3329), + [anon_sym___based] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_signed] = ACTIONS(3329), + [anon_sym_unsigned] = ACTIONS(3329), + [anon_sym_long] = ACTIONS(3329), + [anon_sym_short] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_register] = ACTIONS(3329), + [anon_sym_inline] = ACTIONS(3329), + [anon_sym___inline] = ACTIONS(3329), + [anon_sym___inline__] = ACTIONS(3329), + [anon_sym___forceinline] = ACTIONS(3329), + [anon_sym_thread_local] = ACTIONS(3329), + [anon_sym___thread] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_constexpr] = ACTIONS(3329), + [anon_sym_volatile] = ACTIONS(3329), + [anon_sym_restrict] = ACTIONS(3329), + [anon_sym___restrict__] = ACTIONS(3329), + [anon_sym__Atomic] = ACTIONS(3329), + [anon_sym__Noreturn] = ACTIONS(3329), + [anon_sym_noreturn] = ACTIONS(3329), + [anon_sym__Nonnull] = ACTIONS(3329), + [anon_sym_mutable] = ACTIONS(3329), + [anon_sym_constinit] = ACTIONS(3329), + [anon_sym_consteval] = ACTIONS(3329), + [anon_sym_alignas] = ACTIONS(3329), + [anon_sym__Alignas] = ACTIONS(3329), + [sym_primitive_type] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3329), + [anon_sym_decltype] = ACTIONS(3329), + [anon_sym_explicit] = ACTIONS(3329), + [anon_sym_typename] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_template] = ACTIONS(3329), + [anon_sym_operator] = ACTIONS(3329), + [anon_sym_friend] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_static_assert] = ACTIONS(3329), + }, + [STATE(2033)] = { + [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), [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(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), }, - [STATE(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), + [STATE(2034)] = { + [sym_identifier] = ACTIONS(3055), + [aux_sym_preproc_def_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), + [sym_preproc_directive] = ACTIONS(3055), + [anon_sym_LPAREN2] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_virtual] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = ACTIONS(3055), + [anon_sym___attribute] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_COLON_COLON] = ACTIONS(3057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), + [anon_sym___declspec] = ACTIONS(3055), + [anon_sym___based] = ACTIONS(3055), + [anon_sym_RBRACE] = ACTIONS(3057), + [anon_sym_signed] = ACTIONS(3055), + [anon_sym_unsigned] = ACTIONS(3055), + [anon_sym_long] = ACTIONS(3055), + [anon_sym_short] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_static] = ACTIONS(3055), + [anon_sym_register] = ACTIONS(3055), + [anon_sym_inline] = ACTIONS(3055), + [anon_sym___inline] = ACTIONS(3055), + [anon_sym___inline__] = ACTIONS(3055), + [anon_sym___forceinline] = ACTIONS(3055), + [anon_sym_thread_local] = ACTIONS(3055), + [anon_sym___thread] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_constexpr] = ACTIONS(3055), + [anon_sym_volatile] = ACTIONS(3055), + [anon_sym_restrict] = ACTIONS(3055), + [anon_sym___restrict__] = ACTIONS(3055), + [anon_sym__Atomic] = ACTIONS(3055), + [anon_sym__Noreturn] = ACTIONS(3055), + [anon_sym_noreturn] = ACTIONS(3055), + [anon_sym__Nonnull] = ACTIONS(3055), + [anon_sym_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = ACTIONS(3055), + [anon_sym_alignas] = ACTIONS(3055), + [anon_sym__Alignas] = ACTIONS(3055), + [sym_primitive_type] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_class] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3055), + [anon_sym_decltype] = ACTIONS(3055), + [anon_sym_explicit] = ACTIONS(3055), + [anon_sym_typename] = ACTIONS(3055), + [anon_sym_private] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(3055), + [anon_sym_friend] = ACTIONS(3055), + [anon_sym_public] = ACTIONS(3055), + [anon_sym_protected] = ACTIONS(3055), + [anon_sym_static_assert] = ACTIONS(3055), + }, + [STATE(2035)] = { + [sym_attribute_specifier] = STATE(1925), + [sym_field_declaration_list] = STATE(2378), + [sym_virtual_specifier] = STATE(7104), + [sym_base_class_clause] = STATE(7906), + [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(5603), + [anon_sym_SLASH] = ACTIONS(5601), + [anon_sym_PERCENT] = ACTIONS(5603), + [anon_sym_PIPE_PIPE] = ACTIONS(5603), + [anon_sym_AMP_AMP] = ACTIONS(5603), + [anon_sym_PIPE] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5603), + [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(5603), + [anon_sym_GT_GT] = ACTIONS(5603), + [anon_sym_SEMI] = ACTIONS(5603), + [anon_sym___extension__] = ACTIONS(5603), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(6024), + [anon_sym_RBRACE] = ACTIONS(5603), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_RBRACK] = ACTIONS(5603), + [anon_sym_const] = ACTIONS(5601), + [anon_sym_constexpr] = ACTIONS(5603), + [anon_sym_volatile] = ACTIONS(5603), + [anon_sym_restrict] = ACTIONS(5603), + [anon_sym___restrict__] = ACTIONS(5603), + [anon_sym__Atomic] = ACTIONS(5603), + [anon_sym__Noreturn] = ACTIONS(5603), + [anon_sym_noreturn] = ACTIONS(5603), + [anon_sym__Nonnull] = ACTIONS(5603), + [anon_sym_mutable] = ACTIONS(5603), + [anon_sym_constinit] = ACTIONS(5603), + [anon_sym_consteval] = ACTIONS(5603), + [anon_sym_alignas] = ACTIONS(5603), + [anon_sym__Alignas] = ACTIONS(5603), + [anon_sym_QMARK] = ACTIONS(5603), + [anon_sym_LT_EQ_GT] = ACTIONS(5603), + [anon_sym_or] = ACTIONS(5603), + [anon_sym_and] = ACTIONS(5603), + [anon_sym_bitor] = ACTIONS(5603), + [anon_sym_xor] = ACTIONS(5603), + [anon_sym_bitand] = ACTIONS(5603), + [anon_sym_not_eq] = ACTIONS(5603), + [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), [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), + [sym_auto] = ACTIONS(5603), + [anon_sym_decltype] = ACTIONS(5603), + [anon_sym_final] = ACTIONS(6026), + [anon_sym_override] = ACTIONS(6026), + [anon_sym_requires] = ACTIONS(5603), }, - [STATE(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), + [STATE(2036)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2037)] = { + [sym_identifier] = 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_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_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), [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(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), }, - [STATE(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), + [STATE(2038)] = { + [sym_identifier] = 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_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_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), [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), + [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), }, - [STATE(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), + [STATE(2039)] = { + [sym_identifier] = 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_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_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), [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), + [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), }, - [STATE(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), + [STATE(2040)] = { + [sym_identifier] = 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_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_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), [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(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), }, - [STATE(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), + [STATE(2041)] = { + [sym_identifier] = ACTIONS(3128), + [aux_sym_preproc_def_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), + [sym_preproc_directive] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_AMP_AMP] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_typedef] = ACTIONS(3128), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3128), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_typename] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3128), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_friend] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_static_assert] = ACTIONS(3128), + }, + [STATE(2042)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(3089), + [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_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), + [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_private] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), + }, + [STATE(2043)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2044)] = { + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = ACTIONS(3059), + [anon_sym___attribute] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), + [anon_sym___declspec] = ACTIONS(3059), + [anon_sym___based] = ACTIONS(3059), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_signed] = ACTIONS(3059), + [anon_sym_unsigned] = ACTIONS(3059), + [anon_sym_long] = ACTIONS(3059), + [anon_sym_short] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_register] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym___inline] = ACTIONS(3059), + [anon_sym___inline__] = ACTIONS(3059), + [anon_sym___forceinline] = ACTIONS(3059), + [anon_sym_thread_local] = ACTIONS(3059), + [anon_sym___thread] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_constexpr] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(3059), + [anon_sym_restrict] = ACTIONS(3059), + [anon_sym___restrict__] = ACTIONS(3059), + [anon_sym__Atomic] = ACTIONS(3059), + [anon_sym__Noreturn] = ACTIONS(3059), + [anon_sym_noreturn] = ACTIONS(3059), + [anon_sym__Nonnull] = ACTIONS(3059), + [anon_sym_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(3059), + [anon_sym__Alignas] = ACTIONS(3059), + [sym_primitive_type] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3059), + [anon_sym_decltype] = ACTIONS(3059), + [anon_sym_explicit] = ACTIONS(3059), + [anon_sym_typename] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_friend] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_static_assert] = ACTIONS(3059), }, - [STATE(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), + [STATE(2045)] = { + [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), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1850), + [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), }, - [STATE(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), + [STATE(2046)] = { + [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(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(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), }, - [STATE(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), + [STATE(2047)] = { + [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), }, - [STATE(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), + [STATE(2048)] = { + [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), }, - [STATE(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), + [STATE(2049)] = { + [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), }, - [STATE(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), + [STATE(2050)] = { + [sym_identifier] = ACTIONS(5476), + [aux_sym_preproc_def_token1] = ACTIONS(5476), + [aux_sym_preproc_if_token1] = ACTIONS(5476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5476), + [sym_preproc_directive] = ACTIONS(5476), + [anon_sym_LPAREN2] = ACTIONS(5478), + [anon_sym_TILDE] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(5476), + [anon_sym_typedef] = ACTIONS(5476), + [anon_sym_virtual] = ACTIONS(5476), + [anon_sym_extern] = ACTIONS(5476), + [anon_sym___attribute__] = ACTIONS(5476), + [anon_sym___attribute] = ACTIONS(5476), + [anon_sym_using] = ACTIONS(5476), + [anon_sym_COLON_COLON] = ACTIONS(5478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5478), + [anon_sym___declspec] = ACTIONS(5476), + [anon_sym___based] = ACTIONS(5476), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_signed] = ACTIONS(5476), + [anon_sym_unsigned] = ACTIONS(5476), + [anon_sym_long] = ACTIONS(5476), + [anon_sym_short] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(5476), + [anon_sym_static] = ACTIONS(5476), + [anon_sym_register] = ACTIONS(5476), + [anon_sym_inline] = ACTIONS(5476), + [anon_sym___inline] = ACTIONS(5476), + [anon_sym___inline__] = ACTIONS(5476), + [anon_sym___forceinline] = ACTIONS(5476), + [anon_sym_thread_local] = ACTIONS(5476), + [anon_sym___thread] = ACTIONS(5476), + [anon_sym_const] = ACTIONS(5476), + [anon_sym_constexpr] = ACTIONS(5476), + [anon_sym_volatile] = ACTIONS(5476), + [anon_sym_restrict] = ACTIONS(5476), + [anon_sym___restrict__] = ACTIONS(5476), + [anon_sym__Atomic] = ACTIONS(5476), + [anon_sym__Noreturn] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym__Nonnull] = ACTIONS(5476), + [anon_sym_mutable] = ACTIONS(5476), + [anon_sym_constinit] = ACTIONS(5476), + [anon_sym_consteval] = ACTIONS(5476), + [anon_sym_alignas] = ACTIONS(5476), + [anon_sym__Alignas] = ACTIONS(5476), + [sym_primitive_type] = ACTIONS(5476), + [anon_sym_enum] = ACTIONS(5476), + [anon_sym_class] = ACTIONS(5476), + [anon_sym_struct] = ACTIONS(5476), + [anon_sym_union] = ACTIONS(5476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5476), + [anon_sym_decltype] = ACTIONS(5476), + [anon_sym_explicit] = ACTIONS(5476), + [anon_sym_typename] = ACTIONS(5476), + [anon_sym_private] = ACTIONS(5476), + [anon_sym_template] = ACTIONS(5476), + [anon_sym_operator] = ACTIONS(5476), + [anon_sym_friend] = ACTIONS(5476), + [anon_sym_public] = ACTIONS(5476), + [anon_sym_protected] = ACTIONS(5476), + [anon_sym_static_assert] = ACTIONS(5476), + }, + [STATE(2051)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2669), + [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_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), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_operator] = ACTIONS(1850), + [sym_auto] = ACTIONS(2667), + [anon_sym_decltype] = ACTIONS(2667), + [anon_sym_explicit] = ACTIONS(2667), + [anon_sym_typename] = ACTIONS(2667), + [anon_sym_private] = ACTIONS(2667), + [anon_sym_template] = ACTIONS(2667), + [anon_sym_operator] = ACTIONS(2667), + [anon_sym_friend] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_protected] = ACTIONS(2667), + [anon_sym_static_assert] = ACTIONS(2667), }, - [STATE(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), + [STATE(2052)] = { + [sym_identifier] = 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_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_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), [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(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), }, - [STATE(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), + [STATE(2053)] = { + [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), - [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), + [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), }, - [STATE(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), + [STATE(2054)] = { + [sym__declaration_modifiers] = STATE(3358), + [sym_attribute_specifier] = STATE(3358), + [sym_attribute_declaration] = STATE(3358), + [sym_ms_declspec_modifier] = STATE(3358), + [sym_storage_class_specifier] = STATE(3358), + [sym_type_qualifier] = STATE(3358), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2436), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6713), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(3358), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5234), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(6018), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5236), + [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(3027), + [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(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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(131), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(2055)] = { + [sym_ms_based_modifier] = STATE(8310), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(2130), + [sym__declarator] = STATE(6473), + [sym__abstract_declarator] = STATE(6777), + [sym_parenthesized_declarator] = STATE(6137), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_function_declarator] = STATE(6137), + [sym_abstract_function_declarator] = STATE(6117), + [sym_array_declarator] = STATE(6137), + [sym_abstract_array_declarator] = STATE(6117), + [sym_type_qualifier] = STATE(2701), + [sym_alignas_qualifier] = STATE(4359), + [sym_parameter_list] = STATE(3281), + [sym_decltype] = STATE(8381), + [sym_reference_declarator] = STATE(6137), + [sym_abstract_reference_declarator] = STATE(6117), + [sym_structured_binding_declarator] = STATE(6137), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5965), + [sym_qualified_identifier] = STATE(6137), + [sym_operator_name] = STATE(6137), + [aux_sym__type_definition_type_repeat1] = STATE(2701), + [aux_sym_pointer_declarator_repeat1] = STATE(2130), + [sym_identifier] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5889), + [anon_sym_LPAREN2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(6028), + [anon_sym_AMP_AMP] = ACTIONS(6030), + [anon_sym_AMP] = ACTIONS(6032), + [anon_sym___extension__] = ACTIONS(3351), + [anon_sym___attribute__] = ACTIONS(5891), + [anon_sym___attribute] = ACTIONS(5891), + [anon_sym_COLON_COLON] = ACTIONS(5870), [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_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(5863), + [anon_sym_GT2] = ACTIONS(5889), [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(2056)] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym___attribute] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym__Nonnull] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym__Alignas] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_friend] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), + }, + [STATE(2057)] = { + [sym_identifier] = ACTIONS(6034), + [anon_sym_LPAREN2] = ACTIONS(6036), + [anon_sym_TILDE] = ACTIONS(6036), + [anon_sym_STAR] = ACTIONS(6036), + [anon_sym_AMP_AMP] = ACTIONS(6036), + [anon_sym_AMP] = ACTIONS(6034), + [anon_sym___extension__] = ACTIONS(6034), + [anon_sym_virtual] = ACTIONS(6034), + [anon_sym_extern] = ACTIONS(6034), + [anon_sym___attribute__] = ACTIONS(6034), + [anon_sym___attribute] = ACTIONS(6034), + [anon_sym_using] = ACTIONS(6034), + [anon_sym_COLON_COLON] = ACTIONS(6036), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6036), + [anon_sym___declspec] = ACTIONS(6034), + [anon_sym___based] = ACTIONS(6034), + [anon_sym___cdecl] = ACTIONS(6034), + [anon_sym___clrcall] = ACTIONS(6034), + [anon_sym___stdcall] = ACTIONS(6034), + [anon_sym___fastcall] = ACTIONS(6034), + [anon_sym___thiscall] = ACTIONS(6034), + [anon_sym___vectorcall] = ACTIONS(6034), + [anon_sym_LBRACE] = ACTIONS(6036), + [anon_sym_signed] = ACTIONS(6034), + [anon_sym_unsigned] = ACTIONS(6034), + [anon_sym_long] = ACTIONS(6034), + [anon_sym_short] = ACTIONS(6034), + [anon_sym_LBRACK] = ACTIONS(6034), + [anon_sym_static] = ACTIONS(6034), + [anon_sym_register] = ACTIONS(6034), + [anon_sym_inline] = ACTIONS(6034), + [anon_sym___inline] = ACTIONS(6034), + [anon_sym___inline__] = ACTIONS(6034), + [anon_sym___forceinline] = ACTIONS(6034), + [anon_sym_thread_local] = ACTIONS(6034), + [anon_sym___thread] = ACTIONS(6034), + [anon_sym_const] = ACTIONS(6034), + [anon_sym_constexpr] = ACTIONS(6034), + [anon_sym_volatile] = ACTIONS(6034), + [anon_sym_restrict] = ACTIONS(6034), + [anon_sym___restrict__] = ACTIONS(6034), + [anon_sym__Atomic] = ACTIONS(6034), + [anon_sym__Noreturn] = ACTIONS(6034), + [anon_sym_noreturn] = ACTIONS(6034), + [anon_sym__Nonnull] = ACTIONS(6034), + [anon_sym_mutable] = ACTIONS(6034), + [anon_sym_constinit] = ACTIONS(6034), + [anon_sym_consteval] = ACTIONS(6034), + [anon_sym_alignas] = ACTIONS(6034), + [anon_sym__Alignas] = ACTIONS(6034), + [sym_primitive_type] = ACTIONS(6034), + [anon_sym_enum] = ACTIONS(6034), + [anon_sym_class] = ACTIONS(6034), + [anon_sym_struct] = ACTIONS(6034), + [anon_sym_union] = ACTIONS(6034), + [anon_sym_DASH_GT] = ACTIONS(6036), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6034), + [anon_sym_decltype] = ACTIONS(6034), + [anon_sym_explicit] = ACTIONS(6034), + [anon_sym_typename] = ACTIONS(6034), + [anon_sym_template] = ACTIONS(6034), + [anon_sym_operator] = ACTIONS(6034), + [anon_sym_friend] = ACTIONS(6034), + [anon_sym_noexcept] = ACTIONS(6034), + [anon_sym_throw] = ACTIONS(6034), + [anon_sym_concept] = ACTIONS(6034), + [anon_sym_requires] = ACTIONS(6034), + }, + [STATE(2058)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2059)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2060)] = { + [sym__declaration_modifiers] = STATE(3358), + [sym_attribute_specifier] = STATE(3358), + [sym_attribute_declaration] = STATE(3358), + [sym_ms_declspec_modifier] = STATE(3358), + [sym_storage_class_specifier] = STATE(3358), + [sym_type_qualifier] = STATE(3358), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(4076), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6757), + [sym_qualified_type_identifier] = STATE(2854), + [aux_sym__declaration_specifiers_repeat1] = STATE(3358), + [aux_sym_sized_type_specifier_repeat1] = STATE(2696), + [sym_identifier] = ACTIONS(3915), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(6018), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1784), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(3925), + [anon_sym_unsigned] = ACTIONS(3925), + [anon_sym_long] = ACTIONS(3925), + [anon_sym_short] = ACTIONS(3925), + [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(3927), + [anon_sym_enum] = ACTIONS(3929), + [anon_sym_class] = ACTIONS(3931), + [anon_sym_struct] = ACTIONS(3933), + [anon_sym_union] = ACTIONS(3935), [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_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), + [sym_auto] = ACTIONS(125), + [anon_sym_decltype] = ACTIONS(127), + [anon_sym_typename] = ACTIONS(3937), + [anon_sym_template] = ACTIONS(1268), }, - [STATE(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), + [STATE(2061)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2757), + [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_RBRACE] = 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), + [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_private] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_friend] = ACTIONS(2755), + [anon_sym_public] = ACTIONS(2755), + [anon_sym_protected] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), }, - [STATE(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), + [STATE(2062)] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym___attribute] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym__Nonnull] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym__Alignas] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_friend] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + }, + [STATE(2063)] = { + [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___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_COLON] = ACTIONS(5472), + [anon_sym_LBRACE] = 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), [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), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_final] = ACTIONS(5470), + [anon_sym_override] = ACTIONS(5470), }, - [STATE(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), - [anon_sym_u8_DQUOTE] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), + [STATE(2064)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2757), + [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_RBRACE] = 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), [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(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_explicit] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_private] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_friend] = ACTIONS(2755), + [anon_sym_public] = ACTIONS(2755), + [anon_sym_protected] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), }, - [STATE(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), + [STATE(2065)] = { + [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(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(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), }, - [STATE(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), + [STATE(2066)] = { + [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(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(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), }, - [STATE(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(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), + [STATE(2067)] = { + [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), }, - [STATE(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), + [STATE(2068)] = { + [sym_string_literal] = STATE(3167), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym___attribute__] = ACTIONS(4161), + [anon_sym___attribute] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(6038), + [anon_sym_QMARK] = ACTIONS(4161), + [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(6040), + [anon_sym_or_eq] = ACTIONS(6040), + [anon_sym_xor_eq] = ACTIONS(6040), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(6042), + [anon_sym_u_DQUOTE] = ACTIONS(6042), + [anon_sym_U_DQUOTE] = ACTIONS(6042), + [anon_sym_u8_DQUOTE] = ACTIONS(6042), + [anon_sym_DQUOTE] = ACTIONS(6042), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6044), + [anon_sym_LR_DQUOTE] = ACTIONS(6044), + [anon_sym_uR_DQUOTE] = ACTIONS(6044), + [anon_sym_UR_DQUOTE] = ACTIONS(6044), + [anon_sym_u8R_DQUOTE] = ACTIONS(6044), }, - [STATE(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), + [STATE(2069)] = { + [sym_identifier] = 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_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_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), [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), + [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), }, - [STATE(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), + [STATE(2070)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2071)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2072)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2073)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2685), + [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_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), [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), + [sym_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_explicit] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_friend] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_protected] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), }, - [STATE(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), + [STATE(2074)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2685), + [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_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), [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), + [sym_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_explicit] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_friend] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_protected] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), }, - [STATE(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), + [STATE(2075)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2741), + [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_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), [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_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), + [sym_auto] = ACTIONS(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_explicit] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_private] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2739), + [anon_sym_protected] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), + }, + [STATE(2076)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2741), + [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_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), + [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_private] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2739), + [anon_sym_protected] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), }, - [STATE(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_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(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(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), + [STATE(2077)] = { + [sym_attribute_specifier] = STATE(2322), + [sym_enumerator_list] = STATE(2250), + [sym_identifier] = ACTIONS(6046), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6048), + [anon_sym_COMMA] = ACTIONS(6048), + [anon_sym_RPAREN] = ACTIONS(6048), + [aux_sym_preproc_if_token2] = ACTIONS(6048), + [aux_sym_preproc_else_token1] = ACTIONS(6048), + [aux_sym_preproc_elif_token1] = ACTIONS(6046), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6048), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6048), + [anon_sym_LPAREN2] = ACTIONS(6048), + [anon_sym_DASH] = ACTIONS(6046), + [anon_sym_PLUS] = ACTIONS(6046), + [anon_sym_STAR] = ACTIONS(6046), + [anon_sym_SLASH] = ACTIONS(6046), + [anon_sym_PERCENT] = ACTIONS(6046), + [anon_sym_PIPE_PIPE] = ACTIONS(6048), + [anon_sym_AMP_AMP] = ACTIONS(6048), + [anon_sym_PIPE] = ACTIONS(6046), + [anon_sym_CARET] = ACTIONS(6046), + [anon_sym_AMP] = ACTIONS(6046), + [anon_sym_EQ_EQ] = ACTIONS(6048), + [anon_sym_BANG_EQ] = ACTIONS(6048), + [anon_sym_GT] = ACTIONS(6046), + [anon_sym_GT_EQ] = ACTIONS(6048), + [anon_sym_LT_EQ] = ACTIONS(6046), + [anon_sym_LT] = ACTIONS(6046), + [anon_sym_LT_LT] = ACTIONS(6046), + [anon_sym_GT_GT] = ACTIONS(6046), + [anon_sym_SEMI] = ACTIONS(6048), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6048), + [anon_sym_LBRACE] = ACTIONS(6050), + [anon_sym_RBRACE] = ACTIONS(6048), + [anon_sym_LBRACK] = ACTIONS(6048), + [anon_sym_RBRACK] = ACTIONS(6048), + [anon_sym_EQ] = ACTIONS(6046), + [anon_sym_QMARK] = ACTIONS(6048), + [anon_sym_STAR_EQ] = ACTIONS(6048), + [anon_sym_SLASH_EQ] = ACTIONS(6048), + [anon_sym_PERCENT_EQ] = ACTIONS(6048), + [anon_sym_PLUS_EQ] = ACTIONS(6048), + [anon_sym_DASH_EQ] = ACTIONS(6048), + [anon_sym_LT_LT_EQ] = ACTIONS(6048), + [anon_sym_GT_GT_EQ] = ACTIONS(6048), + [anon_sym_AMP_EQ] = ACTIONS(6048), + [anon_sym_CARET_EQ] = ACTIONS(6048), + [anon_sym_PIPE_EQ] = ACTIONS(6048), + [anon_sym_and_eq] = ACTIONS(6046), + [anon_sym_or_eq] = ACTIONS(6046), + [anon_sym_xor_eq] = ACTIONS(6046), + [anon_sym_LT_EQ_GT] = ACTIONS(6048), + [anon_sym_or] = ACTIONS(6046), + [anon_sym_and] = ACTIONS(6046), + [anon_sym_bitor] = ACTIONS(6046), + [anon_sym_xor] = ACTIONS(6046), + [anon_sym_bitand] = ACTIONS(6046), + [anon_sym_not_eq] = ACTIONS(6046), + [anon_sym_DASH_DASH] = ACTIONS(6048), + [anon_sym_PLUS_PLUS] = ACTIONS(6048), + [anon_sym_DOT] = ACTIONS(6046), + [anon_sym_DOT_STAR] = ACTIONS(6048), + [anon_sym_DASH_GT] = ACTIONS(6048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6046), + [anon_sym_decltype] = ACTIONS(6046), }, - [STATE(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), + [STATE(2078)] = { + [sym_identifier] = ACTIONS(5553), + [aux_sym_preproc_def_token1] = ACTIONS(5553), + [aux_sym_preproc_if_token1] = ACTIONS(5553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5553), + [sym_preproc_directive] = ACTIONS(5553), + [anon_sym_LPAREN2] = ACTIONS(5555), + [anon_sym_TILDE] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(5555), + [anon_sym_AMP_AMP] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(5553), + [anon_sym_SEMI] = ACTIONS(5555), + [anon_sym___extension__] = ACTIONS(5553), + [anon_sym_typedef] = ACTIONS(5553), + [anon_sym_virtual] = ACTIONS(5553), + [anon_sym_extern] = ACTIONS(5553), + [anon_sym___attribute__] = ACTIONS(5553), + [anon_sym___attribute] = ACTIONS(5553), + [anon_sym_using] = ACTIONS(5553), + [anon_sym_COLON_COLON] = ACTIONS(5555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5555), + [anon_sym___declspec] = ACTIONS(5553), + [anon_sym___based] = ACTIONS(5553), + [anon_sym_RBRACE] = ACTIONS(5555), + [anon_sym_signed] = ACTIONS(5553), + [anon_sym_unsigned] = ACTIONS(5553), + [anon_sym_long] = ACTIONS(5553), + [anon_sym_short] = ACTIONS(5553), + [anon_sym_LBRACK] = ACTIONS(5553), + [anon_sym_static] = ACTIONS(5553), + [anon_sym_register] = ACTIONS(5553), + [anon_sym_inline] = ACTIONS(5553), + [anon_sym___inline] = ACTIONS(5553), + [anon_sym___inline__] = ACTIONS(5553), + [anon_sym___forceinline] = ACTIONS(5553), + [anon_sym_thread_local] = ACTIONS(5553), + [anon_sym___thread] = ACTIONS(5553), + [anon_sym_const] = ACTIONS(5553), + [anon_sym_constexpr] = ACTIONS(5553), + [anon_sym_volatile] = ACTIONS(5553), + [anon_sym_restrict] = ACTIONS(5553), + [anon_sym___restrict__] = ACTIONS(5553), + [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(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(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), }, - [STATE(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), + [STATE(2079)] = { + [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), - [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), + [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), }, - [STATE(2034)] = { + [STATE(2080)] = { + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), + [sym_preproc_directive] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3132), + [anon_sym_virtual] = ACTIONS(3132), + [anon_sym_extern] = ACTIONS(3132), + [anon_sym___attribute__] = ACTIONS(3132), + [anon_sym___attribute] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), + [anon_sym___declspec] = ACTIONS(3132), + [anon_sym___based] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_signed] = ACTIONS(3132), + [anon_sym_unsigned] = ACTIONS(3132), + [anon_sym_long] = ACTIONS(3132), + [anon_sym_short] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_register] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym___inline] = ACTIONS(3132), + [anon_sym___inline__] = ACTIONS(3132), + [anon_sym___forceinline] = ACTIONS(3132), + [anon_sym_thread_local] = ACTIONS(3132), + [anon_sym___thread] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_constexpr] = ACTIONS(3132), + [anon_sym_volatile] = ACTIONS(3132), + [anon_sym_restrict] = ACTIONS(3132), + [anon_sym___restrict__] = ACTIONS(3132), + [anon_sym__Atomic] = ACTIONS(3132), + [anon_sym__Noreturn] = ACTIONS(3132), + [anon_sym_noreturn] = ACTIONS(3132), + [anon_sym__Nonnull] = ACTIONS(3132), + [anon_sym_mutable] = ACTIONS(3132), + [anon_sym_constinit] = ACTIONS(3132), + [anon_sym_consteval] = ACTIONS(3132), + [anon_sym_alignas] = ACTIONS(3132), + [anon_sym__Alignas] = ACTIONS(3132), + [sym_primitive_type] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3132), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3132), + [anon_sym_typename] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_friend] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_static_assert] = ACTIONS(3132), + }, + [STATE(2081)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2657), + [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_RBRACE] = 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), + [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_private] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_friend] = ACTIONS(2655), + [anon_sym_public] = ACTIONS(2655), + [anon_sym_protected] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), + }, + [STATE(2082)] = { [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), @@ -272926,6 +276963,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -272971,291 +277009,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2659), [anon_sym_static_assert] = ACTIONS(2659), }, - [STATE(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(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), - }, - [STATE(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), + [STATE(2083)] = { + [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(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3029), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(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), + [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), }, - [STATE(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(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), + [STATE(2084)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON] = ACTIONS(6052), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), }, - [STATE(2039)] = { + [STATE(2085)] = { [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), @@ -273276,6 +277173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -273312,3450 +277210,2469 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(2052)] = { - [sym_identifier] = ACTIONS(5553), - [aux_sym_preproc_def_token1] = ACTIONS(5553), - [aux_sym_preproc_if_token1] = ACTIONS(5553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5553), - [sym_preproc_directive] = ACTIONS(5553), - [anon_sym_LPAREN2] = ACTIONS(5555), - [anon_sym_TILDE] = ACTIONS(5555), - [anon_sym_STAR] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5555), - [anon_sym_AMP] = ACTIONS(5553), - [anon_sym_SEMI] = ACTIONS(5555), - [anon_sym___extension__] = ACTIONS(5553), - [anon_sym_typedef] = ACTIONS(5553), - [anon_sym_virtual] = ACTIONS(5553), - [anon_sym_extern] = ACTIONS(5553), - [anon_sym___attribute__] = ACTIONS(5553), - [anon_sym___attribute] = ACTIONS(5553), - [anon_sym_using] = ACTIONS(5553), - [anon_sym_COLON_COLON] = ACTIONS(5555), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5555), - [anon_sym___declspec] = ACTIONS(5553), - [anon_sym___based] = ACTIONS(5553), - [anon_sym_RBRACE] = ACTIONS(5555), - [anon_sym_signed] = ACTIONS(5553), - [anon_sym_unsigned] = ACTIONS(5553), - [anon_sym_long] = ACTIONS(5553), - [anon_sym_short] = ACTIONS(5553), - [anon_sym_LBRACK] = ACTIONS(5553), - [anon_sym_static] = ACTIONS(5553), - [anon_sym_register] = ACTIONS(5553), - [anon_sym_inline] = ACTIONS(5553), - [anon_sym___inline] = ACTIONS(5553), - [anon_sym___inline__] = ACTIONS(5553), - [anon_sym___forceinline] = ACTIONS(5553), - [anon_sym_thread_local] = ACTIONS(5553), - [anon_sym___thread] = ACTIONS(5553), - [anon_sym_const] = ACTIONS(5553), - [anon_sym_constexpr] = ACTIONS(5553), - [anon_sym_volatile] = ACTIONS(5553), - [anon_sym_restrict] = ACTIONS(5553), - [anon_sym___restrict__] = ACTIONS(5553), - [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), + [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), }, - [STATE(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), + [STATE(2086)] = { + [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), }, - [STATE(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), + [STATE(2087)] = { + [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), }, - [STATE(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), + [STATE(2088)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2677), + [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_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), [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(2675), + [anon_sym_decltype] = ACTIONS(2675), + [anon_sym_explicit] = ACTIONS(2675), + [anon_sym_typename] = ACTIONS(2675), + [anon_sym_private] = ACTIONS(2675), + [anon_sym_template] = ACTIONS(2675), + [anon_sym_operator] = ACTIONS(2675), + [anon_sym_friend] = ACTIONS(2675), + [anon_sym_public] = ACTIONS(2675), + [anon_sym_protected] = ACTIONS(2675), + [anon_sym_static_assert] = ACTIONS(2675), }, - [STATE(2056)] = { - [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), + [STATE(2089)] = { + [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(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(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), }, - [STATE(2057)] = { - [sym_identifier] = ACTIONS(5553), - [aux_sym_preproc_def_token1] = ACTIONS(5553), - [aux_sym_preproc_if_token1] = ACTIONS(5553), - [aux_sym_preproc_if_token2] = ACTIONS(5553), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5553), - [sym_preproc_directive] = ACTIONS(5553), - [anon_sym_LPAREN2] = ACTIONS(5555), - [anon_sym_TILDE] = ACTIONS(5555), - [anon_sym_STAR] = ACTIONS(5555), - [anon_sym_AMP_AMP] = ACTIONS(5555), - [anon_sym_AMP] = ACTIONS(5553), - [anon_sym_SEMI] = ACTIONS(5555), - [anon_sym___extension__] = ACTIONS(5553), - [anon_sym_typedef] = ACTIONS(5553), - [anon_sym_virtual] = ACTIONS(5553), - [anon_sym_extern] = ACTIONS(5553), - [anon_sym___attribute__] = ACTIONS(5553), - [anon_sym___attribute] = ACTIONS(5553), - [anon_sym_using] = ACTIONS(5553), - [anon_sym_COLON_COLON] = ACTIONS(5555), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5555), - [anon_sym___declspec] = ACTIONS(5553), - [anon_sym___based] = ACTIONS(5553), - [anon_sym_signed] = ACTIONS(5553), - [anon_sym_unsigned] = ACTIONS(5553), - [anon_sym_long] = ACTIONS(5553), - [anon_sym_short] = ACTIONS(5553), - [anon_sym_LBRACK] = ACTIONS(5553), - [anon_sym_static] = ACTIONS(5553), - [anon_sym_register] = ACTIONS(5553), - [anon_sym_inline] = ACTIONS(5553), - [anon_sym___inline] = ACTIONS(5553), - [anon_sym___inline__] = ACTIONS(5553), - [anon_sym___forceinline] = ACTIONS(5553), - [anon_sym_thread_local] = ACTIONS(5553), - [anon_sym___thread] = ACTIONS(5553), - [anon_sym_const] = ACTIONS(5553), - [anon_sym_constexpr] = ACTIONS(5553), - [anon_sym_volatile] = ACTIONS(5553), - [anon_sym_restrict] = ACTIONS(5553), - [anon_sym___restrict__] = ACTIONS(5553), - [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), + [STATE(2090)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2091)] = { + [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), [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), + [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), }, - [STATE(2059)] = { - [sym_identifier] = ACTIONS(5569), - [aux_sym_preproc_def_token1] = ACTIONS(5569), - [aux_sym_preproc_if_token1] = ACTIONS(5569), - [aux_sym_preproc_if_token2] = 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_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), + [STATE(2092)] = { + [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(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(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), }, - [STATE(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), + [STATE(2093)] = { + [sym_string_literal] = STATE(1726), + [sym_raw_string_literal] = STATE(1726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5950), + [anon_sym_COMMA] = ACTIONS(5950), + [anon_sym_RPAREN] = ACTIONS(5950), + [anon_sym_LPAREN2] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5948), + [anon_sym_PLUS] = ACTIONS(5948), + [anon_sym_STAR] = ACTIONS(5948), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_PERCENT] = ACTIONS(5948), + [anon_sym_PIPE_PIPE] = ACTIONS(5950), + [anon_sym_AMP_AMP] = ACTIONS(5950), + [anon_sym_PIPE] = ACTIONS(5948), + [anon_sym_CARET] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5948), + [anon_sym_EQ_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_LT_EQ] = ACTIONS(5948), + [anon_sym_LT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_GT_GT] = ACTIONS(5948), + [anon_sym_SEMI] = ACTIONS(5950), + [anon_sym_COLON] = ACTIONS(5950), + [anon_sym_RBRACE] = ACTIONS(5950), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_RBRACK] = ACTIONS(5950), + [anon_sym_EQ] = ACTIONS(5948), + [anon_sym_QMARK] = ACTIONS(5950), + [anon_sym_STAR_EQ] = ACTIONS(5950), + [anon_sym_SLASH_EQ] = ACTIONS(5950), + [anon_sym_PERCENT_EQ] = ACTIONS(5950), + [anon_sym_PLUS_EQ] = ACTIONS(5950), + [anon_sym_DASH_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_EQ] = ACTIONS(5950), + [anon_sym_GT_GT_EQ] = ACTIONS(5950), + [anon_sym_AMP_EQ] = ACTIONS(5950), + [anon_sym_CARET_EQ] = ACTIONS(5950), + [anon_sym_PIPE_EQ] = ACTIONS(5950), + [anon_sym_and_eq] = ACTIONS(5948), + [anon_sym_or_eq] = ACTIONS(5948), + [anon_sym_xor_eq] = ACTIONS(5948), + [anon_sym_LT_EQ_GT] = ACTIONS(5950), + [anon_sym_or] = ACTIONS(5948), + [anon_sym_and] = ACTIONS(5948), + [anon_sym_bitor] = ACTIONS(5948), + [anon_sym_xor] = ACTIONS(5948), + [anon_sym_bitand] = ACTIONS(5948), + [anon_sym_not_eq] = ACTIONS(5948), + [anon_sym_DASH_DASH] = ACTIONS(5950), + [anon_sym_PLUS_PLUS] = ACTIONS(5950), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_DOT_STAR] = ACTIONS(5950), + [anon_sym_DASH_GT] = ACTIONS(5950), + [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(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), + [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(5948), }, - [STATE(2061)] = { - [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(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), + [STATE(2094)] = { + [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), }, - [STATE(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), + [STATE(2095)] = { + [sym_identifier] = ACTIONS(3329), + [aux_sym_preproc_def_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token1] = ACTIONS(3329), + [aux_sym_preproc_if_token2] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3329), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3329), + [sym_preproc_directive] = ACTIONS(3329), + [anon_sym_LPAREN2] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3331), + [anon_sym_AMP_AMP] = ACTIONS(3331), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym___extension__] = ACTIONS(3329), + [anon_sym_typedef] = ACTIONS(3329), + [anon_sym_virtual] = ACTIONS(3329), + [anon_sym_extern] = ACTIONS(3329), + [anon_sym___attribute__] = ACTIONS(3329), + [anon_sym___attribute] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_COLON_COLON] = ACTIONS(3331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3331), + [anon_sym___declspec] = ACTIONS(3329), + [anon_sym___based] = ACTIONS(3329), + [anon_sym_signed] = ACTIONS(3329), + [anon_sym_unsigned] = ACTIONS(3329), + [anon_sym_long] = ACTIONS(3329), + [anon_sym_short] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_register] = ACTIONS(3329), + [anon_sym_inline] = ACTIONS(3329), + [anon_sym___inline] = ACTIONS(3329), + [anon_sym___inline__] = ACTIONS(3329), + [anon_sym___forceinline] = ACTIONS(3329), + [anon_sym_thread_local] = ACTIONS(3329), + [anon_sym___thread] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_constexpr] = ACTIONS(3329), + [anon_sym_volatile] = ACTIONS(3329), + [anon_sym_restrict] = ACTIONS(3329), + [anon_sym___restrict__] = ACTIONS(3329), + [anon_sym__Atomic] = ACTIONS(3329), + [anon_sym__Noreturn] = ACTIONS(3329), + [anon_sym_noreturn] = ACTIONS(3329), + [anon_sym__Nonnull] = ACTIONS(3329), + [anon_sym_mutable] = ACTIONS(3329), + [anon_sym_constinit] = ACTIONS(3329), + [anon_sym_consteval] = ACTIONS(3329), + [anon_sym_alignas] = ACTIONS(3329), + [anon_sym__Alignas] = ACTIONS(3329), + [sym_primitive_type] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_struct] = ACTIONS(3329), + [anon_sym_union] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3329), + [anon_sym_decltype] = ACTIONS(3329), + [anon_sym_explicit] = ACTIONS(3329), + [anon_sym_typename] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_template] = ACTIONS(3329), + [anon_sym_operator] = ACTIONS(3329), + [anon_sym_friend] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_static_assert] = ACTIONS(3329), }, - [STATE(2063)] = { - [sym_identifier] = ACTIONS(5581), - [aux_sym_preproc_def_token1] = ACTIONS(5581), - [aux_sym_preproc_if_token1] = ACTIONS(5581), - [aux_sym_preproc_if_token2] = ACTIONS(5581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5581), - [sym_preproc_directive] = ACTIONS(5581), - [anon_sym_LPAREN2] = ACTIONS(5583), - [anon_sym_TILDE] = ACTIONS(5583), - [anon_sym_STAR] = ACTIONS(5583), - [anon_sym_AMP_AMP] = ACTIONS(5583), - [anon_sym_AMP] = ACTIONS(5581), - [anon_sym_SEMI] = ACTIONS(5583), - [anon_sym___extension__] = ACTIONS(5581), - [anon_sym_typedef] = ACTIONS(5581), - [anon_sym_virtual] = ACTIONS(5581), - [anon_sym_extern] = ACTIONS(5581), - [anon_sym___attribute__] = ACTIONS(5581), - [anon_sym___attribute] = ACTIONS(5581), - [anon_sym_using] = ACTIONS(5581), - [anon_sym_COLON_COLON] = ACTIONS(5583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5583), - [anon_sym___declspec] = ACTIONS(5581), - [anon_sym___based] = ACTIONS(5581), - [anon_sym_signed] = ACTIONS(5581), - [anon_sym_unsigned] = ACTIONS(5581), - [anon_sym_long] = ACTIONS(5581), - [anon_sym_short] = ACTIONS(5581), - [anon_sym_LBRACK] = ACTIONS(5581), - [anon_sym_static] = ACTIONS(5581), - [anon_sym_register] = ACTIONS(5581), - [anon_sym_inline] = ACTIONS(5581), - [anon_sym___inline] = ACTIONS(5581), - [anon_sym___inline__] = ACTIONS(5581), - [anon_sym___forceinline] = ACTIONS(5581), - [anon_sym_thread_local] = ACTIONS(5581), - [anon_sym___thread] = ACTIONS(5581), - [anon_sym_const] = ACTIONS(5581), - [anon_sym_constexpr] = ACTIONS(5581), - [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), + [STATE(2096)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(2097)] = { + [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), [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), + [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), }, - [STATE(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), + [STATE(2098)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2753), + [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_RBRACE] = 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), [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(2751), + [anon_sym_decltype] = ACTIONS(2751), + [anon_sym_explicit] = ACTIONS(2751), + [anon_sym_typename] = ACTIONS(2751), + [anon_sym_private] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_operator] = ACTIONS(2751), + [anon_sym_friend] = ACTIONS(2751), + [anon_sym_public] = ACTIONS(2751), + [anon_sym_protected] = ACTIONS(2751), + [anon_sym_static_assert] = ACTIONS(2751), }, - [STATE(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), + [STATE(2099)] = { + [sym_string_literal] = STATE(1726), + [sym_template_argument_list] = STATE(2395), + [sym_raw_string_literal] = STATE(1726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5386), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(6056), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [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(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), + [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), }, - [STATE(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), + [STATE(2100)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2101)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2102)] = { + [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(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), - }, - [STATE(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), - }, - [STATE(2070)] = { - [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), - [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(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), }, - [STATE(2071)] = { - [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), + [STATE(2103)] = { + [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), + [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(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(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), }, - [STATE(2072)] = { - [sym_identifier] = ACTIONS(5621), - [aux_sym_preproc_def_token1] = ACTIONS(5621), - [aux_sym_preproc_if_token1] = ACTIONS(5621), - [aux_sym_preproc_if_token2] = 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_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), + [STATE(2104)] = { + [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(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(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), }, - [STATE(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(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), + [STATE(2105)] = { + [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), }, - [STATE(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(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), + [STATE(2106)] = { + [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), }, - [STATE(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), + [STATE(2107)] = { + [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), }, - [STATE(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), + [STATE(2108)] = { + [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), }, - [STATE(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), + [STATE(2109)] = { + [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), + [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), }, - [STATE(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), + [STATE(2110)] = { + [sym_identifier] = 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_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_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), + [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), }, - [STATE(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), + [STATE(2111)] = { + [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(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), }, - [STATE(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), + [STATE(2112)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2113)] = { + [sym_identifier] = 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_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_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), [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), + [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), }, - [STATE(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), + [STATE(2114)] = { + [sym_identifier] = 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_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_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), [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(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), }, - [STATE(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), + [STATE(2115)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2116)] = { + [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(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(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), }, - [STATE(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), + [STATE(2117)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2118)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2119)] = { + [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), }, - [STATE(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), + [STATE(2120)] = { + [sym_identifier] = ACTIONS(5581), + [aux_sym_preproc_def_token1] = ACTIONS(5581), + [aux_sym_preproc_if_token1] = ACTIONS(5581), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5581), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5581), + [sym_preproc_directive] = ACTIONS(5581), + [anon_sym_LPAREN2] = ACTIONS(5583), + [anon_sym_TILDE] = ACTIONS(5583), + [anon_sym_STAR] = ACTIONS(5583), + [anon_sym_AMP_AMP] = ACTIONS(5583), + [anon_sym_AMP] = ACTIONS(5581), + [anon_sym_SEMI] = ACTIONS(5583), + [anon_sym___extension__] = ACTIONS(5581), + [anon_sym_typedef] = ACTIONS(5581), + [anon_sym_virtual] = ACTIONS(5581), + [anon_sym_extern] = ACTIONS(5581), + [anon_sym___attribute__] = ACTIONS(5581), + [anon_sym___attribute] = ACTIONS(5581), + [anon_sym_using] = ACTIONS(5581), + [anon_sym_COLON_COLON] = ACTIONS(5583), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5583), + [anon_sym___declspec] = ACTIONS(5581), + [anon_sym___based] = ACTIONS(5581), + [anon_sym_RBRACE] = ACTIONS(5583), + [anon_sym_signed] = ACTIONS(5581), + [anon_sym_unsigned] = ACTIONS(5581), + [anon_sym_long] = ACTIONS(5581), + [anon_sym_short] = ACTIONS(5581), + [anon_sym_LBRACK] = ACTIONS(5581), + [anon_sym_static] = ACTIONS(5581), + [anon_sym_register] = ACTIONS(5581), + [anon_sym_inline] = ACTIONS(5581), + [anon_sym___inline] = ACTIONS(5581), + [anon_sym___inline__] = ACTIONS(5581), + [anon_sym___forceinline] = ACTIONS(5581), + [anon_sym_thread_local] = ACTIONS(5581), + [anon_sym___thread] = ACTIONS(5581), + [anon_sym_const] = ACTIONS(5581), + [anon_sym_constexpr] = ACTIONS(5581), + [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), }, - [STATE(2089)] = { + [STATE(2121)] = { [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), @@ -276776,6 +279693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -276821,11 +279739,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2759), [anon_sym_static_assert] = ACTIONS(2759), }, - [STATE(2090)] = { + [STATE(2122)] = { + [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), + }, + [STATE(2123)] = { + [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), + }, + [STATE(2124)] = { [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), [sym_preproc_directive] = ACTIONS(2771), @@ -276846,6 +279903,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -276891,987 +279949,917 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2771), [anon_sym_static_assert] = ACTIONS(2771), }, - [STATE(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), + [STATE(2125)] = { + [sym__declaration_modifiers] = STATE(3358), + [sym_attribute_specifier] = STATE(3358), + [sym_attribute_declaration] = STATE(3358), + [sym_ms_declspec_modifier] = STATE(3358), + [sym_storage_class_specifier] = STATE(3358), + [sym_type_qualifier] = STATE(3358), + [sym_alignas_qualifier] = STATE(1693), + [sym_type_specifier] = STATE(2436), + [sym_sized_type_specifier] = STATE(2452), + [sym_enum_specifier] = STATE(2452), + [sym_struct_specifier] = STATE(2452), + [sym_union_specifier] = STATE(2452), + [sym_placeholder_type_specifier] = STATE(2452), + [sym_decltype_auto] = STATE(2563), + [sym_decltype] = STATE(2429), + [sym_class_specifier] = STATE(2452), + [sym_dependent_type] = STATE(2452), + [sym_template_type] = STATE(2429), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(6759), + [sym_qualified_type_identifier] = STATE(3067), + [aux_sym__declaration_specifiers_repeat1] = STATE(3358), + [aux_sym_sized_type_specifier_repeat1] = STATE(2369), + [sym_identifier] = ACTIONS(5026), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(6018), + [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_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(3027), + [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(1268), }, - [STATE(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), + [STATE(2126)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2127)] = { + [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), }, - [STATE(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), + [STATE(2128)] = { + [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), + }, + [STATE(2129)] = { + [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), [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), + [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), }, - [STATE(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), + [STATE(2130)] = { + [sym_ms_based_modifier] = STATE(8310), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(3870), + [sym__declarator] = STATE(6433), + [sym__abstract_declarator] = STATE(6766), + [sym_parenthesized_declarator] = STATE(6137), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_function_declarator] = STATE(6137), + [sym_abstract_function_declarator] = STATE(6117), + [sym_array_declarator] = STATE(6137), + [sym_abstract_array_declarator] = STATE(6117), + [sym_type_qualifier] = STATE(2703), + [sym_alignas_qualifier] = STATE(4359), + [sym_parameter_list] = STATE(3281), + [sym_decltype] = STATE(8381), + [sym_reference_declarator] = STATE(6137), + [sym_abstract_reference_declarator] = STATE(6117), + [sym_structured_binding_declarator] = STATE(6137), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5965), + [sym_qualified_identifier] = STATE(6137), + [sym_operator_name] = STATE(6137), + [aux_sym__type_definition_type_repeat1] = STATE(2703), + [aux_sym_pointer_declarator_repeat1] = STATE(3870), + [sym_identifier] = ACTIONS(5858), + [anon_sym_COMMA] = ACTIONS(5860), + [anon_sym_LPAREN2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(6028), + [anon_sym_AMP_AMP] = ACTIONS(6030), + [anon_sym_AMP] = ACTIONS(6032), + [anon_sym___extension__] = ACTIONS(3351), + [anon_sym___attribute__] = ACTIONS(5868), + [anon_sym___attribute] = ACTIONS(5868), + [anon_sym_COLON_COLON] = ACTIONS(5870), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(131), + [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), + [anon_sym_GT2] = ACTIONS(5860), + [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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(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), - }, - [STATE(2097)] = { - [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), + [STATE(2131)] = { + [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(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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(2132)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2133)] = { + [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(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), + [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), }, - [STATE(2101)] = { - [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), + [STATE(2134)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2135)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2136)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2137)] = { + [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), [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), + [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), }, - [STATE(2105)] = { + [STATE(2138)] = { [sym_identifier] = ACTIONS(5577), [aux_sym_preproc_def_token1] = ACTIONS(5577), [aux_sym_preproc_if_token1] = ACTIONS(5577), @@ -277941,1547 +280929,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5577), [anon_sym_static_assert] = ACTIONS(5577), }, - [STATE(2106)] = { - [sym_identifier] = ACTIONS(5581), - [aux_sym_preproc_def_token1] = ACTIONS(5581), - [aux_sym_preproc_if_token1] = ACTIONS(5581), - [aux_sym_preproc_ifdef_token1] = ACTIONS(5581), - [aux_sym_preproc_ifdef_token2] = ACTIONS(5581), - [sym_preproc_directive] = ACTIONS(5581), - [anon_sym_LPAREN2] = ACTIONS(5583), - [anon_sym_TILDE] = ACTIONS(5583), - [anon_sym_STAR] = ACTIONS(5583), - [anon_sym_AMP_AMP] = ACTIONS(5583), - [anon_sym_AMP] = ACTIONS(5581), - [anon_sym_SEMI] = ACTIONS(5583), - [anon_sym___extension__] = ACTIONS(5581), - [anon_sym_typedef] = ACTIONS(5581), - [anon_sym_virtual] = ACTIONS(5581), - [anon_sym_extern] = ACTIONS(5581), - [anon_sym___attribute__] = ACTIONS(5581), - [anon_sym___attribute] = ACTIONS(5581), - [anon_sym_using] = ACTIONS(5581), - [anon_sym_COLON_COLON] = ACTIONS(5583), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5583), - [anon_sym___declspec] = ACTIONS(5581), - [anon_sym___based] = ACTIONS(5581), - [anon_sym_RBRACE] = ACTIONS(5583), - [anon_sym_signed] = ACTIONS(5581), - [anon_sym_unsigned] = ACTIONS(5581), - [anon_sym_long] = ACTIONS(5581), - [anon_sym_short] = ACTIONS(5581), - [anon_sym_LBRACK] = ACTIONS(5581), - [anon_sym_static] = ACTIONS(5581), - [anon_sym_register] = ACTIONS(5581), - [anon_sym_inline] = ACTIONS(5581), - [anon_sym___inline] = ACTIONS(5581), - [anon_sym___inline__] = ACTIONS(5581), - [anon_sym___forceinline] = ACTIONS(5581), - [anon_sym_thread_local] = ACTIONS(5581), - [anon_sym___thread] = ACTIONS(5581), - [anon_sym_const] = ACTIONS(5581), - [anon_sym_constexpr] = ACTIONS(5581), - [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), - }, - [STATE(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(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), - }, - [STATE(2108)] = { - [sym_identifier] = 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_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_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), - [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), - }, - [STATE(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), - [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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - [anon_sym_decltype] = ACTIONS(1978), - [anon_sym_template] = ACTIONS(1268), - [anon_sym_GT2] = ACTIONS(5877), - [anon_sym_operator] = ACTIONS(1850), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(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), - }, - [STATE(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(6039), - [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(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(1882), - [anon_sym_template] = ACTIONS(1268), - }, - [STATE(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(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), + [STATE(2139)] = { + [sym_template_argument_list] = STATE(1635), + [sym_identifier] = ACTIONS(4915), + [anon_sym_LPAREN2] = ACTIONS(4922), + [anon_sym_TILDE] = ACTIONS(4922), + [anon_sym_STAR] = ACTIONS(4922), + [anon_sym_PIPE_PIPE] = ACTIONS(4922), + [anon_sym_AMP_AMP] = ACTIONS(4922), + [anon_sym_AMP] = ACTIONS(4915), + [anon_sym_LT] = ACTIONS(6006), + [anon_sym___extension__] = ACTIONS(4915), + [anon_sym_virtual] = ACTIONS(4915), + [anon_sym_extern] = ACTIONS(4915), + [anon_sym___attribute__] = ACTIONS(4915), + [anon_sym___attribute] = ACTIONS(4915), + [anon_sym_using] = ACTIONS(4915), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4922), + [anon_sym___declspec] = ACTIONS(4915), + [anon_sym___based] = ACTIONS(4915), + [anon_sym___cdecl] = ACTIONS(4915), + [anon_sym___clrcall] = ACTIONS(4915), + [anon_sym___stdcall] = ACTIONS(4915), + [anon_sym___fastcall] = ACTIONS(4915), + [anon_sym___thiscall] = ACTIONS(4915), + [anon_sym___vectorcall] = ACTIONS(4915), + [anon_sym_signed] = ACTIONS(4915), + [anon_sym_unsigned] = ACTIONS(4915), + [anon_sym_long] = ACTIONS(4915), + [anon_sym_short] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_static] = ACTIONS(4915), + [anon_sym_register] = ACTIONS(4915), + [anon_sym_inline] = ACTIONS(4915), + [anon_sym___inline] = ACTIONS(4915), + [anon_sym___inline__] = ACTIONS(4915), + [anon_sym___forceinline] = ACTIONS(4915), + [anon_sym_thread_local] = ACTIONS(4915), + [anon_sym___thread] = ACTIONS(4915), + [anon_sym_const] = ACTIONS(4915), + [anon_sym_constexpr] = ACTIONS(4915), + [anon_sym_volatile] = ACTIONS(4915), + [anon_sym_restrict] = ACTIONS(4915), + [anon_sym___restrict__] = ACTIONS(4915), + [anon_sym__Atomic] = ACTIONS(4915), + [anon_sym__Noreturn] = ACTIONS(4915), + [anon_sym_noreturn] = ACTIONS(4915), + [anon_sym__Nonnull] = ACTIONS(4915), + [anon_sym_mutable] = ACTIONS(4915), + [anon_sym_constinit] = ACTIONS(4915), + [anon_sym_consteval] = ACTIONS(4915), + [anon_sym_alignas] = ACTIONS(4915), + [anon_sym__Alignas] = ACTIONS(4915), + [sym_primitive_type] = ACTIONS(4915), + [anon_sym_enum] = ACTIONS(4915), + [anon_sym_class] = ACTIONS(4915), + [anon_sym_struct] = ACTIONS(4915), + [anon_sym_union] = ACTIONS(4915), + [anon_sym_or] = ACTIONS(4915), + [anon_sym_and] = ACTIONS(4915), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4915), + [anon_sym_decltype] = ACTIONS(4915), + [anon_sym_explicit] = ACTIONS(4915), + [anon_sym_typename] = ACTIONS(4915), + [anon_sym_template] = ACTIONS(4915), + [anon_sym_operator] = ACTIONS(4915), + [anon_sym_friend] = ACTIONS(4915), + [anon_sym_concept] = ACTIONS(4915), }, - [STATE(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(5541), - [anon_sym_decltype] = ACTIONS(5541), - [anon_sym_final] = ACTIONS(5541), - [anon_sym_override] = ACTIONS(5541), + [STATE(2140)] = { + [sym_identifier] = ACTIONS(3109), + [aux_sym_preproc_def_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token1] = ACTIONS(3109), + [aux_sym_preproc_if_token2] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3109), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3109), + [sym_preproc_directive] = ACTIONS(3109), + [anon_sym_LPAREN2] = ACTIONS(3111), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_SEMI] = ACTIONS(3111), + [anon_sym___extension__] = ACTIONS(3109), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_virtual] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym___attribute__] = ACTIONS(3109), + [anon_sym___attribute] = ACTIONS(3109), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3111), + [anon_sym___declspec] = ACTIONS(3109), + [anon_sym___based] = ACTIONS(3109), + [anon_sym_signed] = ACTIONS(3109), + [anon_sym_unsigned] = ACTIONS(3109), + [anon_sym_long] = ACTIONS(3109), + [anon_sym_short] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_register] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym___inline] = ACTIONS(3109), + [anon_sym___inline__] = ACTIONS(3109), + [anon_sym___forceinline] = ACTIONS(3109), + [anon_sym_thread_local] = ACTIONS(3109), + [anon_sym___thread] = ACTIONS(3109), + [anon_sym_const] = ACTIONS(3109), + [anon_sym_constexpr] = ACTIONS(3109), + [anon_sym_volatile] = ACTIONS(3109), + [anon_sym_restrict] = ACTIONS(3109), + [anon_sym___restrict__] = ACTIONS(3109), + [anon_sym__Atomic] = ACTIONS(3109), + [anon_sym__Noreturn] = ACTIONS(3109), + [anon_sym_noreturn] = ACTIONS(3109), + [anon_sym__Nonnull] = ACTIONS(3109), + [anon_sym_mutable] = ACTIONS(3109), + [anon_sym_constinit] = ACTIONS(3109), + [anon_sym_consteval] = ACTIONS(3109), + [anon_sym_alignas] = ACTIONS(3109), + [anon_sym__Alignas] = ACTIONS(3109), + [sym_primitive_type] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(3109), + [anon_sym_union] = ACTIONS(3109), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3109), + [anon_sym_decltype] = ACTIONS(3109), + [anon_sym_explicit] = ACTIONS(3109), + [anon_sym_typename] = ACTIONS(3109), + [anon_sym_private] = ACTIONS(3109), + [anon_sym_template] = ACTIONS(3109), + [anon_sym_operator] = ACTIONS(3109), + [anon_sym_friend] = ACTIONS(3109), + [anon_sym_public] = ACTIONS(3109), + [anon_sym_protected] = ACTIONS(3109), + [anon_sym_static_assert] = ACTIONS(3109), }, - [STATE(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), + [STATE(2141)] = { + [sym_identifier] = ACTIONS(3113), + [aux_sym_preproc_def_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token1] = ACTIONS(3113), + [aux_sym_preproc_if_token2] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3113), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3113), + [sym_preproc_directive] = ACTIONS(3113), + [anon_sym_LPAREN2] = ACTIONS(3115), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_SEMI] = ACTIONS(3115), + [anon_sym___extension__] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_virtual] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym___attribute__] = ACTIONS(3113), + [anon_sym___attribute] = ACTIONS(3113), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3115), + [anon_sym___declspec] = ACTIONS(3113), + [anon_sym___based] = ACTIONS(3113), + [anon_sym_signed] = ACTIONS(3113), + [anon_sym_unsigned] = ACTIONS(3113), + [anon_sym_long] = ACTIONS(3113), + [anon_sym_short] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_register] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym___inline] = ACTIONS(3113), + [anon_sym___inline__] = ACTIONS(3113), + [anon_sym___forceinline] = ACTIONS(3113), + [anon_sym_thread_local] = ACTIONS(3113), + [anon_sym___thread] = ACTIONS(3113), + [anon_sym_const] = ACTIONS(3113), + [anon_sym_constexpr] = ACTIONS(3113), + [anon_sym_volatile] = ACTIONS(3113), + [anon_sym_restrict] = ACTIONS(3113), + [anon_sym___restrict__] = ACTIONS(3113), + [anon_sym__Atomic] = ACTIONS(3113), + [anon_sym__Noreturn] = ACTIONS(3113), + [anon_sym_noreturn] = ACTIONS(3113), + [anon_sym__Nonnull] = ACTIONS(3113), + [anon_sym_mutable] = ACTIONS(3113), + [anon_sym_constinit] = ACTIONS(3113), + [anon_sym_consteval] = ACTIONS(3113), + [anon_sym_alignas] = ACTIONS(3113), + [anon_sym__Alignas] = ACTIONS(3113), + [sym_primitive_type] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_struct] = ACTIONS(3113), + [anon_sym_union] = ACTIONS(3113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3113), + [anon_sym_decltype] = ACTIONS(3113), + [anon_sym_explicit] = ACTIONS(3113), + [anon_sym_typename] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_template] = ACTIONS(3113), + [anon_sym_operator] = ACTIONS(3113), + [anon_sym_friend] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_protected] = ACTIONS(3113), + [anon_sym_static_assert] = ACTIONS(3113), }, - [STATE(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), + [STATE(2142)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2143)] = { + [sym_identifier] = ACTIONS(6058), + [anon_sym_LPAREN2] = ACTIONS(6060), + [anon_sym_TILDE] = ACTIONS(6060), + [anon_sym_STAR] = ACTIONS(6060), + [anon_sym_AMP_AMP] = ACTIONS(6060), + [anon_sym_AMP] = ACTIONS(6058), + [anon_sym___extension__] = ACTIONS(6058), + [anon_sym_virtual] = ACTIONS(6058), + [anon_sym_extern] = ACTIONS(6058), + [anon_sym___attribute__] = ACTIONS(6058), + [anon_sym___attribute] = ACTIONS(6058), + [anon_sym_using] = ACTIONS(6058), + [anon_sym_COLON_COLON] = ACTIONS(6060), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6060), + [anon_sym___declspec] = ACTIONS(6058), + [anon_sym___based] = ACTIONS(6058), + [anon_sym___cdecl] = ACTIONS(6058), + [anon_sym___clrcall] = ACTIONS(6058), + [anon_sym___stdcall] = ACTIONS(6058), + [anon_sym___fastcall] = ACTIONS(6058), + [anon_sym___thiscall] = ACTIONS(6058), + [anon_sym___vectorcall] = ACTIONS(6058), + [anon_sym_LBRACE] = ACTIONS(6060), + [anon_sym_signed] = ACTIONS(6058), + [anon_sym_unsigned] = ACTIONS(6058), + [anon_sym_long] = ACTIONS(6058), + [anon_sym_short] = ACTIONS(6058), + [anon_sym_LBRACK] = ACTIONS(6058), + [anon_sym_static] = ACTIONS(6058), + [anon_sym_register] = ACTIONS(6058), + [anon_sym_inline] = ACTIONS(6058), + [anon_sym___inline] = ACTIONS(6058), + [anon_sym___inline__] = ACTIONS(6058), + [anon_sym___forceinline] = ACTIONS(6058), + [anon_sym_thread_local] = ACTIONS(6058), + [anon_sym___thread] = ACTIONS(6058), + [anon_sym_const] = ACTIONS(6058), + [anon_sym_constexpr] = ACTIONS(6058), + [anon_sym_volatile] = ACTIONS(6058), + [anon_sym_restrict] = ACTIONS(6058), + [anon_sym___restrict__] = ACTIONS(6058), + [anon_sym__Atomic] = ACTIONS(6058), + [anon_sym__Noreturn] = ACTIONS(6058), + [anon_sym_noreturn] = ACTIONS(6058), + [anon_sym__Nonnull] = ACTIONS(6058), + [anon_sym_mutable] = ACTIONS(6058), + [anon_sym_constinit] = ACTIONS(6058), + [anon_sym_consteval] = ACTIONS(6058), + [anon_sym_alignas] = ACTIONS(6058), + [anon_sym__Alignas] = ACTIONS(6058), + [sym_primitive_type] = ACTIONS(6058), + [anon_sym_enum] = ACTIONS(6058), + [anon_sym_class] = ACTIONS(6058), + [anon_sym_struct] = ACTIONS(6058), + [anon_sym_union] = ACTIONS(6058), + [anon_sym_DASH_GT] = ACTIONS(6060), [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), + [sym_auto] = ACTIONS(6058), + [anon_sym_decltype] = ACTIONS(6058), + [anon_sym_explicit] = ACTIONS(6058), + [anon_sym_typename] = ACTIONS(6058), + [anon_sym_template] = ACTIONS(6058), + [anon_sym_operator] = ACTIONS(6058), + [anon_sym_friend] = ACTIONS(6058), + [anon_sym_noexcept] = ACTIONS(6058), + [anon_sym_throw] = ACTIONS(6058), + [anon_sym_concept] = ACTIONS(6058), + [anon_sym_requires] = ACTIONS(6058), }, - [STATE(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), + [STATE(2144)] = { + [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), }, - [STATE(2128)] = { + [STATE(2145)] = { [sym_identifier] = ACTIONS(2931), [aux_sym_preproc_def_token1] = ACTIONS(2931), [aux_sym_preproc_if_token1] = ACTIONS(2931), @@ -279551,357 +281419,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2931), [anon_sym_static_assert] = ACTIONS(2931), }, - [STATE(2129)] = { - [sym_identifier] = 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_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_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), - [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), - }, - [STATE(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(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), - }, - [STATE(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), + [STATE(2146)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2147)] = { + [sym_attribute_specifier] = STATE(2285), + [sym_enumerator_list] = STATE(2241), + [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(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6064), + [anon_sym_LBRACE] = ACTIONS(6050), + [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), }, - [STATE(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), + [STATE(2148)] = { + [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(6066), - [anon_sym_decltype] = ACTIONS(6066), + [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), }, - [STATE(2134)] = { + [STATE(2149)] = { [sym_identifier] = ACTIONS(2935), [aux_sym_preproc_def_token1] = ACTIONS(2935), [aux_sym_preproc_if_token1] = ACTIONS(2935), @@ -279971,7 +281699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2935), [anon_sym_static_assert] = ACTIONS(2935), }, - [STATE(2135)] = { + [STATE(2150)] = { [sym_identifier] = ACTIONS(2939), [aux_sym_preproc_def_token1] = ACTIONS(2939), [aux_sym_preproc_if_token1] = ACTIONS(2939), @@ -280029,22 +281757,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), + }, + [STATE(2151)] = { + [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(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), + }, + [STATE(2152)] = { + [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(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), + }, + [STATE(2153)] = { + [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(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), + }, + [STATE(2154)] = { + [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), + }, + [STATE(2155)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2961), + [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_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), + [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_private] = ACTIONS(2959), + [anon_sym_template] = ACTIONS(2959), + [anon_sym_operator] = ACTIONS(2959), + [anon_sym_friend] = ACTIONS(2959), + [anon_sym_public] = ACTIONS(2959), + [anon_sym_protected] = ACTIONS(2959), + [anon_sym_static_assert] = ACTIONS(2959), + }, + [STATE(2156)] = { + [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), }, - [STATE(2136)] = { + [STATE(2157)] = { [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), @@ -280065,7 +282214,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -280111,2810 +282259,2951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(3124), [anon_sym_static_assert] = ACTIONS(3124), }, - [STATE(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(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), + [STATE(2158)] = { + [sym_identifier] = ACTIONS(3055), + [aux_sym_preproc_def_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token1] = ACTIONS(3055), + [aux_sym_preproc_if_token2] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3055), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3055), + [sym_preproc_directive] = ACTIONS(3055), + [anon_sym_LPAREN2] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym___extension__] = ACTIONS(3055), + [anon_sym_typedef] = ACTIONS(3055), + [anon_sym_virtual] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym___attribute__] = ACTIONS(3055), + [anon_sym___attribute] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3055), + [anon_sym_COLON_COLON] = ACTIONS(3057), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3057), + [anon_sym___declspec] = ACTIONS(3055), + [anon_sym___based] = ACTIONS(3055), + [anon_sym_signed] = ACTIONS(3055), + [anon_sym_unsigned] = ACTIONS(3055), + [anon_sym_long] = ACTIONS(3055), + [anon_sym_short] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_static] = ACTIONS(3055), + [anon_sym_register] = ACTIONS(3055), + [anon_sym_inline] = ACTIONS(3055), + [anon_sym___inline] = ACTIONS(3055), + [anon_sym___inline__] = ACTIONS(3055), + [anon_sym___forceinline] = ACTIONS(3055), + [anon_sym_thread_local] = ACTIONS(3055), + [anon_sym___thread] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_constexpr] = ACTIONS(3055), + [anon_sym_volatile] = ACTIONS(3055), + [anon_sym_restrict] = ACTIONS(3055), + [anon_sym___restrict__] = ACTIONS(3055), + [anon_sym__Atomic] = ACTIONS(3055), + [anon_sym__Noreturn] = ACTIONS(3055), + [anon_sym_noreturn] = ACTIONS(3055), + [anon_sym__Nonnull] = ACTIONS(3055), + [anon_sym_mutable] = ACTIONS(3055), + [anon_sym_constinit] = ACTIONS(3055), + [anon_sym_consteval] = ACTIONS(3055), + [anon_sym_alignas] = ACTIONS(3055), + [anon_sym__Alignas] = ACTIONS(3055), + [sym_primitive_type] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_class] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3055), + [anon_sym_decltype] = ACTIONS(3055), + [anon_sym_explicit] = ACTIONS(3055), + [anon_sym_typename] = ACTIONS(3055), + [anon_sym_private] = ACTIONS(3055), + [anon_sym_template] = ACTIONS(3055), + [anon_sym_operator] = ACTIONS(3055), + [anon_sym_friend] = ACTIONS(3055), + [anon_sym_public] = ACTIONS(3055), + [anon_sym_protected] = ACTIONS(3055), + [anon_sym_static_assert] = ACTIONS(3055), }, - [STATE(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), + [STATE(2159)] = { + [sym_identifier] = ACTIONS(3059), + [aux_sym_preproc_def_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token1] = ACTIONS(3059), + [aux_sym_preproc_if_token2] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3059), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3059), + [sym_preproc_directive] = ACTIONS(3059), + [anon_sym_LPAREN2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym___extension__] = ACTIONS(3059), + [anon_sym_typedef] = ACTIONS(3059), + [anon_sym_virtual] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym___attribute__] = ACTIONS(3059), + [anon_sym___attribute] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3059), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3061), + [anon_sym___declspec] = ACTIONS(3059), + [anon_sym___based] = ACTIONS(3059), + [anon_sym_signed] = ACTIONS(3059), + [anon_sym_unsigned] = ACTIONS(3059), + [anon_sym_long] = ACTIONS(3059), + [anon_sym_short] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_register] = ACTIONS(3059), + [anon_sym_inline] = ACTIONS(3059), + [anon_sym___inline] = ACTIONS(3059), + [anon_sym___inline__] = ACTIONS(3059), + [anon_sym___forceinline] = ACTIONS(3059), + [anon_sym_thread_local] = ACTIONS(3059), + [anon_sym___thread] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_constexpr] = ACTIONS(3059), + [anon_sym_volatile] = ACTIONS(3059), + [anon_sym_restrict] = ACTIONS(3059), + [anon_sym___restrict__] = ACTIONS(3059), + [anon_sym__Atomic] = ACTIONS(3059), + [anon_sym__Noreturn] = ACTIONS(3059), + [anon_sym_noreturn] = ACTIONS(3059), + [anon_sym__Nonnull] = ACTIONS(3059), + [anon_sym_mutable] = ACTIONS(3059), + [anon_sym_constinit] = ACTIONS(3059), + [anon_sym_consteval] = ACTIONS(3059), + [anon_sym_alignas] = ACTIONS(3059), + [anon_sym__Alignas] = ACTIONS(3059), + [sym_primitive_type] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_class] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3059), + [anon_sym_decltype] = ACTIONS(3059), + [anon_sym_explicit] = ACTIONS(3059), + [anon_sym_typename] = ACTIONS(3059), + [anon_sym_private] = ACTIONS(3059), + [anon_sym_template] = ACTIONS(3059), + [anon_sym_operator] = ACTIONS(3059), + [anon_sym_friend] = ACTIONS(3059), + [anon_sym_public] = ACTIONS(3059), + [anon_sym_protected] = ACTIONS(3059), + [anon_sym_static_assert] = ACTIONS(3059), }, - [STATE(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), + [STATE(2160)] = { + [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), - [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(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), }, - [STATE(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), + [STATE(2161)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2162)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(3089), + [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_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), [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(3087), + [anon_sym_decltype] = ACTIONS(3087), + [anon_sym_explicit] = ACTIONS(3087), + [anon_sym_typename] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_template] = ACTIONS(3087), + [anon_sym_operator] = ACTIONS(3087), + [anon_sym_friend] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_static_assert] = ACTIONS(3087), }, - [STATE(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), + [STATE(2163)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2164)] = { + [sym_template_argument_list] = STATE(1635), + [aux_sym_sized_type_specifier_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(6066), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6068), + [anon_sym_COMMA] = 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___attribute__] = ACTIONS(6066), + [anon_sym___attribute] = ACTIONS(6066), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(6068), + [anon_sym_signed] = ACTIONS(6070), + [anon_sym_unsigned] = ACTIONS(6070), + [anon_sym_long] = ACTIONS(6070), + [anon_sym_short] = ACTIONS(6070), + [anon_sym_LBRACK] = 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(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), + [sym_auto] = ACTIONS(6066), + [anon_sym_decltype] = ACTIONS(6066), }, - [STATE(2144)] = { - [sym_identifier] = 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_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_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), - [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), + [STATE(2165)] = { + [sym_identifier] = ACTIONS(3128), + [aux_sym_preproc_def_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token1] = ACTIONS(3128), + [aux_sym_preproc_if_token2] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3128), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3128), + [sym_preproc_directive] = ACTIONS(3128), + [anon_sym_LPAREN2] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_STAR] = ACTIONS(3130), + [anon_sym_AMP_AMP] = ACTIONS(3130), + [anon_sym_AMP] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym___extension__] = ACTIONS(3128), + [anon_sym_typedef] = ACTIONS(3128), + [anon_sym_virtual] = ACTIONS(3128), + [anon_sym_extern] = ACTIONS(3128), + [anon_sym___attribute__] = ACTIONS(3128), + [anon_sym___attribute] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_COLON_COLON] = ACTIONS(3130), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3130), + [anon_sym___declspec] = ACTIONS(3128), + [anon_sym___based] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3128), + [anon_sym_unsigned] = ACTIONS(3128), + [anon_sym_long] = ACTIONS(3128), + [anon_sym_short] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_register] = ACTIONS(3128), + [anon_sym_inline] = ACTIONS(3128), + [anon_sym___inline] = ACTIONS(3128), + [anon_sym___inline__] = ACTIONS(3128), + [anon_sym___forceinline] = ACTIONS(3128), + [anon_sym_thread_local] = ACTIONS(3128), + [anon_sym___thread] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_constexpr] = ACTIONS(3128), + [anon_sym_volatile] = ACTIONS(3128), + [anon_sym_restrict] = ACTIONS(3128), + [anon_sym___restrict__] = ACTIONS(3128), + [anon_sym__Atomic] = ACTIONS(3128), + [anon_sym__Noreturn] = ACTIONS(3128), + [anon_sym_noreturn] = ACTIONS(3128), + [anon_sym__Nonnull] = ACTIONS(3128), + [anon_sym_mutable] = ACTIONS(3128), + [anon_sym_constinit] = ACTIONS(3128), + [anon_sym_consteval] = ACTIONS(3128), + [anon_sym_alignas] = ACTIONS(3128), + [anon_sym__Alignas] = ACTIONS(3128), + [sym_primitive_type] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_struct] = ACTIONS(3128), + [anon_sym_union] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3128), + [anon_sym_decltype] = ACTIONS(3128), + [anon_sym_explicit] = ACTIONS(3128), + [anon_sym_typename] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_template] = ACTIONS(3128), + [anon_sym_operator] = ACTIONS(3128), + [anon_sym_friend] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_static_assert] = ACTIONS(3128), }, - [STATE(2145)] = { - [sym_identifier] = 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_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_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), - [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), + [STATE(2166)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(6056), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), }, - [STATE(2146)] = { - [sym_identifier] = 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_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_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), - [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), + [STATE(2167)] = { + [sym_identifier] = ACTIONS(3132), + [aux_sym_preproc_def_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token1] = ACTIONS(3132), + [aux_sym_preproc_if_token2] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3132), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3132), + [sym_preproc_directive] = ACTIONS(3132), + [anon_sym_LPAREN2] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_STAR] = ACTIONS(3134), + [anon_sym_AMP_AMP] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym___extension__] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3132), + [anon_sym_virtual] = ACTIONS(3132), + [anon_sym_extern] = ACTIONS(3132), + [anon_sym___attribute__] = ACTIONS(3132), + [anon_sym___attribute] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_COLON_COLON] = ACTIONS(3134), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3134), + [anon_sym___declspec] = ACTIONS(3132), + [anon_sym___based] = ACTIONS(3132), + [anon_sym_signed] = ACTIONS(3132), + [anon_sym_unsigned] = ACTIONS(3132), + [anon_sym_long] = ACTIONS(3132), + [anon_sym_short] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_register] = ACTIONS(3132), + [anon_sym_inline] = ACTIONS(3132), + [anon_sym___inline] = ACTIONS(3132), + [anon_sym___inline__] = ACTIONS(3132), + [anon_sym___forceinline] = ACTIONS(3132), + [anon_sym_thread_local] = ACTIONS(3132), + [anon_sym___thread] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_constexpr] = ACTIONS(3132), + [anon_sym_volatile] = ACTIONS(3132), + [anon_sym_restrict] = ACTIONS(3132), + [anon_sym___restrict__] = ACTIONS(3132), + [anon_sym__Atomic] = ACTIONS(3132), + [anon_sym__Noreturn] = ACTIONS(3132), + [anon_sym_noreturn] = ACTIONS(3132), + [anon_sym__Nonnull] = ACTIONS(3132), + [anon_sym_mutable] = ACTIONS(3132), + [anon_sym_constinit] = ACTIONS(3132), + [anon_sym_consteval] = ACTIONS(3132), + [anon_sym_alignas] = ACTIONS(3132), + [anon_sym__Alignas] = ACTIONS(3132), + [sym_primitive_type] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_struct] = ACTIONS(3132), + [anon_sym_union] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3132), + [anon_sym_decltype] = ACTIONS(3132), + [anon_sym_explicit] = ACTIONS(3132), + [anon_sym_typename] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_template] = ACTIONS(3132), + [anon_sym_operator] = ACTIONS(3132), + [anon_sym_friend] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_static_assert] = ACTIONS(3132), }, - [STATE(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), + [STATE(2168)] = { + [sym_identifier] = ACTIONS(3103), + [aux_sym_preproc_def_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token1] = ACTIONS(3103), + [aux_sym_preproc_if_token2] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3103), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3103), + [sym_preproc_directive] = ACTIONS(3103), + [anon_sym_LPAREN2] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_AMP_AMP] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym___extension__] = ACTIONS(3103), + [anon_sym_typedef] = ACTIONS(3103), + [anon_sym_virtual] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym___attribute__] = ACTIONS(3103), + [anon_sym___attribute] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3103), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3105), + [anon_sym___declspec] = ACTIONS(3103), + [anon_sym___based] = ACTIONS(3103), + [anon_sym_signed] = ACTIONS(3103), + [anon_sym_unsigned] = ACTIONS(3103), + [anon_sym_long] = ACTIONS(3103), + [anon_sym_short] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_register] = ACTIONS(3103), + [anon_sym_inline] = ACTIONS(3103), + [anon_sym___inline] = ACTIONS(3103), + [anon_sym___inline__] = ACTIONS(3103), + [anon_sym___forceinline] = ACTIONS(3103), + [anon_sym_thread_local] = ACTIONS(3103), + [anon_sym___thread] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_constexpr] = ACTIONS(3103), + [anon_sym_volatile] = ACTIONS(3103), + [anon_sym_restrict] = ACTIONS(3103), + [anon_sym___restrict__] = ACTIONS(3103), + [anon_sym__Atomic] = ACTIONS(3103), + [anon_sym__Noreturn] = ACTIONS(3103), + [anon_sym_noreturn] = ACTIONS(3103), + [anon_sym__Nonnull] = ACTIONS(3103), + [anon_sym_mutable] = ACTIONS(3103), + [anon_sym_constinit] = ACTIONS(3103), + [anon_sym_consteval] = ACTIONS(3103), + [anon_sym_alignas] = ACTIONS(3103), + [anon_sym__Alignas] = ACTIONS(3103), + [sym_primitive_type] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_class] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3103), + [anon_sym_decltype] = ACTIONS(3103), + [anon_sym_explicit] = ACTIONS(3103), + [anon_sym_typename] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_template] = ACTIONS(3103), + [anon_sym_operator] = ACTIONS(3103), + [anon_sym_friend] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_static_assert] = ACTIONS(3103), + }, + [STATE(2169)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2170)] = { + [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), + }, + [STATE(2171)] = { + [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), + }, + [STATE(2172)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2757), + [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_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), [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), + [sym_auto] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_explicit] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_private] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_friend] = ACTIONS(2755), + [anon_sym_public] = ACTIONS(2755), + [anon_sym_protected] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), }, - [STATE(2149)] = { - [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), + [STATE(2173)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2757), + [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_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), [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), + [sym_auto] = ACTIONS(2755), + [anon_sym_decltype] = ACTIONS(2755), + [anon_sym_explicit] = ACTIONS(2755), + [anon_sym_typename] = ACTIONS(2755), + [anon_sym_private] = ACTIONS(2755), + [anon_sym_template] = ACTIONS(2755), + [anon_sym_operator] = ACTIONS(2755), + [anon_sym_friend] = ACTIONS(2755), + [anon_sym_public] = ACTIONS(2755), + [anon_sym_protected] = ACTIONS(2755), + [anon_sym_static_assert] = ACTIONS(2755), }, - [STATE(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), + [STATE(2174)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2175)] = { + [sym_identifier] = ACTIONS(5553), + [aux_sym_preproc_def_token1] = ACTIONS(5553), + [aux_sym_preproc_if_token1] = ACTIONS(5553), + [aux_sym_preproc_if_token2] = ACTIONS(5553), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5553), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5553), + [sym_preproc_directive] = ACTIONS(5553), + [anon_sym_LPAREN2] = ACTIONS(5555), + [anon_sym_TILDE] = ACTIONS(5555), + [anon_sym_STAR] = ACTIONS(5555), + [anon_sym_AMP_AMP] = ACTIONS(5555), + [anon_sym_AMP] = ACTIONS(5553), + [anon_sym_SEMI] = ACTIONS(5555), + [anon_sym___extension__] = ACTIONS(5553), + [anon_sym_typedef] = ACTIONS(5553), + [anon_sym_virtual] = ACTIONS(5553), + [anon_sym_extern] = ACTIONS(5553), + [anon_sym___attribute__] = ACTIONS(5553), + [anon_sym___attribute] = ACTIONS(5553), + [anon_sym_using] = ACTIONS(5553), + [anon_sym_COLON_COLON] = ACTIONS(5555), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5555), + [anon_sym___declspec] = ACTIONS(5553), + [anon_sym___based] = ACTIONS(5553), + [anon_sym_signed] = ACTIONS(5553), + [anon_sym_unsigned] = ACTIONS(5553), + [anon_sym_long] = ACTIONS(5553), + [anon_sym_short] = ACTIONS(5553), + [anon_sym_LBRACK] = ACTIONS(5553), + [anon_sym_static] = ACTIONS(5553), + [anon_sym_register] = ACTIONS(5553), + [anon_sym_inline] = ACTIONS(5553), + [anon_sym___inline] = ACTIONS(5553), + [anon_sym___inline__] = ACTIONS(5553), + [anon_sym___forceinline] = ACTIONS(5553), + [anon_sym_thread_local] = ACTIONS(5553), + [anon_sym___thread] = ACTIONS(5553), + [anon_sym_const] = ACTIONS(5553), + [anon_sym_constexpr] = ACTIONS(5553), + [anon_sym_volatile] = ACTIONS(5553), + [anon_sym_restrict] = ACTIONS(5553), + [anon_sym___restrict__] = ACTIONS(5553), + [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(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), + [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), }, - [STATE(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), + [STATE(2176)] = { + [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(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(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), }, - [STATE(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), + [STATE(2177)] = { + [sym_identifier] = ACTIONS(5645), + [aux_sym_preproc_def_token1] = ACTIONS(5645), + [aux_sym_preproc_if_token1] = ACTIONS(5645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5645), + [sym_preproc_directive] = ACTIONS(5645), + [anon_sym_LPAREN2] = ACTIONS(5647), + [anon_sym_TILDE] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5645), + [anon_sym_typedef] = ACTIONS(5645), + [anon_sym_virtual] = ACTIONS(5645), + [anon_sym_extern] = ACTIONS(5645), + [anon_sym___attribute__] = ACTIONS(5645), + [anon_sym___attribute] = ACTIONS(5645), + [anon_sym_using] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5647), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5647), + [anon_sym___declspec] = ACTIONS(5645), + [anon_sym___based] = ACTIONS(5645), + [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(5645), + [anon_sym_static] = ACTIONS(5645), + [anon_sym_register] = ACTIONS(5645), + [anon_sym_inline] = ACTIONS(5645), + [anon_sym___inline] = ACTIONS(5645), + [anon_sym___inline__] = ACTIONS(5645), + [anon_sym___forceinline] = ACTIONS(5645), + [anon_sym_thread_local] = ACTIONS(5645), + [anon_sym___thread] = ACTIONS(5645), + [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_enum] = ACTIONS(5645), + [anon_sym_class] = ACTIONS(5645), + [anon_sym_struct] = ACTIONS(5645), + [anon_sym_union] = ACTIONS(5645), [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), + [sym_auto] = ACTIONS(5645), + [anon_sym_decltype] = ACTIONS(5645), + [anon_sym_explicit] = ACTIONS(5645), + [anon_sym_typename] = ACTIONS(5645), + [anon_sym_private] = ACTIONS(5645), + [anon_sym_template] = ACTIONS(5645), + [anon_sym_operator] = ACTIONS(5645), + [anon_sym_friend] = ACTIONS(5645), + [anon_sym_public] = ACTIONS(5645), + [anon_sym_protected] = ACTIONS(5645), + [anon_sym_static_assert] = ACTIONS(5645), }, - [STATE(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), + [STATE(2178)] = { + [sym_string_literal] = STATE(2247), + [sym_template_argument_list] = STATE(3168), + [sym_raw_string_literal] = STATE(2247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(6054), + [anon_sym_LPAREN2] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6054), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(6056), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(5056), + [anon_sym_u_DQUOTE] = ACTIONS(5056), + [anon_sym_U_DQUOTE] = ACTIONS(5056), + [anon_sym_u8_DQUOTE] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5058), + [anon_sym_LR_DQUOTE] = ACTIONS(5058), + [anon_sym_uR_DQUOTE] = ACTIONS(5058), + [anon_sym_UR_DQUOTE] = ACTIONS(5058), + [anon_sym_u8R_DQUOTE] = ACTIONS(5058), + [anon_sym_DASH_GT_STAR] = ACTIONS(4161), }, - [STATE(2155)] = { - [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), + [STATE(2179)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2685), + [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_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), [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), - }, - [STATE(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_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_explicit] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_friend] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_protected] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), + }, + [STATE(2180)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2685), + [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_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), [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), + [sym_auto] = ACTIONS(2683), + [anon_sym_decltype] = ACTIONS(2683), + [anon_sym_explicit] = ACTIONS(2683), + [anon_sym_typename] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_template] = ACTIONS(2683), + [anon_sym_operator] = ACTIONS(2683), + [anon_sym_friend] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_protected] = ACTIONS(2683), + [anon_sym_static_assert] = ACTIONS(2683), }, - [STATE(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), + [STATE(2181)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2741), + [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_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), + [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_private] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2739), + [anon_sym_protected] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), }, - [STATE(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), + [STATE(2182)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2741), + [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_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), [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(2739), + [anon_sym_decltype] = ACTIONS(2739), + [anon_sym_explicit] = ACTIONS(2739), + [anon_sym_typename] = ACTIONS(2739), + [anon_sym_private] = ACTIONS(2739), + [anon_sym_template] = ACTIONS(2739), + [anon_sym_operator] = ACTIONS(2739), + [anon_sym_friend] = ACTIONS(2739), + [anon_sym_public] = ACTIONS(2739), + [anon_sym_protected] = ACTIONS(2739), + [anon_sym_static_assert] = ACTIONS(2739), }, - [STATE(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), + [STATE(2183)] = { + [sym_string_literal] = STATE(2247), + [sym_template_argument_list] = STATE(3129), + [sym_raw_string_literal] = STATE(2247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(6072), + [anon_sym_LPAREN2] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(5056), + [anon_sym_u_DQUOTE] = ACTIONS(5056), + [anon_sym_U_DQUOTE] = ACTIONS(5056), + [anon_sym_u8_DQUOTE] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5058), + [anon_sym_LR_DQUOTE] = ACTIONS(5058), + [anon_sym_uR_DQUOTE] = ACTIONS(5058), + [anon_sym_UR_DQUOTE] = ACTIONS(5058), + [anon_sym_u8R_DQUOTE] = ACTIONS(5058), + [anon_sym_DASH_GT_STAR] = ACTIONS(4161), }, - [STATE(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), + [STATE(2184)] = { + [sym_identifier] = ACTIONS(6078), + [anon_sym_LPAREN2] = ACTIONS(6080), + [anon_sym_TILDE] = ACTIONS(6080), + [anon_sym_STAR] = ACTIONS(6080), + [anon_sym_AMP_AMP] = ACTIONS(6080), + [anon_sym_AMP] = ACTIONS(6078), + [anon_sym___extension__] = ACTIONS(6078), + [anon_sym_virtual] = ACTIONS(6078), + [anon_sym_extern] = ACTIONS(6078), + [anon_sym___attribute__] = ACTIONS(6078), + [anon_sym___attribute] = ACTIONS(6078), + [anon_sym_using] = ACTIONS(6078), + [anon_sym_COLON_COLON] = ACTIONS(6080), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6080), + [anon_sym___declspec] = ACTIONS(6078), + [anon_sym___based] = ACTIONS(6078), + [anon_sym___cdecl] = ACTIONS(6078), + [anon_sym___clrcall] = ACTIONS(6078), + [anon_sym___stdcall] = ACTIONS(6078), + [anon_sym___fastcall] = ACTIONS(6078), + [anon_sym___thiscall] = ACTIONS(6078), + [anon_sym___vectorcall] = ACTIONS(6078), + [anon_sym_LBRACE] = ACTIONS(6080), + [anon_sym_signed] = ACTIONS(6078), + [anon_sym_unsigned] = ACTIONS(6078), + [anon_sym_long] = ACTIONS(6078), + [anon_sym_short] = ACTIONS(6078), + [anon_sym_LBRACK] = ACTIONS(6078), + [anon_sym_static] = ACTIONS(6078), + [anon_sym_register] = ACTIONS(6078), + [anon_sym_inline] = ACTIONS(6078), + [anon_sym___inline] = ACTIONS(6078), + [anon_sym___inline__] = ACTIONS(6078), + [anon_sym___forceinline] = ACTIONS(6078), + [anon_sym_thread_local] = ACTIONS(6078), + [anon_sym___thread] = ACTIONS(6078), + [anon_sym_const] = ACTIONS(6078), + [anon_sym_constexpr] = ACTIONS(6078), + [anon_sym_volatile] = ACTIONS(6078), + [anon_sym_restrict] = ACTIONS(6078), + [anon_sym___restrict__] = ACTIONS(6078), + [anon_sym__Atomic] = ACTIONS(6078), + [anon_sym__Noreturn] = ACTIONS(6078), + [anon_sym_noreturn] = ACTIONS(6078), + [anon_sym__Nonnull] = ACTIONS(6078), + [anon_sym_mutable] = ACTIONS(6078), + [anon_sym_constinit] = ACTIONS(6078), + [anon_sym_consteval] = ACTIONS(6078), + [anon_sym_alignas] = ACTIONS(6078), + [anon_sym__Alignas] = ACTIONS(6078), + [sym_primitive_type] = ACTIONS(6078), + [anon_sym_enum] = ACTIONS(6078), + [anon_sym_class] = ACTIONS(6078), + [anon_sym_struct] = ACTIONS(6078), + [anon_sym_union] = ACTIONS(6078), + [anon_sym_DASH_GT] = ACTIONS(6080), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6078), + [anon_sym_decltype] = ACTIONS(6078), + [anon_sym_explicit] = ACTIONS(6078), + [anon_sym_typename] = ACTIONS(6078), + [anon_sym_template] = ACTIONS(6078), + [anon_sym_operator] = ACTIONS(6078), + [anon_sym_friend] = ACTIONS(6078), + [anon_sym_noexcept] = ACTIONS(6078), + [anon_sym_throw] = ACTIONS(6078), + [anon_sym_concept] = ACTIONS(6078), + [anon_sym_requires] = ACTIONS(6078), }, - [STATE(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), + [STATE(2185)] = { + [sym_identifier] = ACTIONS(5645), + [aux_sym_preproc_def_token1] = ACTIONS(5645), + [aux_sym_preproc_if_token1] = ACTIONS(5645), + [aux_sym_preproc_if_token2] = ACTIONS(5645), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5645), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5645), + [sym_preproc_directive] = ACTIONS(5645), + [anon_sym_LPAREN2] = ACTIONS(5647), + [anon_sym_TILDE] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(5647), + [anon_sym_AMP_AMP] = ACTIONS(5647), + [anon_sym_AMP] = ACTIONS(5645), + [anon_sym_SEMI] = ACTIONS(5647), + [anon_sym___extension__] = ACTIONS(5645), + [anon_sym_typedef] = ACTIONS(5645), + [anon_sym_virtual] = ACTIONS(5645), + [anon_sym_extern] = ACTIONS(5645), + [anon_sym___attribute__] = ACTIONS(5645), + [anon_sym___attribute] = ACTIONS(5645), + [anon_sym_using] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(5647), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5647), + [anon_sym___declspec] = ACTIONS(5645), + [anon_sym___based] = ACTIONS(5645), + [anon_sym_signed] = ACTIONS(5645), + [anon_sym_unsigned] = ACTIONS(5645), + [anon_sym_long] = ACTIONS(5645), + [anon_sym_short] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_static] = ACTIONS(5645), + [anon_sym_register] = ACTIONS(5645), + [anon_sym_inline] = ACTIONS(5645), + [anon_sym___inline] = ACTIONS(5645), + [anon_sym___inline__] = ACTIONS(5645), + [anon_sym___forceinline] = ACTIONS(5645), + [anon_sym_thread_local] = ACTIONS(5645), + [anon_sym___thread] = ACTIONS(5645), + [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_enum] = ACTIONS(5645), + [anon_sym_class] = ACTIONS(5645), + [anon_sym_struct] = ACTIONS(5645), + [anon_sym_union] = ACTIONS(5645), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5645), + [anon_sym_decltype] = ACTIONS(5645), + [anon_sym_explicit] = ACTIONS(5645), + [anon_sym_typename] = ACTIONS(5645), + [anon_sym_private] = ACTIONS(5645), + [anon_sym_template] = ACTIONS(5645), + [anon_sym_operator] = ACTIONS(5645), + [anon_sym_friend] = ACTIONS(5645), + [anon_sym_public] = ACTIONS(5645), + [anon_sym_protected] = ACTIONS(5645), + [anon_sym_static_assert] = ACTIONS(5645), }, - [STATE(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), + [STATE(2186)] = { + [sym_identifier] = ACTIONS(5649), + [aux_sym_preproc_def_token1] = ACTIONS(5649), + [aux_sym_preproc_if_token1] = ACTIONS(5649), + [aux_sym_preproc_if_token2] = ACTIONS(5649), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5649), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5649), + [sym_preproc_directive] = ACTIONS(5649), + [anon_sym_LPAREN2] = ACTIONS(5651), + [anon_sym_TILDE] = ACTIONS(5651), + [anon_sym_STAR] = ACTIONS(5651), + [anon_sym_AMP_AMP] = ACTIONS(5651), + [anon_sym_AMP] = ACTIONS(5649), + [anon_sym_SEMI] = ACTIONS(5651), + [anon_sym___extension__] = ACTIONS(5649), + [anon_sym_typedef] = ACTIONS(5649), + [anon_sym_virtual] = ACTIONS(5649), + [anon_sym_extern] = ACTIONS(5649), + [anon_sym___attribute__] = ACTIONS(5649), + [anon_sym___attribute] = ACTIONS(5649), + [anon_sym_using] = ACTIONS(5649), + [anon_sym_COLON_COLON] = ACTIONS(5651), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5651), + [anon_sym___declspec] = ACTIONS(5649), + [anon_sym___based] = ACTIONS(5649), + [anon_sym_signed] = ACTIONS(5649), + [anon_sym_unsigned] = ACTIONS(5649), + [anon_sym_long] = ACTIONS(5649), + [anon_sym_short] = ACTIONS(5649), + [anon_sym_LBRACK] = ACTIONS(5649), + [anon_sym_static] = ACTIONS(5649), + [anon_sym_register] = ACTIONS(5649), + [anon_sym_inline] = ACTIONS(5649), + [anon_sym___inline] = ACTIONS(5649), + [anon_sym___inline__] = ACTIONS(5649), + [anon_sym___forceinline] = ACTIONS(5649), + [anon_sym_thread_local] = ACTIONS(5649), + [anon_sym___thread] = ACTIONS(5649), + [anon_sym_const] = ACTIONS(5649), + [anon_sym_constexpr] = ACTIONS(5649), + [anon_sym_volatile] = ACTIONS(5649), + [anon_sym_restrict] = ACTIONS(5649), + [anon_sym___restrict__] = ACTIONS(5649), + [anon_sym__Atomic] = ACTIONS(5649), + [anon_sym__Noreturn] = ACTIONS(5649), + [anon_sym_noreturn] = ACTIONS(5649), + [anon_sym__Nonnull] = ACTIONS(5649), + [anon_sym_mutable] = ACTIONS(5649), + [anon_sym_constinit] = ACTIONS(5649), + [anon_sym_consteval] = ACTIONS(5649), + [anon_sym_alignas] = ACTIONS(5649), + [anon_sym__Alignas] = ACTIONS(5649), + [sym_primitive_type] = ACTIONS(5649), + [anon_sym_enum] = ACTIONS(5649), + [anon_sym_class] = ACTIONS(5649), + [anon_sym_struct] = ACTIONS(5649), + [anon_sym_union] = ACTIONS(5649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5649), + [anon_sym_explicit] = ACTIONS(5649), + [anon_sym_typename] = ACTIONS(5649), + [anon_sym_private] = ACTIONS(5649), + [anon_sym_template] = ACTIONS(5649), + [anon_sym_operator] = ACTIONS(5649), + [anon_sym_friend] = ACTIONS(5649), + [anon_sym_public] = ACTIONS(5649), + [anon_sym_protected] = ACTIONS(5649), + [anon_sym_static_assert] = ACTIONS(5649), }, - [STATE(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), + [STATE(2187)] = { + [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), + [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_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), [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), + [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), }, - [STATE(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), + [STATE(2188)] = { + [sym_identifier] = 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), + [anon_sym_LPAREN2] = ACTIONS(2657), + [anon_sym_TILDE] = ACTIONS(2657), + [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_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), [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(2655), + [anon_sym_decltype] = ACTIONS(2655), + [anon_sym_explicit] = ACTIONS(2655), + [anon_sym_typename] = ACTIONS(2655), + [anon_sym_private] = ACTIONS(2655), + [anon_sym_template] = ACTIONS(2655), + [anon_sym_operator] = ACTIONS(2655), + [anon_sym_friend] = ACTIONS(2655), + [anon_sym_public] = ACTIONS(2655), + [anon_sym_protected] = ACTIONS(2655), + [anon_sym_static_assert] = ACTIONS(2655), }, - [STATE(2165)] = { - [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), - [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), + [STATE(2189)] = { + [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(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(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), }, - [STATE(2166)] = { - [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), - [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), + [STATE(2190)] = { + [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(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), }, - [STATE(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), + [STATE(2191)] = { + [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(125), - [anon_sym_decltype] = ACTIONS(127), - [anon_sym_typename] = ACTIONS(3929), - [anon_sym_template] = ACTIONS(1268), + [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), }, - [STATE(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(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), + [STATE(2192)] = { + [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(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), }, - [STATE(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), + [STATE(2193)] = { + [sym_string_literal] = STATE(1726), + [sym_template_argument_list] = STATE(2697), + [sym_raw_string_literal] = STATE(1726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(6072), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(6082), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5052), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_LBRACK] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [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), }, - [STATE(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), + [STATE(2194)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2977), + [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_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), [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), + [sym_auto] = ACTIONS(2975), + [anon_sym_decltype] = ACTIONS(2975), + [anon_sym_explicit] = ACTIONS(2975), + [anon_sym_typename] = ACTIONS(2975), + [anon_sym_private] = ACTIONS(2975), + [anon_sym_template] = ACTIONS(2975), + [anon_sym_operator] = ACTIONS(2975), + [anon_sym_friend] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_protected] = ACTIONS(2975), + [anon_sym_static_assert] = ACTIONS(2975), }, - [STATE(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), + [STATE(2195)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2677), + [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_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), [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_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), + [sym_auto] = ACTIONS(2675), + [anon_sym_decltype] = ACTIONS(2675), + [anon_sym_explicit] = ACTIONS(2675), + [anon_sym_typename] = ACTIONS(2675), + [anon_sym_private] = ACTIONS(2675), + [anon_sym_template] = ACTIONS(2675), + [anon_sym_operator] = ACTIONS(2675), + [anon_sym_friend] = ACTIONS(2675), + [anon_sym_public] = ACTIONS(2675), + [anon_sym_protected] = ACTIONS(2675), + [anon_sym_static_assert] = ACTIONS(2675), }, - [STATE(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), + [STATE(2196)] = { + [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), }, - [STATE(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), + [STATE(2197)] = { + [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(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), + [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), }, - [STATE(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), + [STATE(2198)] = { + [sym_string_literal] = STATE(2203), + [sym_raw_string_literal] = STATE(2203), + [aux_sym_concatenated_string_repeat1] = STATE(2203), + [sym_identifier] = ACTIONS(6085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5429), + [anon_sym_COMMA] = ACTIONS(5429), + [anon_sym_LPAREN2] = ACTIONS(5429), + [anon_sym_DASH] = ACTIONS(5431), + [anon_sym_PLUS] = ACTIONS(5431), + [anon_sym_STAR] = ACTIONS(5431), + [anon_sym_SLASH] = ACTIONS(5431), + [anon_sym_PERCENT] = ACTIONS(5431), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5431), + [anon_sym_CARET] = ACTIONS(5431), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym_EQ_EQ] = ACTIONS(5429), + [anon_sym_BANG_EQ] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5431), + [anon_sym_GT_EQ] = ACTIONS(5429), + [anon_sym_LT_EQ] = ACTIONS(5431), + [anon_sym_LT] = ACTIONS(5431), + [anon_sym_LT_LT] = ACTIONS(5431), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_SEMI] = ACTIONS(5429), + [anon_sym___attribute__] = ACTIONS(5431), + [anon_sym___attribute] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5431), + [anon_sym_QMARK] = ACTIONS(5429), + [anon_sym_STAR_EQ] = ACTIONS(5429), + [anon_sym_SLASH_EQ] = ACTIONS(5429), + [anon_sym_PERCENT_EQ] = ACTIONS(5429), + [anon_sym_PLUS_EQ] = ACTIONS(5429), + [anon_sym_DASH_EQ] = ACTIONS(5429), + [anon_sym_LT_LT_EQ] = ACTIONS(5429), + [anon_sym_GT_GT_EQ] = ACTIONS(5429), + [anon_sym_AMP_EQ] = ACTIONS(5429), + [anon_sym_CARET_EQ] = ACTIONS(5429), + [anon_sym_PIPE_EQ] = ACTIONS(5429), + [anon_sym_and_eq] = ACTIONS(5431), + [anon_sym_or_eq] = ACTIONS(5431), + [anon_sym_xor_eq] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5429), + [anon_sym_or] = ACTIONS(5431), + [anon_sym_and] = ACTIONS(5431), + [anon_sym_bitor] = ACTIONS(5431), + [anon_sym_xor] = ACTIONS(5431), + [anon_sym_bitand] = ACTIONS(5431), + [anon_sym_not_eq] = ACTIONS(5431), + [anon_sym_DASH_DASH] = ACTIONS(5429), + [anon_sym_PLUS_PLUS] = ACTIONS(5429), + [anon_sym_DOT] = ACTIONS(5431), + [anon_sym_DOT_STAR] = ACTIONS(5429), + [anon_sym_DASH_GT] = ACTIONS(5429), + [anon_sym_L_DQUOTE] = ACTIONS(6014), + [anon_sym_u_DQUOTE] = ACTIONS(6014), + [anon_sym_U_DQUOTE] = ACTIONS(6014), + [anon_sym_u8_DQUOTE] = ACTIONS(6014), + [anon_sym_DQUOTE] = ACTIONS(6014), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6016), + [anon_sym_LR_DQUOTE] = ACTIONS(6016), + [anon_sym_uR_DQUOTE] = ACTIONS(6016), + [anon_sym_UR_DQUOTE] = ACTIONS(6016), + [anon_sym_u8R_DQUOTE] = ACTIONS(6016), + [sym_literal_suffix] = ACTIONS(5431), }, - [STATE(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), + [STATE(2199)] = { + [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(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), - }, - [STATE(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), + [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), }, - [STATE(2177)] = { + [STATE(2200)] = { [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), @@ -282935,7 +285224,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -282981,1197 +285269,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(5466), [anon_sym_static_assert] = ACTIONS(5466), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(2191)] = { - [sym_identifier] = 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_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_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), - [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(2194)] = { - [sym_identifier] = 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_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_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), - [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), + [STATE(2201)] = { + [sym_identifier] = ACTIONS(5476), + [aux_sym_preproc_def_token1] = ACTIONS(5476), + [aux_sym_preproc_if_token1] = ACTIONS(5476), + [aux_sym_preproc_if_token2] = ACTIONS(5476), + [aux_sym_preproc_ifdef_token1] = ACTIONS(5476), + [aux_sym_preproc_ifdef_token2] = ACTIONS(5476), + [sym_preproc_directive] = ACTIONS(5476), + [anon_sym_LPAREN2] = ACTIONS(5478), + [anon_sym_TILDE] = ACTIONS(5478), + [anon_sym_STAR] = ACTIONS(5478), + [anon_sym_AMP_AMP] = ACTIONS(5478), + [anon_sym_AMP] = ACTIONS(5476), + [anon_sym_SEMI] = ACTIONS(5478), + [anon_sym___extension__] = ACTIONS(5476), + [anon_sym_typedef] = ACTIONS(5476), + [anon_sym_virtual] = ACTIONS(5476), + [anon_sym_extern] = ACTIONS(5476), + [anon_sym___attribute__] = ACTIONS(5476), + [anon_sym___attribute] = ACTIONS(5476), + [anon_sym_using] = ACTIONS(5476), + [anon_sym_COLON_COLON] = ACTIONS(5478), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5478), + [anon_sym___declspec] = ACTIONS(5476), + [anon_sym___based] = ACTIONS(5476), + [anon_sym_signed] = ACTIONS(5476), + [anon_sym_unsigned] = ACTIONS(5476), + [anon_sym_long] = ACTIONS(5476), + [anon_sym_short] = ACTIONS(5476), + [anon_sym_LBRACK] = ACTIONS(5476), + [anon_sym_static] = ACTIONS(5476), + [anon_sym_register] = ACTIONS(5476), + [anon_sym_inline] = ACTIONS(5476), + [anon_sym___inline] = ACTIONS(5476), + [anon_sym___inline__] = ACTIONS(5476), + [anon_sym___forceinline] = ACTIONS(5476), + [anon_sym_thread_local] = ACTIONS(5476), + [anon_sym___thread] = ACTIONS(5476), + [anon_sym_const] = ACTIONS(5476), + [anon_sym_constexpr] = ACTIONS(5476), + [anon_sym_volatile] = ACTIONS(5476), + [anon_sym_restrict] = ACTIONS(5476), + [anon_sym___restrict__] = ACTIONS(5476), + [anon_sym__Atomic] = ACTIONS(5476), + [anon_sym__Noreturn] = ACTIONS(5476), + [anon_sym_noreturn] = ACTIONS(5476), + [anon_sym__Nonnull] = ACTIONS(5476), + [anon_sym_mutable] = ACTIONS(5476), + [anon_sym_constinit] = ACTIONS(5476), + [anon_sym_consteval] = ACTIONS(5476), + [anon_sym_alignas] = ACTIONS(5476), + [anon_sym__Alignas] = ACTIONS(5476), + [sym_primitive_type] = ACTIONS(5476), + [anon_sym_enum] = ACTIONS(5476), + [anon_sym_class] = ACTIONS(5476), + [anon_sym_struct] = ACTIONS(5476), + [anon_sym_union] = ACTIONS(5476), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5476), + [anon_sym_decltype] = ACTIONS(5476), + [anon_sym_explicit] = ACTIONS(5476), + [anon_sym_typename] = ACTIONS(5476), + [anon_sym_private] = ACTIONS(5476), + [anon_sym_template] = ACTIONS(5476), + [anon_sym_operator] = ACTIONS(5476), + [anon_sym_friend] = ACTIONS(5476), + [anon_sym_public] = ACTIONS(5476), + [anon_sym_protected] = ACTIONS(5476), + [anon_sym_static_assert] = ACTIONS(5476), }, - [STATE(2195)] = { + [STATE(2202)] = { [sym_identifier] = ACTIONS(2939), [aux_sym_preproc_def_token1] = ACTIONS(2939), [aux_sym_preproc_if_token1] = ACTIONS(2939), @@ -284239,219 +285407,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_friend] = ACTIONS(2939), [anon_sym_public] = ACTIONS(2939), [anon_sym_protected] = ACTIONS(2939), - [anon_sym_static_assert] = ACTIONS(2939), - }, - [STATE(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), - }, - [STATE(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), + [anon_sym_static_assert] = ACTIONS(2939), }, - [STATE(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), + [STATE(2203)] = { + [sym_string_literal] = STATE(2211), + [sym_raw_string_literal] = STATE(2211), + [aux_sym_concatenated_string_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(6087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym_SEMI] = ACTIONS(5419), + [anon_sym___attribute__] = ACTIONS(5421), + [anon_sym___attribute] = ACTIONS(5421), + [anon_sym_LBRACK] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5421), + [anon_sym_or_eq] = ACTIONS(5421), + [anon_sym_xor_eq] = ACTIONS(5421), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5421), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5421), + [anon_sym_not_eq] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5419), + [anon_sym_L_DQUOTE] = ACTIONS(6014), + [anon_sym_u_DQUOTE] = ACTIONS(6014), + [anon_sym_U_DQUOTE] = ACTIONS(6014), + [anon_sym_u8_DQUOTE] = ACTIONS(6014), + [anon_sym_DQUOTE] = ACTIONS(6014), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6016), + [anon_sym_LR_DQUOTE] = ACTIONS(6016), + [anon_sym_uR_DQUOTE] = ACTIONS(6016), + [anon_sym_UR_DQUOTE] = ACTIONS(6016), + [anon_sym_u8R_DQUOTE] = ACTIONS(6016), + [sym_literal_suffix] = ACTIONS(5421), + }, + [STATE(2204)] = { + [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), + [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(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), + [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), }, - [STATE(2199)] = { + [STATE(2205)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [anon_sym_RPAREN] = ACTIONS(5141), + [anon_sym_LPAREN2] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5141), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5141), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5141), + [anon_sym_GT_GT] = ACTIONS(5141), + [anon_sym_SEMI] = ACTIONS(5141), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5138), + [anon_sym___attribute] = ACTIONS(5138), + [anon_sym_COLON] = ACTIONS(5141), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_signed] = ACTIONS(5392), + [anon_sym_unsigned] = ACTIONS(5392), + [anon_sym_long] = ACTIONS(5392), + [anon_sym_short] = ACTIONS(5392), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_RBRACK] = ACTIONS(5141), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_LT_EQ_GT] = ACTIONS(5141), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_bitor] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_bitand] = ACTIONS(5138), + [anon_sym_not_eq] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_STAR] = ACTIONS(5141), + [anon_sym_DASH_GT] = ACTIONS(5141), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5138), + [anon_sym_decltype] = ACTIONS(5138), + }, + [STATE(2206)] = { [sym_identifier] = ACTIONS(2943), [aux_sym_preproc_def_token1] = ACTIONS(2943), [aux_sym_preproc_if_token1] = ACTIONS(2943), @@ -284521,7 +285689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2943), [anon_sym_static_assert] = ACTIONS(2943), }, - [STATE(2200)] = { + [STATE(2207)] = { [sym_identifier] = ACTIONS(2947), [aux_sym_preproc_def_token1] = ACTIONS(2947), [aux_sym_preproc_if_token1] = ACTIONS(2947), @@ -284591,7 +285759,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2947), [anon_sym_static_assert] = ACTIONS(2947), }, - [STATE(2201)] = { + [STATE(2208)] = { + [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), + }, + [STATE(2209)] = { + [sym_identifier] = ACTIONS(5569), + [aux_sym_preproc_def_token1] = ACTIONS(5569), + [aux_sym_preproc_if_token1] = ACTIONS(5569), + [aux_sym_preproc_if_token2] = 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_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(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), + }, + [STATE(2210)] = { [sym_identifier] = ACTIONS(2951), [aux_sym_preproc_def_token1] = ACTIONS(2951), [aux_sym_preproc_if_token1] = ACTIONS(2951), @@ -284661,2232 +285969,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(2951), [anon_sym_static_assert] = ACTIONS(2951), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, [STATE(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), - }, - [STATE(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), - [anon_sym_RPAREN] = ACTIONS(6092), - [aux_sym_preproc_if_token2] = ACTIONS(6092), - [aux_sym_preproc_else_token1] = ACTIONS(6092), - [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(6094), - [anon_sym_DASH] = ACTIONS(6090), - [anon_sym_PLUS] = ACTIONS(6090), - [anon_sym_STAR] = ACTIONS(6090), - [anon_sym_SLASH] = ACTIONS(6090), - [anon_sym_PERCENT] = ACTIONS(6090), - [anon_sym_PIPE_PIPE] = ACTIONS(6092), - [anon_sym_AMP_AMP] = ACTIONS(6092), - [anon_sym_PIPE] = ACTIONS(6090), - [anon_sym_CARET] = ACTIONS(6090), - [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(6090), - [anon_sym_GT_GT] = ACTIONS(6090), - [anon_sym_SEMI] = ACTIONS(6092), - [anon_sym___attribute__] = ACTIONS(6090), - [anon_sym___attribute] = ACTIONS(6090), - [anon_sym_COLON] = ACTIONS(6092), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6096), - [anon_sym_RBRACE] = ACTIONS(6092), - [anon_sym_LBRACK] = ACTIONS(6098), - [anon_sym_RBRACK] = ACTIONS(6092), - [anon_sym_EQ] = ACTIONS(6090), - [anon_sym_QMARK] = ACTIONS(6092), - [anon_sym_STAR_EQ] = ACTIONS(6092), - [anon_sym_SLASH_EQ] = ACTIONS(6092), - [anon_sym_PERCENT_EQ] = ACTIONS(6092), - [anon_sym_PLUS_EQ] = ACTIONS(6092), - [anon_sym_DASH_EQ] = ACTIONS(6092), - [anon_sym_LT_LT_EQ] = ACTIONS(6092), - [anon_sym_GT_GT_EQ] = ACTIONS(6092), - [anon_sym_AMP_EQ] = ACTIONS(6092), - [anon_sym_CARET_EQ] = ACTIONS(6092), - [anon_sym_PIPE_EQ] = ACTIONS(6092), - [anon_sym_and_eq] = ACTIONS(6090), - [anon_sym_or_eq] = ACTIONS(6090), - [anon_sym_xor_eq] = ACTIONS(6090), - [anon_sym_LT_EQ_GT] = ACTIONS(6092), - [anon_sym_or] = ACTIONS(6090), - [anon_sym_and] = ACTIONS(6090), - [anon_sym_bitor] = ACTIONS(6090), - [anon_sym_xor] = ACTIONS(6090), - [anon_sym_bitand] = ACTIONS(6090), - [anon_sym_not_eq] = ACTIONS(6090), - [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), - }, - [STATE(2213)] = { - [sym_attribute_specifier] = STATE(2298), - [sym_identifier] = ACTIONS(6100), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), - [anon_sym_COMMA] = ACTIONS(6102), - [anon_sym_RPAREN] = ACTIONS(6102), - [aux_sym_preproc_if_token2] = ACTIONS(6102), - [aux_sym_preproc_else_token1] = ACTIONS(6102), - [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(6102), - [anon_sym_DASH] = ACTIONS(6100), - [anon_sym_PLUS] = ACTIONS(6100), - [anon_sym_STAR] = ACTIONS(6100), - [anon_sym_SLASH] = ACTIONS(6100), - [anon_sym_PERCENT] = ACTIONS(6100), - [anon_sym_PIPE_PIPE] = ACTIONS(6102), - [anon_sym_AMP_AMP] = ACTIONS(6102), - [anon_sym_PIPE] = ACTIONS(6100), - [anon_sym_CARET] = ACTIONS(6100), - [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(6100), - [anon_sym_GT_GT] = ACTIONS(6100), - [anon_sym_SEMI] = ACTIONS(6102), - [anon_sym___attribute__] = ACTIONS(5561), - [anon_sym___attribute] = ACTIONS(5561), - [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_EQ] = ACTIONS(6100), - [anon_sym_QMARK] = ACTIONS(6102), - [anon_sym_STAR_EQ] = ACTIONS(6102), - [anon_sym_SLASH_EQ] = ACTIONS(6102), - [anon_sym_PERCENT_EQ] = ACTIONS(6102), - [anon_sym_PLUS_EQ] = ACTIONS(6102), - [anon_sym_DASH_EQ] = ACTIONS(6102), - [anon_sym_LT_LT_EQ] = ACTIONS(6102), - [anon_sym_GT_GT_EQ] = ACTIONS(6102), - [anon_sym_AMP_EQ] = ACTIONS(6102), - [anon_sym_CARET_EQ] = ACTIONS(6102), - [anon_sym_PIPE_EQ] = ACTIONS(6102), - [anon_sym_and_eq] = ACTIONS(6100), - [anon_sym_or_eq] = ACTIONS(6100), - [anon_sym_xor_eq] = ACTIONS(6100), - [anon_sym_LT_EQ_GT] = ACTIONS(6102), - [anon_sym_or] = ACTIONS(6100), - [anon_sym_and] = ACTIONS(6100), - [anon_sym_bitor] = ACTIONS(6100), - [anon_sym_xor] = ACTIONS(6100), - [anon_sym_bitand] = ACTIONS(6100), - [anon_sym_not_eq] = ACTIONS(6100), - [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(6100), - [anon_sym_decltype] = ACTIONS(6100), - }, - [STATE(2214)] = { - [sym_attribute_specifier] = STATE(2280), - [sym_identifier] = ACTIONS(6104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6106), - [anon_sym_COMMA] = ACTIONS(6106), - [anon_sym_RPAREN] = ACTIONS(6106), - [aux_sym_preproc_if_token2] = ACTIONS(6106), - [aux_sym_preproc_else_token1] = ACTIONS(6106), - [aux_sym_preproc_elif_token1] = ACTIONS(6104), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6106), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6106), - [anon_sym_LPAREN2] = ACTIONS(6106), - [anon_sym_DASH] = ACTIONS(6104), - [anon_sym_PLUS] = ACTIONS(6104), - [anon_sym_STAR] = ACTIONS(6104), - [anon_sym_SLASH] = ACTIONS(6104), - [anon_sym_PERCENT] = ACTIONS(6104), - [anon_sym_PIPE_PIPE] = ACTIONS(6106), - [anon_sym_AMP_AMP] = ACTIONS(6106), - [anon_sym_PIPE] = ACTIONS(6104), - [anon_sym_CARET] = ACTIONS(6104), - [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(6104), - [anon_sym_GT_GT] = ACTIONS(6104), - [anon_sym_SEMI] = ACTIONS(6106), - [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), - [anon_sym_LBRACK] = ACTIONS(6106), - [anon_sym_RBRACK] = ACTIONS(6106), - [anon_sym_EQ] = ACTIONS(6104), - [anon_sym_QMARK] = ACTIONS(6106), - [anon_sym_STAR_EQ] = ACTIONS(6106), - [anon_sym_SLASH_EQ] = ACTIONS(6106), - [anon_sym_PERCENT_EQ] = ACTIONS(6106), - [anon_sym_PLUS_EQ] = ACTIONS(6106), - [anon_sym_DASH_EQ] = ACTIONS(6106), - [anon_sym_LT_LT_EQ] = ACTIONS(6106), - [anon_sym_GT_GT_EQ] = ACTIONS(6106), - [anon_sym_AMP_EQ] = ACTIONS(6106), - [anon_sym_CARET_EQ] = ACTIONS(6106), - [anon_sym_PIPE_EQ] = ACTIONS(6106), - [anon_sym_and_eq] = ACTIONS(6104), - [anon_sym_or_eq] = ACTIONS(6104), - [anon_sym_xor_eq] = ACTIONS(6104), - [anon_sym_LT_EQ_GT] = ACTIONS(6106), - [anon_sym_or] = ACTIONS(6104), - [anon_sym_and] = ACTIONS(6104), - [anon_sym_bitor] = ACTIONS(6104), - [anon_sym_xor] = ACTIONS(6104), - [anon_sym_bitand] = ACTIONS(6104), - [anon_sym_not_eq] = ACTIONS(6104), - [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(6104), - [anon_sym_decltype] = ACTIONS(6104), - }, - [STATE(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), - }, - [STATE(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(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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_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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(2225)] = { - [sym_attribute_declaration] = STATE(2270), - [sym_parameter_list] = STATE(1942), - [aux_sym_attributed_declarator_repeat1] = STATE(2270), - [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), - }, - [STATE(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), - }, - [STATE(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(6153), - [anon_sym_decltype] = ACTIONS(6153), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(2234)] = { - [sym_string_literal] = STATE(2235), - [sym_raw_string_literal] = STATE(2235), - [aux_sym_concatenated_string_repeat1] = STATE(2235), - [sym_identifier] = ACTIONS(6189), + [sym_string_literal] = STATE(2211), + [sym_raw_string_literal] = STATE(2211), + [aux_sym_concatenated_string_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(6089), [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), @@ -286906,6 +285995,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -286933,2636 +286025,1152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_DASH_GT] = ACTIONS(5401), + [anon_sym_L_DQUOTE] = ACTIONS(6092), + [anon_sym_u_DQUOTE] = ACTIONS(6092), + [anon_sym_U_DQUOTE] = ACTIONS(6092), + [anon_sym_u8_DQUOTE] = ACTIONS(6092), + [anon_sym_DQUOTE] = ACTIONS(6092), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6095), + [anon_sym_LR_DQUOTE] = ACTIONS(6095), + [anon_sym_uR_DQUOTE] = ACTIONS(6095), + [anon_sym_UR_DQUOTE] = ACTIONS(6095), + [anon_sym_u8R_DQUOTE] = ACTIONS(6095), [sym_literal_suffix] = ACTIONS(5403), }, - [STATE(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), - }, - [STATE(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(5525), - [anon_sym_decltype] = ACTIONS(5525), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(2212)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2753), + [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_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), [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_private] = ACTIONS(2751), + [anon_sym_template] = ACTIONS(2751), + [anon_sym_operator] = ACTIONS(2751), + [anon_sym_friend] = ACTIONS(2751), + [anon_sym_public] = ACTIONS(2751), + [anon_sym_protected] = ACTIONS(2751), + [anon_sym_static_assert] = ACTIONS(2751), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(2243)] = { - [sym_attribute_declaration] = STATE(2270), - [sym_parameter_list] = STATE(1942), - [aux_sym_attributed_declarator_repeat1] = STATE(2270), - [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), + [STATE(2213)] = { + [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), }, - [STATE(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_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), - }, - [STATE(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), + [STATE(2214)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2977), + [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_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), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6206), - [anon_sym_decltype] = ACTIONS(6206), + [sym_auto] = ACTIONS(2975), + [anon_sym_decltype] = ACTIONS(2975), + [anon_sym_explicit] = ACTIONS(2975), + [anon_sym_typename] = ACTIONS(2975), + [anon_sym_private] = ACTIONS(2975), + [anon_sym_template] = ACTIONS(2975), + [anon_sym_operator] = ACTIONS(2975), + [anon_sym_friend] = ACTIONS(2975), + [anon_sym_public] = ACTIONS(2975), + [anon_sym_protected] = ACTIONS(2975), + [anon_sym_static_assert] = ACTIONS(2975), }, - [STATE(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), + [STATE(2215)] = { + [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(6210), - [anon_sym_decltype] = ACTIONS(6210), + [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), }, - [STATE(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), + [STATE(2216)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2961), + [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_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), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6214), - [anon_sym_decltype] = ACTIONS(6214), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [sym_auto] = ACTIONS(2959), + [anon_sym_decltype] = ACTIONS(2959), + [anon_sym_explicit] = ACTIONS(2959), + [anon_sym_typename] = ACTIONS(2959), + [anon_sym_private] = ACTIONS(2959), + [anon_sym_template] = ACTIONS(2959), + [anon_sym_operator] = ACTIONS(2959), + [anon_sym_friend] = ACTIONS(2959), + [anon_sym_public] = ACTIONS(2959), + [anon_sym_protected] = ACTIONS(2959), + [anon_sym_static_assert] = ACTIONS(2959), }, - [STATE(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), + [STATE(2217)] = { + [sym_identifier] = 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_TILDE] = ACTIONS(2669), + [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_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), + [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_private] = ACTIONS(2667), + [anon_sym_template] = ACTIONS(2667), + [anon_sym_operator] = ACTIONS(2667), + [anon_sym_friend] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_protected] = ACTIONS(2667), + [anon_sym_static_assert] = ACTIONS(2667), }, - [STATE(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), + [STATE(2218)] = { + [sym_identifier] = ACTIONS(3099), + [aux_sym_preproc_def_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token1] = ACTIONS(3099), + [aux_sym_preproc_if_token2] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3099), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3099), + [sym_preproc_directive] = ACTIONS(3099), + [anon_sym_LPAREN2] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym___extension__] = ACTIONS(3099), + [anon_sym_typedef] = ACTIONS(3099), + [anon_sym_virtual] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym___attribute__] = ACTIONS(3099), + [anon_sym___attribute] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3099), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3101), + [anon_sym___declspec] = ACTIONS(3099), + [anon_sym___based] = ACTIONS(3099), + [anon_sym_signed] = ACTIONS(3099), + [anon_sym_unsigned] = ACTIONS(3099), + [anon_sym_long] = ACTIONS(3099), + [anon_sym_short] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_register] = ACTIONS(3099), + [anon_sym_inline] = ACTIONS(3099), + [anon_sym___inline] = ACTIONS(3099), + [anon_sym___inline__] = ACTIONS(3099), + [anon_sym___forceinline] = ACTIONS(3099), + [anon_sym_thread_local] = ACTIONS(3099), + [anon_sym___thread] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_constexpr] = ACTIONS(3099), + [anon_sym_volatile] = ACTIONS(3099), + [anon_sym_restrict] = ACTIONS(3099), + [anon_sym___restrict__] = ACTIONS(3099), + [anon_sym__Atomic] = ACTIONS(3099), + [anon_sym__Noreturn] = ACTIONS(3099), + [anon_sym_noreturn] = ACTIONS(3099), + [anon_sym__Nonnull] = ACTIONS(3099), + [anon_sym_mutable] = ACTIONS(3099), + [anon_sym_constinit] = ACTIONS(3099), + [anon_sym_consteval] = ACTIONS(3099), + [anon_sym_alignas] = ACTIONS(3099), + [anon_sym__Alignas] = ACTIONS(3099), + [sym_primitive_type] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_class] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3099), + [anon_sym_decltype] = ACTIONS(3099), + [anon_sym_explicit] = ACTIONS(3099), + [anon_sym_typename] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_template] = ACTIONS(3099), + [anon_sym_operator] = ACTIONS(3099), + [anon_sym_friend] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_static_assert] = ACTIONS(3099), }, - [STATE(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), + [STATE(2219)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1702), + [sym_identifier] = ACTIONS(5138), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5141), + [anon_sym_COMMA] = ACTIONS(5141), + [aux_sym_preproc_if_token2] = ACTIONS(5141), + [aux_sym_preproc_else_token1] = ACTIONS(5141), + [aux_sym_preproc_elif_token1] = ACTIONS(5138), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5141), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5141), + [anon_sym_LPAREN2] = ACTIONS(5141), + [anon_sym_DASH] = ACTIONS(5138), + [anon_sym_PLUS] = ACTIONS(5138), + [anon_sym_STAR] = ACTIONS(5141), + [anon_sym_SLASH] = ACTIONS(5138), + [anon_sym_PERCENT] = ACTIONS(5141), + [anon_sym_PIPE_PIPE] = ACTIONS(5141), + [anon_sym_AMP_AMP] = ACTIONS(5141), + [anon_sym_PIPE] = ACTIONS(5138), + [anon_sym_CARET] = ACTIONS(5141), + [anon_sym_AMP] = ACTIONS(5138), + [anon_sym_EQ_EQ] = ACTIONS(5141), + [anon_sym_BANG_EQ] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5138), + [anon_sym_GT_EQ] = ACTIONS(5141), + [anon_sym_LT_EQ] = ACTIONS(5138), + [anon_sym_LT] = ACTIONS(5138), + [anon_sym_LT_LT] = ACTIONS(5141), + [anon_sym_GT_GT] = ACTIONS(5141), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5138), + [anon_sym___attribute] = ACTIONS(5138), + [anon_sym_LBRACE] = ACTIONS(5141), + [anon_sym_signed] = ACTIONS(5392), + [anon_sym_unsigned] = ACTIONS(5392), + [anon_sym_long] = ACTIONS(5392), + [anon_sym_short] = ACTIONS(5392), + [anon_sym_LBRACK] = ACTIONS(5141), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5141), + [anon_sym_LT_EQ_GT] = ACTIONS(5141), + [anon_sym_or] = ACTIONS(5138), + [anon_sym_and] = ACTIONS(5138), + [anon_sym_bitor] = ACTIONS(5138), + [anon_sym_xor] = ACTIONS(5138), + [anon_sym_bitand] = ACTIONS(5138), + [anon_sym_not_eq] = ACTIONS(5138), + [anon_sym_DASH_DASH] = ACTIONS(5141), + [anon_sym_PLUS_PLUS] = ACTIONS(5141), + [anon_sym_DOT] = ACTIONS(5138), + [anon_sym_DOT_STAR] = ACTIONS(5141), + [anon_sym_DASH_GT] = ACTIONS(5141), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5138), + [anon_sym_decltype] = ACTIONS(5138), }, - [STATE(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(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), + [STATE(2220)] = { + [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), }, - [STATE(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), - }, - [STATE(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), + [STATE(2221)] = { + [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(5768), - [anon_sym_decltype] = ACTIONS(5768), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(2222)] = { + [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(5788), - [anon_sym_decltype] = ACTIONS(5788), + [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), }, - [STATE(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), + [STATE(2223)] = { + [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(5931), - [anon_sym_decltype] = ACTIONS(5931), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [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), }, - [STATE(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), + [STATE(2224)] = { + [sym_identifier] = ACTIONS(5480), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5482), + [anon_sym_COMMA] = ACTIONS(5482), + [anon_sym_RPAREN] = ACTIONS(5482), + [aux_sym_preproc_if_token2] = ACTIONS(5482), + [aux_sym_preproc_else_token1] = ACTIONS(5482), + [aux_sym_preproc_elif_token1] = ACTIONS(5480), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5482), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5482), + [anon_sym_LPAREN2] = ACTIONS(5482), + [anon_sym_DASH] = ACTIONS(5480), + [anon_sym_PLUS] = ACTIONS(5480), + [anon_sym_STAR] = ACTIONS(5480), + [anon_sym_SLASH] = ACTIONS(5480), + [anon_sym_PERCENT] = ACTIONS(5480), + [anon_sym_PIPE_PIPE] = ACTIONS(5482), + [anon_sym_AMP_AMP] = ACTIONS(5482), + [anon_sym_PIPE] = ACTIONS(5480), + [anon_sym_CARET] = ACTIONS(5480), + [anon_sym_AMP] = ACTIONS(5480), + [anon_sym_EQ_EQ] = ACTIONS(5482), + [anon_sym_BANG_EQ] = ACTIONS(5482), + [anon_sym_GT] = ACTIONS(5480), + [anon_sym_GT_EQ] = ACTIONS(5482), + [anon_sym_LT_EQ] = ACTIONS(5480), + [anon_sym_LT] = ACTIONS(5480), + [anon_sym_LT_LT] = ACTIONS(5480), + [anon_sym_GT_GT] = ACTIONS(5480), + [anon_sym_SEMI] = ACTIONS(5482), + [anon_sym___attribute__] = ACTIONS(5480), + [anon_sym___attribute] = ACTIONS(5480), + [anon_sym_COLON] = ACTIONS(5480), + [anon_sym_COLON_COLON] = ACTIONS(5482), + [anon_sym_LBRACE] = ACTIONS(5482), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_LBRACK] = ACTIONS(5482), + [anon_sym_RBRACK] = ACTIONS(5482), + [anon_sym_EQ] = ACTIONS(5480), + [anon_sym_QMARK] = ACTIONS(5482), + [anon_sym_STAR_EQ] = ACTIONS(5482), + [anon_sym_SLASH_EQ] = ACTIONS(5482), + [anon_sym_PERCENT_EQ] = ACTIONS(5482), + [anon_sym_PLUS_EQ] = ACTIONS(5482), + [anon_sym_DASH_EQ] = ACTIONS(5482), + [anon_sym_LT_LT_EQ] = ACTIONS(5482), + [anon_sym_GT_GT_EQ] = ACTIONS(5482), + [anon_sym_AMP_EQ] = ACTIONS(5482), + [anon_sym_CARET_EQ] = ACTIONS(5482), + [anon_sym_PIPE_EQ] = ACTIONS(5482), + [anon_sym_and_eq] = ACTIONS(5480), + [anon_sym_or_eq] = ACTIONS(5480), + [anon_sym_xor_eq] = ACTIONS(5480), + [anon_sym_LT_EQ_GT] = ACTIONS(5482), + [anon_sym_or] = ACTIONS(5480), + [anon_sym_and] = ACTIONS(5480), + [anon_sym_bitor] = ACTIONS(5480), + [anon_sym_xor] = ACTIONS(5480), + [anon_sym_bitand] = ACTIONS(5480), + [anon_sym_not_eq] = ACTIONS(5480), + [anon_sym_DASH_DASH] = ACTIONS(5482), + [anon_sym_PLUS_PLUS] = ACTIONS(5482), + [anon_sym_DOT] = ACTIONS(5480), + [anon_sym_DOT_STAR] = ACTIONS(5482), + [anon_sym_DASH_GT] = ACTIONS(5482), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5480), + [anon_sym_decltype] = ACTIONS(5480), }, - [STATE(2266)] = { - [sym_string_literal] = STATE(2657), - [sym_template_argument_list] = STATE(3605), - [sym_raw_string_literal] = STATE(2657), + [STATE(2225)] = { + [sym_template_argument_list] = STATE(1975), + [aux_sym_sized_type_specifier_repeat1] = STATE(2399), [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [anon_sym_RPAREN] = ACTIONS(4166), + [anon_sym_LPAREN2] = ACTIONS(4166), + [anon_sym_DASH] = ACTIONS(4159), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_SLASH] = ACTIONS(4159), + [anon_sym_PERCENT] = ACTIONS(4159), + [anon_sym_PIPE_PIPE] = ACTIONS(4166), + [anon_sym_AMP_AMP] = ACTIONS(4166), + [anon_sym_PIPE] = ACTIONS(4159), + [anon_sym_CARET] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4159), + [anon_sym_EQ_EQ] = ACTIONS(4166), + [anon_sym_BANG_EQ] = ACTIONS(4166), + [anon_sym_GT] = ACTIONS(4159), + [anon_sym_GT_EQ] = ACTIONS(4166), + [anon_sym_LT_EQ] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_LT_LT] = ACTIONS(4159), + [anon_sym_GT_GT] = ACTIONS(4159), + [anon_sym_SEMI] = ACTIONS(4166), + [anon_sym___attribute__] = ACTIONS(4166), + [anon_sym___attribute] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_RBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(6098), + [anon_sym_unsigned] = ACTIONS(6098), + [anon_sym_long] = ACTIONS(6098), + [anon_sym_short] = ACTIONS(6098), + [anon_sym_LBRACK] = ACTIONS(4166), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_EQ] = ACTIONS(4159), + [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(4159), + [anon_sym_and] = ACTIONS(4159), + [anon_sym_bitor] = ACTIONS(4166), + [anon_sym_xor] = ACTIONS(4159), + [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(4159), + [anon_sym_DOT_STAR] = ACTIONS(4166), + [anon_sym_DASH_GT] = ACTIONS(4166), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5974), - [anon_sym_decltype] = ACTIONS(5974), + [sym_auto] = ACTIONS(4166), + [anon_sym_decltype] = ACTIONS(4166), }, - [STATE(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), + [STATE(2226)] = { + [sym_attribute_specifier] = STATE(2321), + [sym_identifier] = ACTIONS(6100), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), + [anon_sym_COMMA] = ACTIONS(6102), + [anon_sym_RPAREN] = ACTIONS(6102), + [aux_sym_preproc_if_token2] = ACTIONS(6102), + [aux_sym_preproc_else_token1] = ACTIONS(6102), + [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(6102), + [anon_sym_DASH] = ACTIONS(6100), + [anon_sym_PLUS] = ACTIONS(6100), + [anon_sym_STAR] = ACTIONS(6100), + [anon_sym_SLASH] = ACTIONS(6100), + [anon_sym_PERCENT] = ACTIONS(6100), + [anon_sym_PIPE_PIPE] = ACTIONS(6102), + [anon_sym_AMP_AMP] = ACTIONS(6102), + [anon_sym_PIPE] = ACTIONS(6100), + [anon_sym_CARET] = ACTIONS(6100), + [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(6100), + [anon_sym_GT_GT] = ACTIONS(6100), + [anon_sym_SEMI] = ACTIONS(6102), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [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_EQ] = ACTIONS(6100), + [anon_sym_QMARK] = ACTIONS(6102), + [anon_sym_STAR_EQ] = ACTIONS(6102), + [anon_sym_SLASH_EQ] = ACTIONS(6102), + [anon_sym_PERCENT_EQ] = ACTIONS(6102), + [anon_sym_PLUS_EQ] = ACTIONS(6102), + [anon_sym_DASH_EQ] = ACTIONS(6102), + [anon_sym_LT_LT_EQ] = ACTIONS(6102), + [anon_sym_GT_GT_EQ] = ACTIONS(6102), + [anon_sym_AMP_EQ] = ACTIONS(6102), + [anon_sym_CARET_EQ] = ACTIONS(6102), + [anon_sym_PIPE_EQ] = ACTIONS(6102), + [anon_sym_and_eq] = ACTIONS(6100), + [anon_sym_or_eq] = ACTIONS(6100), + [anon_sym_xor_eq] = ACTIONS(6100), + [anon_sym_LT_EQ_GT] = ACTIONS(6102), + [anon_sym_or] = ACTIONS(6100), + [anon_sym_and] = ACTIONS(6100), + [anon_sym_bitor] = ACTIONS(6100), + [anon_sym_xor] = ACTIONS(6100), + [anon_sym_bitand] = ACTIONS(6100), + [anon_sym_not_eq] = ACTIONS(6100), + [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(6100), + [anon_sym_decltype] = ACTIONS(6100), }, - [STATE(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), - }, - [STATE(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), + [STATE(2227)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_structured_binding_declarator_repeat1] = STATE(7626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(6104), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(6106), + [anon_sym_EQ] = ACTIONS(6109), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(6111), + [anon_sym_SLASH_EQ] = ACTIONS(6111), + [anon_sym_PERCENT_EQ] = ACTIONS(6111), + [anon_sym_PLUS_EQ] = ACTIONS(6111), + [anon_sym_DASH_EQ] = ACTIONS(6111), + [anon_sym_LT_LT_EQ] = ACTIONS(6111), + [anon_sym_GT_GT_EQ] = ACTIONS(6111), + [anon_sym_AMP_EQ] = ACTIONS(6111), + [anon_sym_CARET_EQ] = ACTIONS(6111), + [anon_sym_PIPE_EQ] = ACTIONS(6111), + [anon_sym_and_eq] = ACTIONS(6111), + [anon_sym_or_eq] = ACTIONS(6111), + [anon_sym_xor_eq] = ACTIONS(6111), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), }, - [STATE(2273)] = { - [sym_attribute_specifier] = STATE(1901), - [sym_enumerator_list] = STATE(2395), + [STATE(2228)] = { + [sym_template_argument_list] = STATE(1635), + [aux_sym_sized_type_specifier_repeat1] = STATE(2399), [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_STAR] = ACTIONS(6066), [anon_sym_SLASH] = ACTIONS(6066), - [anon_sym_PERCENT] = ACTIONS(6068), + [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(6068), + [anon_sym_CARET] = ACTIONS(6066), [anon_sym_AMP] = ACTIONS(6066), [anon_sym_EQ_EQ] = ACTIONS(6068), [anon_sym_BANG_EQ] = ACTIONS(6068), @@ -289570,37 +287178,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_LT_LT] = ACTIONS(6066), + [anon_sym_GT_GT] = ACTIONS(6066), [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___attribute__] = ACTIONS(6068), + [anon_sym___attribute] = ACTIONS(6066), + [anon_sym_COLON] = ACTIONS(6066), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(6068), [anon_sym_RBRACE] = ACTIONS(6068), + [anon_sym_signed] = ACTIONS(6098), + [anon_sym_unsigned] = ACTIONS(6098), + [anon_sym_long] = ACTIONS(6098), + [anon_sym_short] = ACTIONS(6098), [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_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(6068), + [anon_sym_or_eq] = ACTIONS(6068), + [anon_sym_xor_eq] = ACTIONS(6068), [anon_sym_LT_EQ_GT] = ACTIONS(6068), - [anon_sym_or] = ACTIONS(6068), - [anon_sym_and] = ACTIONS(6068), + [anon_sym_or] = ACTIONS(6066), + [anon_sym_and] = ACTIONS(6066), [anon_sym_bitor] = ACTIONS(6068), - [anon_sym_xor] = ACTIONS(6068), + [anon_sym_xor] = ACTIONS(6066), [anon_sym_bitand] = ACTIONS(6068), [anon_sym_not_eq] = ACTIONS(6068), [anon_sym_DASH_DASH] = ACTIONS(6068), @@ -289611,1536 +287223,3138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), }, - [STATE(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), + [STATE(2229)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON] = ACTIONS(4236), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), }, - [STATE(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), + [STATE(2230)] = { + [sym_attribute_specifier] = STATE(2290), + [sym_identifier] = ACTIONS(6113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6115), + [anon_sym_COMMA] = ACTIONS(6115), + [anon_sym_RPAREN] = ACTIONS(6115), + [aux_sym_preproc_if_token2] = ACTIONS(6115), + [aux_sym_preproc_else_token1] = ACTIONS(6115), + [aux_sym_preproc_elif_token1] = ACTIONS(6113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6115), + [anon_sym_LPAREN2] = ACTIONS(6115), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6113), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_PERCENT] = ACTIONS(6113), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_AMP_AMP] = ACTIONS(6115), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6113), + [anon_sym_AMP] = ACTIONS(6113), + [anon_sym_EQ_EQ] = ACTIONS(6115), + [anon_sym_BANG_EQ] = ACTIONS(6115), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_GT_EQ] = ACTIONS(6115), + [anon_sym_LT_EQ] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_LT_LT] = ACTIONS(6113), + [anon_sym_GT_GT] = ACTIONS(6113), + [anon_sym_SEMI] = ACTIONS(6115), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6115), + [anon_sym_LBRACE] = ACTIONS(6115), + [anon_sym_RBRACE] = ACTIONS(6115), + [anon_sym_LBRACK] = ACTIONS(6115), + [anon_sym_RBRACK] = ACTIONS(6115), + [anon_sym_EQ] = ACTIONS(6113), + [anon_sym_QMARK] = ACTIONS(6115), + [anon_sym_STAR_EQ] = ACTIONS(6115), + [anon_sym_SLASH_EQ] = ACTIONS(6115), + [anon_sym_PERCENT_EQ] = ACTIONS(6115), + [anon_sym_PLUS_EQ] = ACTIONS(6115), + [anon_sym_DASH_EQ] = ACTIONS(6115), + [anon_sym_LT_LT_EQ] = ACTIONS(6115), + [anon_sym_GT_GT_EQ] = ACTIONS(6115), + [anon_sym_AMP_EQ] = ACTIONS(6115), + [anon_sym_CARET_EQ] = ACTIONS(6115), + [anon_sym_PIPE_EQ] = ACTIONS(6115), + [anon_sym_and_eq] = ACTIONS(6113), + [anon_sym_or_eq] = ACTIONS(6113), + [anon_sym_xor_eq] = ACTIONS(6113), + [anon_sym_LT_EQ_GT] = ACTIONS(6115), + [anon_sym_or] = ACTIONS(6113), + [anon_sym_and] = ACTIONS(6113), + [anon_sym_bitor] = ACTIONS(6113), + [anon_sym_xor] = ACTIONS(6113), + [anon_sym_bitand] = ACTIONS(6113), + [anon_sym_not_eq] = ACTIONS(6113), + [anon_sym_DASH_DASH] = ACTIONS(6115), + [anon_sym_PLUS_PLUS] = ACTIONS(6115), + [anon_sym_DOT] = ACTIONS(6113), + [anon_sym_DOT_STAR] = ACTIONS(6115), + [anon_sym_DASH_GT] = ACTIONS(6115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6113), + [anon_sym_decltype] = ACTIONS(6113), }, - [STATE(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), + [STATE(2231)] = { + [sym_type_qualifier] = STATE(2235), + [sym_alignas_qualifier] = STATE(2343), + [aux_sym__type_definition_type_repeat1] = STATE(2235), + [aux_sym_sized_type_specifier_repeat1] = STATE(2431), + [sym_identifier] = ACTIONS(6117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_LPAREN2] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5125), + [anon_sym_PERCENT] = ACTIONS(5123), + [anon_sym_PIPE_PIPE] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5125), + [anon_sym_CARET] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5125), + [anon_sym_EQ_EQ] = ACTIONS(5123), + [anon_sym_BANG_EQ] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5125), + [anon_sym_GT_EQ] = ACTIONS(5125), + [anon_sym_LT_EQ] = ACTIONS(5125), + [anon_sym_LT] = ACTIONS(5125), + [anon_sym_LT_LT] = ACTIONS(5123), + [anon_sym_GT_GT] = ACTIONS(5125), + [anon_sym___extension__] = ACTIONS(6119), + [anon_sym___attribute__] = ACTIONS(5125), + [anon_sym___attribute] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_signed] = ACTIONS(6121), + [anon_sym_unsigned] = ACTIONS(6121), + [anon_sym_long] = ACTIONS(6121), + [anon_sym_short] = ACTIONS(6121), + [anon_sym_LBRACK] = ACTIONS(5123), + [anon_sym_const] = ACTIONS(6119), + [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(6123), + [anon_sym__Alignas] = ACTIONS(6123), + [sym_primitive_type] = ACTIONS(6125), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_LT_EQ_GT] = ACTIONS(5123), + [anon_sym_or] = ACTIONS(5125), + [anon_sym_and] = ACTIONS(5125), + [anon_sym_bitor] = ACTIONS(5125), + [anon_sym_xor] = ACTIONS(5125), + [anon_sym_bitand] = ACTIONS(5125), + [anon_sym_not_eq] = ACTIONS(5125), + [anon_sym_DASH_DASH] = ACTIONS(5123), + [anon_sym_PLUS_PLUS] = ACTIONS(5123), + [anon_sym_DOT] = ACTIONS(5125), + [anon_sym_DOT_STAR] = ACTIONS(5123), + [anon_sym_DASH_GT] = ACTIONS(5123), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5125), + [anon_sym_decltype] = ACTIONS(5125), + [anon_sym_GT2] = ACTIONS(5123), }, - [STATE(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), + [STATE(2232)] = { + [sym_attribute_specifier] = STATE(2327), + [sym_identifier] = ACTIONS(6127), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_RPAREN] = ACTIONS(6129), + [aux_sym_preproc_if_token2] = ACTIONS(6129), + [aux_sym_preproc_else_token1] = ACTIONS(6129), + [aux_sym_preproc_elif_token1] = ACTIONS(6127), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6129), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6129), + [anon_sym_LPAREN2] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6127), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_PERCENT] = ACTIONS(6127), + [anon_sym_PIPE_PIPE] = ACTIONS(6129), + [anon_sym_AMP_AMP] = ACTIONS(6129), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6127), + [anon_sym_AMP] = ACTIONS(6127), + [anon_sym_EQ_EQ] = ACTIONS(6129), + [anon_sym_BANG_EQ] = ACTIONS(6129), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_GT_EQ] = ACTIONS(6129), + [anon_sym_LT_EQ] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_LT_LT] = ACTIONS(6127), + [anon_sym_GT_GT] = ACTIONS(6127), + [anon_sym_SEMI] = ACTIONS(6129), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(6129), + [anon_sym_RBRACE] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(6129), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_EQ] = ACTIONS(6127), + [anon_sym_QMARK] = ACTIONS(6129), + [anon_sym_STAR_EQ] = ACTIONS(6129), + [anon_sym_SLASH_EQ] = ACTIONS(6129), + [anon_sym_PERCENT_EQ] = ACTIONS(6129), + [anon_sym_PLUS_EQ] = ACTIONS(6129), + [anon_sym_DASH_EQ] = ACTIONS(6129), + [anon_sym_LT_LT_EQ] = ACTIONS(6129), + [anon_sym_GT_GT_EQ] = ACTIONS(6129), + [anon_sym_AMP_EQ] = ACTIONS(6129), + [anon_sym_CARET_EQ] = ACTIONS(6129), + [anon_sym_PIPE_EQ] = ACTIONS(6129), + [anon_sym_and_eq] = ACTIONS(6127), + [anon_sym_or_eq] = ACTIONS(6127), + [anon_sym_xor_eq] = ACTIONS(6127), + [anon_sym_LT_EQ_GT] = ACTIONS(6129), + [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(6129), + [anon_sym_PLUS_PLUS] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6127), + [anon_sym_DOT_STAR] = ACTIONS(6129), + [anon_sym_DASH_GT] = ACTIONS(6129), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6127), + [anon_sym_decltype] = ACTIONS(6127), }, - [STATE(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), + [STATE(2233)] = { + [sym_attribute_specifier] = STATE(2329), + [sym_identifier] = ACTIONS(6131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_RPAREN] = ACTIONS(6133), + [aux_sym_preproc_if_token2] = ACTIONS(6133), + [aux_sym_preproc_else_token1] = ACTIONS(6133), + [aux_sym_preproc_elif_token1] = ACTIONS(6131), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6133), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6133), + [anon_sym_LPAREN2] = ACTIONS(6133), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6131), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_PERCENT] = ACTIONS(6131), + [anon_sym_PIPE_PIPE] = ACTIONS(6133), + [anon_sym_AMP_AMP] = ACTIONS(6133), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6131), + [anon_sym_AMP] = ACTIONS(6131), + [anon_sym_EQ_EQ] = ACTIONS(6133), + [anon_sym_BANG_EQ] = ACTIONS(6133), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_GT_EQ] = ACTIONS(6133), + [anon_sym_LT_EQ] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_LT_LT] = ACTIONS(6131), + [anon_sym_GT_GT] = ACTIONS(6131), + [anon_sym_SEMI] = ACTIONS(6133), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(6133), + [anon_sym_RBRACE] = ACTIONS(6133), + [anon_sym_LBRACK] = ACTIONS(6133), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(6131), + [anon_sym_QMARK] = ACTIONS(6133), + [anon_sym_STAR_EQ] = ACTIONS(6133), + [anon_sym_SLASH_EQ] = ACTIONS(6133), + [anon_sym_PERCENT_EQ] = ACTIONS(6133), + [anon_sym_PLUS_EQ] = ACTIONS(6133), + [anon_sym_DASH_EQ] = ACTIONS(6133), + [anon_sym_LT_LT_EQ] = ACTIONS(6133), + [anon_sym_GT_GT_EQ] = ACTIONS(6133), + [anon_sym_AMP_EQ] = ACTIONS(6133), + [anon_sym_CARET_EQ] = ACTIONS(6133), + [anon_sym_PIPE_EQ] = ACTIONS(6133), + [anon_sym_and_eq] = ACTIONS(6131), + [anon_sym_or_eq] = ACTIONS(6131), + [anon_sym_xor_eq] = ACTIONS(6131), + [anon_sym_LT_EQ_GT] = ACTIONS(6133), + [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(6133), + [anon_sym_PLUS_PLUS] = ACTIONS(6133), + [anon_sym_DOT] = ACTIONS(6131), + [anon_sym_DOT_STAR] = ACTIONS(6133), + [anon_sym_DASH_GT] = ACTIONS(6133), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6131), + [anon_sym_decltype] = ACTIONS(6131), + }, + [STATE(2234)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON] = ACTIONS(4234), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(2235)] = { + [sym_type_qualifier] = STATE(1993), + [sym_alignas_qualifier] = STATE(2343), + [aux_sym__type_definition_type_repeat1] = STATE(1993), + [aux_sym_sized_type_specifier_repeat1] = STATE(2365), + [sym_identifier] = ACTIONS(6135), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(5102), + [anon_sym_DASH] = ACTIONS(5104), + [anon_sym_PLUS] = ACTIONS(5104), + [anon_sym_STAR] = ACTIONS(5102), + [anon_sym_SLASH] = ACTIONS(5104), + [anon_sym_PERCENT] = ACTIONS(5102), + [anon_sym_PIPE_PIPE] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5102), + [anon_sym_PIPE] = ACTIONS(5104), + [anon_sym_CARET] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_EQ_EQ] = ACTIONS(5102), + [anon_sym_BANG_EQ] = ACTIONS(5102), + [anon_sym_GT] = ACTIONS(5104), + [anon_sym_GT_EQ] = ACTIONS(5104), + [anon_sym_LT_EQ] = ACTIONS(5104), + [anon_sym_LT] = ACTIONS(5104), + [anon_sym_LT_LT] = ACTIONS(5102), + [anon_sym_GT_GT] = ACTIONS(5104), + [anon_sym___extension__] = ACTIONS(6119), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_signed] = ACTIONS(6137), + [anon_sym_unsigned] = ACTIONS(6137), + [anon_sym_long] = ACTIONS(6137), + [anon_sym_short] = ACTIONS(6137), + [anon_sym_LBRACK] = ACTIONS(5102), + [anon_sym_const] = ACTIONS(6119), + [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(6123), + [anon_sym__Alignas] = ACTIONS(6123), + [sym_primitive_type] = ACTIONS(6139), + [anon_sym_QMARK] = ACTIONS(5102), + [anon_sym_LT_EQ_GT] = ACTIONS(5102), + [anon_sym_or] = ACTIONS(5104), + [anon_sym_and] = ACTIONS(5104), + [anon_sym_bitor] = ACTIONS(5104), + [anon_sym_xor] = ACTIONS(5104), + [anon_sym_bitand] = ACTIONS(5104), + [anon_sym_not_eq] = ACTIONS(5104), + [anon_sym_DASH_DASH] = ACTIONS(5102), + [anon_sym_PLUS_PLUS] = ACTIONS(5102), + [anon_sym_DOT] = ACTIONS(5104), + [anon_sym_DOT_STAR] = ACTIONS(5102), + [anon_sym_DASH_GT] = ACTIONS(5102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + [anon_sym_GT2] = ACTIONS(5102), + }, + [STATE(2236)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON] = ACTIONS(4240), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(2237)] = { + [sym_identifier] = ACTIONS(5537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5539), + [anon_sym_COMMA] = ACTIONS(5539), + [anon_sym_RPAREN] = ACTIONS(5539), + [aux_sym_preproc_if_token2] = ACTIONS(5539), + [aux_sym_preproc_else_token1] = ACTIONS(5539), + [aux_sym_preproc_elif_token1] = ACTIONS(5537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5539), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5539), + [anon_sym_LPAREN2] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_STAR] = ACTIONS(5537), + [anon_sym_SLASH] = ACTIONS(5537), + [anon_sym_PERCENT] = ACTIONS(5537), + [anon_sym_PIPE_PIPE] = ACTIONS(5539), + [anon_sym_AMP_AMP] = ACTIONS(5539), + [anon_sym_PIPE] = ACTIONS(5537), + [anon_sym_CARET] = ACTIONS(5537), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_EQ_EQ] = ACTIONS(5539), + [anon_sym_BANG_EQ] = ACTIONS(5539), + [anon_sym_GT] = ACTIONS(5537), + [anon_sym_GT_EQ] = ACTIONS(5539), + [anon_sym_LT_EQ] = ACTIONS(5537), + [anon_sym_LT] = ACTIONS(5537), + [anon_sym_LT_LT] = ACTIONS(5537), + [anon_sym_GT_GT] = ACTIONS(5537), + [anon_sym_SEMI] = ACTIONS(5539), + [anon_sym___attribute__] = ACTIONS(5537), + [anon_sym___attribute] = ACTIONS(5537), + [anon_sym_COLON] = ACTIONS(5537), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym_LBRACE] = ACTIONS(5539), + [anon_sym_RBRACE] = ACTIONS(5539), + [anon_sym_LBRACK] = ACTIONS(5539), + [anon_sym_RBRACK] = ACTIONS(5539), + [anon_sym_EQ] = ACTIONS(5537), + [anon_sym_QMARK] = ACTIONS(5539), + [anon_sym_STAR_EQ] = ACTIONS(5539), + [anon_sym_SLASH_EQ] = ACTIONS(5539), + [anon_sym_PERCENT_EQ] = ACTIONS(5539), + [anon_sym_PLUS_EQ] = ACTIONS(5539), + [anon_sym_DASH_EQ] = ACTIONS(5539), + [anon_sym_LT_LT_EQ] = ACTIONS(5539), + [anon_sym_GT_GT_EQ] = ACTIONS(5539), + [anon_sym_AMP_EQ] = ACTIONS(5539), + [anon_sym_CARET_EQ] = ACTIONS(5539), + [anon_sym_PIPE_EQ] = ACTIONS(5539), + [anon_sym_and_eq] = ACTIONS(5537), + [anon_sym_or_eq] = ACTIONS(5537), + [anon_sym_xor_eq] = ACTIONS(5537), + [anon_sym_LT_EQ_GT] = ACTIONS(5539), + [anon_sym_or] = ACTIONS(5537), + [anon_sym_and] = ACTIONS(5537), + [anon_sym_bitor] = ACTIONS(5537), + [anon_sym_xor] = ACTIONS(5537), + [anon_sym_bitand] = ACTIONS(5537), + [anon_sym_not_eq] = ACTIONS(5537), + [anon_sym_DASH_DASH] = ACTIONS(5539), + [anon_sym_PLUS_PLUS] = ACTIONS(5539), + [anon_sym_DOT] = ACTIONS(5537), + [anon_sym_DOT_STAR] = ACTIONS(5539), + [anon_sym_DASH_GT] = ACTIONS(5539), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5980), - [anon_sym_decltype] = ACTIONS(5980), + [sym_auto] = ACTIONS(5537), + [anon_sym_decltype] = ACTIONS(5537), }, - [STATE(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), + [STATE(2238)] = { + [sym_string_literal] = STATE(2238), + [sym_raw_string_literal] = STATE(2238), + [aux_sym_concatenated_string_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(6141), + [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(6144), + [anon_sym_u_DQUOTE] = ACTIONS(6144), + [anon_sym_U_DQUOTE] = ACTIONS(6144), + [anon_sym_u8_DQUOTE] = ACTIONS(6144), + [anon_sym_DQUOTE] = ACTIONS(6144), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6147), + [anon_sym_LR_DQUOTE] = ACTIONS(6147), + [anon_sym_uR_DQUOTE] = ACTIONS(6147), + [anon_sym_UR_DQUOTE] = ACTIONS(6147), + [anon_sym_u8R_DQUOTE] = ACTIONS(6147), + [anon_sym_DASH_GT_STAR] = ACTIONS(5401), + [sym_literal_suffix] = ACTIONS(5403), }, - [STATE(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), + [STATE(2239)] = { + [sym_attribute_specifier] = STATE(2353), + [sym_identifier] = ACTIONS(6150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6152), + [anon_sym_COMMA] = ACTIONS(6152), + [anon_sym_RPAREN] = ACTIONS(6152), + [aux_sym_preproc_if_token2] = ACTIONS(6152), + [aux_sym_preproc_else_token1] = ACTIONS(6152), + [aux_sym_preproc_elif_token1] = ACTIONS(6150), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6152), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6152), + [anon_sym_LPAREN2] = ACTIONS(6152), + [anon_sym_DASH] = ACTIONS(6150), + [anon_sym_PLUS] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(6150), + [anon_sym_SLASH] = ACTIONS(6150), + [anon_sym_PERCENT] = ACTIONS(6150), + [anon_sym_PIPE_PIPE] = ACTIONS(6152), + [anon_sym_AMP_AMP] = ACTIONS(6152), + [anon_sym_PIPE] = ACTIONS(6150), + [anon_sym_CARET] = ACTIONS(6150), + [anon_sym_AMP] = ACTIONS(6150), + [anon_sym_EQ_EQ] = ACTIONS(6152), + [anon_sym_BANG_EQ] = ACTIONS(6152), + [anon_sym_GT] = ACTIONS(6150), + [anon_sym_GT_EQ] = ACTIONS(6152), + [anon_sym_LT_EQ] = ACTIONS(6150), + [anon_sym_LT] = ACTIONS(6150), + [anon_sym_LT_LT] = ACTIONS(6150), + [anon_sym_GT_GT] = ACTIONS(6150), + [anon_sym_SEMI] = ACTIONS(6152), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6152), + [anon_sym_LBRACE] = ACTIONS(6152), + [anon_sym_RBRACE] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(6152), + [anon_sym_RBRACK] = ACTIONS(6152), + [anon_sym_EQ] = ACTIONS(6150), + [anon_sym_QMARK] = ACTIONS(6152), + [anon_sym_STAR_EQ] = ACTIONS(6152), + [anon_sym_SLASH_EQ] = ACTIONS(6152), + [anon_sym_PERCENT_EQ] = ACTIONS(6152), + [anon_sym_PLUS_EQ] = ACTIONS(6152), + [anon_sym_DASH_EQ] = ACTIONS(6152), + [anon_sym_LT_LT_EQ] = ACTIONS(6152), + [anon_sym_GT_GT_EQ] = ACTIONS(6152), + [anon_sym_AMP_EQ] = ACTIONS(6152), + [anon_sym_CARET_EQ] = ACTIONS(6152), + [anon_sym_PIPE_EQ] = ACTIONS(6152), + [anon_sym_and_eq] = ACTIONS(6150), + [anon_sym_or_eq] = ACTIONS(6150), + [anon_sym_xor_eq] = ACTIONS(6150), + [anon_sym_LT_EQ_GT] = ACTIONS(6152), + [anon_sym_or] = ACTIONS(6150), + [anon_sym_and] = ACTIONS(6150), + [anon_sym_bitor] = ACTIONS(6150), + [anon_sym_xor] = ACTIONS(6150), + [anon_sym_bitand] = ACTIONS(6150), + [anon_sym_not_eq] = ACTIONS(6150), + [anon_sym_DASH_DASH] = ACTIONS(6152), + [anon_sym_PLUS_PLUS] = ACTIONS(6152), + [anon_sym_DOT] = ACTIONS(6150), + [anon_sym_DOT_STAR] = ACTIONS(6152), + [anon_sym_DASH_GT] = ACTIONS(6152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6150), + [anon_sym_decltype] = ACTIONS(6150), }, - [STATE(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), + [STATE(2240)] = { + [sym_string_literal] = STATE(2413), + [sym_template_argument_list] = STATE(3644), + [sym_raw_string_literal] = STATE(2413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(6154), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(6157), + [anon_sym_or_eq] = ACTIONS(6157), + [anon_sym_xor_eq] = ACTIONS(6157), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(4499), + [anon_sym_u_DQUOTE] = ACTIONS(4499), + [anon_sym_U_DQUOTE] = ACTIONS(4499), + [anon_sym_u8_DQUOTE] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4499), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4501), + [anon_sym_LR_DQUOTE] = ACTIONS(4501), + [anon_sym_uR_DQUOTE] = ACTIONS(4501), + [anon_sym_UR_DQUOTE] = ACTIONS(4501), + [anon_sym_u8R_DQUOTE] = ACTIONS(4501), + [anon_sym_DASH_GT_STAR] = ACTIONS(4161), + }, + [STATE(2241)] = { + [sym_attribute_specifier] = STATE(2264), + [sym_identifier] = ACTIONS(6159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_RPAREN] = ACTIONS(6161), + [aux_sym_preproc_if_token2] = ACTIONS(6161), + [aux_sym_preproc_else_token1] = ACTIONS(6161), + [aux_sym_preproc_elif_token1] = ACTIONS(6159), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6161), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6161), + [anon_sym_LPAREN2] = ACTIONS(6161), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6159), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_PERCENT] = ACTIONS(6159), + [anon_sym_PIPE_PIPE] = ACTIONS(6161), + [anon_sym_AMP_AMP] = ACTIONS(6161), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6159), + [anon_sym_AMP] = ACTIONS(6159), + [anon_sym_EQ_EQ] = ACTIONS(6161), + [anon_sym_BANG_EQ] = ACTIONS(6161), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_GT_EQ] = ACTIONS(6161), + [anon_sym_LT_EQ] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_LT_LT] = ACTIONS(6159), + [anon_sym_GT_GT] = ACTIONS(6159), + [anon_sym_SEMI] = ACTIONS(6161), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6161), + [anon_sym_LBRACE] = ACTIONS(6161), + [anon_sym_RBRACE] = ACTIONS(6161), + [anon_sym_LBRACK] = ACTIONS(6161), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_EQ] = ACTIONS(6159), + [anon_sym_QMARK] = ACTIONS(6161), + [anon_sym_STAR_EQ] = ACTIONS(6161), + [anon_sym_SLASH_EQ] = ACTIONS(6161), + [anon_sym_PERCENT_EQ] = ACTIONS(6161), + [anon_sym_PLUS_EQ] = ACTIONS(6161), + [anon_sym_DASH_EQ] = ACTIONS(6161), + [anon_sym_LT_LT_EQ] = ACTIONS(6161), + [anon_sym_GT_GT_EQ] = ACTIONS(6161), + [anon_sym_AMP_EQ] = ACTIONS(6161), + [anon_sym_CARET_EQ] = ACTIONS(6161), + [anon_sym_PIPE_EQ] = ACTIONS(6161), + [anon_sym_and_eq] = ACTIONS(6159), + [anon_sym_or_eq] = ACTIONS(6159), + [anon_sym_xor_eq] = ACTIONS(6159), + [anon_sym_LT_EQ_GT] = ACTIONS(6161), + [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(6161), + [anon_sym_PLUS_PLUS] = ACTIONS(6161), + [anon_sym_DOT] = ACTIONS(6159), + [anon_sym_DOT_STAR] = ACTIONS(6161), + [anon_sym_DASH_GT] = ACTIONS(6161), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5935), - [anon_sym_decltype] = ACTIONS(5935), + [sym_auto] = ACTIONS(6159), + [anon_sym_decltype] = ACTIONS(6159), }, - [STATE(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), + [STATE(2242)] = { + [sym_attribute_declaration] = STATE(2309), + [sym_parameter_list] = STATE(1994), + [aux_sym_attributed_declarator_repeat1] = STATE(2309), + [sym_identifier] = ACTIONS(6163), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6165), + [anon_sym_COMMA] = ACTIONS(6165), + [anon_sym_RPAREN] = ACTIONS(6165), + [aux_sym_preproc_if_token2] = ACTIONS(6165), + [aux_sym_preproc_else_token1] = ACTIONS(6165), + [aux_sym_preproc_elif_token1] = ACTIONS(6163), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6165), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6165), + [anon_sym_LPAREN2] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6163), + [anon_sym_PLUS] = ACTIONS(6163), + [anon_sym_STAR] = ACTIONS(6163), + [anon_sym_SLASH] = ACTIONS(6163), + [anon_sym_PERCENT] = ACTIONS(6163), + [anon_sym_PIPE_PIPE] = ACTIONS(6165), + [anon_sym_AMP_AMP] = ACTIONS(6165), + [anon_sym_PIPE] = ACTIONS(6163), + [anon_sym_CARET] = ACTIONS(6163), + [anon_sym_AMP] = ACTIONS(6163), + [anon_sym_EQ_EQ] = ACTIONS(6165), + [anon_sym_BANG_EQ] = ACTIONS(6165), + [anon_sym_GT] = ACTIONS(6163), + [anon_sym_GT_EQ] = ACTIONS(6165), + [anon_sym_LT_EQ] = ACTIONS(6163), + [anon_sym_LT] = ACTIONS(6163), + [anon_sym_LT_LT] = ACTIONS(6163), + [anon_sym_GT_GT] = ACTIONS(6163), + [anon_sym_SEMI] = ACTIONS(6165), + [anon_sym___attribute__] = ACTIONS(6163), + [anon_sym___attribute] = ACTIONS(6163), + [anon_sym_COLON] = ACTIONS(6165), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACE] = ACTIONS(6165), + [anon_sym_LBRACK] = ACTIONS(6171), + [anon_sym_RBRACK] = ACTIONS(6165), + [anon_sym_EQ] = ACTIONS(6163), + [anon_sym_QMARK] = ACTIONS(6165), + [anon_sym_STAR_EQ] = ACTIONS(6165), + [anon_sym_SLASH_EQ] = ACTIONS(6165), + [anon_sym_PERCENT_EQ] = ACTIONS(6165), + [anon_sym_PLUS_EQ] = ACTIONS(6165), + [anon_sym_DASH_EQ] = ACTIONS(6165), + [anon_sym_LT_LT_EQ] = ACTIONS(6165), + [anon_sym_GT_GT_EQ] = ACTIONS(6165), + [anon_sym_AMP_EQ] = ACTIONS(6165), + [anon_sym_CARET_EQ] = ACTIONS(6165), + [anon_sym_PIPE_EQ] = ACTIONS(6165), + [anon_sym_and_eq] = ACTIONS(6163), + [anon_sym_or_eq] = ACTIONS(6163), + [anon_sym_xor_eq] = ACTIONS(6163), + [anon_sym_LT_EQ_GT] = ACTIONS(6165), + [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(6165), + [anon_sym_PLUS_PLUS] = ACTIONS(6165), + [anon_sym_DOT] = ACTIONS(6163), + [anon_sym_DOT_STAR] = ACTIONS(6165), + [anon_sym_DASH_GT] = ACTIONS(6165), + [sym_comment] = ACTIONS(3), }, - [STATE(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), + [STATE(2243)] = { + [sym_string_literal] = STATE(2247), + [sym_template_argument_list] = STATE(3168), + [sym_raw_string_literal] = STATE(2247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_RPAREN] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5070), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4168), + [anon_sym_L_DQUOTE] = ACTIONS(5056), + [anon_sym_u_DQUOTE] = ACTIONS(5056), + [anon_sym_U_DQUOTE] = ACTIONS(5056), + [anon_sym_u8_DQUOTE] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5058), + [anon_sym_LR_DQUOTE] = ACTIONS(5058), + [anon_sym_uR_DQUOTE] = ACTIONS(5058), + [anon_sym_UR_DQUOTE] = ACTIONS(5058), + [anon_sym_u8R_DQUOTE] = ACTIONS(5058), + [anon_sym_DASH_GT_STAR] = ACTIONS(4161), }, - [STATE(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(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), + [STATE(2244)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON] = ACTIONS(4238), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(2245)] = { + [sym_string_literal] = STATE(2238), + [sym_raw_string_literal] = STATE(2238), + [aux_sym_concatenated_string_repeat1] = STATE(2238), + [sym_identifier] = ACTIONS(6173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_RPAREN] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5419), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym_LBRACK] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5419), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5421), + [anon_sym_or_eq] = ACTIONS(5421), + [anon_sym_xor_eq] = ACTIONS(5421), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5421), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5421), + [anon_sym_not_eq] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5421), + [anon_sym_L_DQUOTE] = ACTIONS(5056), + [anon_sym_u_DQUOTE] = ACTIONS(5056), + [anon_sym_U_DQUOTE] = ACTIONS(5056), + [anon_sym_u8_DQUOTE] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5058), + [anon_sym_LR_DQUOTE] = ACTIONS(5058), + [anon_sym_uR_DQUOTE] = ACTIONS(5058), + [anon_sym_UR_DQUOTE] = ACTIONS(5058), + [anon_sym_u8R_DQUOTE] = ACTIONS(5058), + [anon_sym_DASH_GT_STAR] = ACTIONS(5419), + [sym_literal_suffix] = ACTIONS(5421), + }, + [STATE(2246)] = { + [sym_attribute_declaration] = STATE(2309), + [sym_parameter_list] = STATE(1994), + [aux_sym_attributed_declarator_repeat1] = STATE(2309), + [sym_identifier] = ACTIONS(6175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6177), + [anon_sym_COMMA] = ACTIONS(6177), + [anon_sym_RPAREN] = ACTIONS(6177), + [aux_sym_preproc_if_token2] = ACTIONS(6177), + [aux_sym_preproc_else_token1] = ACTIONS(6177), + [aux_sym_preproc_elif_token1] = ACTIONS(6175), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6177), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6177), + [anon_sym_LPAREN2] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6175), + [anon_sym_PLUS] = ACTIONS(6175), + [anon_sym_STAR] = ACTIONS(6175), + [anon_sym_SLASH] = ACTIONS(6175), + [anon_sym_PERCENT] = ACTIONS(6175), + [anon_sym_PIPE_PIPE] = ACTIONS(6177), + [anon_sym_AMP_AMP] = ACTIONS(6177), + [anon_sym_PIPE] = ACTIONS(6175), + [anon_sym_CARET] = ACTIONS(6175), + [anon_sym_AMP] = ACTIONS(6175), + [anon_sym_EQ_EQ] = ACTIONS(6177), + [anon_sym_BANG_EQ] = ACTIONS(6177), + [anon_sym_GT] = ACTIONS(6175), + [anon_sym_GT_EQ] = ACTIONS(6177), + [anon_sym_LT_EQ] = ACTIONS(6175), + [anon_sym_LT] = ACTIONS(6175), + [anon_sym_LT_LT] = ACTIONS(6175), + [anon_sym_GT_GT] = ACTIONS(6175), + [anon_sym_SEMI] = ACTIONS(6177), + [anon_sym___attribute__] = ACTIONS(6175), + [anon_sym___attribute] = ACTIONS(6175), + [anon_sym_COLON] = ACTIONS(6177), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACE] = ACTIONS(6177), + [anon_sym_LBRACK] = ACTIONS(6171), + [anon_sym_RBRACK] = ACTIONS(6177), + [anon_sym_EQ] = ACTIONS(6175), + [anon_sym_QMARK] = ACTIONS(6177), + [anon_sym_STAR_EQ] = ACTIONS(6177), + [anon_sym_SLASH_EQ] = ACTIONS(6177), + [anon_sym_PERCENT_EQ] = ACTIONS(6177), + [anon_sym_PLUS_EQ] = ACTIONS(6177), + [anon_sym_DASH_EQ] = ACTIONS(6177), + [anon_sym_LT_LT_EQ] = ACTIONS(6177), + [anon_sym_GT_GT_EQ] = ACTIONS(6177), + [anon_sym_AMP_EQ] = ACTIONS(6177), + [anon_sym_CARET_EQ] = ACTIONS(6177), + [anon_sym_PIPE_EQ] = ACTIONS(6177), + [anon_sym_and_eq] = ACTIONS(6175), + [anon_sym_or_eq] = ACTIONS(6175), + [anon_sym_xor_eq] = ACTIONS(6175), + [anon_sym_LT_EQ_GT] = ACTIONS(6177), + [anon_sym_or] = ACTIONS(6175), + [anon_sym_and] = ACTIONS(6175), + [anon_sym_bitor] = ACTIONS(6175), + [anon_sym_xor] = ACTIONS(6175), + [anon_sym_bitand] = ACTIONS(6175), + [anon_sym_not_eq] = ACTIONS(6175), + [anon_sym_DASH_DASH] = ACTIONS(6177), + [anon_sym_PLUS_PLUS] = ACTIONS(6177), + [anon_sym_DOT] = ACTIONS(6175), + [anon_sym_DOT_STAR] = ACTIONS(6177), + [anon_sym_DASH_GT] = ACTIONS(6177), [sym_comment] = ACTIONS(3), }, - [STATE(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), + [STATE(2247)] = { + [sym_string_literal] = STATE(2245), + [sym_raw_string_literal] = STATE(2245), + [aux_sym_concatenated_string_repeat1] = STATE(2245), + [sym_identifier] = ACTIONS(6179), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5429), + [anon_sym_COMMA] = ACTIONS(5429), + [anon_sym_RPAREN] = ACTIONS(5429), + [anon_sym_LPAREN2] = ACTIONS(5429), + [anon_sym_DASH] = ACTIONS(5431), + [anon_sym_PLUS] = ACTIONS(5431), + [anon_sym_STAR] = ACTIONS(5431), + [anon_sym_SLASH] = ACTIONS(5431), + [anon_sym_PERCENT] = ACTIONS(5431), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5431), + [anon_sym_CARET] = ACTIONS(5431), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym_EQ_EQ] = ACTIONS(5429), + [anon_sym_BANG_EQ] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5431), + [anon_sym_GT_EQ] = ACTIONS(5429), + [anon_sym_LT_EQ] = ACTIONS(5431), + [anon_sym_LT] = ACTIONS(5431), + [anon_sym_LT_LT] = ACTIONS(5431), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5431), + [anon_sym_QMARK] = ACTIONS(5429), + [anon_sym_STAR_EQ] = ACTIONS(5429), + [anon_sym_SLASH_EQ] = ACTIONS(5429), + [anon_sym_PERCENT_EQ] = ACTIONS(5429), + [anon_sym_PLUS_EQ] = ACTIONS(5429), + [anon_sym_DASH_EQ] = ACTIONS(5429), + [anon_sym_LT_LT_EQ] = ACTIONS(5429), + [anon_sym_GT_GT_EQ] = ACTIONS(5429), + [anon_sym_AMP_EQ] = ACTIONS(5429), + [anon_sym_CARET_EQ] = ACTIONS(5429), + [anon_sym_PIPE_EQ] = ACTIONS(5429), + [anon_sym_and_eq] = ACTIONS(5431), + [anon_sym_or_eq] = ACTIONS(5431), + [anon_sym_xor_eq] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5429), + [anon_sym_or] = ACTIONS(5431), + [anon_sym_and] = ACTIONS(5431), + [anon_sym_bitor] = ACTIONS(5431), + [anon_sym_xor] = ACTIONS(5431), + [anon_sym_bitand] = ACTIONS(5431), + [anon_sym_not_eq] = ACTIONS(5431), + [anon_sym_DASH_DASH] = ACTIONS(5429), + [anon_sym_PLUS_PLUS] = ACTIONS(5429), + [anon_sym_DOT] = ACTIONS(5431), + [anon_sym_DOT_STAR] = ACTIONS(5429), + [anon_sym_DASH_GT] = ACTIONS(5431), + [anon_sym_L_DQUOTE] = ACTIONS(5056), + [anon_sym_u_DQUOTE] = ACTIONS(5056), + [anon_sym_U_DQUOTE] = ACTIONS(5056), + [anon_sym_u8_DQUOTE] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5058), + [anon_sym_LR_DQUOTE] = ACTIONS(5058), + [anon_sym_uR_DQUOTE] = ACTIONS(5058), + [anon_sym_UR_DQUOTE] = ACTIONS(5058), + [anon_sym_u8R_DQUOTE] = ACTIONS(5058), + [anon_sym_DASH_GT_STAR] = ACTIONS(5429), + [sym_literal_suffix] = ACTIONS(5431), }, - [STATE(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), + [STATE(2248)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON] = ACTIONS(4176), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(2249)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_SEMI] = ACTIONS(4161), + [anon_sym_COLON] = ACTIONS(4242), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4184), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4186), + [anon_sym_SLASH_EQ] = ACTIONS(4186), + [anon_sym_PERCENT_EQ] = ACTIONS(4186), + [anon_sym_PLUS_EQ] = ACTIONS(4186), + [anon_sym_DASH_EQ] = ACTIONS(4186), + [anon_sym_LT_LT_EQ] = ACTIONS(4186), + [anon_sym_GT_GT_EQ] = ACTIONS(4186), + [anon_sym_AMP_EQ] = ACTIONS(4186), + [anon_sym_CARET_EQ] = ACTIONS(4186), + [anon_sym_PIPE_EQ] = ACTIONS(4186), + [anon_sym_and_eq] = ACTIONS(4186), + [anon_sym_or_eq] = ACTIONS(4186), + [anon_sym_xor_eq] = ACTIONS(4186), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(2250)] = { + [sym_attribute_specifier] = STATE(2304), + [sym_identifier] = ACTIONS(6181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [aux_sym_preproc_if_token2] = ACTIONS(6183), + [aux_sym_preproc_else_token1] = ACTIONS(6183), + [aux_sym_preproc_elif_token1] = ACTIONS(6181), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6183), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6183), + [anon_sym_LPAREN2] = ACTIONS(6183), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6181), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_PERCENT] = ACTIONS(6181), + [anon_sym_PIPE_PIPE] = ACTIONS(6183), + [anon_sym_AMP_AMP] = ACTIONS(6183), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6181), + [anon_sym_AMP] = ACTIONS(6181), + [anon_sym_EQ_EQ] = ACTIONS(6183), + [anon_sym_BANG_EQ] = ACTIONS(6183), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_GT_EQ] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_LT_LT] = ACTIONS(6181), + [anon_sym_GT_GT] = ACTIONS(6181), + [anon_sym_SEMI] = ACTIONS(6183), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [anon_sym_RBRACE] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_EQ] = ACTIONS(6181), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_STAR_EQ] = ACTIONS(6183), + [anon_sym_SLASH_EQ] = ACTIONS(6183), + [anon_sym_PERCENT_EQ] = ACTIONS(6183), + [anon_sym_PLUS_EQ] = ACTIONS(6183), + [anon_sym_DASH_EQ] = ACTIONS(6183), + [anon_sym_LT_LT_EQ] = ACTIONS(6183), + [anon_sym_GT_GT_EQ] = ACTIONS(6183), + [anon_sym_AMP_EQ] = ACTIONS(6183), + [anon_sym_CARET_EQ] = ACTIONS(6183), + [anon_sym_PIPE_EQ] = ACTIONS(6183), + [anon_sym_and_eq] = ACTIONS(6181), + [anon_sym_or_eq] = ACTIONS(6181), + [anon_sym_xor_eq] = ACTIONS(6181), + [anon_sym_LT_EQ_GT] = ACTIONS(6183), + [anon_sym_or] = ACTIONS(6181), + [anon_sym_and] = ACTIONS(6181), + [anon_sym_bitor] = ACTIONS(6181), + [anon_sym_xor] = ACTIONS(6181), + [anon_sym_bitand] = ACTIONS(6181), + [anon_sym_not_eq] = ACTIONS(6181), + [anon_sym_DASH_DASH] = ACTIONS(6183), + [anon_sym_PLUS_PLUS] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(6181), + [anon_sym_DOT_STAR] = ACTIONS(6183), + [anon_sym_DASH_GT] = ACTIONS(6183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6181), + [anon_sym_decltype] = ACTIONS(6181), + }, + [STATE(2251)] = { + [sym_attribute_declaration] = STATE(2309), + [sym_parameter_list] = STATE(1994), + [aux_sym_attributed_declarator_repeat1] = STATE(2309), + [sym_identifier] = ACTIONS(6185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6187), + [anon_sym_COMMA] = ACTIONS(6187), + [anon_sym_RPAREN] = ACTIONS(6187), + [aux_sym_preproc_if_token2] = ACTIONS(6187), + [aux_sym_preproc_else_token1] = ACTIONS(6187), + [aux_sym_preproc_elif_token1] = ACTIONS(6185), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6187), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6187), + [anon_sym_LPAREN2] = ACTIONS(6167), + [anon_sym_DASH] = ACTIONS(6185), + [anon_sym_PLUS] = ACTIONS(6185), + [anon_sym_STAR] = ACTIONS(6185), + [anon_sym_SLASH] = ACTIONS(6185), + [anon_sym_PERCENT] = ACTIONS(6185), + [anon_sym_PIPE_PIPE] = ACTIONS(6187), + [anon_sym_AMP_AMP] = ACTIONS(6187), + [anon_sym_PIPE] = ACTIONS(6185), + [anon_sym_CARET] = ACTIONS(6185), + [anon_sym_AMP] = ACTIONS(6185), + [anon_sym_EQ_EQ] = ACTIONS(6187), + [anon_sym_BANG_EQ] = ACTIONS(6187), + [anon_sym_GT] = ACTIONS(6185), + [anon_sym_GT_EQ] = ACTIONS(6187), + [anon_sym_LT_EQ] = ACTIONS(6185), + [anon_sym_LT] = ACTIONS(6185), + [anon_sym_LT_LT] = ACTIONS(6185), + [anon_sym_GT_GT] = ACTIONS(6185), + [anon_sym_SEMI] = ACTIONS(6187), + [anon_sym___attribute__] = ACTIONS(6185), + [anon_sym___attribute] = ACTIONS(6185), + [anon_sym_COLON] = ACTIONS(6187), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACE] = ACTIONS(6187), + [anon_sym_LBRACK] = ACTIONS(6171), + [anon_sym_RBRACK] = ACTIONS(6187), + [anon_sym_EQ] = ACTIONS(6185), + [anon_sym_QMARK] = ACTIONS(6187), + [anon_sym_STAR_EQ] = ACTIONS(6187), + [anon_sym_SLASH_EQ] = ACTIONS(6187), + [anon_sym_PERCENT_EQ] = ACTIONS(6187), + [anon_sym_PLUS_EQ] = ACTIONS(6187), + [anon_sym_DASH_EQ] = ACTIONS(6187), + [anon_sym_LT_LT_EQ] = ACTIONS(6187), + [anon_sym_GT_GT_EQ] = ACTIONS(6187), + [anon_sym_AMP_EQ] = ACTIONS(6187), + [anon_sym_CARET_EQ] = ACTIONS(6187), + [anon_sym_PIPE_EQ] = ACTIONS(6187), + [anon_sym_and_eq] = ACTIONS(6185), + [anon_sym_or_eq] = ACTIONS(6185), + [anon_sym_xor_eq] = ACTIONS(6185), + [anon_sym_LT_EQ_GT] = ACTIONS(6187), + [anon_sym_or] = ACTIONS(6185), + [anon_sym_and] = ACTIONS(6185), + [anon_sym_bitor] = ACTIONS(6185), + [anon_sym_xor] = ACTIONS(6185), + [anon_sym_bitand] = ACTIONS(6185), + [anon_sym_not_eq] = ACTIONS(6185), + [anon_sym_DASH_DASH] = ACTIONS(6187), + [anon_sym_PLUS_PLUS] = ACTIONS(6187), + [anon_sym_DOT] = ACTIONS(6185), + [anon_sym_DOT_STAR] = ACTIONS(6187), + [anon_sym_DASH_GT] = ACTIONS(6187), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5893), - [anon_sym_decltype] = ACTIONS(5893), }, - [STATE(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), + [STATE(2252)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2252), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_LPAREN2] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5091), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5091), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5091), + [anon_sym_AMP] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5089), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_LT_LT] = ACTIONS(5091), + [anon_sym_GT_GT] = ACTIONS(5089), + [anon_sym___extension__] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5089), + [anon_sym___attribute] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_signed] = ACTIONS(6189), + [anon_sym_unsigned] = ACTIONS(6189), + [anon_sym_long] = ACTIONS(6189), + [anon_sym_short] = ACTIONS(6189), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_const] = ACTIONS(5089), + [anon_sym_constexpr] = ACTIONS(5089), + [anon_sym_volatile] = ACTIONS(5089), + [anon_sym_restrict] = ACTIONS(5089), + [anon_sym___restrict__] = ACTIONS(5089), + [anon_sym__Atomic] = ACTIONS(5089), + [anon_sym__Noreturn] = ACTIONS(5089), + [anon_sym_noreturn] = ACTIONS(5089), + [anon_sym__Nonnull] = ACTIONS(5089), + [anon_sym_mutable] = ACTIONS(5089), + [anon_sym_constinit] = ACTIONS(5089), + [anon_sym_consteval] = ACTIONS(5089), + [anon_sym_alignas] = ACTIONS(5089), + [anon_sym__Alignas] = ACTIONS(5089), + [sym_primitive_type] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5091), + [anon_sym_LT_EQ_GT] = ACTIONS(5091), + [anon_sym_or] = ACTIONS(5089), + [anon_sym_and] = ACTIONS(5089), + [anon_sym_bitor] = ACTIONS(5089), + [anon_sym_xor] = ACTIONS(5089), + [anon_sym_bitand] = ACTIONS(5089), + [anon_sym_not_eq] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_DOT_STAR] = ACTIONS(5091), + [anon_sym_DASH_GT] = ACTIONS(5091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5089), + [anon_sym_decltype] = ACTIONS(5089), + [anon_sym_final] = ACTIONS(5089), + [anon_sym_override] = ACTIONS(5089), + [anon_sym_GT2] = ACTIONS(5091), + [anon_sym_requires] = ACTIONS(5089), + }, + [STATE(2253)] = { + [sym_attribute_specifier] = STATE(2266), + [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(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6194), + [anon_sym_LBRACE] = ACTIONS(6194), + [anon_sym_RBRACE] = ACTIONS(6194), + [anon_sym_LBRACK] = ACTIONS(6194), + [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), + [sym_auto] = ACTIONS(6192), + [anon_sym_decltype] = ACTIONS(6192), + }, + [STATE(2254)] = { + [sym_attribute_declaration] = STATE(2309), + [sym_parameter_list] = STATE(1994), + [aux_sym_attributed_declarator_repeat1] = STATE(2309), + [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(6167), + [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(6169), + [anon_sym_RBRACE] = ACTIONS(6198), + [anon_sym_LBRACK] = ACTIONS(6171), + [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), - [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), }, - [STATE(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), + [STATE(2255)] = { + [sym_attribute_declaration] = STATE(2309), + [sym_parameter_list] = STATE(1994), + [aux_sym_attributed_declarator_repeat1] = STATE(2309), + [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(6167), + [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(6169), + [anon_sym_RBRACE] = ACTIONS(6202), + [anon_sym_LBRACK] = ACTIONS(6171), + [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), }, - [STATE(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), + [STATE(2256)] = { + [sym_attribute_specifier] = STATE(2286), + [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(6206), + [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(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_LBRACE] = ACTIONS(6206), + [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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6204), + [anon_sym_decltype] = ACTIONS(6204), }, - [STATE(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), + [STATE(2257)] = { + [sym_attribute_specifier] = STATE(2311), + [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(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_LBRACE] = ACTIONS(6210), + [anon_sym_RBRACE] = ACTIONS(6210), + [anon_sym_LBRACK] = ACTIONS(6210), + [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), - [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), + [sym_auto] = ACTIONS(6208), + [anon_sym_decltype] = ACTIONS(6208), }, - [STATE(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), + [STATE(2258)] = { + [sym_attribute_specifier] = STATE(2318), + [sym_identifier] = ACTIONS(6212), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6214), + [anon_sym_COMMA] = ACTIONS(6214), + [anon_sym_RPAREN] = ACTIONS(6214), + [aux_sym_preproc_if_token2] = ACTIONS(6214), + [aux_sym_preproc_else_token1] = ACTIONS(6214), + [aux_sym_preproc_elif_token1] = ACTIONS(6212), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6214), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6214), + [anon_sym_LPAREN2] = ACTIONS(6214), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6212), + [anon_sym_PIPE_PIPE] = ACTIONS(6214), + [anon_sym_AMP_AMP] = ACTIONS(6214), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6212), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6214), + [anon_sym_BANG_EQ] = ACTIONS(6214), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6214), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(6212), + [anon_sym_LT_LT] = ACTIONS(6212), + [anon_sym_GT_GT] = ACTIONS(6212), + [anon_sym_SEMI] = ACTIONS(6214), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6214), + [anon_sym_LBRACE] = ACTIONS(6214), + [anon_sym_RBRACE] = ACTIONS(6214), + [anon_sym_LBRACK] = ACTIONS(6214), + [anon_sym_RBRACK] = ACTIONS(6214), + [anon_sym_EQ] = ACTIONS(6212), + [anon_sym_QMARK] = ACTIONS(6214), + [anon_sym_STAR_EQ] = ACTIONS(6214), + [anon_sym_SLASH_EQ] = ACTIONS(6214), + [anon_sym_PERCENT_EQ] = ACTIONS(6214), + [anon_sym_PLUS_EQ] = ACTIONS(6214), + [anon_sym_DASH_EQ] = ACTIONS(6214), + [anon_sym_LT_LT_EQ] = ACTIONS(6214), + [anon_sym_GT_GT_EQ] = ACTIONS(6214), + [anon_sym_AMP_EQ] = ACTIONS(6214), + [anon_sym_CARET_EQ] = ACTIONS(6214), + [anon_sym_PIPE_EQ] = ACTIONS(6214), + [anon_sym_and_eq] = ACTIONS(6212), + [anon_sym_or_eq] = ACTIONS(6212), + [anon_sym_xor_eq] = ACTIONS(6212), + [anon_sym_LT_EQ_GT] = ACTIONS(6214), + [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(6214), + [anon_sym_PLUS_PLUS] = ACTIONS(6214), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6214), + [anon_sym_DASH_GT] = ACTIONS(6214), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6212), + [anon_sym_decltype] = ACTIONS(6212), }, - [STATE(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), + [STATE(2259)] = { + [sym_decltype_auto] = STATE(2271), + [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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5854), + [anon_sym_decltype] = ACTIONS(5856), }, - [STATE(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), + [STATE(2260)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [aux_sym_structured_binding_declarator_repeat1] = STATE(7626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6216), + [anon_sym_COMMA] = ACTIONS(6219), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(6222), + [anon_sym_EQ] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(6111), + [anon_sym_SLASH_EQ] = ACTIONS(6111), + [anon_sym_PERCENT_EQ] = ACTIONS(6111), + [anon_sym_PLUS_EQ] = ACTIONS(6111), + [anon_sym_DASH_EQ] = ACTIONS(6111), + [anon_sym_LT_LT_EQ] = ACTIONS(6111), + [anon_sym_GT_GT_EQ] = ACTIONS(6111), + [anon_sym_AMP_EQ] = ACTIONS(6111), + [anon_sym_CARET_EQ] = ACTIONS(6111), + [anon_sym_PIPE_EQ] = ACTIONS(6111), + [anon_sym_and_eq] = ACTIONS(6111), + [anon_sym_or_eq] = ACTIONS(6111), + [anon_sym_xor_eq] = ACTIONS(6111), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), }, - [STATE(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), + [STATE(2261)] = { + [sym_attribute_specifier] = STATE(2283), + [sym_identifier] = ACTIONS(6228), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [aux_sym_preproc_if_token2] = ACTIONS(6230), + [aux_sym_preproc_else_token1] = ACTIONS(6230), + [aux_sym_preproc_elif_token1] = ACTIONS(6228), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6230), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6228), + [anon_sym_PLUS] = ACTIONS(6228), + [anon_sym_STAR] = ACTIONS(6228), + [anon_sym_SLASH] = ACTIONS(6228), + [anon_sym_PERCENT] = ACTIONS(6228), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6228), + [anon_sym_CARET] = ACTIONS(6228), + [anon_sym_AMP] = ACTIONS(6228), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6228), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6228), + [anon_sym_LT] = ACTIONS(6228), + [anon_sym_LT_LT] = ACTIONS(6228), + [anon_sym_GT_GT] = ACTIONS(6228), + [anon_sym_SEMI] = ACTIONS(6230), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6230), + [anon_sym_LBRACE] = ACTIONS(6230), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_RBRACK] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(6228), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_STAR_EQ] = ACTIONS(6230), + [anon_sym_SLASH_EQ] = ACTIONS(6230), + [anon_sym_PERCENT_EQ] = ACTIONS(6230), + [anon_sym_PLUS_EQ] = ACTIONS(6230), + [anon_sym_DASH_EQ] = ACTIONS(6230), + [anon_sym_LT_LT_EQ] = ACTIONS(6230), + [anon_sym_GT_GT_EQ] = ACTIONS(6230), + [anon_sym_AMP_EQ] = ACTIONS(6230), + [anon_sym_CARET_EQ] = ACTIONS(6230), + [anon_sym_PIPE_EQ] = ACTIONS(6230), + [anon_sym_and_eq] = ACTIONS(6228), + [anon_sym_or_eq] = ACTIONS(6228), + [anon_sym_xor_eq] = ACTIONS(6228), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6228), + [anon_sym_and] = ACTIONS(6228), + [anon_sym_bitor] = ACTIONS(6228), + [anon_sym_xor] = ACTIONS(6228), + [anon_sym_bitand] = ACTIONS(6228), + [anon_sym_not_eq] = ACTIONS(6228), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6228), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6228), + [anon_sym_decltype] = ACTIONS(6228), }, - [STATE(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), + [STATE(2262)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2310), + [sym_identifier] = ACTIONS(5976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5974), + [anon_sym_COMMA] = ACTIONS(5974), + [aux_sym_preproc_if_token2] = ACTIONS(5974), + [aux_sym_preproc_else_token1] = ACTIONS(5974), + [aux_sym_preproc_elif_token1] = ACTIONS(5976), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5974), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5974), + [anon_sym_LPAREN2] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5976), + [anon_sym_PLUS] = ACTIONS(5976), + [anon_sym_STAR] = ACTIONS(5976), + [anon_sym_SLASH] = ACTIONS(5976), + [anon_sym_PERCENT] = ACTIONS(5976), + [anon_sym_PIPE_PIPE] = ACTIONS(5974), + [anon_sym_AMP_AMP] = ACTIONS(5974), + [anon_sym_PIPE] = ACTIONS(5976), + [anon_sym_CARET] = ACTIONS(5976), + [anon_sym_AMP] = ACTIONS(5976), + [anon_sym_EQ_EQ] = ACTIONS(5974), + [anon_sym_BANG_EQ] = ACTIONS(5974), + [anon_sym_GT] = ACTIONS(5976), + [anon_sym_GT_EQ] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5976), + [anon_sym_LT] = ACTIONS(5976), + [anon_sym_LT_LT] = ACTIONS(5976), + [anon_sym_GT_GT] = ACTIONS(5976), + [anon_sym___attribute__] = ACTIONS(5976), + [anon_sym___attribute] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_signed] = ACTIONS(6232), + [anon_sym_unsigned] = ACTIONS(6232), + [anon_sym_long] = ACTIONS(6232), + [anon_sym_short] = ACTIONS(6232), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_QMARK] = ACTIONS(5974), + [anon_sym_STAR_EQ] = ACTIONS(5974), + [anon_sym_SLASH_EQ] = ACTIONS(5974), + [anon_sym_PERCENT_EQ] = ACTIONS(5974), + [anon_sym_PLUS_EQ] = ACTIONS(5974), + [anon_sym_DASH_EQ] = ACTIONS(5974), + [anon_sym_LT_LT_EQ] = ACTIONS(5974), + [anon_sym_GT_GT_EQ] = ACTIONS(5974), + [anon_sym_AMP_EQ] = ACTIONS(5974), + [anon_sym_CARET_EQ] = ACTIONS(5974), + [anon_sym_PIPE_EQ] = ACTIONS(5974), + [anon_sym_and_eq] = ACTIONS(5976), + [anon_sym_or_eq] = ACTIONS(5976), + [anon_sym_xor_eq] = ACTIONS(5976), + [anon_sym_LT_EQ_GT] = ACTIONS(5974), + [anon_sym_or] = ACTIONS(5976), + [anon_sym_and] = ACTIONS(5976), + [anon_sym_bitor] = ACTIONS(5976), + [anon_sym_xor] = ACTIONS(5976), + [anon_sym_bitand] = ACTIONS(5976), + [anon_sym_not_eq] = ACTIONS(5976), + [anon_sym_DASH_DASH] = ACTIONS(5974), + [anon_sym_PLUS_PLUS] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5976), + [anon_sym_DOT_STAR] = ACTIONS(5974), + [anon_sym_DASH_GT] = ACTIONS(5974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5976), + [anon_sym_decltype] = ACTIONS(5976), + }, + [STATE(2263)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(5089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [aux_sym_preproc_if_token2] = ACTIONS(5091), + [aux_sym_preproc_else_token1] = ACTIONS(5091), + [aux_sym_preproc_elif_token1] = ACTIONS(5089), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5091), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5091), + [anon_sym_LPAREN2] = ACTIONS(5091), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_PERCENT] = ACTIONS(5089), + [anon_sym_PIPE_PIPE] = ACTIONS(5091), + [anon_sym_AMP_AMP] = ACTIONS(5091), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym_AMP] = ACTIONS(5089), + [anon_sym_EQ_EQ] = ACTIONS(5091), + [anon_sym_BANG_EQ] = ACTIONS(5091), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_GT_EQ] = ACTIONS(5091), + [anon_sym_LT_EQ] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_LT_LT] = ACTIONS(5089), + [anon_sym_GT_GT] = ACTIONS(5089), + [anon_sym___attribute__] = ACTIONS(5089), + [anon_sym___attribute] = ACTIONS(5089), + [anon_sym_LBRACE] = ACTIONS(5091), [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), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5089), + [anon_sym_QMARK] = ACTIONS(5091), + [anon_sym_STAR_EQ] = ACTIONS(5091), + [anon_sym_SLASH_EQ] = ACTIONS(5091), + [anon_sym_PERCENT_EQ] = ACTIONS(5091), + [anon_sym_PLUS_EQ] = ACTIONS(5091), + [anon_sym_DASH_EQ] = ACTIONS(5091), + [anon_sym_LT_LT_EQ] = ACTIONS(5091), + [anon_sym_GT_GT_EQ] = ACTIONS(5091), + [anon_sym_AMP_EQ] = ACTIONS(5091), + [anon_sym_CARET_EQ] = ACTIONS(5091), + [anon_sym_PIPE_EQ] = ACTIONS(5091), + [anon_sym_and_eq] = ACTIONS(5089), + [anon_sym_or_eq] = ACTIONS(5089), + [anon_sym_xor_eq] = ACTIONS(5089), + [anon_sym_LT_EQ_GT] = ACTIONS(5091), + [anon_sym_or] = ACTIONS(5089), + [anon_sym_and] = ACTIONS(5089), + [anon_sym_bitor] = ACTIONS(5089), + [anon_sym_xor] = ACTIONS(5089), + [anon_sym_bitand] = ACTIONS(5089), + [anon_sym_not_eq] = ACTIONS(5089), + [anon_sym_DASH_DASH] = ACTIONS(5091), + [anon_sym_PLUS_PLUS] = ACTIONS(5091), + [anon_sym_DOT] = ACTIONS(5089), + [anon_sym_DOT_STAR] = ACTIONS(5091), + [anon_sym_DASH_GT] = ACTIONS(5091), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5089), + [anon_sym_decltype] = ACTIONS(5089), }, - [STATE(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), + [STATE(2264)] = { + [sym_identifier] = ACTIONS(5799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5801), + [anon_sym_COMMA] = ACTIONS(5801), + [anon_sym_RPAREN] = ACTIONS(5801), + [aux_sym_preproc_if_token2] = ACTIONS(5801), + [aux_sym_preproc_else_token1] = ACTIONS(5801), + [aux_sym_preproc_elif_token1] = ACTIONS(5799), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5801), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5801), + [anon_sym_LPAREN2] = ACTIONS(5801), + [anon_sym_DASH] = ACTIONS(5799), + [anon_sym_PLUS] = ACTIONS(5799), + [anon_sym_STAR] = ACTIONS(5799), + [anon_sym_SLASH] = ACTIONS(5799), + [anon_sym_PERCENT] = ACTIONS(5799), + [anon_sym_PIPE_PIPE] = ACTIONS(5801), + [anon_sym_AMP_AMP] = ACTIONS(5801), + [anon_sym_PIPE] = ACTIONS(5799), + [anon_sym_CARET] = ACTIONS(5799), + [anon_sym_AMP] = ACTIONS(5799), + [anon_sym_EQ_EQ] = ACTIONS(5801), + [anon_sym_BANG_EQ] = ACTIONS(5801), + [anon_sym_GT] = ACTIONS(5799), + [anon_sym_GT_EQ] = ACTIONS(5801), + [anon_sym_LT_EQ] = ACTIONS(5799), + [anon_sym_LT] = ACTIONS(5799), + [anon_sym_LT_LT] = ACTIONS(5799), + [anon_sym_GT_GT] = ACTIONS(5799), + [anon_sym_SEMI] = ACTIONS(5801), + [anon_sym___attribute__] = ACTIONS(5799), + [anon_sym___attribute] = ACTIONS(5799), + [anon_sym_COLON] = ACTIONS(5801), + [anon_sym_LBRACE] = ACTIONS(5801), + [anon_sym_RBRACE] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5801), + [anon_sym_RBRACK] = ACTIONS(5801), + [anon_sym_EQ] = ACTIONS(5799), + [anon_sym_QMARK] = ACTIONS(5801), + [anon_sym_STAR_EQ] = ACTIONS(5801), + [anon_sym_SLASH_EQ] = ACTIONS(5801), + [anon_sym_PERCENT_EQ] = ACTIONS(5801), + [anon_sym_PLUS_EQ] = ACTIONS(5801), + [anon_sym_DASH_EQ] = ACTIONS(5801), + [anon_sym_LT_LT_EQ] = ACTIONS(5801), + [anon_sym_GT_GT_EQ] = ACTIONS(5801), + [anon_sym_AMP_EQ] = ACTIONS(5801), + [anon_sym_CARET_EQ] = ACTIONS(5801), + [anon_sym_PIPE_EQ] = ACTIONS(5801), + [anon_sym_and_eq] = ACTIONS(5799), + [anon_sym_or_eq] = ACTIONS(5799), + [anon_sym_xor_eq] = ACTIONS(5799), + [anon_sym_LT_EQ_GT] = ACTIONS(5801), + [anon_sym_or] = ACTIONS(5799), + [anon_sym_and] = ACTIONS(5799), + [anon_sym_bitor] = ACTIONS(5799), + [anon_sym_xor] = ACTIONS(5799), + [anon_sym_bitand] = ACTIONS(5799), + [anon_sym_not_eq] = ACTIONS(5799), + [anon_sym_DASH_DASH] = ACTIONS(5801), + [anon_sym_PLUS_PLUS] = ACTIONS(5801), + [anon_sym_DOT] = ACTIONS(5799), + [anon_sym_DOT_STAR] = ACTIONS(5801), + [anon_sym_DASH_GT] = ACTIONS(5801), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5799), + [anon_sym_decltype] = ACTIONS(5799), + }, + [STATE(2265)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5504), + [anon_sym_COMMA] = ACTIONS(5504), + [anon_sym_RPAREN] = ACTIONS(5504), + [anon_sym_LPAREN2] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_PLUS] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_SLASH] = ACTIONS(5502), + [anon_sym_PERCENT] = ACTIONS(5502), + [anon_sym_PIPE_PIPE] = ACTIONS(5504), + [anon_sym_AMP_AMP] = ACTIONS(5504), + [anon_sym_PIPE] = ACTIONS(5502), + [anon_sym_CARET] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5502), + [anon_sym_EQ_EQ] = ACTIONS(5504), + [anon_sym_BANG_EQ] = ACTIONS(5504), + [anon_sym_GT] = ACTIONS(5502), + [anon_sym_GT_EQ] = ACTIONS(5504), + [anon_sym_LT_EQ] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5502), + [anon_sym_LT_LT] = ACTIONS(5502), + [anon_sym_GT_GT] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(5504), + [anon_sym_COLON] = ACTIONS(5504), + [anon_sym_RBRACE] = ACTIONS(5504), + [anon_sym_LBRACK] = ACTIONS(5504), + [anon_sym_RBRACK] = ACTIONS(5504), + [anon_sym_EQ] = ACTIONS(5502), + [anon_sym_QMARK] = ACTIONS(5504), + [anon_sym_STAR_EQ] = ACTIONS(5504), + [anon_sym_SLASH_EQ] = ACTIONS(5504), + [anon_sym_PERCENT_EQ] = ACTIONS(5504), + [anon_sym_PLUS_EQ] = ACTIONS(5504), + [anon_sym_DASH_EQ] = ACTIONS(5504), + [anon_sym_LT_LT_EQ] = ACTIONS(5504), + [anon_sym_GT_GT_EQ] = ACTIONS(5504), + [anon_sym_AMP_EQ] = ACTIONS(5504), + [anon_sym_CARET_EQ] = ACTIONS(5504), + [anon_sym_PIPE_EQ] = ACTIONS(5504), + [anon_sym_and_eq] = ACTIONS(5502), + [anon_sym_or_eq] = ACTIONS(5502), + [anon_sym_xor_eq] = ACTIONS(5502), + [anon_sym_LT_EQ_GT] = ACTIONS(5504), + [anon_sym_or] = ACTIONS(5502), + [anon_sym_and] = ACTIONS(5502), + [anon_sym_bitor] = ACTIONS(5502), + [anon_sym_xor] = ACTIONS(5502), + [anon_sym_bitand] = ACTIONS(5502), + [anon_sym_not_eq] = ACTIONS(5502), + [anon_sym_DASH_DASH] = ACTIONS(5504), + [anon_sym_PLUS_PLUS] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5502), + [anon_sym_DOT_STAR] = ACTIONS(5504), + [anon_sym_DASH_GT] = ACTIONS(5504), + [anon_sym_L_DQUOTE] = ACTIONS(5504), + [anon_sym_u_DQUOTE] = ACTIONS(5504), + [anon_sym_U_DQUOTE] = ACTIONS(5504), + [anon_sym_u8_DQUOTE] = ACTIONS(5504), + [anon_sym_DQUOTE] = ACTIONS(5504), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5504), + [anon_sym_LR_DQUOTE] = ACTIONS(5504), + [anon_sym_uR_DQUOTE] = ACTIONS(5504), + [anon_sym_UR_DQUOTE] = ACTIONS(5504), + [anon_sym_u8R_DQUOTE] = ACTIONS(5504), + [sym_literal_suffix] = ACTIONS(5502), + }, + [STATE(2266)] = { + [sym_identifier] = ACTIONS(5803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5805), + [anon_sym_COMMA] = ACTIONS(5805), + [anon_sym_RPAREN] = ACTIONS(5805), + [aux_sym_preproc_if_token2] = ACTIONS(5805), + [aux_sym_preproc_else_token1] = ACTIONS(5805), + [aux_sym_preproc_elif_token1] = ACTIONS(5803), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5805), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5805), + [anon_sym_LPAREN2] = ACTIONS(5805), + [anon_sym_DASH] = ACTIONS(5803), + [anon_sym_PLUS] = ACTIONS(5803), + [anon_sym_STAR] = ACTIONS(5803), + [anon_sym_SLASH] = ACTIONS(5803), + [anon_sym_PERCENT] = ACTIONS(5803), + [anon_sym_PIPE_PIPE] = ACTIONS(5805), + [anon_sym_AMP_AMP] = ACTIONS(5805), + [anon_sym_PIPE] = ACTIONS(5803), + [anon_sym_CARET] = ACTIONS(5803), + [anon_sym_AMP] = ACTIONS(5803), + [anon_sym_EQ_EQ] = ACTIONS(5805), + [anon_sym_BANG_EQ] = ACTIONS(5805), + [anon_sym_GT] = ACTIONS(5803), + [anon_sym_GT_EQ] = ACTIONS(5805), + [anon_sym_LT_EQ] = ACTIONS(5803), + [anon_sym_LT] = ACTIONS(5803), + [anon_sym_LT_LT] = ACTIONS(5803), + [anon_sym_GT_GT] = ACTIONS(5803), + [anon_sym_SEMI] = ACTIONS(5805), + [anon_sym___attribute__] = ACTIONS(5803), + [anon_sym___attribute] = ACTIONS(5803), + [anon_sym_COLON] = ACTIONS(5805), + [anon_sym_LBRACE] = ACTIONS(5805), + [anon_sym_RBRACE] = ACTIONS(5805), + [anon_sym_LBRACK] = ACTIONS(5805), + [anon_sym_RBRACK] = ACTIONS(5805), + [anon_sym_EQ] = ACTIONS(5803), + [anon_sym_QMARK] = ACTIONS(5805), + [anon_sym_STAR_EQ] = ACTIONS(5805), + [anon_sym_SLASH_EQ] = ACTIONS(5805), + [anon_sym_PERCENT_EQ] = ACTIONS(5805), + [anon_sym_PLUS_EQ] = ACTIONS(5805), + [anon_sym_DASH_EQ] = ACTIONS(5805), + [anon_sym_LT_LT_EQ] = ACTIONS(5805), + [anon_sym_GT_GT_EQ] = ACTIONS(5805), + [anon_sym_AMP_EQ] = ACTIONS(5805), + [anon_sym_CARET_EQ] = ACTIONS(5805), + [anon_sym_PIPE_EQ] = ACTIONS(5805), + [anon_sym_and_eq] = ACTIONS(5803), + [anon_sym_or_eq] = ACTIONS(5803), + [anon_sym_xor_eq] = ACTIONS(5803), + [anon_sym_LT_EQ_GT] = ACTIONS(5805), + [anon_sym_or] = ACTIONS(5803), + [anon_sym_and] = ACTIONS(5803), + [anon_sym_bitor] = ACTIONS(5803), + [anon_sym_xor] = ACTIONS(5803), + [anon_sym_bitand] = ACTIONS(5803), + [anon_sym_not_eq] = ACTIONS(5803), + [anon_sym_DASH_DASH] = ACTIONS(5805), + [anon_sym_PLUS_PLUS] = ACTIONS(5805), + [anon_sym_DOT] = ACTIONS(5803), + [anon_sym_DOT_STAR] = ACTIONS(5805), + [anon_sym_DASH_GT] = ACTIONS(5805), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5803), + [anon_sym_decltype] = ACTIONS(5803), + }, + [STATE(2267)] = { + [sym_string_literal] = STATE(1726), + [sym_template_argument_list] = STATE(2395), + [sym_raw_string_literal] = STATE(1726), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6216), + [anon_sym_COMMA] = ACTIONS(6237), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5386), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(6239), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4161), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [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), + }, + [STATE(2268)] = { + [sym_identifier] = ACTIONS(5096), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5098), + [anon_sym_COMMA] = ACTIONS(5098), + [anon_sym_LPAREN2] = ACTIONS(5098), + [anon_sym_DASH] = ACTIONS(5096), + [anon_sym_PLUS] = ACTIONS(5096), + [anon_sym_STAR] = ACTIONS(5098), + [anon_sym_SLASH] = ACTIONS(5096), + [anon_sym_PERCENT] = ACTIONS(5098), + [anon_sym_PIPE_PIPE] = ACTIONS(5098), + [anon_sym_AMP_AMP] = ACTIONS(5098), + [anon_sym_PIPE] = ACTIONS(5096), + [anon_sym_CARET] = ACTIONS(5098), + [anon_sym_AMP] = ACTIONS(5096), + [anon_sym_EQ_EQ] = ACTIONS(5098), + [anon_sym_BANG_EQ] = ACTIONS(5098), + [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(5098), + [anon_sym_GT_GT] = ACTIONS(5096), + [anon_sym___extension__] = ACTIONS(5096), + [anon_sym___attribute__] = ACTIONS(5096), + [anon_sym___attribute] = ACTIONS(5096), + [anon_sym_LBRACE] = ACTIONS(5098), + [anon_sym_signed] = ACTIONS(5096), + [anon_sym_unsigned] = ACTIONS(5096), + [anon_sym_long] = ACTIONS(5096), + [anon_sym_short] = ACTIONS(5096), + [anon_sym_LBRACK] = ACTIONS(5098), + [anon_sym_const] = ACTIONS(5096), + [anon_sym_constexpr] = ACTIONS(5096), + [anon_sym_volatile] = ACTIONS(5096), + [anon_sym_restrict] = ACTIONS(5096), + [anon_sym___restrict__] = ACTIONS(5096), + [anon_sym__Atomic] = ACTIONS(5096), + [anon_sym__Noreturn] = ACTIONS(5096), + [anon_sym_noreturn] = ACTIONS(5096), + [anon_sym__Nonnull] = ACTIONS(5096), + [anon_sym_mutable] = ACTIONS(5096), + [anon_sym_constinit] = ACTIONS(5096), + [anon_sym_consteval] = ACTIONS(5096), + [anon_sym_alignas] = ACTIONS(5096), + [anon_sym__Alignas] = ACTIONS(5096), + [sym_primitive_type] = ACTIONS(5096), + [anon_sym_QMARK] = ACTIONS(5098), + [anon_sym_LT_EQ_GT] = ACTIONS(5098), + [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(5098), + [anon_sym_PLUS_PLUS] = ACTIONS(5098), + [anon_sym_DOT] = ACTIONS(5096), + [anon_sym_DOT_STAR] = ACTIONS(5098), + [anon_sym_DASH_GT] = ACTIONS(5098), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5096), + [anon_sym_decltype] = ACTIONS(5096), + [anon_sym_final] = ACTIONS(5096), + [anon_sym_override] = ACTIONS(5096), + [anon_sym_GT2] = ACTIONS(5098), + [anon_sym_requires] = ACTIONS(5096), + }, + [STATE(2269)] = { + [sym_identifier] = ACTIONS(5613), + [anon_sym_LPAREN2] = ACTIONS(5615), + [anon_sym_TILDE] = ACTIONS(5615), + [anon_sym_STAR] = ACTIONS(5615), + [anon_sym_PIPE_PIPE] = ACTIONS(5615), + [anon_sym_AMP_AMP] = ACTIONS(5615), + [anon_sym_AMP] = ACTIONS(5613), + [anon_sym___extension__] = 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(5474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5615), + [anon_sym___declspec] = ACTIONS(5613), + [anon_sym___based] = ACTIONS(5613), + [anon_sym___cdecl] = ACTIONS(5613), + [anon_sym___clrcall] = ACTIONS(5613), + [anon_sym___stdcall] = ACTIONS(5613), + [anon_sym___fastcall] = ACTIONS(5613), + [anon_sym___thiscall] = ACTIONS(5613), + [anon_sym___vectorcall] = 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), + [anon_sym_or] = ACTIONS(5613), + [anon_sym_and] = 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_template] = ACTIONS(5613), + [anon_sym_operator] = ACTIONS(5613), + [anon_sym_friend] = ACTIONS(5613), + [anon_sym_concept] = ACTIONS(5613), + }, + [STATE(2270)] = { + [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(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_COLON] = 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), + [anon_sym_L_DQUOTE] = ACTIONS(5619), + [anon_sym_u_DQUOTE] = ACTIONS(5619), + [anon_sym_U_DQUOTE] = ACTIONS(5619), + [anon_sym_u8_DQUOTE] = ACTIONS(5619), + [anon_sym_DQUOTE] = ACTIONS(5619), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5619), + [anon_sym_LR_DQUOTE] = ACTIONS(5619), + [anon_sym_uR_DQUOTE] = ACTIONS(5619), + [anon_sym_UR_DQUOTE] = ACTIONS(5619), + [anon_sym_u8R_DQUOTE] = ACTIONS(5619), + [sym_literal_suffix] = ACTIONS(5617), + }, + [STATE(2271)] = { + [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), + }, + [STATE(2272)] = { + [sym_identifier] = ACTIONS(5470), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_TILDE] = ACTIONS(5472), + [anon_sym_STAR] = ACTIONS(5472), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym___extension__] = ACTIONS(5470), + [anon_sym_virtual] = ACTIONS(5470), + [anon_sym_extern] = ACTIONS(5470), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_using] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), + [anon_sym___declspec] = ACTIONS(5470), + [anon_sym___based] = ACTIONS(5470), + [anon_sym___cdecl] = ACTIONS(5470), + [anon_sym___clrcall] = ACTIONS(5470), + [anon_sym___stdcall] = ACTIONS(5470), + [anon_sym___fastcall] = ACTIONS(5470), + [anon_sym___thiscall] = ACTIONS(5470), + [anon_sym___vectorcall] = ACTIONS(5470), + [anon_sym_signed] = ACTIONS(5470), + [anon_sym_unsigned] = ACTIONS(5470), + [anon_sym_long] = ACTIONS(5470), + [anon_sym_short] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_static] = ACTIONS(5470), + [anon_sym_register] = ACTIONS(5470), + [anon_sym_inline] = ACTIONS(5470), + [anon_sym___inline] = ACTIONS(5470), + [anon_sym___inline__] = ACTIONS(5470), + [anon_sym___forceinline] = ACTIONS(5470), + [anon_sym_thread_local] = ACTIONS(5470), + [anon_sym___thread] = ACTIONS(5470), + [anon_sym_const] = ACTIONS(5470), + [anon_sym_constexpr] = ACTIONS(5470), + [anon_sym_volatile] = ACTIONS(5470), + [anon_sym_restrict] = ACTIONS(5470), + [anon_sym___restrict__] = ACTIONS(5470), + [anon_sym__Atomic] = ACTIONS(5470), + [anon_sym__Noreturn] = ACTIONS(5470), + [anon_sym_noreturn] = ACTIONS(5470), + [anon_sym__Nonnull] = ACTIONS(5470), + [anon_sym_mutable] = ACTIONS(5470), + [anon_sym_constinit] = ACTIONS(5470), + [anon_sym_consteval] = ACTIONS(5470), + [anon_sym_alignas] = ACTIONS(5470), + [anon_sym__Alignas] = ACTIONS(5470), + [sym_primitive_type] = ACTIONS(5470), + [anon_sym_enum] = ACTIONS(5470), + [anon_sym_class] = ACTIONS(5470), + [anon_sym_struct] = ACTIONS(5470), + [anon_sym_union] = ACTIONS(5470), + [anon_sym_or] = ACTIONS(5470), + [anon_sym_and] = ACTIONS(5470), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_explicit] = ACTIONS(5470), + [anon_sym_typename] = ACTIONS(5470), + [anon_sym_template] = ACTIONS(5470), + [anon_sym_operator] = ACTIONS(5470), + [anon_sym_friend] = ACTIONS(5470), + [anon_sym_concept] = ACTIONS(5470), + }, + [STATE(2273)] = { + [sym_argument_list] = STATE(2513), + [sym_initializer_list] = STATE(2513), + [sym_identifier] = ACTIONS(6242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_COMMA] = ACTIONS(6244), + [anon_sym_RPAREN] = ACTIONS(6244), + [aux_sym_preproc_if_token2] = ACTIONS(6244), + [aux_sym_preproc_else_token1] = ACTIONS(6244), + [aux_sym_preproc_elif_token1] = ACTIONS(6242), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6244), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(6242), + [anon_sym_PLUS] = ACTIONS(6242), + [anon_sym_STAR] = ACTIONS(6242), + [anon_sym_SLASH] = ACTIONS(6242), + [anon_sym_PERCENT] = ACTIONS(6242), + [anon_sym_PIPE_PIPE] = ACTIONS(6244), + [anon_sym_AMP_AMP] = ACTIONS(6244), + [anon_sym_PIPE] = ACTIONS(6242), + [anon_sym_CARET] = ACTIONS(6242), + [anon_sym_AMP] = ACTIONS(6242), + [anon_sym_EQ_EQ] = ACTIONS(6244), + [anon_sym_BANG_EQ] = ACTIONS(6244), + [anon_sym_GT] = ACTIONS(6242), + [anon_sym_GT_EQ] = ACTIONS(6244), + [anon_sym_LT_EQ] = ACTIONS(6242), + [anon_sym_LT] = ACTIONS(6242), + [anon_sym_LT_LT] = ACTIONS(6242), + [anon_sym_GT_GT] = ACTIONS(6242), + [anon_sym_SEMI] = ACTIONS(6244), + [anon_sym___attribute__] = ACTIONS(6242), + [anon_sym___attribute] = ACTIONS(6242), + [anon_sym_COLON] = ACTIONS(6244), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(6244), + [anon_sym_LBRACK] = ACTIONS(6244), + [anon_sym_RBRACK] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(6242), + [anon_sym_QMARK] = ACTIONS(6244), + [anon_sym_STAR_EQ] = ACTIONS(6244), + [anon_sym_SLASH_EQ] = ACTIONS(6244), + [anon_sym_PERCENT_EQ] = ACTIONS(6244), + [anon_sym_PLUS_EQ] = ACTIONS(6244), + [anon_sym_DASH_EQ] = ACTIONS(6244), + [anon_sym_LT_LT_EQ] = ACTIONS(6244), + [anon_sym_GT_GT_EQ] = ACTIONS(6244), + [anon_sym_AMP_EQ] = ACTIONS(6244), + [anon_sym_CARET_EQ] = ACTIONS(6244), + [anon_sym_PIPE_EQ] = ACTIONS(6244), + [anon_sym_and_eq] = ACTIONS(6242), + [anon_sym_or_eq] = ACTIONS(6242), + [anon_sym_xor_eq] = ACTIONS(6242), + [anon_sym_LT_EQ_GT] = ACTIONS(6244), + [anon_sym_or] = ACTIONS(6242), + [anon_sym_and] = ACTIONS(6242), + [anon_sym_bitor] = ACTIONS(6242), + [anon_sym_xor] = ACTIONS(6242), + [anon_sym_bitand] = ACTIONS(6242), + [anon_sym_not_eq] = ACTIONS(6242), + [anon_sym_DASH_DASH] = ACTIONS(6244), + [anon_sym_PLUS_PLUS] = ACTIONS(6244), + [anon_sym_DOT] = ACTIONS(6242), + [anon_sym_DOT_STAR] = ACTIONS(6244), + [anon_sym_DASH_GT] = ACTIONS(6244), + [sym_comment] = ACTIONS(3), + }, + [STATE(2274)] = { + [sym_template_argument_list] = STATE(1975), + [aux_sym_sized_type_specifier_repeat1] = STATE(2276), + [sym_identifier] = ACTIONS(4159), + [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(4159), + [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_DASH] = ACTIONS(4159), + [anon_sym_PLUS] = ACTIONS(4159), + [anon_sym_STAR] = ACTIONS(4159), + [anon_sym_SLASH] = ACTIONS(4159), + [anon_sym_PERCENT] = ACTIONS(4159), [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_PIPE] = ACTIONS(4159), + [anon_sym_CARET] = ACTIONS(4159), + [anon_sym_AMP] = ACTIONS(4159), [anon_sym_EQ_EQ] = ACTIONS(4166), [anon_sym_BANG_EQ] = ACTIONS(4166), - [anon_sym_GT] = ACTIONS(4174), + [anon_sym_GT] = ACTIONS(4159), [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_LT_EQ] = ACTIONS(4159), + [anon_sym_LT] = ACTIONS(5841), + [anon_sym_LT_LT] = ACTIONS(4159), + [anon_sym_GT_GT] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4166), + [anon_sym_signed] = ACTIONS(6070), + [anon_sym_unsigned] = ACTIONS(6070), + [anon_sym_long] = ACTIONS(6070), + [anon_sym_short] = ACTIONS(6070), [anon_sym_LBRACK] = ACTIONS(4166), - [anon_sym_RBRACK] = ACTIONS(6270), - [anon_sym_EQ] = ACTIONS(4174), + [anon_sym_EQ] = ACTIONS(4159), [anon_sym_QMARK] = ACTIONS(4166), [anon_sym_STAR_EQ] = ACTIONS(4166), [anon_sym_SLASH_EQ] = ACTIONS(4166), @@ -291152,238 +290366,366 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_and_eq] = ACTIONS(4159), + [anon_sym_or_eq] = ACTIONS(4159), + [anon_sym_xor_eq] = ACTIONS(4159), [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_or] = ACTIONS(4159), + [anon_sym_and] = ACTIONS(4159), + [anon_sym_bitor] = ACTIONS(4159), + [anon_sym_xor] = ACTIONS(4159), + [anon_sym_bitand] = ACTIONS(4159), + [anon_sym_not_eq] = ACTIONS(4159), [anon_sym_DASH_DASH] = ACTIONS(4166), [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_DOT] = ACTIONS(4174), + [anon_sym_DOT] = ACTIONS(4159), [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), + [sym_auto] = ACTIONS(4159), + [anon_sym_decltype] = ACTIONS(4159), }, - [STATE(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), + [STATE(2275)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(5986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(5984), + [aux_sym_preproc_if_token2] = ACTIONS(5984), + [aux_sym_preproc_else_token1] = ACTIONS(5984), + [aux_sym_preproc_elif_token1] = ACTIONS(5986), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5984), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5984), + [anon_sym_LPAREN2] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5986), + [anon_sym_STAR] = ACTIONS(5986), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_PERCENT] = ACTIONS(5986), + [anon_sym_PIPE_PIPE] = ACTIONS(5984), + [anon_sym_AMP_AMP] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5984), + [anon_sym_LT_EQ] = ACTIONS(5986), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5986), + [anon_sym___attribute__] = ACTIONS(5986), + [anon_sym___attribute] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(5984), + [anon_sym_signed] = ACTIONS(6246), + [anon_sym_unsigned] = ACTIONS(6246), + [anon_sym_long] = ACTIONS(6246), + [anon_sym_short] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(5984), + [anon_sym_EQ] = ACTIONS(5986), + [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(5986), + [anon_sym_or_eq] = ACTIONS(5986), + [anon_sym_xor_eq] = ACTIONS(5986), + [anon_sym_LT_EQ_GT] = ACTIONS(5984), + [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(5984), + [anon_sym_PLUS_PLUS] = ACTIONS(5984), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_DOT_STAR] = ACTIONS(5984), + [anon_sym_DASH_GT] = ACTIONS(5984), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5986), + [anon_sym_decltype] = ACTIONS(5986), }, - [STATE(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), + [STATE(2276)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(5899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5897), + [anon_sym_COMMA] = ACTIONS(5897), + [aux_sym_preproc_if_token2] = ACTIONS(5897), + [aux_sym_preproc_else_token1] = ACTIONS(5897), + [aux_sym_preproc_elif_token1] = ACTIONS(5899), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5897), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5897), + [anon_sym_LPAREN2] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5899), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_PIPE_PIPE] = ACTIONS(5897), + [anon_sym_AMP_AMP] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5899), + [anon_sym_AMP] = ACTIONS(5899), + [anon_sym_EQ_EQ] = ACTIONS(5897), + [anon_sym_BANG_EQ] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5899), + [anon_sym_GT_EQ] = ACTIONS(5897), + [anon_sym_LT_EQ] = ACTIONS(5899), + [anon_sym_LT] = ACTIONS(5899), + [anon_sym_LT_LT] = ACTIONS(5899), + [anon_sym_GT_GT] = ACTIONS(5899), + [anon_sym___attribute__] = ACTIONS(5899), + [anon_sym___attribute] = ACTIONS(5899), + [anon_sym_LBRACE] = ACTIONS(5897), + [anon_sym_signed] = ACTIONS(6246), + [anon_sym_unsigned] = ACTIONS(6246), + [anon_sym_long] = ACTIONS(6246), + [anon_sym_short] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(5897), + [anon_sym_EQ] = ACTIONS(5899), + [anon_sym_QMARK] = ACTIONS(5897), + [anon_sym_STAR_EQ] = ACTIONS(5897), + [anon_sym_SLASH_EQ] = ACTIONS(5897), + [anon_sym_PERCENT_EQ] = ACTIONS(5897), + [anon_sym_PLUS_EQ] = ACTIONS(5897), + [anon_sym_DASH_EQ] = ACTIONS(5897), + [anon_sym_LT_LT_EQ] = ACTIONS(5897), + [anon_sym_GT_GT_EQ] = ACTIONS(5897), + [anon_sym_AMP_EQ] = ACTIONS(5897), + [anon_sym_CARET_EQ] = ACTIONS(5897), + [anon_sym_PIPE_EQ] = ACTIONS(5897), + [anon_sym_and_eq] = ACTIONS(5899), + [anon_sym_or_eq] = ACTIONS(5899), + [anon_sym_xor_eq] = ACTIONS(5899), + [anon_sym_LT_EQ_GT] = ACTIONS(5897), + [anon_sym_or] = ACTIONS(5899), + [anon_sym_and] = ACTIONS(5899), + [anon_sym_bitor] = ACTIONS(5899), + [anon_sym_xor] = ACTIONS(5899), + [anon_sym_bitand] = ACTIONS(5899), + [anon_sym_not_eq] = ACTIONS(5899), + [anon_sym_DASH_DASH] = ACTIONS(5897), + [anon_sym_PLUS_PLUS] = ACTIONS(5897), + [anon_sym_DOT] = ACTIONS(5899), + [anon_sym_DOT_STAR] = ACTIONS(5897), + [anon_sym_DASH_GT] = ACTIONS(5897), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5899), + [anon_sym_decltype] = ACTIONS(5899), }, - [STATE(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), + [STATE(2277)] = { + [sym_string_literal] = STATE(2307), + [sym_template_argument_list] = STATE(3284), + [sym_raw_string_literal] = STATE(2307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(6248), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(4168), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(4161), + [anon_sym_SLASH_EQ] = ACTIONS(4161), + [anon_sym_PERCENT_EQ] = ACTIONS(4161), + [anon_sym_PLUS_EQ] = ACTIONS(4161), + [anon_sym_DASH_EQ] = ACTIONS(4161), + [anon_sym_LT_LT_EQ] = ACTIONS(4161), + [anon_sym_GT_GT_EQ] = ACTIONS(4168), + [anon_sym_AMP_EQ] = ACTIONS(4161), + [anon_sym_CARET_EQ] = ACTIONS(4161), + [anon_sym_PIPE_EQ] = ACTIONS(4161), + [anon_sym_and_eq] = ACTIONS(4161), + [anon_sym_or_eq] = ACTIONS(4161), + [anon_sym_xor_eq] = ACTIONS(4161), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(6251), + [anon_sym_u_DQUOTE] = ACTIONS(6251), + [anon_sym_U_DQUOTE] = ACTIONS(6251), + [anon_sym_u8_DQUOTE] = ACTIONS(6251), + [anon_sym_DQUOTE] = ACTIONS(6251), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4161), + [anon_sym_R_DQUOTE] = ACTIONS(6253), + [anon_sym_LR_DQUOTE] = ACTIONS(6253), + [anon_sym_uR_DQUOTE] = ACTIONS(6253), + [anon_sym_UR_DQUOTE] = ACTIONS(6253), + [anon_sym_u8R_DQUOTE] = ACTIONS(6253), + }, + [STATE(2278)] = { + [sym_identifier] = ACTIONS(5674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5676), + [anon_sym_COMMA] = ACTIONS(5676), + [anon_sym_RPAREN] = ACTIONS(5676), + [aux_sym_preproc_if_token2] = ACTIONS(5676), + [aux_sym_preproc_else_token1] = ACTIONS(5676), + [aux_sym_preproc_elif_token1] = ACTIONS(5674), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5676), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5676), + [anon_sym_LPAREN2] = ACTIONS(5676), + [anon_sym_DASH] = ACTIONS(5674), + [anon_sym_PLUS] = ACTIONS(5674), + [anon_sym_STAR] = ACTIONS(5674), + [anon_sym_SLASH] = ACTIONS(5674), + [anon_sym_PERCENT] = ACTIONS(5674), + [anon_sym_PIPE_PIPE] = ACTIONS(5676), + [anon_sym_AMP_AMP] = ACTIONS(5676), + [anon_sym_PIPE] = ACTIONS(5674), + [anon_sym_CARET] = ACTIONS(5674), + [anon_sym_AMP] = ACTIONS(5674), + [anon_sym_EQ_EQ] = ACTIONS(5676), + [anon_sym_BANG_EQ] = ACTIONS(5676), + [anon_sym_GT] = ACTIONS(5674), + [anon_sym_GT_EQ] = ACTIONS(5676), + [anon_sym_LT_EQ] = ACTIONS(5674), + [anon_sym_LT] = ACTIONS(5674), + [anon_sym_LT_LT] = ACTIONS(5674), + [anon_sym_GT_GT] = ACTIONS(5674), + [anon_sym_SEMI] = ACTIONS(5676), + [anon_sym___attribute__] = ACTIONS(5674), + [anon_sym___attribute] = ACTIONS(5674), + [anon_sym_COLON] = ACTIONS(5676), + [anon_sym_LBRACE] = ACTIONS(5676), + [anon_sym_RBRACE] = ACTIONS(5676), + [anon_sym_LBRACK] = ACTIONS(5676), + [anon_sym_RBRACK] = ACTIONS(5676), + [anon_sym_EQ] = ACTIONS(5674), + [anon_sym_QMARK] = ACTIONS(5676), + [anon_sym_STAR_EQ] = ACTIONS(5676), + [anon_sym_SLASH_EQ] = ACTIONS(5676), + [anon_sym_PERCENT_EQ] = ACTIONS(5676), + [anon_sym_PLUS_EQ] = ACTIONS(5676), + [anon_sym_DASH_EQ] = ACTIONS(5676), + [anon_sym_LT_LT_EQ] = ACTIONS(5676), + [anon_sym_GT_GT_EQ] = ACTIONS(5676), + [anon_sym_AMP_EQ] = ACTIONS(5676), + [anon_sym_CARET_EQ] = ACTIONS(5676), + [anon_sym_PIPE_EQ] = ACTIONS(5676), + [anon_sym_and_eq] = ACTIONS(5674), + [anon_sym_or_eq] = ACTIONS(5674), + [anon_sym_xor_eq] = ACTIONS(5674), + [anon_sym_LT_EQ_GT] = ACTIONS(5676), + [anon_sym_or] = ACTIONS(5674), + [anon_sym_and] = ACTIONS(5674), + [anon_sym_bitor] = ACTIONS(5674), + [anon_sym_xor] = ACTIONS(5674), + [anon_sym_bitand] = ACTIONS(5674), + [anon_sym_not_eq] = ACTIONS(5674), + [anon_sym_DASH_DASH] = ACTIONS(5676), + [anon_sym_PLUS_PLUS] = ACTIONS(5676), + [anon_sym_DOT] = ACTIONS(5674), + [anon_sym_DOT_STAR] = ACTIONS(5676), + [anon_sym_DASH_GT] = ACTIONS(5676), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5674), + [anon_sym_decltype] = ACTIONS(5674), + }, + [STATE(2279)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2295), + [sym_identifier] = ACTIONS(5919), + [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(5919), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5917), + [anon_sym_LPAREN2] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_PERCENT] = ACTIONS(5919), + [anon_sym_PIPE_PIPE] = ACTIONS(5917), + [anon_sym_AMP_AMP] = ACTIONS(5917), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_EQ_EQ] = ACTIONS(5917), + [anon_sym_BANG_EQ] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_GT_EQ] = ACTIONS(5917), + [anon_sym_LT_EQ] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_LT_LT] = ACTIONS(5919), + [anon_sym_GT_GT] = ACTIONS(5919), + [anon_sym___attribute__] = ACTIONS(5919), + [anon_sym___attribute] = ACTIONS(5919), + [anon_sym_LBRACE] = ACTIONS(5917), + [anon_sym_signed] = ACTIONS(6255), + [anon_sym_unsigned] = ACTIONS(6255), + [anon_sym_long] = ACTIONS(6255), + [anon_sym_short] = ACTIONS(6255), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5919), + [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(5919), + [anon_sym_or_eq] = ACTIONS(5919), + [anon_sym_xor_eq] = ACTIONS(5919), + [anon_sym_LT_EQ_GT] = ACTIONS(5917), + [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(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5919), + [anon_sym_DOT_STAR] = ACTIONS(5917), + [anon_sym_DASH_GT] = ACTIONS(5917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5919), + [anon_sym_decltype] = ACTIONS(5919), }, - [STATE(2300)] = { + [STATE(2280)] = { [sym_identifier] = ACTIONS(5701), [anon_sym_DOT_DOT_DOT] = ACTIONS(5703), [anon_sym_COMMA] = ACTIONS(5703), @@ -291451,687 +290793,1707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(5701), [anon_sym_decltype] = ACTIONS(5701), }, - [STATE(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), + [STATE(2281)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2296), + [sym_identifier] = ACTIONS(5925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5923), + [anon_sym_COMMA] = ACTIONS(5923), + [aux_sym_preproc_if_token2] = ACTIONS(5923), + [aux_sym_preproc_else_token1] = ACTIONS(5923), + [aux_sym_preproc_elif_token1] = ACTIONS(5925), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5923), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5923), + [anon_sym_LPAREN2] = ACTIONS(5923), + [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(5923), + [anon_sym_AMP_AMP] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5925), + [anon_sym_AMP] = ACTIONS(5925), + [anon_sym_EQ_EQ] = ACTIONS(5923), + [anon_sym_BANG_EQ] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_GT_EQ] = ACTIONS(5923), + [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___attribute__] = ACTIONS(5925), + [anon_sym___attribute] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(6257), + [anon_sym_unsigned] = ACTIONS(6257), + [anon_sym_long] = ACTIONS(6257), + [anon_sym_short] = ACTIONS(6257), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_QMARK] = ACTIONS(5923), + [anon_sym_STAR_EQ] = ACTIONS(5923), + [anon_sym_SLASH_EQ] = ACTIONS(5923), + [anon_sym_PERCENT_EQ] = ACTIONS(5923), + [anon_sym_PLUS_EQ] = ACTIONS(5923), + [anon_sym_DASH_EQ] = ACTIONS(5923), + [anon_sym_LT_LT_EQ] = ACTIONS(5923), + [anon_sym_GT_GT_EQ] = ACTIONS(5923), + [anon_sym_AMP_EQ] = ACTIONS(5923), + [anon_sym_CARET_EQ] = ACTIONS(5923), + [anon_sym_PIPE_EQ] = ACTIONS(5923), + [anon_sym_and_eq] = ACTIONS(5925), + [anon_sym_or_eq] = ACTIONS(5925), + [anon_sym_xor_eq] = ACTIONS(5925), + [anon_sym_LT_EQ_GT] = ACTIONS(5923), + [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(5923), + [anon_sym_PLUS_PLUS] = ACTIONS(5923), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_DOT_STAR] = ACTIONS(5923), + [anon_sym_DASH_GT] = ACTIONS(5923), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5925), + [anon_sym_decltype] = ACTIONS(5925), }, - [STATE(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), + [STATE(2282)] = { + [sym_attribute_specifier] = STATE(1881), + [sym_enumerator_list] = STATE(2398), + [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(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6064), + [anon_sym_LBRACE] = ACTIONS(6259), + [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), }, - [STATE(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), + [STATE(2283)] = { + [sym_identifier] = ACTIONS(5682), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5684), + [anon_sym_COMMA] = ACTIONS(5684), + [anon_sym_RPAREN] = ACTIONS(5684), + [aux_sym_preproc_if_token2] = ACTIONS(5684), + [aux_sym_preproc_else_token1] = ACTIONS(5684), + [aux_sym_preproc_elif_token1] = ACTIONS(5682), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5684), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5684), + [anon_sym_LPAREN2] = ACTIONS(5684), + [anon_sym_DASH] = ACTIONS(5682), + [anon_sym_PLUS] = ACTIONS(5682), + [anon_sym_STAR] = ACTIONS(5682), + [anon_sym_SLASH] = ACTIONS(5682), + [anon_sym_PERCENT] = ACTIONS(5682), + [anon_sym_PIPE_PIPE] = ACTIONS(5684), + [anon_sym_AMP_AMP] = ACTIONS(5684), + [anon_sym_PIPE] = ACTIONS(5682), + [anon_sym_CARET] = ACTIONS(5682), + [anon_sym_AMP] = ACTIONS(5682), + [anon_sym_EQ_EQ] = ACTIONS(5684), + [anon_sym_BANG_EQ] = ACTIONS(5684), + [anon_sym_GT] = ACTIONS(5682), + [anon_sym_GT_EQ] = ACTIONS(5684), + [anon_sym_LT_EQ] = ACTIONS(5682), + [anon_sym_LT] = ACTIONS(5682), + [anon_sym_LT_LT] = ACTIONS(5682), + [anon_sym_GT_GT] = ACTIONS(5682), + [anon_sym_SEMI] = ACTIONS(5684), + [anon_sym___attribute__] = ACTIONS(5682), + [anon_sym___attribute] = ACTIONS(5682), + [anon_sym_COLON] = ACTIONS(5684), + [anon_sym_LBRACE] = ACTIONS(5684), + [anon_sym_RBRACE] = ACTIONS(5684), + [anon_sym_LBRACK] = ACTIONS(5684), + [anon_sym_RBRACK] = ACTIONS(5684), + [anon_sym_EQ] = ACTIONS(5682), + [anon_sym_QMARK] = ACTIONS(5684), + [anon_sym_STAR_EQ] = ACTIONS(5684), + [anon_sym_SLASH_EQ] = ACTIONS(5684), + [anon_sym_PERCENT_EQ] = ACTIONS(5684), + [anon_sym_PLUS_EQ] = ACTIONS(5684), + [anon_sym_DASH_EQ] = ACTIONS(5684), + [anon_sym_LT_LT_EQ] = ACTIONS(5684), + [anon_sym_GT_GT_EQ] = ACTIONS(5684), + [anon_sym_AMP_EQ] = ACTIONS(5684), + [anon_sym_CARET_EQ] = ACTIONS(5684), + [anon_sym_PIPE_EQ] = ACTIONS(5684), + [anon_sym_and_eq] = ACTIONS(5682), + [anon_sym_or_eq] = ACTIONS(5682), + [anon_sym_xor_eq] = ACTIONS(5682), + [anon_sym_LT_EQ_GT] = ACTIONS(5684), + [anon_sym_or] = ACTIONS(5682), + [anon_sym_and] = ACTIONS(5682), + [anon_sym_bitor] = ACTIONS(5682), + [anon_sym_xor] = ACTIONS(5682), + [anon_sym_bitand] = ACTIONS(5682), + [anon_sym_not_eq] = ACTIONS(5682), + [anon_sym_DASH_DASH] = ACTIONS(5684), + [anon_sym_PLUS_PLUS] = ACTIONS(5684), + [anon_sym_DOT] = ACTIONS(5682), + [anon_sym_DOT_STAR] = ACTIONS(5684), + [anon_sym_DASH_GT] = ACTIONS(5684), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5682), + [anon_sym_decltype] = ACTIONS(5682), }, - [STATE(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), + [STATE(2284)] = { + [sym_identifier] = ACTIONS(5713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5715), + [anon_sym_COMMA] = ACTIONS(5715), + [anon_sym_RPAREN] = ACTIONS(5715), + [aux_sym_preproc_if_token2] = ACTIONS(5715), + [aux_sym_preproc_else_token1] = ACTIONS(5715), + [aux_sym_preproc_elif_token1] = ACTIONS(5713), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5715), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5715), + [anon_sym_LPAREN2] = ACTIONS(5715), + [anon_sym_DASH] = ACTIONS(5713), + [anon_sym_PLUS] = ACTIONS(5713), + [anon_sym_STAR] = ACTIONS(5713), + [anon_sym_SLASH] = ACTIONS(5713), + [anon_sym_PERCENT] = ACTIONS(5713), + [anon_sym_PIPE_PIPE] = ACTIONS(5715), + [anon_sym_AMP_AMP] = ACTIONS(5715), + [anon_sym_PIPE] = ACTIONS(5713), + [anon_sym_CARET] = ACTIONS(5713), + [anon_sym_AMP] = ACTIONS(5713), + [anon_sym_EQ_EQ] = ACTIONS(5715), + [anon_sym_BANG_EQ] = ACTIONS(5715), + [anon_sym_GT] = ACTIONS(5713), + [anon_sym_GT_EQ] = ACTIONS(5715), + [anon_sym_LT_EQ] = ACTIONS(5713), + [anon_sym_LT] = ACTIONS(5713), + [anon_sym_LT_LT] = ACTIONS(5713), + [anon_sym_GT_GT] = ACTIONS(5713), + [anon_sym_SEMI] = ACTIONS(5715), + [anon_sym___attribute__] = ACTIONS(5713), + [anon_sym___attribute] = ACTIONS(5713), + [anon_sym_COLON] = ACTIONS(5715), + [anon_sym_LBRACE] = ACTIONS(5715), + [anon_sym_RBRACE] = ACTIONS(5715), + [anon_sym_LBRACK] = ACTIONS(5715), + [anon_sym_RBRACK] = ACTIONS(5715), + [anon_sym_EQ] = ACTIONS(5713), + [anon_sym_QMARK] = ACTIONS(5715), + [anon_sym_STAR_EQ] = ACTIONS(5715), + [anon_sym_SLASH_EQ] = ACTIONS(5715), + [anon_sym_PERCENT_EQ] = ACTIONS(5715), + [anon_sym_PLUS_EQ] = ACTIONS(5715), + [anon_sym_DASH_EQ] = ACTIONS(5715), + [anon_sym_LT_LT_EQ] = ACTIONS(5715), + [anon_sym_GT_GT_EQ] = ACTIONS(5715), + [anon_sym_AMP_EQ] = ACTIONS(5715), + [anon_sym_CARET_EQ] = ACTIONS(5715), + [anon_sym_PIPE_EQ] = ACTIONS(5715), + [anon_sym_and_eq] = ACTIONS(5713), + [anon_sym_or_eq] = ACTIONS(5713), + [anon_sym_xor_eq] = ACTIONS(5713), + [anon_sym_LT_EQ_GT] = ACTIONS(5715), + [anon_sym_or] = ACTIONS(5713), + [anon_sym_and] = ACTIONS(5713), + [anon_sym_bitor] = ACTIONS(5713), + [anon_sym_xor] = ACTIONS(5713), + [anon_sym_bitand] = ACTIONS(5713), + [anon_sym_not_eq] = ACTIONS(5713), + [anon_sym_DASH_DASH] = ACTIONS(5715), + [anon_sym_PLUS_PLUS] = ACTIONS(5715), + [anon_sym_DOT] = ACTIONS(5713), + [anon_sym_DOT_STAR] = ACTIONS(5715), + [anon_sym_DASH_GT] = ACTIONS(5715), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5713), + [anon_sym_decltype] = ACTIONS(5713), }, - [STATE(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(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), + [STATE(2285)] = { + [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), }, - [STATE(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), + [STATE(2286)] = { + [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), }, - [STATE(2307)] = { - [sym_identifier] = ACTIONS(5728), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5730), - [anon_sym_COMMA] = ACTIONS(5730), - [anon_sym_RPAREN] = ACTIONS(5730), - [aux_sym_preproc_if_token2] = ACTIONS(5730), - [aux_sym_preproc_else_token1] = ACTIONS(5730), - [aux_sym_preproc_elif_token1] = ACTIONS(5728), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5730), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5730), - [anon_sym_LPAREN2] = ACTIONS(5730), - [anon_sym_DASH] = ACTIONS(5728), - [anon_sym_PLUS] = ACTIONS(5728), - [anon_sym_STAR] = ACTIONS(5728), - [anon_sym_SLASH] = ACTIONS(5728), - [anon_sym_PERCENT] = ACTIONS(5728), - [anon_sym_PIPE_PIPE] = ACTIONS(5730), - [anon_sym_AMP_AMP] = ACTIONS(5730), - [anon_sym_PIPE] = ACTIONS(5728), - [anon_sym_CARET] = ACTIONS(5728), - [anon_sym_AMP] = ACTIONS(5728), - [anon_sym_EQ_EQ] = ACTIONS(5730), - [anon_sym_BANG_EQ] = ACTIONS(5730), - [anon_sym_GT] = ACTIONS(5728), - [anon_sym_GT_EQ] = ACTIONS(5730), - [anon_sym_LT_EQ] = ACTIONS(5728), - [anon_sym_LT] = ACTIONS(5728), - [anon_sym_LT_LT] = ACTIONS(5728), - [anon_sym_GT_GT] = ACTIONS(5728), - [anon_sym_SEMI] = ACTIONS(5730), - [anon_sym___attribute__] = ACTIONS(5728), - [anon_sym___attribute] = ACTIONS(5728), - [anon_sym_COLON] = ACTIONS(5730), - [anon_sym_LBRACE] = ACTIONS(5730), - [anon_sym_RBRACE] = ACTIONS(5730), - [anon_sym_LBRACK] = ACTIONS(5730), - [anon_sym_RBRACK] = ACTIONS(5730), - [anon_sym_EQ] = ACTIONS(5728), - [anon_sym_QMARK] = ACTIONS(5730), - [anon_sym_STAR_EQ] = ACTIONS(5730), - [anon_sym_SLASH_EQ] = ACTIONS(5730), - [anon_sym_PERCENT_EQ] = ACTIONS(5730), - [anon_sym_PLUS_EQ] = ACTIONS(5730), - [anon_sym_DASH_EQ] = ACTIONS(5730), - [anon_sym_LT_LT_EQ] = ACTIONS(5730), - [anon_sym_GT_GT_EQ] = ACTIONS(5730), - [anon_sym_AMP_EQ] = ACTIONS(5730), - [anon_sym_CARET_EQ] = ACTIONS(5730), - [anon_sym_PIPE_EQ] = ACTIONS(5730), - [anon_sym_and_eq] = ACTIONS(5728), - [anon_sym_or_eq] = ACTIONS(5728), - [anon_sym_xor_eq] = ACTIONS(5728), - [anon_sym_LT_EQ_GT] = ACTIONS(5730), - [anon_sym_or] = ACTIONS(5728), - [anon_sym_and] = ACTIONS(5728), - [anon_sym_bitor] = ACTIONS(5728), - [anon_sym_xor] = ACTIONS(5728), - [anon_sym_bitand] = ACTIONS(5728), - [anon_sym_not_eq] = ACTIONS(5728), - [anon_sym_DASH_DASH] = ACTIONS(5730), - [anon_sym_PLUS_PLUS] = ACTIONS(5730), - [anon_sym_DOT] = ACTIONS(5728), - [anon_sym_DOT_STAR] = ACTIONS(5730), - [anon_sym_DASH_GT] = ACTIONS(5730), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5728), - [anon_sym_decltype] = ACTIONS(5728), + [STATE(2287)] = { + [sym_identifier] = ACTIONS(5795), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5797), + [anon_sym_COMMA] = ACTIONS(5797), + [anon_sym_RPAREN] = ACTIONS(5797), + [aux_sym_preproc_if_token2] = ACTIONS(5797), + [aux_sym_preproc_else_token1] = ACTIONS(5797), + [aux_sym_preproc_elif_token1] = ACTIONS(5795), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5797), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5797), + [anon_sym_LPAREN2] = ACTIONS(5797), + [anon_sym_DASH] = ACTIONS(5795), + [anon_sym_PLUS] = ACTIONS(5795), + [anon_sym_STAR] = ACTIONS(5795), + [anon_sym_SLASH] = ACTIONS(5795), + [anon_sym_PERCENT] = ACTIONS(5795), + [anon_sym_PIPE_PIPE] = ACTIONS(5797), + [anon_sym_AMP_AMP] = ACTIONS(5797), + [anon_sym_PIPE] = ACTIONS(5795), + [anon_sym_CARET] = ACTIONS(5795), + [anon_sym_AMP] = ACTIONS(5795), + [anon_sym_EQ_EQ] = ACTIONS(5797), + [anon_sym_BANG_EQ] = ACTIONS(5797), + [anon_sym_GT] = ACTIONS(5795), + [anon_sym_GT_EQ] = ACTIONS(5797), + [anon_sym_LT_EQ] = ACTIONS(5795), + [anon_sym_LT] = ACTIONS(5795), + [anon_sym_LT_LT] = ACTIONS(5795), + [anon_sym_GT_GT] = ACTIONS(5795), + [anon_sym_SEMI] = ACTIONS(5797), + [anon_sym___attribute__] = ACTIONS(5795), + [anon_sym___attribute] = ACTIONS(5795), + [anon_sym_COLON] = ACTIONS(5797), + [anon_sym_LBRACE] = ACTIONS(5797), + [anon_sym_RBRACE] = ACTIONS(5797), + [anon_sym_LBRACK] = ACTIONS(5797), + [anon_sym_RBRACK] = ACTIONS(5797), + [anon_sym_EQ] = ACTIONS(5795), + [anon_sym_QMARK] = ACTIONS(5797), + [anon_sym_STAR_EQ] = ACTIONS(5797), + [anon_sym_SLASH_EQ] = ACTIONS(5797), + [anon_sym_PERCENT_EQ] = ACTIONS(5797), + [anon_sym_PLUS_EQ] = ACTIONS(5797), + [anon_sym_DASH_EQ] = ACTIONS(5797), + [anon_sym_LT_LT_EQ] = ACTIONS(5797), + [anon_sym_GT_GT_EQ] = ACTIONS(5797), + [anon_sym_AMP_EQ] = ACTIONS(5797), + [anon_sym_CARET_EQ] = ACTIONS(5797), + [anon_sym_PIPE_EQ] = ACTIONS(5797), + [anon_sym_and_eq] = ACTIONS(5795), + [anon_sym_or_eq] = ACTIONS(5795), + [anon_sym_xor_eq] = ACTIONS(5795), + [anon_sym_LT_EQ_GT] = ACTIONS(5797), + [anon_sym_or] = ACTIONS(5795), + [anon_sym_and] = ACTIONS(5795), + [anon_sym_bitor] = ACTIONS(5795), + [anon_sym_xor] = ACTIONS(5795), + [anon_sym_bitand] = ACTIONS(5795), + [anon_sym_not_eq] = ACTIONS(5795), + [anon_sym_DASH_DASH] = ACTIONS(5797), + [anon_sym_PLUS_PLUS] = ACTIONS(5797), + [anon_sym_DOT] = ACTIONS(5795), + [anon_sym_DOT_STAR] = ACTIONS(5797), + [anon_sym_DASH_GT] = ACTIONS(5797), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5795), + [anon_sym_decltype] = ACTIONS(5795), }, - [STATE(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), + [STATE(2288)] = { + [sym_identifier] = ACTIONS(5811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5813), + [anon_sym_COMMA] = ACTIONS(5813), + [anon_sym_RPAREN] = ACTIONS(5813), + [aux_sym_preproc_if_token2] = ACTIONS(5813), + [aux_sym_preproc_else_token1] = ACTIONS(5813), + [aux_sym_preproc_elif_token1] = ACTIONS(5811), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5813), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5813), + [anon_sym_LPAREN2] = ACTIONS(5813), + [anon_sym_DASH] = ACTIONS(5811), + [anon_sym_PLUS] = ACTIONS(5811), + [anon_sym_STAR] = ACTIONS(5811), + [anon_sym_SLASH] = ACTIONS(5811), + [anon_sym_PERCENT] = ACTIONS(5811), + [anon_sym_PIPE_PIPE] = ACTIONS(5813), + [anon_sym_AMP_AMP] = ACTIONS(5813), + [anon_sym_PIPE] = ACTIONS(5811), + [anon_sym_CARET] = ACTIONS(5811), + [anon_sym_AMP] = ACTIONS(5811), + [anon_sym_EQ_EQ] = ACTIONS(5813), + [anon_sym_BANG_EQ] = ACTIONS(5813), + [anon_sym_GT] = ACTIONS(5811), + [anon_sym_GT_EQ] = ACTIONS(5813), + [anon_sym_LT_EQ] = ACTIONS(5811), + [anon_sym_LT] = ACTIONS(5811), + [anon_sym_LT_LT] = ACTIONS(5811), + [anon_sym_GT_GT] = ACTIONS(5811), + [anon_sym_SEMI] = ACTIONS(5813), + [anon_sym___attribute__] = ACTIONS(5811), + [anon_sym___attribute] = ACTIONS(5811), + [anon_sym_COLON] = ACTIONS(5813), + [anon_sym_LBRACE] = ACTIONS(5813), + [anon_sym_RBRACE] = ACTIONS(5813), + [anon_sym_LBRACK] = ACTIONS(5813), + [anon_sym_RBRACK] = ACTIONS(5813), + [anon_sym_EQ] = ACTIONS(5811), + [anon_sym_QMARK] = ACTIONS(5813), + [anon_sym_STAR_EQ] = ACTIONS(5813), + [anon_sym_SLASH_EQ] = ACTIONS(5813), + [anon_sym_PERCENT_EQ] = ACTIONS(5813), + [anon_sym_PLUS_EQ] = ACTIONS(5813), + [anon_sym_DASH_EQ] = ACTIONS(5813), + [anon_sym_LT_LT_EQ] = ACTIONS(5813), + [anon_sym_GT_GT_EQ] = ACTIONS(5813), + [anon_sym_AMP_EQ] = ACTIONS(5813), + [anon_sym_CARET_EQ] = ACTIONS(5813), + [anon_sym_PIPE_EQ] = ACTIONS(5813), + [anon_sym_and_eq] = ACTIONS(5811), + [anon_sym_or_eq] = ACTIONS(5811), + [anon_sym_xor_eq] = ACTIONS(5811), + [anon_sym_LT_EQ_GT] = ACTIONS(5813), + [anon_sym_or] = ACTIONS(5811), + [anon_sym_and] = ACTIONS(5811), + [anon_sym_bitor] = ACTIONS(5811), + [anon_sym_xor] = ACTIONS(5811), + [anon_sym_bitand] = ACTIONS(5811), + [anon_sym_not_eq] = ACTIONS(5811), + [anon_sym_DASH_DASH] = ACTIONS(5813), + [anon_sym_PLUS_PLUS] = ACTIONS(5813), + [anon_sym_DOT] = ACTIONS(5811), + [anon_sym_DOT_STAR] = ACTIONS(5813), + [anon_sym_DASH_GT] = ACTIONS(5813), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5811), + [anon_sym_decltype] = ACTIONS(5811), }, - [STATE(2309)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(5472), - [anon_sym_COMMA] = ACTIONS(5472), - [anon_sym_RPAREN] = ACTIONS(5472), + [STATE(2289)] = { + [sym_identifier] = ACTIONS(5727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), + [anon_sym_COMMA] = ACTIONS(5729), + [anon_sym_RPAREN] = ACTIONS(5729), + [aux_sym_preproc_if_token2] = ACTIONS(5729), + [aux_sym_preproc_else_token1] = ACTIONS(5729), + [aux_sym_preproc_elif_token1] = ACTIONS(5727), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5729), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5729), + [anon_sym_LPAREN2] = ACTIONS(5729), + [anon_sym_DASH] = ACTIONS(5727), + [anon_sym_PLUS] = ACTIONS(5727), + [anon_sym_STAR] = ACTIONS(5727), + [anon_sym_SLASH] = ACTIONS(5727), + [anon_sym_PERCENT] = ACTIONS(5727), + [anon_sym_PIPE_PIPE] = ACTIONS(5729), + [anon_sym_AMP_AMP] = ACTIONS(5729), + [anon_sym_PIPE] = ACTIONS(5727), + [anon_sym_CARET] = ACTIONS(5727), + [anon_sym_AMP] = ACTIONS(5727), + [anon_sym_EQ_EQ] = ACTIONS(5729), + [anon_sym_BANG_EQ] = ACTIONS(5729), + [anon_sym_GT] = ACTIONS(5727), + [anon_sym_GT_EQ] = ACTIONS(5729), + [anon_sym_LT_EQ] = ACTIONS(5727), + [anon_sym_LT] = ACTIONS(5727), + [anon_sym_LT_LT] = ACTIONS(5727), + [anon_sym_GT_GT] = ACTIONS(5727), + [anon_sym_SEMI] = ACTIONS(5729), + [anon_sym___attribute__] = ACTIONS(5727), + [anon_sym___attribute] = ACTIONS(5727), + [anon_sym_COLON] = ACTIONS(5729), + [anon_sym_LBRACE] = ACTIONS(5729), + [anon_sym_RBRACE] = ACTIONS(5729), + [anon_sym_LBRACK] = ACTIONS(5729), + [anon_sym_RBRACK] = ACTIONS(5729), + [anon_sym_EQ] = ACTIONS(5727), + [anon_sym_QMARK] = ACTIONS(5729), + [anon_sym_STAR_EQ] = ACTIONS(5729), + [anon_sym_SLASH_EQ] = ACTIONS(5729), + [anon_sym_PERCENT_EQ] = ACTIONS(5729), + [anon_sym_PLUS_EQ] = ACTIONS(5729), + [anon_sym_DASH_EQ] = ACTIONS(5729), + [anon_sym_LT_LT_EQ] = ACTIONS(5729), + [anon_sym_GT_GT_EQ] = ACTIONS(5729), + [anon_sym_AMP_EQ] = ACTIONS(5729), + [anon_sym_CARET_EQ] = ACTIONS(5729), + [anon_sym_PIPE_EQ] = ACTIONS(5729), + [anon_sym_and_eq] = ACTIONS(5727), + [anon_sym_or_eq] = ACTIONS(5727), + [anon_sym_xor_eq] = ACTIONS(5727), + [anon_sym_LT_EQ_GT] = ACTIONS(5729), + [anon_sym_or] = ACTIONS(5727), + [anon_sym_and] = ACTIONS(5727), + [anon_sym_bitor] = ACTIONS(5727), + [anon_sym_xor] = ACTIONS(5727), + [anon_sym_bitand] = ACTIONS(5727), + [anon_sym_not_eq] = ACTIONS(5727), + [anon_sym_DASH_DASH] = ACTIONS(5729), + [anon_sym_PLUS_PLUS] = ACTIONS(5729), + [anon_sym_DOT] = ACTIONS(5727), + [anon_sym_DOT_STAR] = ACTIONS(5729), + [anon_sym_DASH_GT] = ACTIONS(5729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5727), + [anon_sym_decltype] = ACTIONS(5727), + }, + [STATE(2290)] = { + [sym_identifier] = ACTIONS(5819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5821), + [anon_sym_COMMA] = ACTIONS(5821), + [anon_sym_RPAREN] = ACTIONS(5821), + [aux_sym_preproc_if_token2] = ACTIONS(5821), + [aux_sym_preproc_else_token1] = ACTIONS(5821), + [aux_sym_preproc_elif_token1] = ACTIONS(5819), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5821), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5821), + [anon_sym_LPAREN2] = ACTIONS(5821), + [anon_sym_DASH] = ACTIONS(5819), + [anon_sym_PLUS] = ACTIONS(5819), + [anon_sym_STAR] = ACTIONS(5819), + [anon_sym_SLASH] = ACTIONS(5819), + [anon_sym_PERCENT] = ACTIONS(5819), + [anon_sym_PIPE_PIPE] = ACTIONS(5821), + [anon_sym_AMP_AMP] = ACTIONS(5821), + [anon_sym_PIPE] = ACTIONS(5819), + [anon_sym_CARET] = ACTIONS(5819), + [anon_sym_AMP] = ACTIONS(5819), + [anon_sym_EQ_EQ] = ACTIONS(5821), + [anon_sym_BANG_EQ] = ACTIONS(5821), + [anon_sym_GT] = ACTIONS(5819), + [anon_sym_GT_EQ] = ACTIONS(5821), + [anon_sym_LT_EQ] = ACTIONS(5819), + [anon_sym_LT] = ACTIONS(5819), + [anon_sym_LT_LT] = ACTIONS(5819), + [anon_sym_GT_GT] = ACTIONS(5819), + [anon_sym_SEMI] = ACTIONS(5821), + [anon_sym___attribute__] = ACTIONS(5819), + [anon_sym___attribute] = ACTIONS(5819), + [anon_sym_COLON] = ACTIONS(5821), + [anon_sym_LBRACE] = ACTIONS(5821), + [anon_sym_RBRACE] = ACTIONS(5821), + [anon_sym_LBRACK] = ACTIONS(5821), + [anon_sym_RBRACK] = ACTIONS(5821), + [anon_sym_EQ] = ACTIONS(5819), + [anon_sym_QMARK] = ACTIONS(5821), + [anon_sym_STAR_EQ] = ACTIONS(5821), + [anon_sym_SLASH_EQ] = ACTIONS(5821), + [anon_sym_PERCENT_EQ] = ACTIONS(5821), + [anon_sym_PLUS_EQ] = ACTIONS(5821), + [anon_sym_DASH_EQ] = ACTIONS(5821), + [anon_sym_LT_LT_EQ] = ACTIONS(5821), + [anon_sym_GT_GT_EQ] = ACTIONS(5821), + [anon_sym_AMP_EQ] = ACTIONS(5821), + [anon_sym_CARET_EQ] = ACTIONS(5821), + [anon_sym_PIPE_EQ] = ACTIONS(5821), + [anon_sym_and_eq] = ACTIONS(5819), + [anon_sym_or_eq] = ACTIONS(5819), + [anon_sym_xor_eq] = ACTIONS(5819), + [anon_sym_LT_EQ_GT] = ACTIONS(5821), + [anon_sym_or] = ACTIONS(5819), + [anon_sym_and] = ACTIONS(5819), + [anon_sym_bitor] = ACTIONS(5819), + [anon_sym_xor] = ACTIONS(5819), + [anon_sym_bitand] = ACTIONS(5819), + [anon_sym_not_eq] = ACTIONS(5819), + [anon_sym_DASH_DASH] = ACTIONS(5821), + [anon_sym_PLUS_PLUS] = ACTIONS(5821), + [anon_sym_DOT] = ACTIONS(5819), + [anon_sym_DOT_STAR] = ACTIONS(5821), + [anon_sym_DASH_GT] = ACTIONS(5821), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5819), + [anon_sym_decltype] = ACTIONS(5819), + }, + [STATE(2291)] = { + [sym_identifier] = ACTIONS(5835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5837), + [anon_sym_COMMA] = ACTIONS(5837), + [anon_sym_RPAREN] = ACTIONS(5837), + [aux_sym_preproc_if_token2] = ACTIONS(5837), + [aux_sym_preproc_else_token1] = ACTIONS(5837), + [aux_sym_preproc_elif_token1] = ACTIONS(5835), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5837), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5837), + [anon_sym_LPAREN2] = ACTIONS(5837), + [anon_sym_DASH] = ACTIONS(5835), + [anon_sym_PLUS] = ACTIONS(5835), + [anon_sym_STAR] = ACTIONS(5835), + [anon_sym_SLASH] = ACTIONS(5835), + [anon_sym_PERCENT] = ACTIONS(5835), + [anon_sym_PIPE_PIPE] = ACTIONS(5837), + [anon_sym_AMP_AMP] = ACTIONS(5837), + [anon_sym_PIPE] = ACTIONS(5835), + [anon_sym_CARET] = ACTIONS(5835), + [anon_sym_AMP] = ACTIONS(5835), + [anon_sym_EQ_EQ] = ACTIONS(5837), + [anon_sym_BANG_EQ] = ACTIONS(5837), + [anon_sym_GT] = ACTIONS(5835), + [anon_sym_GT_EQ] = ACTIONS(5837), + [anon_sym_LT_EQ] = ACTIONS(5835), + [anon_sym_LT] = ACTIONS(5835), + [anon_sym_LT_LT] = ACTIONS(5835), + [anon_sym_GT_GT] = ACTIONS(5835), + [anon_sym_SEMI] = ACTIONS(5837), + [anon_sym___attribute__] = ACTIONS(5835), + [anon_sym___attribute] = ACTIONS(5835), + [anon_sym_COLON] = ACTIONS(5837), + [anon_sym_LBRACE] = ACTIONS(5837), + [anon_sym_RBRACE] = ACTIONS(5837), + [anon_sym_LBRACK] = ACTIONS(5837), + [anon_sym_RBRACK] = ACTIONS(5837), + [anon_sym_EQ] = ACTIONS(5835), + [anon_sym_QMARK] = ACTIONS(5837), + [anon_sym_STAR_EQ] = ACTIONS(5837), + [anon_sym_SLASH_EQ] = ACTIONS(5837), + [anon_sym_PERCENT_EQ] = ACTIONS(5837), + [anon_sym_PLUS_EQ] = ACTIONS(5837), + [anon_sym_DASH_EQ] = ACTIONS(5837), + [anon_sym_LT_LT_EQ] = ACTIONS(5837), + [anon_sym_GT_GT_EQ] = ACTIONS(5837), + [anon_sym_AMP_EQ] = ACTIONS(5837), + [anon_sym_CARET_EQ] = ACTIONS(5837), + [anon_sym_PIPE_EQ] = ACTIONS(5837), + [anon_sym_and_eq] = ACTIONS(5835), + [anon_sym_or_eq] = ACTIONS(5835), + [anon_sym_xor_eq] = ACTIONS(5835), + [anon_sym_LT_EQ_GT] = ACTIONS(5837), + [anon_sym_or] = ACTIONS(5835), + [anon_sym_and] = ACTIONS(5835), + [anon_sym_bitor] = ACTIONS(5835), + [anon_sym_xor] = ACTIONS(5835), + [anon_sym_bitand] = ACTIONS(5835), + [anon_sym_not_eq] = ACTIONS(5835), + [anon_sym_DASH_DASH] = ACTIONS(5837), + [anon_sym_PLUS_PLUS] = ACTIONS(5837), + [anon_sym_DOT] = ACTIONS(5835), + [anon_sym_DOT_STAR] = ACTIONS(5837), + [anon_sym_DASH_GT] = ACTIONS(5837), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5835), + [anon_sym_decltype] = ACTIONS(5835), + }, + [STATE(2292)] = { + [sym_identifier] = ACTIONS(6261), + [anon_sym_LPAREN2] = ACTIONS(6263), + [anon_sym_TILDE] = ACTIONS(6263), + [anon_sym_STAR] = ACTIONS(6263), + [anon_sym_PIPE_PIPE] = ACTIONS(6265), + [anon_sym_AMP_AMP] = ACTIONS(6267), + [anon_sym_AMP] = ACTIONS(6261), + [anon_sym___extension__] = ACTIONS(6261), + [anon_sym_virtual] = ACTIONS(6261), + [anon_sym_extern] = ACTIONS(6261), + [anon_sym___attribute__] = ACTIONS(6261), + [anon_sym___attribute] = ACTIONS(6261), + [anon_sym_using] = ACTIONS(6261), + [anon_sym_COLON_COLON] = ACTIONS(6263), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6263), + [anon_sym___declspec] = ACTIONS(6261), + [anon_sym___based] = ACTIONS(6261), + [anon_sym___cdecl] = ACTIONS(6261), + [anon_sym___clrcall] = ACTIONS(6261), + [anon_sym___stdcall] = ACTIONS(6261), + [anon_sym___fastcall] = ACTIONS(6261), + [anon_sym___thiscall] = ACTIONS(6261), + [anon_sym___vectorcall] = ACTIONS(6261), + [anon_sym_signed] = ACTIONS(6261), + [anon_sym_unsigned] = ACTIONS(6261), + [anon_sym_long] = ACTIONS(6261), + [anon_sym_short] = ACTIONS(6261), + [anon_sym_LBRACK] = ACTIONS(6261), + [anon_sym_static] = ACTIONS(6261), + [anon_sym_register] = ACTIONS(6261), + [anon_sym_inline] = ACTIONS(6261), + [anon_sym___inline] = ACTIONS(6261), + [anon_sym___inline__] = ACTIONS(6261), + [anon_sym___forceinline] = ACTIONS(6261), + [anon_sym_thread_local] = ACTIONS(6261), + [anon_sym___thread] = ACTIONS(6261), + [anon_sym_const] = ACTIONS(6261), + [anon_sym_constexpr] = ACTIONS(6261), + [anon_sym_volatile] = ACTIONS(6261), + [anon_sym_restrict] = ACTIONS(6261), + [anon_sym___restrict__] = ACTIONS(6261), + [anon_sym__Atomic] = ACTIONS(6261), + [anon_sym__Noreturn] = ACTIONS(6261), + [anon_sym_noreturn] = ACTIONS(6261), + [anon_sym__Nonnull] = ACTIONS(6261), + [anon_sym_mutable] = ACTIONS(6261), + [anon_sym_constinit] = ACTIONS(6261), + [anon_sym_consteval] = ACTIONS(6261), + [anon_sym_alignas] = ACTIONS(6261), + [anon_sym__Alignas] = ACTIONS(6261), + [sym_primitive_type] = ACTIONS(6261), + [anon_sym_enum] = ACTIONS(6261), + [anon_sym_class] = ACTIONS(6261), + [anon_sym_struct] = ACTIONS(6261), + [anon_sym_union] = ACTIONS(6261), + [anon_sym_or] = ACTIONS(6269), + [anon_sym_and] = ACTIONS(6271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6261), + [anon_sym_decltype] = ACTIONS(6261), + [anon_sym_explicit] = ACTIONS(6261), + [anon_sym_typename] = ACTIONS(6261), + [anon_sym_template] = ACTIONS(6261), + [anon_sym_operator] = ACTIONS(6261), + [anon_sym_friend] = ACTIONS(6261), + [anon_sym_concept] = ACTIONS(6261), + }, + [STATE(2293)] = { + [sym_identifier] = ACTIONS(5727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), + [anon_sym_COMMA] = ACTIONS(5729), + [anon_sym_RPAREN] = ACTIONS(5729), + [aux_sym_preproc_if_token2] = ACTIONS(5729), + [aux_sym_preproc_else_token1] = ACTIONS(5729), + [aux_sym_preproc_elif_token1] = ACTIONS(5727), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5729), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5729), + [anon_sym_LPAREN2] = ACTIONS(5729), + [anon_sym_DASH] = ACTIONS(5727), + [anon_sym_PLUS] = ACTIONS(5727), + [anon_sym_STAR] = ACTIONS(5727), + [anon_sym_SLASH] = ACTIONS(5727), + [anon_sym_PERCENT] = ACTIONS(5727), + [anon_sym_PIPE_PIPE] = ACTIONS(5729), + [anon_sym_AMP_AMP] = ACTIONS(5729), + [anon_sym_PIPE] = ACTIONS(5727), + [anon_sym_CARET] = ACTIONS(5727), + [anon_sym_AMP] = ACTIONS(5727), + [anon_sym_EQ_EQ] = ACTIONS(5729), + [anon_sym_BANG_EQ] = ACTIONS(5729), + [anon_sym_GT] = ACTIONS(5727), + [anon_sym_GT_EQ] = ACTIONS(5729), + [anon_sym_LT_EQ] = ACTIONS(5727), + [anon_sym_LT] = ACTIONS(5727), + [anon_sym_LT_LT] = ACTIONS(5727), + [anon_sym_GT_GT] = ACTIONS(5727), + [anon_sym_SEMI] = ACTIONS(5729), + [anon_sym___attribute__] = ACTIONS(5727), + [anon_sym___attribute] = ACTIONS(5727), + [anon_sym_COLON] = ACTIONS(5729), + [anon_sym_LBRACE] = ACTIONS(5729), + [anon_sym_RBRACE] = ACTIONS(5729), + [anon_sym_LBRACK] = ACTIONS(5729), + [anon_sym_RBRACK] = ACTIONS(5729), + [anon_sym_EQ] = ACTIONS(5727), + [anon_sym_QMARK] = ACTIONS(5729), + [anon_sym_STAR_EQ] = ACTIONS(5729), + [anon_sym_SLASH_EQ] = ACTIONS(5729), + [anon_sym_PERCENT_EQ] = ACTIONS(5729), + [anon_sym_PLUS_EQ] = ACTIONS(5729), + [anon_sym_DASH_EQ] = ACTIONS(5729), + [anon_sym_LT_LT_EQ] = ACTIONS(5729), + [anon_sym_GT_GT_EQ] = ACTIONS(5729), + [anon_sym_AMP_EQ] = ACTIONS(5729), + [anon_sym_CARET_EQ] = ACTIONS(5729), + [anon_sym_PIPE_EQ] = ACTIONS(5729), + [anon_sym_and_eq] = ACTIONS(5727), + [anon_sym_or_eq] = ACTIONS(5727), + [anon_sym_xor_eq] = ACTIONS(5727), + [anon_sym_LT_EQ_GT] = ACTIONS(5729), + [anon_sym_or] = ACTIONS(5727), + [anon_sym_and] = ACTIONS(5727), + [anon_sym_bitor] = ACTIONS(5727), + [anon_sym_xor] = ACTIONS(5727), + [anon_sym_bitand] = ACTIONS(5727), + [anon_sym_not_eq] = ACTIONS(5727), + [anon_sym_DASH_DASH] = ACTIONS(5729), + [anon_sym_PLUS_PLUS] = ACTIONS(5729), + [anon_sym_DOT] = ACTIONS(5727), + [anon_sym_DOT_STAR] = ACTIONS(5729), + [anon_sym_DASH_GT] = ACTIONS(5729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5727), + [anon_sym_decltype] = ACTIONS(5727), + }, + [STATE(2294)] = { + [sym_identifier] = ACTIONS(5727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5729), + [anon_sym_COMMA] = ACTIONS(5729), + [anon_sym_RPAREN] = ACTIONS(5729), + [aux_sym_preproc_if_token2] = ACTIONS(5729), + [aux_sym_preproc_else_token1] = ACTIONS(5729), + [aux_sym_preproc_elif_token1] = ACTIONS(5727), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5729), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5729), + [anon_sym_LPAREN2] = ACTIONS(5729), + [anon_sym_DASH] = ACTIONS(5727), + [anon_sym_PLUS] = ACTIONS(5727), + [anon_sym_STAR] = ACTIONS(5727), + [anon_sym_SLASH] = ACTIONS(5727), + [anon_sym_PERCENT] = ACTIONS(5727), + [anon_sym_PIPE_PIPE] = ACTIONS(5729), + [anon_sym_AMP_AMP] = ACTIONS(5729), + [anon_sym_PIPE] = ACTIONS(5727), + [anon_sym_CARET] = ACTIONS(5727), + [anon_sym_AMP] = ACTIONS(5727), + [anon_sym_EQ_EQ] = ACTIONS(5729), + [anon_sym_BANG_EQ] = ACTIONS(5729), + [anon_sym_GT] = ACTIONS(5727), + [anon_sym_GT_EQ] = ACTIONS(5729), + [anon_sym_LT_EQ] = ACTIONS(5727), + [anon_sym_LT] = ACTIONS(5727), + [anon_sym_LT_LT] = ACTIONS(5727), + [anon_sym_GT_GT] = ACTIONS(5727), + [anon_sym_SEMI] = ACTIONS(5729), + [anon_sym___attribute__] = ACTIONS(5727), + [anon_sym___attribute] = ACTIONS(5727), + [anon_sym_COLON] = ACTIONS(5729), + [anon_sym_LBRACE] = ACTIONS(5729), + [anon_sym_RBRACE] = ACTIONS(5729), + [anon_sym_LBRACK] = ACTIONS(5729), + [anon_sym_RBRACK] = ACTIONS(5729), + [anon_sym_EQ] = ACTIONS(5727), + [anon_sym_QMARK] = ACTIONS(5729), + [anon_sym_STAR_EQ] = ACTIONS(5729), + [anon_sym_SLASH_EQ] = ACTIONS(5729), + [anon_sym_PERCENT_EQ] = ACTIONS(5729), + [anon_sym_PLUS_EQ] = ACTIONS(5729), + [anon_sym_DASH_EQ] = ACTIONS(5729), + [anon_sym_LT_LT_EQ] = ACTIONS(5729), + [anon_sym_GT_GT_EQ] = ACTIONS(5729), + [anon_sym_AMP_EQ] = ACTIONS(5729), + [anon_sym_CARET_EQ] = ACTIONS(5729), + [anon_sym_PIPE_EQ] = ACTIONS(5729), + [anon_sym_and_eq] = ACTIONS(5727), + [anon_sym_or_eq] = ACTIONS(5727), + [anon_sym_xor_eq] = ACTIONS(5727), + [anon_sym_LT_EQ_GT] = ACTIONS(5729), + [anon_sym_or] = ACTIONS(5727), + [anon_sym_and] = ACTIONS(5727), + [anon_sym_bitor] = ACTIONS(5727), + [anon_sym_xor] = ACTIONS(5727), + [anon_sym_bitand] = ACTIONS(5727), + [anon_sym_not_eq] = ACTIONS(5727), + [anon_sym_DASH_DASH] = ACTIONS(5729), + [anon_sym_PLUS_PLUS] = ACTIONS(5729), + [anon_sym_DOT] = ACTIONS(5727), + [anon_sym_DOT_STAR] = ACTIONS(5729), + [anon_sym_DASH_GT] = ACTIONS(5729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5727), + [anon_sym_decltype] = ACTIONS(5727), + }, + [STATE(2295)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(5958), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_COMMA] = ACTIONS(5956), + [aux_sym_preproc_if_token2] = ACTIONS(5956), + [aux_sym_preproc_else_token1] = ACTIONS(5956), + [aux_sym_preproc_elif_token1] = ACTIONS(5958), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5956), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(5956), + [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(5956), + [anon_sym_AMP_AMP] = ACTIONS(5956), + [anon_sym_PIPE] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5958), + [anon_sym_AMP] = ACTIONS(5958), + [anon_sym_EQ_EQ] = ACTIONS(5956), + [anon_sym_BANG_EQ] = ACTIONS(5956), + [anon_sym_GT] = ACTIONS(5958), + [anon_sym_GT_EQ] = ACTIONS(5956), + [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___attribute__] = ACTIONS(5958), + [anon_sym___attribute] = ACTIONS(5958), + [anon_sym_LBRACE] = ACTIONS(5956), + [anon_sym_signed] = ACTIONS(6246), + [anon_sym_unsigned] = ACTIONS(6246), + [anon_sym_long] = ACTIONS(6246), + [anon_sym_short] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(5956), + [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_QMARK] = ACTIONS(5956), + [anon_sym_STAR_EQ] = ACTIONS(5956), + [anon_sym_SLASH_EQ] = ACTIONS(5956), + [anon_sym_PERCENT_EQ] = ACTIONS(5956), + [anon_sym_PLUS_EQ] = ACTIONS(5956), + [anon_sym_DASH_EQ] = ACTIONS(5956), + [anon_sym_LT_LT_EQ] = ACTIONS(5956), + [anon_sym_GT_GT_EQ] = ACTIONS(5956), + [anon_sym_AMP_EQ] = ACTIONS(5956), + [anon_sym_CARET_EQ] = ACTIONS(5956), + [anon_sym_PIPE_EQ] = ACTIONS(5956), + [anon_sym_and_eq] = ACTIONS(5958), + [anon_sym_or_eq] = ACTIONS(5958), + [anon_sym_xor_eq] = ACTIONS(5958), + [anon_sym_LT_EQ_GT] = ACTIONS(5956), + [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(5956), + [anon_sym_PLUS_PLUS] = ACTIONS(5956), + [anon_sym_DOT] = ACTIONS(5958), + [anon_sym_DOT_STAR] = ACTIONS(5956), + [anon_sym_DASH_GT] = ACTIONS(5956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5958), + [anon_sym_decltype] = ACTIONS(5958), + }, + [STATE(2296)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(5962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5960), + [anon_sym_COMMA] = ACTIONS(5960), + [aux_sym_preproc_if_token2] = ACTIONS(5960), + [aux_sym_preproc_else_token1] = ACTIONS(5960), + [aux_sym_preproc_elif_token1] = ACTIONS(5962), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5960), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [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(5960), + [anon_sym_AMP_AMP] = ACTIONS(5960), + [anon_sym_PIPE] = ACTIONS(5962), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5962), + [anon_sym_EQ_EQ] = ACTIONS(5960), + [anon_sym_BANG_EQ] = ACTIONS(5960), + [anon_sym_GT] = ACTIONS(5962), + [anon_sym_GT_EQ] = ACTIONS(5960), + [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___attribute__] = ACTIONS(5962), + [anon_sym___attribute] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5960), + [anon_sym_signed] = ACTIONS(6246), + [anon_sym_unsigned] = ACTIONS(6246), + [anon_sym_long] = ACTIONS(6246), + [anon_sym_short] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(5960), + [anon_sym_EQ] = ACTIONS(5962), + [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(5962), + [anon_sym_or_eq] = ACTIONS(5962), + [anon_sym_xor_eq] = ACTIONS(5962), + [anon_sym_LT_EQ_GT] = ACTIONS(5960), + [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(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5960), + [anon_sym_DOT] = ACTIONS(5962), + [anon_sym_DOT_STAR] = ACTIONS(5960), + [anon_sym_DASH_GT] = ACTIONS(5960), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5962), + [anon_sym_decltype] = ACTIONS(5962), + }, + [STATE(2297)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2308), + [sym_identifier] = ACTIONS(5966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5964), + [anon_sym_COMMA] = ACTIONS(5964), + [aux_sym_preproc_if_token2] = ACTIONS(5964), + [aux_sym_preproc_else_token1] = ACTIONS(5964), + [aux_sym_preproc_elif_token1] = ACTIONS(5966), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5964), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5964), + [anon_sym_LPAREN2] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5966), + [anon_sym_PLUS] = ACTIONS(5966), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5966), + [anon_sym_PIPE_PIPE] = ACTIONS(5964), + [anon_sym_AMP_AMP] = ACTIONS(5964), + [anon_sym_PIPE] = ACTIONS(5966), + [anon_sym_CARET] = ACTIONS(5966), + [anon_sym_AMP] = ACTIONS(5966), + [anon_sym_EQ_EQ] = ACTIONS(5964), + [anon_sym_BANG_EQ] = ACTIONS(5964), + [anon_sym_GT] = ACTIONS(5966), + [anon_sym_GT_EQ] = ACTIONS(5964), + [anon_sym_LT_EQ] = ACTIONS(5966), + [anon_sym_LT] = ACTIONS(5966), + [anon_sym_LT_LT] = ACTIONS(5966), + [anon_sym_GT_GT] = ACTIONS(5966), + [anon_sym___attribute__] = ACTIONS(5966), + [anon_sym___attribute] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(5964), + [anon_sym_signed] = ACTIONS(6273), + [anon_sym_unsigned] = ACTIONS(6273), + [anon_sym_long] = ACTIONS(6273), + [anon_sym_short] = ACTIONS(6273), + [anon_sym_LBRACK] = ACTIONS(5964), + [anon_sym_EQ] = ACTIONS(5966), + [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(5966), + [anon_sym_or_eq] = ACTIONS(5966), + [anon_sym_xor_eq] = ACTIONS(5966), + [anon_sym_LT_EQ_GT] = ACTIONS(5964), + [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(5964), + [anon_sym_PLUS_PLUS] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5966), + [anon_sym_DOT_STAR] = ACTIONS(5964), + [anon_sym_DASH_GT] = ACTIONS(5964), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5966), + [anon_sym_decltype] = ACTIONS(5966), + }, + [STATE(2298)] = { + [sym_argument_list] = STATE(2536), + [sym_initializer_list] = STATE(2536), + [sym_identifier] = ACTIONS(6275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6277), + [anon_sym_COMMA] = ACTIONS(6277), + [anon_sym_RPAREN] = ACTIONS(6277), + [aux_sym_preproc_if_token2] = ACTIONS(6277), + [aux_sym_preproc_else_token1] = ACTIONS(6277), + [aux_sym_preproc_elif_token1] = ACTIONS(6275), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6277), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6277), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(6275), + [anon_sym_PLUS] = ACTIONS(6275), + [anon_sym_STAR] = ACTIONS(6275), + [anon_sym_SLASH] = ACTIONS(6275), + [anon_sym_PERCENT] = ACTIONS(6275), + [anon_sym_PIPE_PIPE] = ACTIONS(6277), + [anon_sym_AMP_AMP] = ACTIONS(6277), + [anon_sym_PIPE] = ACTIONS(6275), + [anon_sym_CARET] = ACTIONS(6275), + [anon_sym_AMP] = ACTIONS(6275), + [anon_sym_EQ_EQ] = ACTIONS(6277), + [anon_sym_BANG_EQ] = ACTIONS(6277), + [anon_sym_GT] = ACTIONS(6275), + [anon_sym_GT_EQ] = ACTIONS(6277), + [anon_sym_LT_EQ] = ACTIONS(6275), + [anon_sym_LT] = ACTIONS(6275), + [anon_sym_LT_LT] = ACTIONS(6275), + [anon_sym_GT_GT] = ACTIONS(6275), + [anon_sym_SEMI] = ACTIONS(6277), + [anon_sym___attribute__] = ACTIONS(6275), + [anon_sym___attribute] = ACTIONS(6275), + [anon_sym_COLON] = ACTIONS(6277), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(6277), + [anon_sym_LBRACK] = ACTIONS(6277), + [anon_sym_RBRACK] = ACTIONS(6277), + [anon_sym_EQ] = ACTIONS(6275), + [anon_sym_QMARK] = ACTIONS(6277), + [anon_sym_STAR_EQ] = ACTIONS(6277), + [anon_sym_SLASH_EQ] = ACTIONS(6277), + [anon_sym_PERCENT_EQ] = ACTIONS(6277), + [anon_sym_PLUS_EQ] = ACTIONS(6277), + [anon_sym_DASH_EQ] = ACTIONS(6277), + [anon_sym_LT_LT_EQ] = ACTIONS(6277), + [anon_sym_GT_GT_EQ] = ACTIONS(6277), + [anon_sym_AMP_EQ] = ACTIONS(6277), + [anon_sym_CARET_EQ] = ACTIONS(6277), + [anon_sym_PIPE_EQ] = ACTIONS(6277), + [anon_sym_and_eq] = ACTIONS(6275), + [anon_sym_or_eq] = ACTIONS(6275), + [anon_sym_xor_eq] = ACTIONS(6275), + [anon_sym_LT_EQ_GT] = ACTIONS(6277), + [anon_sym_or] = ACTIONS(6275), + [anon_sym_and] = ACTIONS(6275), + [anon_sym_bitor] = ACTIONS(6275), + [anon_sym_xor] = ACTIONS(6275), + [anon_sym_bitand] = ACTIONS(6275), + [anon_sym_not_eq] = ACTIONS(6275), + [anon_sym_DASH_DASH] = ACTIONS(6277), + [anon_sym_PLUS_PLUS] = ACTIONS(6277), + [anon_sym_DOT] = ACTIONS(6275), + [anon_sym_DOT_STAR] = ACTIONS(6277), + [anon_sym_DASH_GT] = ACTIONS(6277), + [sym_comment] = ACTIONS(3), + }, + [STATE(2299)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [sym_identifier] = ACTIONS(5982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5980), + [anon_sym_COMMA] = ACTIONS(5980), + [aux_sym_preproc_if_token2] = ACTIONS(5980), + [aux_sym_preproc_else_token1] = ACTIONS(5980), + [aux_sym_preproc_elif_token1] = ACTIONS(5982), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5980), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5980), + [anon_sym_LPAREN2] = ACTIONS(5980), + [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(5980), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE] = ACTIONS(5982), + [anon_sym_CARET] = ACTIONS(5982), + [anon_sym_AMP] = ACTIONS(5982), + [anon_sym_EQ_EQ] = ACTIONS(5980), + [anon_sym_BANG_EQ] = ACTIONS(5980), + [anon_sym_GT] = ACTIONS(5982), + [anon_sym_GT_EQ] = ACTIONS(5980), + [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___attribute__] = ACTIONS(5982), + [anon_sym___attribute] = ACTIONS(5982), + [anon_sym_LBRACE] = ACTIONS(5980), + [anon_sym_signed] = ACTIONS(6246), + [anon_sym_unsigned] = ACTIONS(6246), + [anon_sym_long] = ACTIONS(6246), + [anon_sym_short] = ACTIONS(6246), + [anon_sym_LBRACK] = ACTIONS(5980), + [anon_sym_EQ] = ACTIONS(5982), + [anon_sym_QMARK] = ACTIONS(5980), + [anon_sym_STAR_EQ] = ACTIONS(5980), + [anon_sym_SLASH_EQ] = ACTIONS(5980), + [anon_sym_PERCENT_EQ] = ACTIONS(5980), + [anon_sym_PLUS_EQ] = ACTIONS(5980), + [anon_sym_DASH_EQ] = ACTIONS(5980), + [anon_sym_LT_LT_EQ] = ACTIONS(5980), + [anon_sym_GT_GT_EQ] = ACTIONS(5980), + [anon_sym_AMP_EQ] = ACTIONS(5980), + [anon_sym_CARET_EQ] = ACTIONS(5980), + [anon_sym_PIPE_EQ] = ACTIONS(5980), + [anon_sym_and_eq] = ACTIONS(5982), + [anon_sym_or_eq] = ACTIONS(5982), + [anon_sym_xor_eq] = ACTIONS(5982), + [anon_sym_LT_EQ_GT] = ACTIONS(5980), + [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(5980), + [anon_sym_PLUS_PLUS] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5982), + [anon_sym_DOT_STAR] = ACTIONS(5980), + [anon_sym_DASH_GT] = ACTIONS(5980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5982), + [anon_sym_decltype] = ACTIONS(5982), + }, + [STATE(2300)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2275), + [sym_identifier] = ACTIONS(5807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [aux_sym_preproc_if_token2] = ACTIONS(5809), + [aux_sym_preproc_else_token1] = ACTIONS(5809), + [aux_sym_preproc_elif_token1] = ACTIONS(5807), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5809), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5809), + [anon_sym_LPAREN2] = ACTIONS(5809), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_PERCENT] = ACTIONS(5807), + [anon_sym_PIPE_PIPE] = ACTIONS(5809), + [anon_sym_AMP_AMP] = ACTIONS(5809), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym_AMP] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5809), + [anon_sym_BANG_EQ] = ACTIONS(5809), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_GT_EQ] = ACTIONS(5809), + [anon_sym_LT_EQ] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_LT_LT] = ACTIONS(5807), + [anon_sym_GT_GT] = ACTIONS(5807), + [anon_sym___attribute__] = ACTIONS(5807), + [anon_sym___attribute] = ACTIONS(5807), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_signed] = ACTIONS(6279), + [anon_sym_unsigned] = ACTIONS(6279), + [anon_sym_long] = ACTIONS(6279), + [anon_sym_short] = ACTIONS(6279), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5807), + [anon_sym_QMARK] = ACTIONS(5809), + [anon_sym_STAR_EQ] = ACTIONS(5809), + [anon_sym_SLASH_EQ] = ACTIONS(5809), + [anon_sym_PERCENT_EQ] = ACTIONS(5809), + [anon_sym_PLUS_EQ] = ACTIONS(5809), + [anon_sym_DASH_EQ] = ACTIONS(5809), + [anon_sym_LT_LT_EQ] = ACTIONS(5809), + [anon_sym_GT_GT_EQ] = ACTIONS(5809), + [anon_sym_AMP_EQ] = ACTIONS(5809), + [anon_sym_CARET_EQ] = ACTIONS(5809), + [anon_sym_PIPE_EQ] = ACTIONS(5809), + [anon_sym_and_eq] = ACTIONS(5807), + [anon_sym_or_eq] = ACTIONS(5807), + [anon_sym_xor_eq] = ACTIONS(5807), + [anon_sym_LT_EQ_GT] = ACTIONS(5809), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_and] = ACTIONS(5807), + [anon_sym_bitor] = ACTIONS(5807), + [anon_sym_xor] = ACTIONS(5807), + [anon_sym_bitand] = ACTIONS(5807), + [anon_sym_not_eq] = ACTIONS(5807), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_DOT_STAR] = ACTIONS(5809), + [anon_sym_DASH_GT] = ACTIONS(5809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5807), + [anon_sym_decltype] = ACTIONS(5807), + }, + [STATE(2301)] = { + [sym_identifier] = ACTIONS(5470), [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_TILDE] = ACTIONS(5472), + [anon_sym_STAR] = ACTIONS(5472), [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___extension__] = ACTIONS(5470), + [anon_sym_virtual] = ACTIONS(5470), + [anon_sym_extern] = ACTIONS(5470), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_using] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), + [anon_sym___declspec] = ACTIONS(5470), + [anon_sym___based] = ACTIONS(5470), + [anon_sym___cdecl] = ACTIONS(5470), + [anon_sym___clrcall] = ACTIONS(5470), + [anon_sym___stdcall] = ACTIONS(5470), + [anon_sym___fastcall] = ACTIONS(5470), + [anon_sym___thiscall] = ACTIONS(5470), + [anon_sym___vectorcall] = ACTIONS(5470), + [anon_sym_signed] = ACTIONS(5470), + [anon_sym_unsigned] = ACTIONS(5470), + [anon_sym_long] = ACTIONS(5470), + [anon_sym_short] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_static] = ACTIONS(5470), + [anon_sym_register] = ACTIONS(5470), + [anon_sym_inline] = ACTIONS(5470), + [anon_sym___inline] = ACTIONS(5470), + [anon_sym___inline__] = ACTIONS(5470), + [anon_sym___forceinline] = ACTIONS(5470), + [anon_sym_thread_local] = ACTIONS(5470), + [anon_sym___thread] = ACTIONS(5470), + [anon_sym_const] = ACTIONS(5470), + [anon_sym_constexpr] = ACTIONS(5470), + [anon_sym_volatile] = ACTIONS(5470), + [anon_sym_restrict] = ACTIONS(5470), + [anon_sym___restrict__] = ACTIONS(5470), + [anon_sym__Atomic] = ACTIONS(5470), + [anon_sym__Noreturn] = ACTIONS(5470), + [anon_sym_noreturn] = ACTIONS(5470), + [anon_sym__Nonnull] = ACTIONS(5470), + [anon_sym_mutable] = ACTIONS(5470), + [anon_sym_constinit] = ACTIONS(5470), + [anon_sym_consteval] = ACTIONS(5470), + [anon_sym_alignas] = ACTIONS(5470), + [anon_sym__Alignas] = ACTIONS(5470), + [sym_primitive_type] = ACTIONS(5470), + [anon_sym_enum] = ACTIONS(5470), + [anon_sym_class] = ACTIONS(5470), + [anon_sym_struct] = ACTIONS(5470), + [anon_sym_union] = ACTIONS(5470), [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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_explicit] = ACTIONS(5470), + [anon_sym_typename] = ACTIONS(5470), + [anon_sym_template] = ACTIONS(5470), + [anon_sym_operator] = ACTIONS(5470), + [anon_sym_friend] = ACTIONS(5470), + [anon_sym_concept] = ACTIONS(5470), }, - [STATE(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), + [STATE(2302)] = { + [sym_identifier] = ACTIONS(5470), + [anon_sym_LPAREN2] = ACTIONS(5472), + [anon_sym_TILDE] = ACTIONS(5472), + [anon_sym_STAR] = ACTIONS(5472), + [anon_sym_PIPE_PIPE] = ACTIONS(5472), + [anon_sym_AMP_AMP] = ACTIONS(5472), + [anon_sym_AMP] = ACTIONS(5470), + [anon_sym___extension__] = ACTIONS(5470), + [anon_sym_virtual] = ACTIONS(5470), + [anon_sym_extern] = ACTIONS(5470), + [anon_sym___attribute__] = ACTIONS(5470), + [anon_sym___attribute] = ACTIONS(5470), + [anon_sym_using] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5474), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5472), + [anon_sym___declspec] = ACTIONS(5470), + [anon_sym___based] = ACTIONS(5470), + [anon_sym___cdecl] = ACTIONS(5470), + [anon_sym___clrcall] = ACTIONS(5470), + [anon_sym___stdcall] = ACTIONS(5470), + [anon_sym___fastcall] = ACTIONS(5470), + [anon_sym___thiscall] = ACTIONS(5470), + [anon_sym___vectorcall] = ACTIONS(5470), + [anon_sym_signed] = ACTIONS(5470), + [anon_sym_unsigned] = ACTIONS(5470), + [anon_sym_long] = ACTIONS(5470), + [anon_sym_short] = ACTIONS(5470), + [anon_sym_LBRACK] = ACTIONS(5470), + [anon_sym_static] = ACTIONS(5470), + [anon_sym_register] = ACTIONS(5470), + [anon_sym_inline] = ACTIONS(5470), + [anon_sym___inline] = ACTIONS(5470), + [anon_sym___inline__] = ACTIONS(5470), + [anon_sym___forceinline] = ACTIONS(5470), + [anon_sym_thread_local] = ACTIONS(5470), + [anon_sym___thread] = ACTIONS(5470), + [anon_sym_const] = ACTIONS(5470), + [anon_sym_constexpr] = ACTIONS(5470), + [anon_sym_volatile] = ACTIONS(5470), + [anon_sym_restrict] = ACTIONS(5470), + [anon_sym___restrict__] = ACTIONS(5470), + [anon_sym__Atomic] = ACTIONS(5470), + [anon_sym__Noreturn] = ACTIONS(5470), + [anon_sym_noreturn] = ACTIONS(5470), + [anon_sym__Nonnull] = ACTIONS(5470), + [anon_sym_mutable] = ACTIONS(5470), + [anon_sym_constinit] = ACTIONS(5470), + [anon_sym_consteval] = ACTIONS(5470), + [anon_sym_alignas] = ACTIONS(5470), + [anon_sym__Alignas] = ACTIONS(5470), + [sym_primitive_type] = ACTIONS(5470), + [anon_sym_enum] = ACTIONS(5470), + [anon_sym_class] = ACTIONS(5470), + [anon_sym_struct] = ACTIONS(5470), + [anon_sym_union] = ACTIONS(5470), + [anon_sym_or] = ACTIONS(5470), + [anon_sym_and] = ACTIONS(5470), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5470), + [anon_sym_decltype] = ACTIONS(5470), + [anon_sym_explicit] = ACTIONS(5470), + [anon_sym_typename] = ACTIONS(5470), + [anon_sym_template] = ACTIONS(5470), + [anon_sym_operator] = ACTIONS(5470), + [anon_sym_friend] = ACTIONS(5470), + [anon_sym_concept] = ACTIONS(5470), }, - [STATE(2311)] = { + [STATE(2303)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5511), + [anon_sym_COMMA] = ACTIONS(5511), + [anon_sym_RPAREN] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5511), + [anon_sym_DASH] = ACTIONS(5509), + [anon_sym_PLUS] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_SLASH] = ACTIONS(5509), + [anon_sym_PERCENT] = ACTIONS(5509), + [anon_sym_PIPE_PIPE] = ACTIONS(5511), + [anon_sym_AMP_AMP] = ACTIONS(5511), + [anon_sym_PIPE] = ACTIONS(5509), + [anon_sym_CARET] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5509), + [anon_sym_EQ_EQ] = ACTIONS(5511), + [anon_sym_BANG_EQ] = ACTIONS(5511), + [anon_sym_GT] = ACTIONS(5509), + [anon_sym_GT_EQ] = ACTIONS(5511), + [anon_sym_LT_EQ] = ACTIONS(5509), + [anon_sym_LT] = ACTIONS(5509), + [anon_sym_LT_LT] = ACTIONS(5509), + [anon_sym_GT_GT] = ACTIONS(5509), + [anon_sym_SEMI] = ACTIONS(5511), + [anon_sym_COLON] = ACTIONS(5511), + [anon_sym_RBRACE] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_RBRACK] = ACTIONS(5511), + [anon_sym_EQ] = ACTIONS(5509), + [anon_sym_QMARK] = ACTIONS(5511), + [anon_sym_STAR_EQ] = ACTIONS(5511), + [anon_sym_SLASH_EQ] = ACTIONS(5511), + [anon_sym_PERCENT_EQ] = ACTIONS(5511), + [anon_sym_PLUS_EQ] = ACTIONS(5511), + [anon_sym_DASH_EQ] = ACTIONS(5511), + [anon_sym_LT_LT_EQ] = ACTIONS(5511), + [anon_sym_GT_GT_EQ] = ACTIONS(5511), + [anon_sym_AMP_EQ] = ACTIONS(5511), + [anon_sym_CARET_EQ] = ACTIONS(5511), + [anon_sym_PIPE_EQ] = ACTIONS(5511), + [anon_sym_and_eq] = ACTIONS(5509), + [anon_sym_or_eq] = ACTIONS(5509), + [anon_sym_xor_eq] = ACTIONS(5509), + [anon_sym_LT_EQ_GT] = ACTIONS(5511), + [anon_sym_or] = ACTIONS(5509), + [anon_sym_and] = ACTIONS(5509), + [anon_sym_bitor] = ACTIONS(5509), + [anon_sym_xor] = ACTIONS(5509), + [anon_sym_bitand] = ACTIONS(5509), + [anon_sym_not_eq] = ACTIONS(5509), + [anon_sym_DASH_DASH] = ACTIONS(5511), + [anon_sym_PLUS_PLUS] = ACTIONS(5511), + [anon_sym_DOT] = ACTIONS(5509), + [anon_sym_DOT_STAR] = ACTIONS(5511), + [anon_sym_DASH_GT] = ACTIONS(5511), + [anon_sym_L_DQUOTE] = ACTIONS(5511), + [anon_sym_u_DQUOTE] = ACTIONS(5511), + [anon_sym_U_DQUOTE] = ACTIONS(5511), + [anon_sym_u8_DQUOTE] = ACTIONS(5511), + [anon_sym_DQUOTE] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5511), + [anon_sym_LR_DQUOTE] = ACTIONS(5511), + [anon_sym_uR_DQUOTE] = ACTIONS(5511), + [anon_sym_UR_DQUOTE] = ACTIONS(5511), + [anon_sym_u8R_DQUOTE] = ACTIONS(5511), + [sym_literal_suffix] = ACTIONS(5509), + }, + [STATE(2304)] = { + [sym_identifier] = ACTIONS(5709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5711), + [anon_sym_COMMA] = ACTIONS(5711), + [anon_sym_RPAREN] = ACTIONS(5711), + [aux_sym_preproc_if_token2] = ACTIONS(5711), + [aux_sym_preproc_else_token1] = ACTIONS(5711), + [aux_sym_preproc_elif_token1] = ACTIONS(5709), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5711), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5711), + [anon_sym_LPAREN2] = ACTIONS(5711), + [anon_sym_DASH] = ACTIONS(5709), + [anon_sym_PLUS] = ACTIONS(5709), + [anon_sym_STAR] = ACTIONS(5709), + [anon_sym_SLASH] = ACTIONS(5709), + [anon_sym_PERCENT] = ACTIONS(5709), + [anon_sym_PIPE_PIPE] = ACTIONS(5711), + [anon_sym_AMP_AMP] = ACTIONS(5711), + [anon_sym_PIPE] = ACTIONS(5709), + [anon_sym_CARET] = ACTIONS(5709), + [anon_sym_AMP] = ACTIONS(5709), + [anon_sym_EQ_EQ] = ACTIONS(5711), + [anon_sym_BANG_EQ] = ACTIONS(5711), + [anon_sym_GT] = ACTIONS(5709), + [anon_sym_GT_EQ] = ACTIONS(5711), + [anon_sym_LT_EQ] = ACTIONS(5709), + [anon_sym_LT] = ACTIONS(5709), + [anon_sym_LT_LT] = ACTIONS(5709), + [anon_sym_GT_GT] = ACTIONS(5709), + [anon_sym_SEMI] = ACTIONS(5711), + [anon_sym___attribute__] = ACTIONS(5709), + [anon_sym___attribute] = ACTIONS(5709), + [anon_sym_COLON] = ACTIONS(5711), + [anon_sym_LBRACE] = ACTIONS(5711), + [anon_sym_RBRACE] = ACTIONS(5711), + [anon_sym_LBRACK] = ACTIONS(5711), + [anon_sym_RBRACK] = ACTIONS(5711), + [anon_sym_EQ] = ACTIONS(5709), + [anon_sym_QMARK] = ACTIONS(5711), + [anon_sym_STAR_EQ] = ACTIONS(5711), + [anon_sym_SLASH_EQ] = ACTIONS(5711), + [anon_sym_PERCENT_EQ] = ACTIONS(5711), + [anon_sym_PLUS_EQ] = ACTIONS(5711), + [anon_sym_DASH_EQ] = ACTIONS(5711), + [anon_sym_LT_LT_EQ] = ACTIONS(5711), + [anon_sym_GT_GT_EQ] = ACTIONS(5711), + [anon_sym_AMP_EQ] = ACTIONS(5711), + [anon_sym_CARET_EQ] = ACTIONS(5711), + [anon_sym_PIPE_EQ] = ACTIONS(5711), + [anon_sym_and_eq] = ACTIONS(5709), + [anon_sym_or_eq] = ACTIONS(5709), + [anon_sym_xor_eq] = ACTIONS(5709), + [anon_sym_LT_EQ_GT] = ACTIONS(5711), + [anon_sym_or] = ACTIONS(5709), + [anon_sym_and] = ACTIONS(5709), + [anon_sym_bitor] = ACTIONS(5709), + [anon_sym_xor] = ACTIONS(5709), + [anon_sym_bitand] = ACTIONS(5709), + [anon_sym_not_eq] = ACTIONS(5709), + [anon_sym_DASH_DASH] = ACTIONS(5711), + [anon_sym_PLUS_PLUS] = ACTIONS(5711), + [anon_sym_DOT] = ACTIONS(5709), + [anon_sym_DOT_STAR] = ACTIONS(5711), + [anon_sym_DASH_GT] = ACTIONS(5711), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5709), + [anon_sym_decltype] = ACTIONS(5709), + }, + [STATE(2305)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6216), + [anon_sym_COMMA] = ACTIONS(6281), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(6283), + [anon_sym_EQ] = ACTIONS(6226), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(6111), + [anon_sym_SLASH_EQ] = ACTIONS(6111), + [anon_sym_PERCENT_EQ] = ACTIONS(6111), + [anon_sym_PLUS_EQ] = ACTIONS(6111), + [anon_sym_DASH_EQ] = ACTIONS(6111), + [anon_sym_LT_LT_EQ] = ACTIONS(6111), + [anon_sym_GT_GT_EQ] = ACTIONS(6111), + [anon_sym_AMP_EQ] = ACTIONS(6111), + [anon_sym_CARET_EQ] = ACTIONS(6111), + [anon_sym_PIPE_EQ] = ACTIONS(6111), + [anon_sym_and_eq] = ACTIONS(6111), + [anon_sym_or_eq] = ACTIONS(6111), + [anon_sym_xor_eq] = ACTIONS(6111), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(2306)] = { [sym_identifier] = ACTIONS(5521), [anon_sym_LPAREN2] = ACTIONS(5523), [anon_sym_TILDE] = ACTIONS(5523), @@ -292145,7 +292507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(5521), [anon_sym___attribute] = ACTIONS(5521), [anon_sym_using] = ACTIONS(5521), - [anon_sym_COLON_COLON] = ACTIONS(5519), + [anon_sym_COLON_COLON] = ACTIONS(5523), [anon_sym_LBRACK_LBRACK] = ACTIONS(5523), [anon_sym___declspec] = ACTIONS(5521), [anon_sym___based] = ACTIONS(5521), @@ -292199,827 +292561,623 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_friend] = ACTIONS(5521), [anon_sym_concept] = ACTIONS(5521), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(2307)] = { + [sym_string_literal] = STATE(2313), + [sym_raw_string_literal] = STATE(2313), + [aux_sym_concatenated_string_repeat1] = STATE(2313), + [sym_identifier] = ACTIONS(6286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5429), + [anon_sym_COMMA] = ACTIONS(5429), + [anon_sym_LPAREN2] = ACTIONS(5429), + [anon_sym_DASH] = ACTIONS(5431), + [anon_sym_PLUS] = ACTIONS(5431), + [anon_sym_STAR] = ACTIONS(5431), + [anon_sym_SLASH] = ACTIONS(5431), + [anon_sym_PERCENT] = ACTIONS(5431), + [anon_sym_PIPE_PIPE] = ACTIONS(5429), + [anon_sym_AMP_AMP] = ACTIONS(5429), + [anon_sym_PIPE] = ACTIONS(5431), + [anon_sym_CARET] = ACTIONS(5431), + [anon_sym_AMP] = ACTIONS(5431), + [anon_sym_EQ_EQ] = ACTIONS(5429), + [anon_sym_BANG_EQ] = ACTIONS(5429), + [anon_sym_GT] = ACTIONS(5431), + [anon_sym_GT_EQ] = ACTIONS(5431), + [anon_sym_LT_EQ] = ACTIONS(5431), + [anon_sym_LT] = ACTIONS(5431), + [anon_sym_LT_LT] = ACTIONS(5431), + [anon_sym_GT_GT] = ACTIONS(5431), + [anon_sym_LBRACK] = ACTIONS(5429), + [anon_sym_EQ] = ACTIONS(5431), + [anon_sym_QMARK] = ACTIONS(5429), + [anon_sym_STAR_EQ] = ACTIONS(5429), + [anon_sym_SLASH_EQ] = ACTIONS(5429), + [anon_sym_PERCENT_EQ] = ACTIONS(5429), + [anon_sym_PLUS_EQ] = ACTIONS(5429), + [anon_sym_DASH_EQ] = ACTIONS(5429), + [anon_sym_LT_LT_EQ] = ACTIONS(5429), + [anon_sym_GT_GT_EQ] = ACTIONS(5431), + [anon_sym_AMP_EQ] = ACTIONS(5429), + [anon_sym_CARET_EQ] = ACTIONS(5429), + [anon_sym_PIPE_EQ] = ACTIONS(5429), + [anon_sym_and_eq] = ACTIONS(5431), + [anon_sym_or_eq] = ACTIONS(5431), + [anon_sym_xor_eq] = ACTIONS(5431), + [anon_sym_LT_EQ_GT] = ACTIONS(5429), + [anon_sym_or] = ACTIONS(5431), + [anon_sym_and] = ACTIONS(5431), + [anon_sym_bitor] = ACTIONS(5431), + [anon_sym_xor] = ACTIONS(5431), + [anon_sym_bitand] = ACTIONS(5431), + [anon_sym_not_eq] = ACTIONS(5431), + [anon_sym_DASH_DASH] = ACTIONS(5429), + [anon_sym_PLUS_PLUS] = ACTIONS(5429), + [anon_sym_DOT] = ACTIONS(5431), + [anon_sym_DOT_STAR] = ACTIONS(5429), + [anon_sym_DASH_GT] = ACTIONS(5429), + [anon_sym_L_DQUOTE] = ACTIONS(6251), + [anon_sym_u_DQUOTE] = ACTIONS(6251), + [anon_sym_U_DQUOTE] = ACTIONS(6251), + [anon_sym_u8_DQUOTE] = ACTIONS(6251), + [anon_sym_DQUOTE] = ACTIONS(6251), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5429), + [anon_sym_R_DQUOTE] = ACTIONS(6253), + [anon_sym_LR_DQUOTE] = ACTIONS(6253), + [anon_sym_uR_DQUOTE] = ACTIONS(6253), + [anon_sym_UR_DQUOTE] = ACTIONS(6253), + [anon_sym_u8R_DQUOTE] = ACTIONS(6253), + [sym_literal_suffix] = ACTIONS(5431), }, - [STATE(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), + [STATE(2308)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [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(6246), + [anon_sym_unsigned] = ACTIONS(6246), + [anon_sym_long] = ACTIONS(6246), + [anon_sym_short] = ACTIONS(6246), + [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), }, - [STATE(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), + [STATE(2309)] = { + [sym_attribute_declaration] = STATE(2345), + [aux_sym_attributed_declarator_repeat1] = STATE(2345), + [sym_identifier] = ACTIONS(6288), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6290), + [anon_sym_COMMA] = ACTIONS(6290), + [anon_sym_RPAREN] = ACTIONS(6290), + [aux_sym_preproc_if_token2] = ACTIONS(6290), + [aux_sym_preproc_else_token1] = ACTIONS(6290), + [aux_sym_preproc_elif_token1] = ACTIONS(6288), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6290), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6290), + [anon_sym_LPAREN2] = ACTIONS(6290), + [anon_sym_DASH] = ACTIONS(6288), + [anon_sym_PLUS] = ACTIONS(6288), + [anon_sym_STAR] = ACTIONS(6288), + [anon_sym_SLASH] = ACTIONS(6288), + [anon_sym_PERCENT] = ACTIONS(6288), + [anon_sym_PIPE_PIPE] = ACTIONS(6290), + [anon_sym_AMP_AMP] = ACTIONS(6290), + [anon_sym_PIPE] = ACTIONS(6288), + [anon_sym_CARET] = ACTIONS(6288), + [anon_sym_AMP] = ACTIONS(6288), + [anon_sym_EQ_EQ] = ACTIONS(6290), + [anon_sym_BANG_EQ] = ACTIONS(6290), + [anon_sym_GT] = ACTIONS(6288), + [anon_sym_GT_EQ] = ACTIONS(6290), + [anon_sym_LT_EQ] = ACTIONS(6288), + [anon_sym_LT] = ACTIONS(6288), + [anon_sym_LT_LT] = ACTIONS(6288), + [anon_sym_GT_GT] = ACTIONS(6288), + [anon_sym_SEMI] = ACTIONS(6290), + [anon_sym___attribute__] = ACTIONS(6288), + [anon_sym___attribute] = ACTIONS(6288), + [anon_sym_COLON] = ACTIONS(6290), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6169), + [anon_sym_RBRACE] = ACTIONS(6290), + [anon_sym_LBRACK] = ACTIONS(6288), + [anon_sym_RBRACK] = ACTIONS(6290), + [anon_sym_EQ] = ACTIONS(6288), + [anon_sym_QMARK] = ACTIONS(6290), + [anon_sym_STAR_EQ] = ACTIONS(6290), + [anon_sym_SLASH_EQ] = ACTIONS(6290), + [anon_sym_PERCENT_EQ] = ACTIONS(6290), + [anon_sym_PLUS_EQ] = ACTIONS(6290), + [anon_sym_DASH_EQ] = ACTIONS(6290), + [anon_sym_LT_LT_EQ] = ACTIONS(6290), + [anon_sym_GT_GT_EQ] = ACTIONS(6290), + [anon_sym_AMP_EQ] = ACTIONS(6290), + [anon_sym_CARET_EQ] = ACTIONS(6290), + [anon_sym_PIPE_EQ] = ACTIONS(6290), + [anon_sym_and_eq] = ACTIONS(6288), + [anon_sym_or_eq] = ACTIONS(6288), + [anon_sym_xor_eq] = ACTIONS(6288), + [anon_sym_LT_EQ_GT] = ACTIONS(6290), + [anon_sym_or] = ACTIONS(6288), + [anon_sym_and] = ACTIONS(6288), + [anon_sym_bitor] = ACTIONS(6288), + [anon_sym_xor] = ACTIONS(6288), + [anon_sym_bitand] = ACTIONS(6288), + [anon_sym_not_eq] = ACTIONS(6288), + [anon_sym_DASH_DASH] = ACTIONS(6290), + [anon_sym_PLUS_PLUS] = ACTIONS(6290), + [anon_sym_DOT] = ACTIONS(6288), + [anon_sym_DOT_STAR] = ACTIONS(6290), + [anon_sym_DASH_GT] = ACTIONS(6290), [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), - }, - [STATE(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), - }, - [STATE(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), }, - [STATE(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), + [STATE(2310)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [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(6246), + [anon_sym_unsigned] = ACTIONS(6246), + [anon_sym_long] = ACTIONS(6246), + [anon_sym_short] = ACTIONS(6246), + [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), }, - [STATE(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), + [STATE(2311)] = { + [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(5697), - [anon_sym_decltype] = ACTIONS(5697), + [sym_auto] = ACTIONS(5693), + [anon_sym_decltype] = ACTIONS(5693), }, - [STATE(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), + [STATE(2312)] = { + [sym_identifier] = ACTIONS(5723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5725), + [anon_sym_COMMA] = ACTIONS(5725), + [anon_sym_RPAREN] = ACTIONS(5725), + [aux_sym_preproc_if_token2] = ACTIONS(5725), + [aux_sym_preproc_else_token1] = ACTIONS(5725), + [aux_sym_preproc_elif_token1] = ACTIONS(5723), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5725), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5725), + [anon_sym_LPAREN2] = ACTIONS(5725), + [anon_sym_DASH] = ACTIONS(5723), + [anon_sym_PLUS] = ACTIONS(5723), + [anon_sym_STAR] = ACTIONS(5723), + [anon_sym_SLASH] = ACTIONS(5723), + [anon_sym_PERCENT] = ACTIONS(5723), + [anon_sym_PIPE_PIPE] = ACTIONS(5725), + [anon_sym_AMP_AMP] = ACTIONS(5725), + [anon_sym_PIPE] = ACTIONS(5723), + [anon_sym_CARET] = ACTIONS(5723), + [anon_sym_AMP] = ACTIONS(5723), + [anon_sym_EQ_EQ] = ACTIONS(5725), + [anon_sym_BANG_EQ] = ACTIONS(5725), + [anon_sym_GT] = ACTIONS(5723), + [anon_sym_GT_EQ] = ACTIONS(5725), + [anon_sym_LT_EQ] = ACTIONS(5723), + [anon_sym_LT] = ACTIONS(5723), + [anon_sym_LT_LT] = ACTIONS(5723), + [anon_sym_GT_GT] = ACTIONS(5723), + [anon_sym_SEMI] = ACTIONS(5725), + [anon_sym___attribute__] = ACTIONS(5723), + [anon_sym___attribute] = ACTIONS(5723), + [anon_sym_COLON] = ACTIONS(5725), + [anon_sym_LBRACE] = ACTIONS(5725), + [anon_sym_RBRACE] = ACTIONS(5725), + [anon_sym_LBRACK] = ACTIONS(5725), + [anon_sym_RBRACK] = ACTIONS(5725), + [anon_sym_EQ] = ACTIONS(5723), + [anon_sym_QMARK] = ACTIONS(5725), + [anon_sym_STAR_EQ] = ACTIONS(5725), + [anon_sym_SLASH_EQ] = ACTIONS(5725), + [anon_sym_PERCENT_EQ] = ACTIONS(5725), + [anon_sym_PLUS_EQ] = ACTIONS(5725), + [anon_sym_DASH_EQ] = ACTIONS(5725), + [anon_sym_LT_LT_EQ] = ACTIONS(5725), + [anon_sym_GT_GT_EQ] = ACTIONS(5725), + [anon_sym_AMP_EQ] = ACTIONS(5725), + [anon_sym_CARET_EQ] = ACTIONS(5725), + [anon_sym_PIPE_EQ] = ACTIONS(5725), + [anon_sym_and_eq] = ACTIONS(5723), + [anon_sym_or_eq] = ACTIONS(5723), + [anon_sym_xor_eq] = ACTIONS(5723), + [anon_sym_LT_EQ_GT] = ACTIONS(5725), + [anon_sym_or] = ACTIONS(5723), + [anon_sym_and] = ACTIONS(5723), + [anon_sym_bitor] = ACTIONS(5723), + [anon_sym_xor] = ACTIONS(5723), + [anon_sym_bitand] = ACTIONS(5723), + [anon_sym_not_eq] = ACTIONS(5723), + [anon_sym_DASH_DASH] = ACTIONS(5725), + [anon_sym_PLUS_PLUS] = ACTIONS(5725), + [anon_sym_DOT] = ACTIONS(5723), + [anon_sym_DOT_STAR] = ACTIONS(5725), + [anon_sym_DASH_GT] = ACTIONS(5725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5723), + [anon_sym_decltype] = ACTIONS(5723), }, - [STATE(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), + [STATE(2313)] = { + [sym_string_literal] = STATE(2316), + [sym_raw_string_literal] = STATE(2316), + [aux_sym_concatenated_string_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(6292), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5419), + [anon_sym_COMMA] = ACTIONS(5419), + [anon_sym_LPAREN2] = ACTIONS(5419), + [anon_sym_DASH] = ACTIONS(5421), + [anon_sym_PLUS] = ACTIONS(5421), + [anon_sym_STAR] = ACTIONS(5421), + [anon_sym_SLASH] = ACTIONS(5421), + [anon_sym_PERCENT] = ACTIONS(5421), + [anon_sym_PIPE_PIPE] = ACTIONS(5419), + [anon_sym_AMP_AMP] = ACTIONS(5419), + [anon_sym_PIPE] = ACTIONS(5421), + [anon_sym_CARET] = ACTIONS(5421), + [anon_sym_AMP] = ACTIONS(5421), + [anon_sym_EQ_EQ] = ACTIONS(5419), + [anon_sym_BANG_EQ] = ACTIONS(5419), + [anon_sym_GT] = ACTIONS(5421), + [anon_sym_GT_EQ] = ACTIONS(5421), + [anon_sym_LT_EQ] = ACTIONS(5421), + [anon_sym_LT] = ACTIONS(5421), + [anon_sym_LT_LT] = ACTIONS(5421), + [anon_sym_GT_GT] = ACTIONS(5421), + [anon_sym_LBRACK] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(5421), + [anon_sym_QMARK] = ACTIONS(5419), + [anon_sym_STAR_EQ] = ACTIONS(5419), + [anon_sym_SLASH_EQ] = ACTIONS(5419), + [anon_sym_PERCENT_EQ] = ACTIONS(5419), + [anon_sym_PLUS_EQ] = ACTIONS(5419), + [anon_sym_DASH_EQ] = ACTIONS(5419), + [anon_sym_LT_LT_EQ] = ACTIONS(5419), + [anon_sym_GT_GT_EQ] = ACTIONS(5421), + [anon_sym_AMP_EQ] = ACTIONS(5419), + [anon_sym_CARET_EQ] = ACTIONS(5419), + [anon_sym_PIPE_EQ] = ACTIONS(5419), + [anon_sym_and_eq] = ACTIONS(5421), + [anon_sym_or_eq] = ACTIONS(5421), + [anon_sym_xor_eq] = ACTIONS(5421), + [anon_sym_LT_EQ_GT] = ACTIONS(5419), + [anon_sym_or] = ACTIONS(5421), + [anon_sym_and] = ACTIONS(5421), + [anon_sym_bitor] = ACTIONS(5421), + [anon_sym_xor] = ACTIONS(5421), + [anon_sym_bitand] = ACTIONS(5421), + [anon_sym_not_eq] = ACTIONS(5421), + [anon_sym_DASH_DASH] = ACTIONS(5419), + [anon_sym_PLUS_PLUS] = ACTIONS(5419), + [anon_sym_DOT] = ACTIONS(5421), + [anon_sym_DOT_STAR] = ACTIONS(5419), + [anon_sym_DASH_GT] = ACTIONS(5419), + [anon_sym_L_DQUOTE] = ACTIONS(6251), + [anon_sym_u_DQUOTE] = ACTIONS(6251), + [anon_sym_U_DQUOTE] = ACTIONS(6251), + [anon_sym_u8_DQUOTE] = ACTIONS(6251), + [anon_sym_DQUOTE] = ACTIONS(6251), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5419), + [anon_sym_R_DQUOTE] = ACTIONS(6253), + [anon_sym_LR_DQUOTE] = ACTIONS(6253), + [anon_sym_uR_DQUOTE] = ACTIONS(6253), + [anon_sym_UR_DQUOTE] = ACTIONS(6253), + [anon_sym_u8R_DQUOTE] = ACTIONS(6253), + [sym_literal_suffix] = ACTIONS(5421), + }, + [STATE(2314)] = { + [sym_template_argument_list] = STATE(2395), + [sym_identifier] = ACTIONS(4924), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_RPAREN] = ACTIONS(4917), + [aux_sym_preproc_if_token2] = ACTIONS(4917), + [aux_sym_preproc_else_token1] = ACTIONS(4917), + [aux_sym_preproc_elif_token1] = ACTIONS(4924), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4917), + [anon_sym_LPAREN2] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4924), + [anon_sym_PLUS] = ACTIONS(4924), + [anon_sym_STAR] = ACTIONS(4924), + [anon_sym_SLASH] = ACTIONS(4924), + [anon_sym_PERCENT] = ACTIONS(4924), + [anon_sym_PIPE_PIPE] = ACTIONS(4917), + [anon_sym_AMP_AMP] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4924), + [anon_sym_CARET] = ACTIONS(4924), + [anon_sym_AMP] = ACTIONS(4924), + [anon_sym_EQ_EQ] = ACTIONS(4917), + [anon_sym_BANG_EQ] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4924), + [anon_sym_GT_EQ] = ACTIONS(4917), + [anon_sym_LT_EQ] = ACTIONS(4924), + [anon_sym_LT] = ACTIONS(5843), + [anon_sym_LT_LT] = ACTIONS(4924), + [anon_sym_GT_GT] = ACTIONS(4924), + [anon_sym_SEMI] = ACTIONS(4917), + [anon_sym___attribute__] = ACTIONS(4924), + [anon_sym___attribute] = ACTIONS(4924), + [anon_sym_COLON] = ACTIONS(4924), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4922), + [anon_sym_RBRACE] = ACTIONS(4917), + [anon_sym_LBRACK] = ACTIONS(4917), + [anon_sym_RBRACK] = ACTIONS(4917), + [anon_sym_EQ] = ACTIONS(4924), + [anon_sym_QMARK] = ACTIONS(4917), + [anon_sym_STAR_EQ] = ACTIONS(4917), + [anon_sym_SLASH_EQ] = ACTIONS(4917), + [anon_sym_PERCENT_EQ] = ACTIONS(4917), + [anon_sym_PLUS_EQ] = ACTIONS(4917), + [anon_sym_DASH_EQ] = ACTIONS(4917), + [anon_sym_LT_LT_EQ] = ACTIONS(4917), + [anon_sym_GT_GT_EQ] = ACTIONS(4917), + [anon_sym_AMP_EQ] = ACTIONS(4917), + [anon_sym_CARET_EQ] = ACTIONS(4917), + [anon_sym_PIPE_EQ] = ACTIONS(4917), + [anon_sym_and_eq] = ACTIONS(4924), + [anon_sym_or_eq] = ACTIONS(4924), + [anon_sym_xor_eq] = ACTIONS(4924), + [anon_sym_LT_EQ_GT] = ACTIONS(4917), + [anon_sym_or] = ACTIONS(4924), + [anon_sym_and] = ACTIONS(4924), + [anon_sym_bitor] = ACTIONS(4924), + [anon_sym_xor] = ACTIONS(4924), + [anon_sym_bitand] = ACTIONS(4924), + [anon_sym_not_eq] = ACTIONS(4924), + [anon_sym_DASH_DASH] = ACTIONS(4917), + [anon_sym_PLUS_PLUS] = ACTIONS(4917), + [anon_sym_DOT] = ACTIONS(4924), + [anon_sym_DOT_STAR] = ACTIONS(4917), + [anon_sym_DASH_GT] = ACTIONS(4917), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5705), - [anon_sym_decltype] = ACTIONS(5705), }, - [STATE(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), + [STATE(2315)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(5631), + [anon_sym_COMMA] = ACTIONS(5631), + [anon_sym_RPAREN] = 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_COLON] = 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), + [anon_sym_L_DQUOTE] = ACTIONS(5631), + [anon_sym_u_DQUOTE] = ACTIONS(5631), + [anon_sym_U_DQUOTE] = ACTIONS(5631), + [anon_sym_u8_DQUOTE] = ACTIONS(5631), + [anon_sym_DQUOTE] = ACTIONS(5631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5631), + [anon_sym_LR_DQUOTE] = ACTIONS(5631), + [anon_sym_uR_DQUOTE] = ACTIONS(5631), + [anon_sym_UR_DQUOTE] = ACTIONS(5631), + [anon_sym_u8R_DQUOTE] = ACTIONS(5631), + [sym_literal_suffix] = ACTIONS(5629), }, - [STATE(2324)] = { - [sym_string_literal] = STATE(2258), - [sym_raw_string_literal] = STATE(2258), - [aux_sym_concatenated_string_repeat1] = STATE(2258), - [sym_identifier] = ACTIONS(6296), + [STATE(2316)] = { + [sym_string_literal] = STATE(2316), + [sym_raw_string_literal] = STATE(2316), + [aux_sym_concatenated_string_repeat1] = STATE(2316), + [sym_identifier] = ACTIONS(6294), [anon_sym_DOT_DOT_DOT] = ACTIONS(5401), [anon_sym_COMMA] = ACTIONS(5401), [anon_sym_LPAREN2] = ACTIONS(5401), @@ -293069,1109 +293227,2333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [anon_sym_L_DQUOTE] = ACTIONS(6297), + [anon_sym_u_DQUOTE] = ACTIONS(6297), + [anon_sym_U_DQUOTE] = ACTIONS(6297), + [anon_sym_u8_DQUOTE] = ACTIONS(6297), + [anon_sym_DQUOTE] = ACTIONS(6297), [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), + [anon_sym_R_DQUOTE] = ACTIONS(6300), + [anon_sym_LR_DQUOTE] = ACTIONS(6300), + [anon_sym_uR_DQUOTE] = ACTIONS(6300), + [anon_sym_UR_DQUOTE] = ACTIONS(6300), + [anon_sym_u8R_DQUOTE] = ACTIONS(6300), [sym_literal_suffix] = ACTIONS(5403), }, + [STATE(2317)] = { + [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(5825), + [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(5825), + [anon_sym_RBRACE] = ACTIONS(5825), + [anon_sym_LBRACK] = ACTIONS(5825), + [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(5823), + [anon_sym_decltype] = ACTIONS(5823), + }, + [STATE(2318)] = { + [sym_identifier] = ACTIONS(5827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5829), + [anon_sym_COMMA] = ACTIONS(5829), + [anon_sym_RPAREN] = ACTIONS(5829), + [aux_sym_preproc_if_token2] = ACTIONS(5829), + [aux_sym_preproc_else_token1] = ACTIONS(5829), + [aux_sym_preproc_elif_token1] = ACTIONS(5827), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5829), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5829), + [anon_sym_LPAREN2] = ACTIONS(5829), + [anon_sym_DASH] = ACTIONS(5827), + [anon_sym_PLUS] = ACTIONS(5827), + [anon_sym_STAR] = ACTIONS(5827), + [anon_sym_SLASH] = ACTIONS(5827), + [anon_sym_PERCENT] = ACTIONS(5827), + [anon_sym_PIPE_PIPE] = ACTIONS(5829), + [anon_sym_AMP_AMP] = ACTIONS(5829), + [anon_sym_PIPE] = ACTIONS(5827), + [anon_sym_CARET] = ACTIONS(5827), + [anon_sym_AMP] = ACTIONS(5827), + [anon_sym_EQ_EQ] = ACTIONS(5829), + [anon_sym_BANG_EQ] = ACTIONS(5829), + [anon_sym_GT] = ACTIONS(5827), + [anon_sym_GT_EQ] = ACTIONS(5829), + [anon_sym_LT_EQ] = ACTIONS(5827), + [anon_sym_LT] = ACTIONS(5827), + [anon_sym_LT_LT] = ACTIONS(5827), + [anon_sym_GT_GT] = ACTIONS(5827), + [anon_sym_SEMI] = ACTIONS(5829), + [anon_sym___attribute__] = ACTIONS(5827), + [anon_sym___attribute] = ACTIONS(5827), + [anon_sym_COLON] = ACTIONS(5829), + [anon_sym_LBRACE] = ACTIONS(5829), + [anon_sym_RBRACE] = ACTIONS(5829), + [anon_sym_LBRACK] = ACTIONS(5829), + [anon_sym_RBRACK] = ACTIONS(5829), + [anon_sym_EQ] = ACTIONS(5827), + [anon_sym_QMARK] = ACTIONS(5829), + [anon_sym_STAR_EQ] = ACTIONS(5829), + [anon_sym_SLASH_EQ] = ACTIONS(5829), + [anon_sym_PERCENT_EQ] = ACTIONS(5829), + [anon_sym_PLUS_EQ] = ACTIONS(5829), + [anon_sym_DASH_EQ] = ACTIONS(5829), + [anon_sym_LT_LT_EQ] = ACTIONS(5829), + [anon_sym_GT_GT_EQ] = ACTIONS(5829), + [anon_sym_AMP_EQ] = ACTIONS(5829), + [anon_sym_CARET_EQ] = ACTIONS(5829), + [anon_sym_PIPE_EQ] = ACTIONS(5829), + [anon_sym_and_eq] = ACTIONS(5827), + [anon_sym_or_eq] = ACTIONS(5827), + [anon_sym_xor_eq] = ACTIONS(5827), + [anon_sym_LT_EQ_GT] = ACTIONS(5829), + [anon_sym_or] = ACTIONS(5827), + [anon_sym_and] = ACTIONS(5827), + [anon_sym_bitor] = ACTIONS(5827), + [anon_sym_xor] = ACTIONS(5827), + [anon_sym_bitand] = ACTIONS(5827), + [anon_sym_not_eq] = ACTIONS(5827), + [anon_sym_DASH_DASH] = ACTIONS(5829), + [anon_sym_PLUS_PLUS] = ACTIONS(5829), + [anon_sym_DOT] = ACTIONS(5827), + [anon_sym_DOT_STAR] = ACTIONS(5829), + [anon_sym_DASH_GT] = ACTIONS(5829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5827), + [anon_sym_decltype] = ACTIONS(5827), + }, + [STATE(2319)] = { + [sym_identifier] = ACTIONS(5831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5833), + [anon_sym_COMMA] = ACTIONS(5833), + [anon_sym_RPAREN] = ACTIONS(5833), + [aux_sym_preproc_if_token2] = ACTIONS(5833), + [aux_sym_preproc_else_token1] = ACTIONS(5833), + [aux_sym_preproc_elif_token1] = ACTIONS(5831), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5833), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5833), + [anon_sym_LPAREN2] = ACTIONS(5833), + [anon_sym_DASH] = ACTIONS(5831), + [anon_sym_PLUS] = ACTIONS(5831), + [anon_sym_STAR] = ACTIONS(5831), + [anon_sym_SLASH] = ACTIONS(5831), + [anon_sym_PERCENT] = ACTIONS(5831), + [anon_sym_PIPE_PIPE] = ACTIONS(5833), + [anon_sym_AMP_AMP] = ACTIONS(5833), + [anon_sym_PIPE] = ACTIONS(5831), + [anon_sym_CARET] = ACTIONS(5831), + [anon_sym_AMP] = ACTIONS(5831), + [anon_sym_EQ_EQ] = ACTIONS(5833), + [anon_sym_BANG_EQ] = ACTIONS(5833), + [anon_sym_GT] = ACTIONS(5831), + [anon_sym_GT_EQ] = ACTIONS(5833), + [anon_sym_LT_EQ] = ACTIONS(5831), + [anon_sym_LT] = ACTIONS(5831), + [anon_sym_LT_LT] = ACTIONS(5831), + [anon_sym_GT_GT] = ACTIONS(5831), + [anon_sym_SEMI] = ACTIONS(5833), + [anon_sym___attribute__] = ACTIONS(5831), + [anon_sym___attribute] = ACTIONS(5831), + [anon_sym_COLON] = ACTIONS(5833), + [anon_sym_LBRACE] = ACTIONS(5833), + [anon_sym_RBRACE] = ACTIONS(5833), + [anon_sym_LBRACK] = ACTIONS(5833), + [anon_sym_RBRACK] = ACTIONS(5833), + [anon_sym_EQ] = ACTIONS(5831), + [anon_sym_QMARK] = ACTIONS(5833), + [anon_sym_STAR_EQ] = ACTIONS(5833), + [anon_sym_SLASH_EQ] = ACTIONS(5833), + [anon_sym_PERCENT_EQ] = ACTIONS(5833), + [anon_sym_PLUS_EQ] = ACTIONS(5833), + [anon_sym_DASH_EQ] = ACTIONS(5833), + [anon_sym_LT_LT_EQ] = ACTIONS(5833), + [anon_sym_GT_GT_EQ] = ACTIONS(5833), + [anon_sym_AMP_EQ] = ACTIONS(5833), + [anon_sym_CARET_EQ] = ACTIONS(5833), + [anon_sym_PIPE_EQ] = ACTIONS(5833), + [anon_sym_and_eq] = ACTIONS(5831), + [anon_sym_or_eq] = ACTIONS(5831), + [anon_sym_xor_eq] = ACTIONS(5831), + [anon_sym_LT_EQ_GT] = ACTIONS(5833), + [anon_sym_or] = ACTIONS(5831), + [anon_sym_and] = ACTIONS(5831), + [anon_sym_bitor] = ACTIONS(5831), + [anon_sym_xor] = ACTIONS(5831), + [anon_sym_bitand] = ACTIONS(5831), + [anon_sym_not_eq] = ACTIONS(5831), + [anon_sym_DASH_DASH] = ACTIONS(5833), + [anon_sym_PLUS_PLUS] = ACTIONS(5833), + [anon_sym_DOT] = ACTIONS(5831), + [anon_sym_DOT_STAR] = ACTIONS(5833), + [anon_sym_DASH_GT] = ACTIONS(5833), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5831), + [anon_sym_decltype] = ACTIONS(5831), + }, + [STATE(2320)] = { + [sym_identifier] = ACTIONS(5807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [aux_sym_preproc_if_token2] = ACTIONS(5809), + [aux_sym_preproc_else_token1] = ACTIONS(5809), + [aux_sym_preproc_elif_token1] = ACTIONS(5807), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5809), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5809), + [anon_sym_LPAREN2] = ACTIONS(5809), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_PERCENT] = ACTIONS(5807), + [anon_sym_PIPE_PIPE] = ACTIONS(5809), + [anon_sym_AMP_AMP] = ACTIONS(5809), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym_AMP] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5809), + [anon_sym_BANG_EQ] = ACTIONS(5809), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_GT_EQ] = ACTIONS(5809), + [anon_sym_LT_EQ] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_LT_LT] = ACTIONS(5807), + [anon_sym_GT_GT] = ACTIONS(5807), + [anon_sym_SEMI] = ACTIONS(5809), + [anon_sym___attribute__] = ACTIONS(5807), + [anon_sym___attribute] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5807), + [anon_sym_QMARK] = ACTIONS(5809), + [anon_sym_STAR_EQ] = ACTIONS(5809), + [anon_sym_SLASH_EQ] = ACTIONS(5809), + [anon_sym_PERCENT_EQ] = ACTIONS(5809), + [anon_sym_PLUS_EQ] = ACTIONS(5809), + [anon_sym_DASH_EQ] = ACTIONS(5809), + [anon_sym_LT_LT_EQ] = ACTIONS(5809), + [anon_sym_GT_GT_EQ] = ACTIONS(5809), + [anon_sym_AMP_EQ] = ACTIONS(5809), + [anon_sym_CARET_EQ] = ACTIONS(5809), + [anon_sym_PIPE_EQ] = ACTIONS(5809), + [anon_sym_and_eq] = ACTIONS(5807), + [anon_sym_or_eq] = ACTIONS(5807), + [anon_sym_xor_eq] = ACTIONS(5807), + [anon_sym_LT_EQ_GT] = ACTIONS(5809), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_and] = ACTIONS(5807), + [anon_sym_bitor] = ACTIONS(5807), + [anon_sym_xor] = ACTIONS(5807), + [anon_sym_bitand] = ACTIONS(5807), + [anon_sym_not_eq] = ACTIONS(5807), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_DOT_STAR] = ACTIONS(5809), + [anon_sym_DASH_GT] = ACTIONS(5809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5807), + [anon_sym_decltype] = ACTIONS(5807), + }, + [STATE(2321)] = { + [sym_identifier] = ACTIONS(5815), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5817), + [anon_sym_COMMA] = ACTIONS(5817), + [anon_sym_RPAREN] = ACTIONS(5817), + [aux_sym_preproc_if_token2] = ACTIONS(5817), + [aux_sym_preproc_else_token1] = ACTIONS(5817), + [aux_sym_preproc_elif_token1] = ACTIONS(5815), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5817), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5817), + [anon_sym_LPAREN2] = ACTIONS(5817), + [anon_sym_DASH] = ACTIONS(5815), + [anon_sym_PLUS] = ACTIONS(5815), + [anon_sym_STAR] = ACTIONS(5815), + [anon_sym_SLASH] = ACTIONS(5815), + [anon_sym_PERCENT] = ACTIONS(5815), + [anon_sym_PIPE_PIPE] = ACTIONS(5817), + [anon_sym_AMP_AMP] = ACTIONS(5817), + [anon_sym_PIPE] = ACTIONS(5815), + [anon_sym_CARET] = ACTIONS(5815), + [anon_sym_AMP] = ACTIONS(5815), + [anon_sym_EQ_EQ] = ACTIONS(5817), + [anon_sym_BANG_EQ] = ACTIONS(5817), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_GT_EQ] = ACTIONS(5817), + [anon_sym_LT_EQ] = ACTIONS(5815), + [anon_sym_LT] = ACTIONS(5815), + [anon_sym_LT_LT] = ACTIONS(5815), + [anon_sym_GT_GT] = ACTIONS(5815), + [anon_sym_SEMI] = ACTIONS(5817), + [anon_sym___attribute__] = ACTIONS(5815), + [anon_sym___attribute] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5817), + [anon_sym_LBRACE] = ACTIONS(5817), + [anon_sym_RBRACE] = ACTIONS(5817), + [anon_sym_LBRACK] = ACTIONS(5817), + [anon_sym_RBRACK] = ACTIONS(5817), + [anon_sym_EQ] = ACTIONS(5815), + [anon_sym_QMARK] = ACTIONS(5817), + [anon_sym_STAR_EQ] = ACTIONS(5817), + [anon_sym_SLASH_EQ] = ACTIONS(5817), + [anon_sym_PERCENT_EQ] = ACTIONS(5817), + [anon_sym_PLUS_EQ] = ACTIONS(5817), + [anon_sym_DASH_EQ] = ACTIONS(5817), + [anon_sym_LT_LT_EQ] = ACTIONS(5817), + [anon_sym_GT_GT_EQ] = ACTIONS(5817), + [anon_sym_AMP_EQ] = ACTIONS(5817), + [anon_sym_CARET_EQ] = ACTIONS(5817), + [anon_sym_PIPE_EQ] = ACTIONS(5817), + [anon_sym_and_eq] = ACTIONS(5815), + [anon_sym_or_eq] = ACTIONS(5815), + [anon_sym_xor_eq] = ACTIONS(5815), + [anon_sym_LT_EQ_GT] = ACTIONS(5817), + [anon_sym_or] = ACTIONS(5815), + [anon_sym_and] = ACTIONS(5815), + [anon_sym_bitor] = ACTIONS(5815), + [anon_sym_xor] = ACTIONS(5815), + [anon_sym_bitand] = ACTIONS(5815), + [anon_sym_not_eq] = ACTIONS(5815), + [anon_sym_DASH_DASH] = ACTIONS(5817), + [anon_sym_PLUS_PLUS] = ACTIONS(5817), + [anon_sym_DOT] = ACTIONS(5815), + [anon_sym_DOT_STAR] = ACTIONS(5817), + [anon_sym_DASH_GT] = ACTIONS(5817), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5815), + [anon_sym_decltype] = ACTIONS(5815), + }, + [STATE(2322)] = { + [sym_identifier] = ACTIONS(5678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5680), + [anon_sym_COMMA] = ACTIONS(5680), + [anon_sym_RPAREN] = ACTIONS(5680), + [aux_sym_preproc_if_token2] = ACTIONS(5680), + [aux_sym_preproc_else_token1] = ACTIONS(5680), + [aux_sym_preproc_elif_token1] = ACTIONS(5678), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5680), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5680), + [anon_sym_LPAREN2] = ACTIONS(5680), + [anon_sym_DASH] = ACTIONS(5678), + [anon_sym_PLUS] = ACTIONS(5678), + [anon_sym_STAR] = ACTIONS(5678), + [anon_sym_SLASH] = ACTIONS(5678), + [anon_sym_PERCENT] = ACTIONS(5678), + [anon_sym_PIPE_PIPE] = ACTIONS(5680), + [anon_sym_AMP_AMP] = ACTIONS(5680), + [anon_sym_PIPE] = ACTIONS(5678), + [anon_sym_CARET] = ACTIONS(5678), + [anon_sym_AMP] = ACTIONS(5678), + [anon_sym_EQ_EQ] = ACTIONS(5680), + [anon_sym_BANG_EQ] = ACTIONS(5680), + [anon_sym_GT] = ACTIONS(5678), + [anon_sym_GT_EQ] = ACTIONS(5680), + [anon_sym_LT_EQ] = ACTIONS(5678), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym_LT_LT] = ACTIONS(5678), + [anon_sym_GT_GT] = ACTIONS(5678), + [anon_sym_SEMI] = ACTIONS(5680), + [anon_sym___attribute__] = ACTIONS(5678), + [anon_sym___attribute] = ACTIONS(5678), + [anon_sym_COLON] = ACTIONS(5680), + [anon_sym_LBRACE] = ACTIONS(5680), + [anon_sym_RBRACE] = ACTIONS(5680), + [anon_sym_LBRACK] = ACTIONS(5680), + [anon_sym_RBRACK] = ACTIONS(5680), + [anon_sym_EQ] = ACTIONS(5678), + [anon_sym_QMARK] = ACTIONS(5680), + [anon_sym_STAR_EQ] = ACTIONS(5680), + [anon_sym_SLASH_EQ] = ACTIONS(5680), + [anon_sym_PERCENT_EQ] = ACTIONS(5680), + [anon_sym_PLUS_EQ] = ACTIONS(5680), + [anon_sym_DASH_EQ] = ACTIONS(5680), + [anon_sym_LT_LT_EQ] = ACTIONS(5680), + [anon_sym_GT_GT_EQ] = ACTIONS(5680), + [anon_sym_AMP_EQ] = ACTIONS(5680), + [anon_sym_CARET_EQ] = ACTIONS(5680), + [anon_sym_PIPE_EQ] = ACTIONS(5680), + [anon_sym_and_eq] = ACTIONS(5678), + [anon_sym_or_eq] = ACTIONS(5678), + [anon_sym_xor_eq] = ACTIONS(5678), + [anon_sym_LT_EQ_GT] = ACTIONS(5680), + [anon_sym_or] = ACTIONS(5678), + [anon_sym_and] = ACTIONS(5678), + [anon_sym_bitor] = ACTIONS(5678), + [anon_sym_xor] = ACTIONS(5678), + [anon_sym_bitand] = ACTIONS(5678), + [anon_sym_not_eq] = ACTIONS(5678), + [anon_sym_DASH_DASH] = ACTIONS(5680), + [anon_sym_PLUS_PLUS] = ACTIONS(5680), + [anon_sym_DOT] = ACTIONS(5678), + [anon_sym_DOT_STAR] = ACTIONS(5680), + [anon_sym_DASH_GT] = ACTIONS(5680), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5678), + [anon_sym_decltype] = ACTIONS(5678), + }, + [STATE(2323)] = { + [sym_identifier] = ACTIONS(4996), + [anon_sym_LPAREN2] = ACTIONS(4998), + [anon_sym_TILDE] = ACTIONS(4998), + [anon_sym_STAR] = ACTIONS(4998), + [anon_sym_PIPE_PIPE] = ACTIONS(4998), + [anon_sym_AMP_AMP] = ACTIONS(4998), + [anon_sym_AMP] = ACTIONS(4996), + [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_COLON] = ACTIONS(4998), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4998), + [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_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_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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4996), + [anon_sym_decltype] = ACTIONS(4996), + [anon_sym_explicit] = ACTIONS(4996), + [anon_sym_typename] = ACTIONS(4996), + [anon_sym_template] = ACTIONS(4996), + [anon_sym_operator] = ACTIONS(4996), + [anon_sym_friend] = ACTIONS(4996), + [anon_sym_concept] = ACTIONS(4996), + }, + [STATE(2324)] = { + [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), + }, [STATE(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), + [sym_identifier] = ACTIONS(5653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5655), + [anon_sym_COMMA] = ACTIONS(5655), + [anon_sym_RPAREN] = ACTIONS(5655), + [aux_sym_preproc_if_token2] = ACTIONS(5655), + [aux_sym_preproc_else_token1] = ACTIONS(5655), + [aux_sym_preproc_elif_token1] = ACTIONS(5653), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5655), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5655), + [anon_sym_LPAREN2] = ACTIONS(5655), + [anon_sym_DASH] = ACTIONS(5653), + [anon_sym_PLUS] = ACTIONS(5653), + [anon_sym_STAR] = ACTIONS(5653), + [anon_sym_SLASH] = ACTIONS(5653), + [anon_sym_PERCENT] = ACTIONS(5653), + [anon_sym_PIPE_PIPE] = ACTIONS(5655), + [anon_sym_AMP_AMP] = ACTIONS(5655), + [anon_sym_PIPE] = ACTIONS(5653), + [anon_sym_CARET] = ACTIONS(5653), + [anon_sym_AMP] = ACTIONS(5653), + [anon_sym_EQ_EQ] = ACTIONS(5655), + [anon_sym_BANG_EQ] = ACTIONS(5655), + [anon_sym_GT] = ACTIONS(5653), + [anon_sym_GT_EQ] = ACTIONS(5655), + [anon_sym_LT_EQ] = ACTIONS(5653), + [anon_sym_LT] = ACTIONS(5653), + [anon_sym_LT_LT] = ACTIONS(5653), + [anon_sym_GT_GT] = ACTIONS(5653), + [anon_sym_SEMI] = ACTIONS(5655), + [anon_sym___attribute__] = ACTIONS(5653), + [anon_sym___attribute] = ACTIONS(5653), + [anon_sym_COLON] = ACTIONS(5655), + [anon_sym_LBRACE] = ACTIONS(5655), + [anon_sym_RBRACE] = ACTIONS(5655), + [anon_sym_LBRACK] = ACTIONS(5655), + [anon_sym_RBRACK] = ACTIONS(5655), + [anon_sym_EQ] = ACTIONS(5653), + [anon_sym_QMARK] = ACTIONS(5655), + [anon_sym_STAR_EQ] = ACTIONS(5655), + [anon_sym_SLASH_EQ] = ACTIONS(5655), + [anon_sym_PERCENT_EQ] = ACTIONS(5655), + [anon_sym_PLUS_EQ] = ACTIONS(5655), + [anon_sym_DASH_EQ] = ACTIONS(5655), + [anon_sym_LT_LT_EQ] = ACTIONS(5655), + [anon_sym_GT_GT_EQ] = ACTIONS(5655), + [anon_sym_AMP_EQ] = ACTIONS(5655), + [anon_sym_CARET_EQ] = ACTIONS(5655), + [anon_sym_PIPE_EQ] = ACTIONS(5655), + [anon_sym_and_eq] = ACTIONS(5653), + [anon_sym_or_eq] = ACTIONS(5653), + [anon_sym_xor_eq] = ACTIONS(5653), + [anon_sym_LT_EQ_GT] = ACTIONS(5655), + [anon_sym_or] = ACTIONS(5653), + [anon_sym_and] = ACTIONS(5653), + [anon_sym_bitor] = ACTIONS(5653), + [anon_sym_xor] = ACTIONS(5653), + [anon_sym_bitand] = ACTIONS(5653), + [anon_sym_not_eq] = ACTIONS(5653), + [anon_sym_DASH_DASH] = ACTIONS(5655), + [anon_sym_PLUS_PLUS] = ACTIONS(5655), + [anon_sym_DOT] = ACTIONS(5653), + [anon_sym_DOT_STAR] = ACTIONS(5655), + [anon_sym_DASH_GT] = ACTIONS(5655), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5653), + [anon_sym_decltype] = ACTIONS(5653), }, [STATE(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), + [sym_identifier] = ACTIONS(5657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5659), + [anon_sym_COMMA] = ACTIONS(5659), + [anon_sym_RPAREN] = ACTIONS(5659), + [aux_sym_preproc_if_token2] = ACTIONS(5659), + [aux_sym_preproc_else_token1] = ACTIONS(5659), + [aux_sym_preproc_elif_token1] = ACTIONS(5657), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5659), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5659), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_DASH] = ACTIONS(5657), + [anon_sym_PLUS] = ACTIONS(5657), + [anon_sym_STAR] = ACTIONS(5657), + [anon_sym_SLASH] = ACTIONS(5657), + [anon_sym_PERCENT] = ACTIONS(5657), + [anon_sym_PIPE_PIPE] = ACTIONS(5659), + [anon_sym_AMP_AMP] = ACTIONS(5659), + [anon_sym_PIPE] = ACTIONS(5657), + [anon_sym_CARET] = ACTIONS(5657), + [anon_sym_AMP] = ACTIONS(5657), + [anon_sym_EQ_EQ] = ACTIONS(5659), + [anon_sym_BANG_EQ] = ACTIONS(5659), + [anon_sym_GT] = ACTIONS(5657), + [anon_sym_GT_EQ] = ACTIONS(5659), + [anon_sym_LT_EQ] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(5657), + [anon_sym_LT_LT] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5657), + [anon_sym_SEMI] = ACTIONS(5659), + [anon_sym___attribute__] = ACTIONS(5657), + [anon_sym___attribute] = ACTIONS(5657), + [anon_sym_COLON] = ACTIONS(5659), + [anon_sym_LBRACE] = ACTIONS(5659), + [anon_sym_RBRACE] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5659), + [anon_sym_RBRACK] = ACTIONS(5659), + [anon_sym_EQ] = ACTIONS(5657), + [anon_sym_QMARK] = ACTIONS(5659), + [anon_sym_STAR_EQ] = ACTIONS(5659), + [anon_sym_SLASH_EQ] = ACTIONS(5659), + [anon_sym_PERCENT_EQ] = ACTIONS(5659), + [anon_sym_PLUS_EQ] = ACTIONS(5659), + [anon_sym_DASH_EQ] = ACTIONS(5659), + [anon_sym_LT_LT_EQ] = ACTIONS(5659), + [anon_sym_GT_GT_EQ] = ACTIONS(5659), + [anon_sym_AMP_EQ] = ACTIONS(5659), + [anon_sym_CARET_EQ] = ACTIONS(5659), + [anon_sym_PIPE_EQ] = ACTIONS(5659), + [anon_sym_and_eq] = ACTIONS(5657), + [anon_sym_or_eq] = ACTIONS(5657), + [anon_sym_xor_eq] = ACTIONS(5657), + [anon_sym_LT_EQ_GT] = ACTIONS(5659), + [anon_sym_or] = ACTIONS(5657), + [anon_sym_and] = ACTIONS(5657), + [anon_sym_bitor] = ACTIONS(5657), + [anon_sym_xor] = ACTIONS(5657), + [anon_sym_bitand] = ACTIONS(5657), + [anon_sym_not_eq] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(5659), + [anon_sym_PLUS_PLUS] = ACTIONS(5659), + [anon_sym_DOT] = ACTIONS(5657), + [anon_sym_DOT_STAR] = ACTIONS(5659), + [anon_sym_DASH_GT] = ACTIONS(5659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5657), + [anon_sym_decltype] = ACTIONS(5657), }, [STATE(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), + [sym_identifier] = ACTIONS(5686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5688), + [anon_sym_COMMA] = ACTIONS(5688), + [anon_sym_RPAREN] = ACTIONS(5688), + [aux_sym_preproc_if_token2] = ACTIONS(5688), + [aux_sym_preproc_else_token1] = ACTIONS(5688), + [aux_sym_preproc_elif_token1] = ACTIONS(5686), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5688), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5688), + [anon_sym_LPAREN2] = ACTIONS(5688), + [anon_sym_DASH] = ACTIONS(5686), + [anon_sym_PLUS] = ACTIONS(5686), + [anon_sym_STAR] = ACTIONS(5686), + [anon_sym_SLASH] = ACTIONS(5686), + [anon_sym_PERCENT] = ACTIONS(5686), + [anon_sym_PIPE_PIPE] = ACTIONS(5688), + [anon_sym_AMP_AMP] = ACTIONS(5688), + [anon_sym_PIPE] = ACTIONS(5686), + [anon_sym_CARET] = ACTIONS(5686), + [anon_sym_AMP] = ACTIONS(5686), + [anon_sym_EQ_EQ] = ACTIONS(5688), + [anon_sym_BANG_EQ] = ACTIONS(5688), + [anon_sym_GT] = ACTIONS(5686), + [anon_sym_GT_EQ] = ACTIONS(5688), + [anon_sym_LT_EQ] = ACTIONS(5686), + [anon_sym_LT] = ACTIONS(5686), + [anon_sym_LT_LT] = ACTIONS(5686), + [anon_sym_GT_GT] = ACTIONS(5686), + [anon_sym_SEMI] = ACTIONS(5688), + [anon_sym___attribute__] = ACTIONS(5686), + [anon_sym___attribute] = ACTIONS(5686), + [anon_sym_COLON] = ACTIONS(5688), + [anon_sym_LBRACE] = ACTIONS(5688), + [anon_sym_RBRACE] = ACTIONS(5688), + [anon_sym_LBRACK] = ACTIONS(5688), + [anon_sym_RBRACK] = ACTIONS(5688), + [anon_sym_EQ] = ACTIONS(5686), + [anon_sym_QMARK] = ACTIONS(5688), + [anon_sym_STAR_EQ] = ACTIONS(5688), + [anon_sym_SLASH_EQ] = ACTIONS(5688), + [anon_sym_PERCENT_EQ] = ACTIONS(5688), + [anon_sym_PLUS_EQ] = ACTIONS(5688), + [anon_sym_DASH_EQ] = ACTIONS(5688), + [anon_sym_LT_LT_EQ] = ACTIONS(5688), + [anon_sym_GT_GT_EQ] = ACTIONS(5688), + [anon_sym_AMP_EQ] = ACTIONS(5688), + [anon_sym_CARET_EQ] = ACTIONS(5688), + [anon_sym_PIPE_EQ] = ACTIONS(5688), + [anon_sym_and_eq] = ACTIONS(5686), + [anon_sym_or_eq] = ACTIONS(5686), + [anon_sym_xor_eq] = ACTIONS(5686), + [anon_sym_LT_EQ_GT] = ACTIONS(5688), + [anon_sym_or] = ACTIONS(5686), + [anon_sym_and] = ACTIONS(5686), + [anon_sym_bitor] = ACTIONS(5686), + [anon_sym_xor] = ACTIONS(5686), + [anon_sym_bitand] = ACTIONS(5686), + [anon_sym_not_eq] = ACTIONS(5686), + [anon_sym_DASH_DASH] = ACTIONS(5688), + [anon_sym_PLUS_PLUS] = ACTIONS(5688), + [anon_sym_DOT] = ACTIONS(5686), + [anon_sym_DOT_STAR] = ACTIONS(5688), + [anon_sym_DASH_GT] = ACTIONS(5688), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5686), + [anon_sym_decltype] = ACTIONS(5686), }, [STATE(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), + [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), }, [STATE(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), + [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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5778), + [anon_sym_decltype] = ACTIONS(5778), }, [STATE(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), + [sym_identifier] = ACTIONS(5657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5659), + [anon_sym_COMMA] = ACTIONS(5659), + [anon_sym_RPAREN] = ACTIONS(5659), + [aux_sym_preproc_if_token2] = ACTIONS(5659), + [aux_sym_preproc_else_token1] = ACTIONS(5659), + [aux_sym_preproc_elif_token1] = ACTIONS(5657), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5659), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5659), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_DASH] = ACTIONS(5657), + [anon_sym_PLUS] = ACTIONS(5657), + [anon_sym_STAR] = ACTIONS(5657), + [anon_sym_SLASH] = ACTIONS(5657), + [anon_sym_PERCENT] = ACTIONS(5657), + [anon_sym_PIPE_PIPE] = ACTIONS(5659), + [anon_sym_AMP_AMP] = ACTIONS(5659), + [anon_sym_PIPE] = ACTIONS(5657), + [anon_sym_CARET] = ACTIONS(5657), + [anon_sym_AMP] = ACTIONS(5657), + [anon_sym_EQ_EQ] = ACTIONS(5659), + [anon_sym_BANG_EQ] = ACTIONS(5659), + [anon_sym_GT] = ACTIONS(5657), + [anon_sym_GT_EQ] = ACTIONS(5659), + [anon_sym_LT_EQ] = ACTIONS(5657), + [anon_sym_LT] = ACTIONS(5657), + [anon_sym_LT_LT] = ACTIONS(5657), + [anon_sym_GT_GT] = ACTIONS(5657), + [anon_sym_SEMI] = ACTIONS(5659), + [anon_sym___attribute__] = ACTIONS(5657), + [anon_sym___attribute] = ACTIONS(5657), + [anon_sym_COLON] = ACTIONS(5659), + [anon_sym_LBRACE] = ACTIONS(5659), + [anon_sym_RBRACE] = ACTIONS(5659), + [anon_sym_LBRACK] = ACTIONS(5659), + [anon_sym_RBRACK] = ACTIONS(5659), + [anon_sym_EQ] = ACTIONS(5657), + [anon_sym_QMARK] = ACTIONS(5659), + [anon_sym_STAR_EQ] = ACTIONS(5659), + [anon_sym_SLASH_EQ] = ACTIONS(5659), + [anon_sym_PERCENT_EQ] = ACTIONS(5659), + [anon_sym_PLUS_EQ] = ACTIONS(5659), + [anon_sym_DASH_EQ] = ACTIONS(5659), + [anon_sym_LT_LT_EQ] = ACTIONS(5659), + [anon_sym_GT_GT_EQ] = ACTIONS(5659), + [anon_sym_AMP_EQ] = ACTIONS(5659), + [anon_sym_CARET_EQ] = ACTIONS(5659), + [anon_sym_PIPE_EQ] = ACTIONS(5659), + [anon_sym_and_eq] = ACTIONS(5657), + [anon_sym_or_eq] = ACTIONS(5657), + [anon_sym_xor_eq] = ACTIONS(5657), + [anon_sym_LT_EQ_GT] = ACTIONS(5659), + [anon_sym_or] = ACTIONS(5657), + [anon_sym_and] = ACTIONS(5657), + [anon_sym_bitor] = ACTIONS(5657), + [anon_sym_xor] = ACTIONS(5657), + [anon_sym_bitand] = ACTIONS(5657), + [anon_sym_not_eq] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(5659), + [anon_sym_PLUS_PLUS] = ACTIONS(5659), + [anon_sym_DOT] = ACTIONS(5657), + [anon_sym_DOT_STAR] = ACTIONS(5659), + [anon_sym_DASH_GT] = ACTIONS(5659), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5657), + [anon_sym_decltype] = ACTIONS(5657), }, [STATE(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_identifier] = ACTIONS(5537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5539), + [anon_sym_COMMA] = ACTIONS(5539), + [anon_sym_RPAREN] = ACTIONS(5539), + [aux_sym_preproc_if_token2] = ACTIONS(5539), + [aux_sym_preproc_else_token1] = ACTIONS(5539), + [aux_sym_preproc_elif_token1] = ACTIONS(5537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5539), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5539), + [anon_sym_LPAREN2] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_STAR] = ACTIONS(5537), + [anon_sym_SLASH] = ACTIONS(5537), + [anon_sym_PERCENT] = ACTIONS(5537), + [anon_sym_PIPE_PIPE] = ACTIONS(5539), + [anon_sym_AMP_AMP] = ACTIONS(5539), + [anon_sym_PIPE] = ACTIONS(5537), + [anon_sym_CARET] = ACTIONS(5537), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_EQ_EQ] = ACTIONS(5539), + [anon_sym_BANG_EQ] = ACTIONS(5539), + [anon_sym_GT] = ACTIONS(5537), + [anon_sym_GT_EQ] = ACTIONS(5539), + [anon_sym_LT_EQ] = ACTIONS(5537), + [anon_sym_LT] = ACTIONS(5537), + [anon_sym_LT_LT] = ACTIONS(5537), + [anon_sym_GT_GT] = ACTIONS(5537), + [anon_sym_SEMI] = ACTIONS(5539), + [anon_sym___attribute__] = ACTIONS(5537), + [anon_sym___attribute] = ACTIONS(5537), + [anon_sym_COLON] = ACTIONS(5539), + [anon_sym_LBRACE] = ACTIONS(5539), + [anon_sym_RBRACE] = ACTIONS(5539), + [anon_sym_LBRACK] = ACTIONS(5539), + [anon_sym_RBRACK] = ACTIONS(5539), + [anon_sym_EQ] = ACTIONS(5537), + [anon_sym_QMARK] = ACTIONS(5539), + [anon_sym_STAR_EQ] = ACTIONS(5539), + [anon_sym_SLASH_EQ] = ACTIONS(5539), + [anon_sym_PERCENT_EQ] = ACTIONS(5539), + [anon_sym_PLUS_EQ] = ACTIONS(5539), + [anon_sym_DASH_EQ] = ACTIONS(5539), + [anon_sym_LT_LT_EQ] = ACTIONS(5539), + [anon_sym_GT_GT_EQ] = ACTIONS(5539), + [anon_sym_AMP_EQ] = ACTIONS(5539), + [anon_sym_CARET_EQ] = ACTIONS(5539), + [anon_sym_PIPE_EQ] = ACTIONS(5539), + [anon_sym_and_eq] = ACTIONS(5537), + [anon_sym_or_eq] = ACTIONS(5537), + [anon_sym_xor_eq] = ACTIONS(5537), + [anon_sym_LT_EQ_GT] = ACTIONS(5539), + [anon_sym_or] = ACTIONS(5537), + [anon_sym_and] = ACTIONS(5537), + [anon_sym_bitor] = ACTIONS(5537), + [anon_sym_xor] = ACTIONS(5537), + [anon_sym_bitand] = ACTIONS(5537), + [anon_sym_not_eq] = ACTIONS(5537), + [anon_sym_DASH_DASH] = ACTIONS(5539), + [anon_sym_PLUS_PLUS] = ACTIONS(5539), + [anon_sym_DOT] = ACTIONS(5537), + [anon_sym_DOT_STAR] = ACTIONS(5539), + [anon_sym_DASH_GT] = ACTIONS(5539), [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), + [sym_auto] = ACTIONS(5537), + [anon_sym_decltype] = ACTIONS(5537), }, [STATE(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), + [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), }, [STATE(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), + [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), }, [STATE(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), + [sym_identifier] = ACTIONS(5022), + [anon_sym_LPAREN2] = ACTIONS(5024), + [anon_sym_TILDE] = ACTIONS(5024), + [anon_sym_STAR] = ACTIONS(5024), + [anon_sym_PIPE_PIPE] = ACTIONS(5024), + [anon_sym_AMP_AMP] = ACTIONS(5024), + [anon_sym_AMP] = ACTIONS(5022), + [anon_sym___extension__] = ACTIONS(5022), + [anon_sym_virtual] = ACTIONS(5022), + [anon_sym_extern] = ACTIONS(5022), + [anon_sym___attribute__] = ACTIONS(5022), + [anon_sym___attribute] = ACTIONS(5022), + [anon_sym_using] = ACTIONS(5022), + [anon_sym_COLON_COLON] = ACTIONS(5024), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5024), + [anon_sym___declspec] = ACTIONS(5022), + [anon_sym___based] = ACTIONS(5022), + [anon_sym___cdecl] = ACTIONS(5022), + [anon_sym___clrcall] = ACTIONS(5022), + [anon_sym___stdcall] = ACTIONS(5022), + [anon_sym___fastcall] = ACTIONS(5022), + [anon_sym___thiscall] = ACTIONS(5022), + [anon_sym___vectorcall] = ACTIONS(5022), + [anon_sym_signed] = ACTIONS(5022), + [anon_sym_unsigned] = ACTIONS(5022), + [anon_sym_long] = ACTIONS(5022), + [anon_sym_short] = ACTIONS(5022), + [anon_sym_LBRACK] = ACTIONS(5022), + [anon_sym_static] = ACTIONS(5022), + [anon_sym_register] = ACTIONS(5022), + [anon_sym_inline] = ACTIONS(5022), + [anon_sym___inline] = ACTIONS(5022), + [anon_sym___inline__] = ACTIONS(5022), + [anon_sym___forceinline] = ACTIONS(5022), + [anon_sym_thread_local] = ACTIONS(5022), + [anon_sym___thread] = ACTIONS(5022), + [anon_sym_const] = ACTIONS(5022), + [anon_sym_constexpr] = ACTIONS(5022), + [anon_sym_volatile] = ACTIONS(5022), + [anon_sym_restrict] = ACTIONS(5022), + [anon_sym___restrict__] = ACTIONS(5022), + [anon_sym__Atomic] = ACTIONS(5022), + [anon_sym__Noreturn] = ACTIONS(5022), + [anon_sym_noreturn] = ACTIONS(5022), + [anon_sym__Nonnull] = ACTIONS(5022), + [anon_sym_mutable] = ACTIONS(5022), + [anon_sym_constinit] = ACTIONS(5022), + [anon_sym_consteval] = ACTIONS(5022), + [anon_sym_alignas] = ACTIONS(5022), + [anon_sym__Alignas] = ACTIONS(5022), + [sym_primitive_type] = ACTIONS(5022), + [anon_sym_enum] = ACTIONS(5022), + [anon_sym_class] = ACTIONS(5022), + [anon_sym_struct] = ACTIONS(5022), + [anon_sym_union] = ACTIONS(5022), + [anon_sym_or] = ACTIONS(5022), + [anon_sym_and] = ACTIONS(5022), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5022), + [anon_sym_decltype] = ACTIONS(5022), + [anon_sym_explicit] = ACTIONS(5022), + [anon_sym_typename] = ACTIONS(5022), + [anon_sym_template] = ACTIONS(5022), + [anon_sym_operator] = ACTIONS(5022), + [anon_sym_friend] = ACTIONS(5022), + [anon_sym_concept] = ACTIONS(5022), + }, + [STATE(2335)] = { + [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), + }, + [STATE(2336)] = { + [sym_argument_list] = STATE(2459), + [sym_initializer_list] = STATE(2459), + [sym_identifier] = ACTIONS(6303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6305), + [anon_sym_COMMA] = ACTIONS(6305), + [anon_sym_RPAREN] = ACTIONS(6305), + [aux_sym_preproc_if_token2] = ACTIONS(6305), + [aux_sym_preproc_else_token1] = ACTIONS(6305), + [aux_sym_preproc_elif_token1] = ACTIONS(6303), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6305), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6305), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(6303), + [anon_sym_PLUS] = ACTIONS(6303), + [anon_sym_STAR] = ACTIONS(6303), + [anon_sym_SLASH] = ACTIONS(6303), + [anon_sym_PERCENT] = ACTIONS(6303), + [anon_sym_PIPE_PIPE] = ACTIONS(6305), + [anon_sym_AMP_AMP] = ACTIONS(6305), + [anon_sym_PIPE] = ACTIONS(6303), + [anon_sym_CARET] = ACTIONS(6303), + [anon_sym_AMP] = ACTIONS(6303), + [anon_sym_EQ_EQ] = ACTIONS(6305), + [anon_sym_BANG_EQ] = ACTIONS(6305), + [anon_sym_GT] = ACTIONS(6303), + [anon_sym_GT_EQ] = ACTIONS(6305), + [anon_sym_LT_EQ] = ACTIONS(6303), + [anon_sym_LT] = ACTIONS(6303), + [anon_sym_LT_LT] = ACTIONS(6303), + [anon_sym_GT_GT] = ACTIONS(6303), + [anon_sym_SEMI] = ACTIONS(6305), + [anon_sym___attribute__] = ACTIONS(6303), + [anon_sym___attribute] = ACTIONS(6303), + [anon_sym_COLON] = ACTIONS(6305), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(6305), + [anon_sym_LBRACK] = ACTIONS(6305), + [anon_sym_RBRACK] = ACTIONS(6305), + [anon_sym_EQ] = ACTIONS(6303), + [anon_sym_QMARK] = ACTIONS(6305), + [anon_sym_STAR_EQ] = ACTIONS(6305), + [anon_sym_SLASH_EQ] = ACTIONS(6305), + [anon_sym_PERCENT_EQ] = ACTIONS(6305), + [anon_sym_PLUS_EQ] = ACTIONS(6305), + [anon_sym_DASH_EQ] = ACTIONS(6305), + [anon_sym_LT_LT_EQ] = ACTIONS(6305), + [anon_sym_GT_GT_EQ] = ACTIONS(6305), + [anon_sym_AMP_EQ] = ACTIONS(6305), + [anon_sym_CARET_EQ] = ACTIONS(6305), + [anon_sym_PIPE_EQ] = ACTIONS(6305), + [anon_sym_and_eq] = ACTIONS(6303), + [anon_sym_or_eq] = ACTIONS(6303), + [anon_sym_xor_eq] = ACTIONS(6303), + [anon_sym_LT_EQ_GT] = ACTIONS(6305), + [anon_sym_or] = ACTIONS(6303), + [anon_sym_and] = ACTIONS(6303), + [anon_sym_bitor] = ACTIONS(6303), + [anon_sym_xor] = ACTIONS(6303), + [anon_sym_bitand] = ACTIONS(6303), + [anon_sym_not_eq] = ACTIONS(6303), + [anon_sym_DASH_DASH] = ACTIONS(6305), + [anon_sym_PLUS_PLUS] = ACTIONS(6305), + [anon_sym_DOT] = ACTIONS(6303), + [anon_sym_DOT_STAR] = ACTIONS(6305), + [anon_sym_DASH_GT] = ACTIONS(6305), + [sym_comment] = ACTIONS(3), + }, + [STATE(2337)] = { + [sym_argument_list] = STATE(2518), + [sym_initializer_list] = STATE(2518), + [sym_identifier] = ACTIONS(6307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6309), + [anon_sym_COMMA] = ACTIONS(6309), + [anon_sym_RPAREN] = ACTIONS(6309), + [aux_sym_preproc_if_token2] = ACTIONS(6309), + [aux_sym_preproc_else_token1] = ACTIONS(6309), + [aux_sym_preproc_elif_token1] = ACTIONS(6307), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6309), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6309), + [anon_sym_LPAREN2] = ACTIONS(5850), + [anon_sym_DASH] = ACTIONS(6307), + [anon_sym_PLUS] = ACTIONS(6307), + [anon_sym_STAR] = ACTIONS(6307), + [anon_sym_SLASH] = ACTIONS(6307), + [anon_sym_PERCENT] = ACTIONS(6307), + [anon_sym_PIPE_PIPE] = ACTIONS(6309), + [anon_sym_AMP_AMP] = ACTIONS(6309), + [anon_sym_PIPE] = ACTIONS(6307), + [anon_sym_CARET] = ACTIONS(6307), + [anon_sym_AMP] = ACTIONS(6307), + [anon_sym_EQ_EQ] = ACTIONS(6309), + [anon_sym_BANG_EQ] = ACTIONS(6309), + [anon_sym_GT] = ACTIONS(6307), + [anon_sym_GT_EQ] = ACTIONS(6309), + [anon_sym_LT_EQ] = ACTIONS(6307), + [anon_sym_LT] = ACTIONS(6307), + [anon_sym_LT_LT] = ACTIONS(6307), + [anon_sym_GT_GT] = ACTIONS(6307), + [anon_sym_SEMI] = ACTIONS(6309), + [anon_sym___attribute__] = ACTIONS(6307), + [anon_sym___attribute] = ACTIONS(6307), + [anon_sym_COLON] = ACTIONS(6309), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(6309), + [anon_sym_LBRACK] = ACTIONS(6309), + [anon_sym_RBRACK] = ACTIONS(6309), + [anon_sym_EQ] = ACTIONS(6307), + [anon_sym_QMARK] = ACTIONS(6309), + [anon_sym_STAR_EQ] = ACTIONS(6309), + [anon_sym_SLASH_EQ] = ACTIONS(6309), + [anon_sym_PERCENT_EQ] = ACTIONS(6309), + [anon_sym_PLUS_EQ] = ACTIONS(6309), + [anon_sym_DASH_EQ] = ACTIONS(6309), + [anon_sym_LT_LT_EQ] = ACTIONS(6309), + [anon_sym_GT_GT_EQ] = ACTIONS(6309), + [anon_sym_AMP_EQ] = ACTIONS(6309), + [anon_sym_CARET_EQ] = ACTIONS(6309), + [anon_sym_PIPE_EQ] = ACTIONS(6309), + [anon_sym_and_eq] = ACTIONS(6307), + [anon_sym_or_eq] = ACTIONS(6307), + [anon_sym_xor_eq] = ACTIONS(6307), + [anon_sym_LT_EQ_GT] = ACTIONS(6309), + [anon_sym_or] = ACTIONS(6307), + [anon_sym_and] = ACTIONS(6307), + [anon_sym_bitor] = ACTIONS(6307), + [anon_sym_xor] = ACTIONS(6307), + [anon_sym_bitand] = ACTIONS(6307), + [anon_sym_not_eq] = ACTIONS(6307), + [anon_sym_DASH_DASH] = ACTIONS(6309), + [anon_sym_PLUS_PLUS] = ACTIONS(6309), + [anon_sym_DOT] = ACTIONS(6307), + [anon_sym_DOT_STAR] = ACTIONS(6309), + [anon_sym_DASH_GT] = ACTIONS(6309), + [sym_comment] = ACTIONS(3), + }, + [STATE(2338)] = { + [sym_identifier] = ACTIONS(5731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5733), + [anon_sym_COMMA] = ACTIONS(5733), + [anon_sym_RPAREN] = ACTIONS(5733), + [aux_sym_preproc_if_token2] = ACTIONS(5733), + [aux_sym_preproc_else_token1] = ACTIONS(5733), + [aux_sym_preproc_elif_token1] = ACTIONS(5731), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5733), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5733), + [anon_sym_LPAREN2] = ACTIONS(5733), + [anon_sym_DASH] = ACTIONS(5731), + [anon_sym_PLUS] = ACTIONS(5731), + [anon_sym_STAR] = ACTIONS(5731), + [anon_sym_SLASH] = ACTIONS(5731), + [anon_sym_PERCENT] = ACTIONS(5731), + [anon_sym_PIPE_PIPE] = ACTIONS(5733), + [anon_sym_AMP_AMP] = ACTIONS(5733), + [anon_sym_PIPE] = ACTIONS(5731), + [anon_sym_CARET] = ACTIONS(5731), + [anon_sym_AMP] = ACTIONS(5731), + [anon_sym_EQ_EQ] = ACTIONS(5733), + [anon_sym_BANG_EQ] = ACTIONS(5733), + [anon_sym_GT] = ACTIONS(5731), + [anon_sym_GT_EQ] = ACTIONS(5733), + [anon_sym_LT_EQ] = ACTIONS(5731), + [anon_sym_LT] = ACTIONS(5731), + [anon_sym_LT_LT] = ACTIONS(5731), + [anon_sym_GT_GT] = ACTIONS(5731), + [anon_sym_SEMI] = ACTIONS(5733), + [anon_sym___attribute__] = ACTIONS(5731), + [anon_sym___attribute] = ACTIONS(5731), + [anon_sym_COLON] = ACTIONS(5733), + [anon_sym_LBRACE] = ACTIONS(5733), + [anon_sym_RBRACE] = ACTIONS(5733), + [anon_sym_LBRACK] = ACTIONS(5733), + [anon_sym_RBRACK] = ACTIONS(5733), + [anon_sym_EQ] = ACTIONS(5731), + [anon_sym_QMARK] = ACTIONS(5733), + [anon_sym_STAR_EQ] = ACTIONS(5733), + [anon_sym_SLASH_EQ] = ACTIONS(5733), + [anon_sym_PERCENT_EQ] = ACTIONS(5733), + [anon_sym_PLUS_EQ] = ACTIONS(5733), + [anon_sym_DASH_EQ] = ACTIONS(5733), + [anon_sym_LT_LT_EQ] = ACTIONS(5733), + [anon_sym_GT_GT_EQ] = ACTIONS(5733), + [anon_sym_AMP_EQ] = ACTIONS(5733), + [anon_sym_CARET_EQ] = ACTIONS(5733), + [anon_sym_PIPE_EQ] = ACTIONS(5733), + [anon_sym_and_eq] = ACTIONS(5731), + [anon_sym_or_eq] = ACTIONS(5731), + [anon_sym_xor_eq] = ACTIONS(5731), + [anon_sym_LT_EQ_GT] = ACTIONS(5733), + [anon_sym_or] = ACTIONS(5731), + [anon_sym_and] = ACTIONS(5731), + [anon_sym_bitor] = ACTIONS(5731), + [anon_sym_xor] = ACTIONS(5731), + [anon_sym_bitand] = ACTIONS(5731), + [anon_sym_not_eq] = ACTIONS(5731), + [anon_sym_DASH_DASH] = ACTIONS(5733), + [anon_sym_PLUS_PLUS] = ACTIONS(5733), + [anon_sym_DOT] = ACTIONS(5731), + [anon_sym_DOT_STAR] = ACTIONS(5733), + [anon_sym_DASH_GT] = ACTIONS(5733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5731), + [anon_sym_decltype] = ACTIONS(5731), + }, + [STATE(2339)] = { + [sym_identifier] = ACTIONS(5018), + [anon_sym_LPAREN2] = ACTIONS(5020), + [anon_sym_TILDE] = ACTIONS(5020), + [anon_sym_STAR] = ACTIONS(5020), + [anon_sym_PIPE_PIPE] = ACTIONS(5020), + [anon_sym_AMP_AMP] = ACTIONS(5020), + [anon_sym_AMP] = ACTIONS(5018), + [anon_sym___extension__] = ACTIONS(5018), + [anon_sym_virtual] = ACTIONS(5018), + [anon_sym_extern] = ACTIONS(5018), + [anon_sym___attribute__] = ACTIONS(5018), + [anon_sym___attribute] = ACTIONS(5018), + [anon_sym_using] = ACTIONS(5018), + [anon_sym_COLON_COLON] = ACTIONS(5020), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5020), + [anon_sym___declspec] = ACTIONS(5018), + [anon_sym___based] = ACTIONS(5018), + [anon_sym___cdecl] = ACTIONS(5018), + [anon_sym___clrcall] = ACTIONS(5018), + [anon_sym___stdcall] = ACTIONS(5018), + [anon_sym___fastcall] = ACTIONS(5018), + [anon_sym___thiscall] = ACTIONS(5018), + [anon_sym___vectorcall] = ACTIONS(5018), + [anon_sym_signed] = ACTIONS(5018), + [anon_sym_unsigned] = ACTIONS(5018), + [anon_sym_long] = ACTIONS(5018), + [anon_sym_short] = ACTIONS(5018), + [anon_sym_LBRACK] = ACTIONS(5018), + [anon_sym_static] = ACTIONS(5018), + [anon_sym_register] = ACTIONS(5018), + [anon_sym_inline] = ACTIONS(5018), + [anon_sym___inline] = ACTIONS(5018), + [anon_sym___inline__] = ACTIONS(5018), + [anon_sym___forceinline] = ACTIONS(5018), + [anon_sym_thread_local] = ACTIONS(5018), + [anon_sym___thread] = ACTIONS(5018), + [anon_sym_const] = ACTIONS(5018), + [anon_sym_constexpr] = ACTIONS(5018), + [anon_sym_volatile] = ACTIONS(5018), + [anon_sym_restrict] = ACTIONS(5018), + [anon_sym___restrict__] = ACTIONS(5018), + [anon_sym__Atomic] = ACTIONS(5018), + [anon_sym__Noreturn] = ACTIONS(5018), + [anon_sym_noreturn] = ACTIONS(5018), + [anon_sym__Nonnull] = ACTIONS(5018), + [anon_sym_mutable] = ACTIONS(5018), + [anon_sym_constinit] = ACTIONS(5018), + [anon_sym_consteval] = ACTIONS(5018), + [anon_sym_alignas] = ACTIONS(5018), + [anon_sym__Alignas] = ACTIONS(5018), + [sym_primitive_type] = ACTIONS(5018), + [anon_sym_enum] = ACTIONS(5018), + [anon_sym_class] = ACTIONS(5018), + [anon_sym_struct] = ACTIONS(5018), + [anon_sym_union] = ACTIONS(5018), + [anon_sym_or] = ACTIONS(5018), + [anon_sym_and] = ACTIONS(5018), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5018), + [anon_sym_decltype] = ACTIONS(5018), + [anon_sym_explicit] = ACTIONS(5018), + [anon_sym_typename] = ACTIONS(5018), + [anon_sym_template] = ACTIONS(5018), + [anon_sym_operator] = ACTIONS(5018), + [anon_sym_friend] = ACTIONS(5018), + [anon_sym_concept] = ACTIONS(5018), + }, + [STATE(2340)] = { + [sym_string_literal] = STATE(3549), + [sym_template_argument_list] = STATE(4590), + [sym_raw_string_literal] = STATE(3549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4168), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), [anon_sym_EQ] = ACTIONS(5078), - [anon_sym_QMARK] = ACTIONS(5080), + [anon_sym_QMARK] = ACTIONS(4161), [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_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_and_eq] = ACTIONS(5080), + [anon_sym_or_eq] = ACTIONS(5080), + [anon_sym_xor_eq] = ACTIONS(5080), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [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_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(4161), + [anon_sym_R_DQUOTE] = ACTIONS(5084), + [anon_sym_LR_DQUOTE] = ACTIONS(5084), + [anon_sym_uR_DQUOTE] = ACTIONS(5084), + [anon_sym_UR_DQUOTE] = ACTIONS(5084), + [anon_sym_u8R_DQUOTE] = ACTIONS(5084), }, - [STATE(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), + [STATE(2341)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(6311), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(6313), + [anon_sym_SLASH_EQ] = ACTIONS(6313), + [anon_sym_PERCENT_EQ] = ACTIONS(6313), + [anon_sym_PLUS_EQ] = ACTIONS(6313), + [anon_sym_DASH_EQ] = ACTIONS(6313), + [anon_sym_LT_LT_EQ] = ACTIONS(6313), + [anon_sym_GT_GT_EQ] = ACTIONS(6313), + [anon_sym_AMP_EQ] = ACTIONS(6313), + [anon_sym_CARET_EQ] = ACTIONS(6313), + [anon_sym_PIPE_EQ] = ACTIONS(6313), + [anon_sym_and_eq] = ACTIONS(6313), + [anon_sym_or_eq] = ACTIONS(6313), + [anon_sym_xor_eq] = ACTIONS(6313), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), }, - [STATE(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), + [STATE(2342)] = { + [sym_identifier] = ACTIONS(6315), + [anon_sym_LPAREN2] = ACTIONS(6317), + [anon_sym_TILDE] = ACTIONS(6317), + [anon_sym_STAR] = ACTIONS(6317), + [anon_sym_PIPE_PIPE] = ACTIONS(6317), + [anon_sym_AMP_AMP] = ACTIONS(6267), + [anon_sym_AMP] = ACTIONS(6315), + [anon_sym___extension__] = ACTIONS(6315), + [anon_sym_virtual] = ACTIONS(6315), + [anon_sym_extern] = ACTIONS(6315), + [anon_sym___attribute__] = ACTIONS(6315), + [anon_sym___attribute] = ACTIONS(6315), + [anon_sym_using] = ACTIONS(6315), + [anon_sym_COLON_COLON] = ACTIONS(6317), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6317), + [anon_sym___declspec] = ACTIONS(6315), + [anon_sym___based] = ACTIONS(6315), + [anon_sym___cdecl] = ACTIONS(6315), + [anon_sym___clrcall] = ACTIONS(6315), + [anon_sym___stdcall] = ACTIONS(6315), + [anon_sym___fastcall] = ACTIONS(6315), + [anon_sym___thiscall] = ACTIONS(6315), + [anon_sym___vectorcall] = ACTIONS(6315), + [anon_sym_signed] = ACTIONS(6315), + [anon_sym_unsigned] = ACTIONS(6315), + [anon_sym_long] = ACTIONS(6315), + [anon_sym_short] = ACTIONS(6315), + [anon_sym_LBRACK] = ACTIONS(6315), + [anon_sym_static] = ACTIONS(6315), + [anon_sym_register] = ACTIONS(6315), + [anon_sym_inline] = ACTIONS(6315), + [anon_sym___inline] = ACTIONS(6315), + [anon_sym___inline__] = ACTIONS(6315), + [anon_sym___forceinline] = ACTIONS(6315), + [anon_sym_thread_local] = ACTIONS(6315), + [anon_sym___thread] = ACTIONS(6315), + [anon_sym_const] = ACTIONS(6315), + [anon_sym_constexpr] = ACTIONS(6315), + [anon_sym_volatile] = ACTIONS(6315), + [anon_sym_restrict] = ACTIONS(6315), + [anon_sym___restrict__] = ACTIONS(6315), + [anon_sym__Atomic] = ACTIONS(6315), + [anon_sym__Noreturn] = ACTIONS(6315), + [anon_sym_noreturn] = ACTIONS(6315), + [anon_sym__Nonnull] = ACTIONS(6315), + [anon_sym_mutable] = ACTIONS(6315), + [anon_sym_constinit] = ACTIONS(6315), + [anon_sym_consteval] = ACTIONS(6315), + [anon_sym_alignas] = ACTIONS(6315), + [anon_sym__Alignas] = ACTIONS(6315), + [sym_primitive_type] = ACTIONS(6315), + [anon_sym_enum] = ACTIONS(6315), + [anon_sym_class] = ACTIONS(6315), + [anon_sym_struct] = ACTIONS(6315), + [anon_sym_union] = ACTIONS(6315), + [anon_sym_or] = ACTIONS(6315), + [anon_sym_and] = ACTIONS(6271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6315), + [anon_sym_decltype] = ACTIONS(6315), + [anon_sym_explicit] = ACTIONS(6315), + [anon_sym_typename] = ACTIONS(6315), + [anon_sym_template] = ACTIONS(6315), + [anon_sym_operator] = ACTIONS(6315), + [anon_sym_friend] = ACTIONS(6315), + [anon_sym_concept] = ACTIONS(6315), }, - [STATE(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(5681), - [anon_sym_decltype] = ACTIONS(5681), + [STATE(2343)] = { + [sym_identifier] = ACTIONS(2572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2562), + [anon_sym_COMMA] = ACTIONS(2562), + [anon_sym_LPAREN2] = ACTIONS(2562), + [anon_sym_DASH] = ACTIONS(2572), + [anon_sym_PLUS] = ACTIONS(2572), + [anon_sym_STAR] = ACTIONS(2562), + [anon_sym_SLASH] = ACTIONS(2572), + [anon_sym_PERCENT] = ACTIONS(2562), + [anon_sym_PIPE_PIPE] = ACTIONS(2562), + [anon_sym_AMP_AMP] = ACTIONS(2562), + [anon_sym_PIPE] = ACTIONS(2572), + [anon_sym_CARET] = ACTIONS(2562), + [anon_sym_AMP] = ACTIONS(2572), + [anon_sym_EQ_EQ] = ACTIONS(2562), + [anon_sym_BANG_EQ] = ACTIONS(2562), + [anon_sym_GT] = ACTIONS(2572), + [anon_sym_GT_EQ] = ACTIONS(2572), + [anon_sym_LT_EQ] = ACTIONS(2572), + [anon_sym_LT] = ACTIONS(2572), + [anon_sym_LT_LT] = ACTIONS(2562), + [anon_sym_GT_GT] = ACTIONS(2572), + [anon_sym___extension__] = ACTIONS(2572), + [anon_sym___attribute__] = ACTIONS(2572), + [anon_sym___attribute] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2562), + [anon_sym_signed] = ACTIONS(2572), + [anon_sym_unsigned] = ACTIONS(2572), + [anon_sym_long] = ACTIONS(2572), + [anon_sym_short] = ACTIONS(2572), + [anon_sym_LBRACK] = ACTIONS(2562), + [anon_sym_const] = ACTIONS(2572), + [anon_sym_constexpr] = ACTIONS(2572), + [anon_sym_volatile] = ACTIONS(2572), + [anon_sym_restrict] = ACTIONS(2572), + [anon_sym___restrict__] = ACTIONS(2572), + [anon_sym__Atomic] = ACTIONS(2572), + [anon_sym__Noreturn] = ACTIONS(2572), + [anon_sym_noreturn] = ACTIONS(2572), + [anon_sym__Nonnull] = ACTIONS(2572), + [anon_sym_mutable] = ACTIONS(2572), + [anon_sym_constinit] = ACTIONS(2572), + [anon_sym_consteval] = ACTIONS(2572), + [anon_sym_alignas] = ACTIONS(2572), + [anon_sym__Alignas] = ACTIONS(2572), + [sym_primitive_type] = ACTIONS(2572), + [anon_sym_QMARK] = ACTIONS(2562), + [anon_sym_LT_EQ_GT] = ACTIONS(2562), + [anon_sym_or] = ACTIONS(2572), + [anon_sym_and] = ACTIONS(2572), + [anon_sym_bitor] = ACTIONS(2572), + [anon_sym_xor] = ACTIONS(2572), + [anon_sym_bitand] = ACTIONS(2572), + [anon_sym_not_eq] = ACTIONS(2572), + [anon_sym_DASH_DASH] = ACTIONS(2562), + [anon_sym_PLUS_PLUS] = ACTIONS(2562), + [anon_sym_DOT] = ACTIONS(2572), + [anon_sym_DOT_STAR] = ACTIONS(2562), + [anon_sym_DASH_GT] = ACTIONS(2562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2572), + [anon_sym_decltype] = ACTIONS(2572), + [anon_sym_final] = ACTIONS(2572), + [anon_sym_override] = ACTIONS(2572), + [anon_sym_GT2] = ACTIONS(2562), + [anon_sym_requires] = ACTIONS(2572), }, - [STATE(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), + [STATE(2344)] = { + [sym_identifier] = ACTIONS(5537), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5539), + [anon_sym_COMMA] = ACTIONS(5539), + [anon_sym_RPAREN] = ACTIONS(5539), + [aux_sym_preproc_if_token2] = ACTIONS(5539), + [aux_sym_preproc_else_token1] = ACTIONS(5539), + [aux_sym_preproc_elif_token1] = ACTIONS(5537), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5539), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5539), + [anon_sym_LPAREN2] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_STAR] = ACTIONS(5537), + [anon_sym_SLASH] = ACTIONS(5537), + [anon_sym_PERCENT] = ACTIONS(5537), + [anon_sym_PIPE_PIPE] = ACTIONS(5539), + [anon_sym_AMP_AMP] = ACTIONS(5539), + [anon_sym_PIPE] = ACTIONS(5537), + [anon_sym_CARET] = ACTIONS(5537), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_EQ_EQ] = ACTIONS(5539), + [anon_sym_BANG_EQ] = ACTIONS(5539), + [anon_sym_GT] = ACTIONS(5537), + [anon_sym_GT_EQ] = ACTIONS(5539), + [anon_sym_LT_EQ] = ACTIONS(5537), + [anon_sym_LT] = ACTIONS(5537), + [anon_sym_LT_LT] = ACTIONS(5537), + [anon_sym_GT_GT] = ACTIONS(5537), + [anon_sym_SEMI] = ACTIONS(5539), + [anon_sym___attribute__] = ACTIONS(5537), + [anon_sym___attribute] = ACTIONS(5537), + [anon_sym_COLON] = ACTIONS(5539), + [anon_sym_LBRACE] = ACTIONS(5539), + [anon_sym_RBRACE] = ACTIONS(5539), + [anon_sym_LBRACK] = ACTIONS(5539), + [anon_sym_RBRACK] = ACTIONS(5539), + [anon_sym_EQ] = ACTIONS(5537), + [anon_sym_QMARK] = ACTIONS(5539), + [anon_sym_STAR_EQ] = ACTIONS(5539), + [anon_sym_SLASH_EQ] = ACTIONS(5539), + [anon_sym_PERCENT_EQ] = ACTIONS(5539), + [anon_sym_PLUS_EQ] = ACTIONS(5539), + [anon_sym_DASH_EQ] = ACTIONS(5539), + [anon_sym_LT_LT_EQ] = ACTIONS(5539), + [anon_sym_GT_GT_EQ] = ACTIONS(5539), + [anon_sym_AMP_EQ] = ACTIONS(5539), + [anon_sym_CARET_EQ] = ACTIONS(5539), + [anon_sym_PIPE_EQ] = ACTIONS(5539), + [anon_sym_and_eq] = ACTIONS(5537), + [anon_sym_or_eq] = ACTIONS(5537), + [anon_sym_xor_eq] = ACTIONS(5537), + [anon_sym_LT_EQ_GT] = ACTIONS(5539), + [anon_sym_or] = ACTIONS(5537), + [anon_sym_and] = ACTIONS(5537), + [anon_sym_bitor] = ACTIONS(5537), + [anon_sym_xor] = ACTIONS(5537), + [anon_sym_bitand] = ACTIONS(5537), + [anon_sym_not_eq] = ACTIONS(5537), + [anon_sym_DASH_DASH] = ACTIONS(5539), + [anon_sym_PLUS_PLUS] = ACTIONS(5539), + [anon_sym_DOT] = ACTIONS(5537), + [anon_sym_DOT_STAR] = ACTIONS(5539), + [anon_sym_DASH_GT] = ACTIONS(5539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5537), + [anon_sym_decltype] = ACTIONS(5537), }, - [STATE(2339)] = { - [sym_identifier] = ACTIONS(5685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5687), - [anon_sym_COMMA] = ACTIONS(5687), - [anon_sym_RPAREN] = ACTIONS(5687), - [aux_sym_preproc_if_token2] = ACTIONS(5687), - [aux_sym_preproc_else_token1] = ACTIONS(5687), - [aux_sym_preproc_elif_token1] = ACTIONS(5685), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5687), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5687), - [anon_sym_LPAREN2] = ACTIONS(5687), - [anon_sym_DASH] = ACTIONS(5685), - [anon_sym_PLUS] = ACTIONS(5685), - [anon_sym_STAR] = ACTIONS(5685), - [anon_sym_SLASH] = ACTIONS(5685), - [anon_sym_PERCENT] = ACTIONS(5685), - [anon_sym_PIPE_PIPE] = ACTIONS(5687), - [anon_sym_AMP_AMP] = ACTIONS(5687), - [anon_sym_PIPE] = ACTIONS(5685), - [anon_sym_CARET] = ACTIONS(5685), - [anon_sym_AMP] = ACTIONS(5685), - [anon_sym_EQ_EQ] = ACTIONS(5687), - [anon_sym_BANG_EQ] = ACTIONS(5687), - [anon_sym_GT] = ACTIONS(5685), - [anon_sym_GT_EQ] = ACTIONS(5687), - [anon_sym_LT_EQ] = ACTIONS(5685), - [anon_sym_LT] = ACTIONS(5685), - [anon_sym_LT_LT] = ACTIONS(5685), - [anon_sym_GT_GT] = ACTIONS(5685), - [anon_sym_SEMI] = ACTIONS(5687), - [anon_sym___attribute__] = ACTIONS(5685), - [anon_sym___attribute] = ACTIONS(5685), - [anon_sym_COLON] = ACTIONS(5687), - [anon_sym_LBRACE] = ACTIONS(5687), - [anon_sym_RBRACE] = ACTIONS(5687), - [anon_sym_LBRACK] = ACTIONS(5687), - [anon_sym_RBRACK] = ACTIONS(5687), - [anon_sym_EQ] = ACTIONS(5685), - [anon_sym_QMARK] = ACTIONS(5687), - [anon_sym_STAR_EQ] = ACTIONS(5687), - [anon_sym_SLASH_EQ] = ACTIONS(5687), - [anon_sym_PERCENT_EQ] = ACTIONS(5687), - [anon_sym_PLUS_EQ] = ACTIONS(5687), - [anon_sym_DASH_EQ] = ACTIONS(5687), - [anon_sym_LT_LT_EQ] = ACTIONS(5687), - [anon_sym_GT_GT_EQ] = ACTIONS(5687), - [anon_sym_AMP_EQ] = ACTIONS(5687), - [anon_sym_CARET_EQ] = ACTIONS(5687), - [anon_sym_PIPE_EQ] = ACTIONS(5687), - [anon_sym_and_eq] = ACTIONS(5685), - [anon_sym_or_eq] = ACTIONS(5685), - [anon_sym_xor_eq] = ACTIONS(5685), - [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), + [STATE(2345)] = { + [sym_attribute_declaration] = STATE(2345), + [aux_sym_attributed_declarator_repeat1] = STATE(2345), + [sym_identifier] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6319), + [anon_sym_COMMA] = ACTIONS(6319), + [anon_sym_RPAREN] = ACTIONS(6319), + [aux_sym_preproc_if_token2] = ACTIONS(6319), + [aux_sym_preproc_else_token1] = ACTIONS(6319), + [aux_sym_preproc_elif_token1] = ACTIONS(2043), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6319), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6319), + [anon_sym_LPAREN2] = ACTIONS(6319), + [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(6319), + [anon_sym_AMP_AMP] = ACTIONS(6319), + [anon_sym_PIPE] = ACTIONS(2043), + [anon_sym_CARET] = ACTIONS(2043), + [anon_sym_AMP] = ACTIONS(2043), + [anon_sym_EQ_EQ] = ACTIONS(6319), + [anon_sym_BANG_EQ] = ACTIONS(6319), + [anon_sym_GT] = ACTIONS(2043), + [anon_sym_GT_EQ] = ACTIONS(6319), + [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(6319), + [anon_sym___attribute__] = ACTIONS(2043), + [anon_sym___attribute] = ACTIONS(2043), + [anon_sym_COLON] = ACTIONS(6319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6321), + [anon_sym_RBRACE] = ACTIONS(6319), + [anon_sym_LBRACK] = ACTIONS(2043), + [anon_sym_RBRACK] = ACTIONS(6319), + [anon_sym_EQ] = ACTIONS(2043), + [anon_sym_QMARK] = ACTIONS(6319), + [anon_sym_STAR_EQ] = ACTIONS(6319), + [anon_sym_SLASH_EQ] = ACTIONS(6319), + [anon_sym_PERCENT_EQ] = ACTIONS(6319), + [anon_sym_PLUS_EQ] = ACTIONS(6319), + [anon_sym_DASH_EQ] = ACTIONS(6319), + [anon_sym_LT_LT_EQ] = ACTIONS(6319), + [anon_sym_GT_GT_EQ] = ACTIONS(6319), + [anon_sym_AMP_EQ] = ACTIONS(6319), + [anon_sym_CARET_EQ] = ACTIONS(6319), + [anon_sym_PIPE_EQ] = ACTIONS(6319), + [anon_sym_and_eq] = ACTIONS(2043), + [anon_sym_or_eq] = ACTIONS(2043), + [anon_sym_xor_eq] = ACTIONS(2043), + [anon_sym_LT_EQ_GT] = ACTIONS(6319), + [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(6319), + [anon_sym_PLUS_PLUS] = ACTIONS(6319), + [anon_sym_DOT] = ACTIONS(2043), + [anon_sym_DOT_STAR] = ACTIONS(6319), + [anon_sym_DASH_GT] = ACTIONS(6319), + [sym_comment] = ACTIONS(3), }, - [STATE(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), + [STATE(2346)] = { + [sym_string_literal] = STATE(2198), + [sym_raw_string_literal] = STATE(2198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5950), + [anon_sym_COMMA] = ACTIONS(5950), + [anon_sym_LPAREN2] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5948), + [anon_sym_PLUS] = ACTIONS(5948), + [anon_sym_STAR] = ACTIONS(5948), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_PERCENT] = ACTIONS(5948), + [anon_sym_PIPE_PIPE] = ACTIONS(5950), + [anon_sym_AMP_AMP] = ACTIONS(5950), + [anon_sym_PIPE] = ACTIONS(5948), + [anon_sym_CARET] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5948), + [anon_sym_EQ_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_LT_EQ] = ACTIONS(5948), + [anon_sym_LT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_GT_GT] = ACTIONS(5948), + [anon_sym_SEMI] = ACTIONS(5950), + [anon_sym___attribute__] = ACTIONS(5948), + [anon_sym___attribute] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_EQ] = ACTIONS(5948), + [anon_sym_QMARK] = ACTIONS(5950), + [anon_sym_STAR_EQ] = ACTIONS(5950), + [anon_sym_SLASH_EQ] = ACTIONS(5950), + [anon_sym_PERCENT_EQ] = ACTIONS(5950), + [anon_sym_PLUS_EQ] = ACTIONS(5950), + [anon_sym_DASH_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_EQ] = ACTIONS(5950), + [anon_sym_GT_GT_EQ] = ACTIONS(5950), + [anon_sym_AMP_EQ] = ACTIONS(5950), + [anon_sym_CARET_EQ] = ACTIONS(5950), + [anon_sym_PIPE_EQ] = ACTIONS(5950), + [anon_sym_and_eq] = ACTIONS(5948), + [anon_sym_or_eq] = ACTIONS(5948), + [anon_sym_xor_eq] = ACTIONS(5948), + [anon_sym_LT_EQ_GT] = ACTIONS(5950), + [anon_sym_or] = ACTIONS(5948), + [anon_sym_and] = ACTIONS(5948), + [anon_sym_bitor] = ACTIONS(5948), + [anon_sym_xor] = ACTIONS(5948), + [anon_sym_bitand] = ACTIONS(5948), + [anon_sym_not_eq] = ACTIONS(5948), + [anon_sym_DASH_DASH] = ACTIONS(5950), + [anon_sym_PLUS_PLUS] = ACTIONS(5950), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_DOT_STAR] = ACTIONS(5950), + [anon_sym_DASH_GT] = ACTIONS(5950), + [anon_sym_L_DQUOTE] = ACTIONS(6014), + [anon_sym_u_DQUOTE] = ACTIONS(6014), + [anon_sym_U_DQUOTE] = ACTIONS(6014), + [anon_sym_u8_DQUOTE] = ACTIONS(6014), + [anon_sym_DQUOTE] = ACTIONS(6014), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6016), + [anon_sym_LR_DQUOTE] = ACTIONS(6016), + [anon_sym_uR_DQUOTE] = ACTIONS(6016), + [anon_sym_UR_DQUOTE] = ACTIONS(6016), + [anon_sym_u8R_DQUOTE] = ACTIONS(6016), + [sym_literal_suffix] = ACTIONS(5948), }, - [STATE(2341)] = { + [STATE(2347)] = { + [sym_identifier] = ACTIONS(5745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5747), + [anon_sym_COMMA] = ACTIONS(5747), + [anon_sym_RPAREN] = ACTIONS(5747), + [aux_sym_preproc_if_token2] = ACTIONS(5747), + [aux_sym_preproc_else_token1] = ACTIONS(5747), + [aux_sym_preproc_elif_token1] = ACTIONS(5745), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5747), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5747), + [anon_sym_LPAREN2] = ACTIONS(5747), + [anon_sym_DASH] = ACTIONS(5745), + [anon_sym_PLUS] = ACTIONS(5745), + [anon_sym_STAR] = ACTIONS(5745), + [anon_sym_SLASH] = ACTIONS(5745), + [anon_sym_PERCENT] = ACTIONS(5745), + [anon_sym_PIPE_PIPE] = ACTIONS(5747), + [anon_sym_AMP_AMP] = ACTIONS(5747), + [anon_sym_PIPE] = ACTIONS(5745), + [anon_sym_CARET] = ACTIONS(5745), + [anon_sym_AMP] = ACTIONS(5745), + [anon_sym_EQ_EQ] = ACTIONS(5747), + [anon_sym_BANG_EQ] = ACTIONS(5747), + [anon_sym_GT] = ACTIONS(5745), + [anon_sym_GT_EQ] = ACTIONS(5747), + [anon_sym_LT_EQ] = ACTIONS(5745), + [anon_sym_LT] = ACTIONS(5745), + [anon_sym_LT_LT] = ACTIONS(5745), + [anon_sym_GT_GT] = ACTIONS(5745), + [anon_sym_SEMI] = ACTIONS(5747), + [anon_sym___attribute__] = ACTIONS(5745), + [anon_sym___attribute] = ACTIONS(5745), + [anon_sym_COLON] = ACTIONS(5747), + [anon_sym_LBRACE] = ACTIONS(5747), + [anon_sym_RBRACE] = ACTIONS(5747), + [anon_sym_LBRACK] = ACTIONS(5747), + [anon_sym_RBRACK] = ACTIONS(5747), + [anon_sym_EQ] = ACTIONS(5745), + [anon_sym_QMARK] = ACTIONS(5747), + [anon_sym_STAR_EQ] = ACTIONS(5747), + [anon_sym_SLASH_EQ] = ACTIONS(5747), + [anon_sym_PERCENT_EQ] = ACTIONS(5747), + [anon_sym_PLUS_EQ] = ACTIONS(5747), + [anon_sym_DASH_EQ] = ACTIONS(5747), + [anon_sym_LT_LT_EQ] = ACTIONS(5747), + [anon_sym_GT_GT_EQ] = ACTIONS(5747), + [anon_sym_AMP_EQ] = ACTIONS(5747), + [anon_sym_CARET_EQ] = ACTIONS(5747), + [anon_sym_PIPE_EQ] = ACTIONS(5747), + [anon_sym_and_eq] = ACTIONS(5745), + [anon_sym_or_eq] = ACTIONS(5745), + [anon_sym_xor_eq] = ACTIONS(5745), + [anon_sym_LT_EQ_GT] = ACTIONS(5747), + [anon_sym_or] = ACTIONS(5745), + [anon_sym_and] = ACTIONS(5745), + [anon_sym_bitor] = ACTIONS(5745), + [anon_sym_xor] = ACTIONS(5745), + [anon_sym_bitand] = ACTIONS(5745), + [anon_sym_not_eq] = ACTIONS(5745), + [anon_sym_DASH_DASH] = ACTIONS(5747), + [anon_sym_PLUS_PLUS] = ACTIONS(5747), + [anon_sym_DOT] = ACTIONS(5745), + [anon_sym_DOT_STAR] = ACTIONS(5747), + [anon_sym_DASH_GT] = ACTIONS(5747), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5745), + [anon_sym_decltype] = ACTIONS(5745), + }, + [STATE(2348)] = { + [sym_identifier] = ACTIONS(5749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5751), + [anon_sym_COMMA] = ACTIONS(5751), + [anon_sym_RPAREN] = ACTIONS(5751), + [aux_sym_preproc_if_token2] = ACTIONS(5751), + [aux_sym_preproc_else_token1] = ACTIONS(5751), + [aux_sym_preproc_elif_token1] = ACTIONS(5749), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5751), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5751), + [anon_sym_LPAREN2] = ACTIONS(5751), + [anon_sym_DASH] = ACTIONS(5749), + [anon_sym_PLUS] = ACTIONS(5749), + [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_SLASH] = ACTIONS(5749), + [anon_sym_PERCENT] = ACTIONS(5749), + [anon_sym_PIPE_PIPE] = ACTIONS(5751), + [anon_sym_AMP_AMP] = ACTIONS(5751), + [anon_sym_PIPE] = ACTIONS(5749), + [anon_sym_CARET] = ACTIONS(5749), + [anon_sym_AMP] = ACTIONS(5749), + [anon_sym_EQ_EQ] = ACTIONS(5751), + [anon_sym_BANG_EQ] = ACTIONS(5751), + [anon_sym_GT] = ACTIONS(5749), + [anon_sym_GT_EQ] = ACTIONS(5751), + [anon_sym_LT_EQ] = ACTIONS(5749), + [anon_sym_LT] = ACTIONS(5749), + [anon_sym_LT_LT] = ACTIONS(5749), + [anon_sym_GT_GT] = ACTIONS(5749), + [anon_sym_SEMI] = ACTIONS(5751), + [anon_sym___attribute__] = ACTIONS(5749), + [anon_sym___attribute] = ACTIONS(5749), + [anon_sym_COLON] = ACTIONS(5751), + [anon_sym_LBRACE] = ACTIONS(5751), + [anon_sym_RBRACE] = ACTIONS(5751), + [anon_sym_LBRACK] = ACTIONS(5751), + [anon_sym_RBRACK] = ACTIONS(5751), + [anon_sym_EQ] = ACTIONS(5749), + [anon_sym_QMARK] = ACTIONS(5751), + [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(5751), + [anon_sym_or] = ACTIONS(5749), + [anon_sym_and] = ACTIONS(5749), + [anon_sym_bitor] = ACTIONS(5749), + [anon_sym_xor] = ACTIONS(5749), + [anon_sym_bitand] = ACTIONS(5749), + [anon_sym_not_eq] = ACTIONS(5749), + [anon_sym_DASH_DASH] = ACTIONS(5751), + [anon_sym_PLUS_PLUS] = ACTIONS(5751), + [anon_sym_DOT] = ACTIONS(5749), + [anon_sym_DOT_STAR] = ACTIONS(5751), + [anon_sym_DASH_GT] = ACTIONS(5751), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5749), + [anon_sym_decltype] = ACTIONS(5749), + }, + [STATE(2349)] = { + [sym_attribute_specifier] = STATE(1875), + [sym_enumerator_list] = STATE(2383), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6048), + [anon_sym_COMMA] = ACTIONS(6048), + [anon_sym_RPAREN] = ACTIONS(6048), + [anon_sym_LPAREN2] = ACTIONS(6048), + [anon_sym_DASH] = ACTIONS(6046), + [anon_sym_PLUS] = ACTIONS(6046), + [anon_sym_STAR] = ACTIONS(6048), + [anon_sym_SLASH] = ACTIONS(6046), + [anon_sym_PERCENT] = ACTIONS(6048), + [anon_sym_PIPE_PIPE] = ACTIONS(6048), + [anon_sym_AMP_AMP] = ACTIONS(6048), + [anon_sym_PIPE] = ACTIONS(6046), + [anon_sym_CARET] = ACTIONS(6048), + [anon_sym_AMP] = ACTIONS(6046), + [anon_sym_EQ_EQ] = ACTIONS(6048), + [anon_sym_BANG_EQ] = ACTIONS(6048), + [anon_sym_GT] = ACTIONS(6046), + [anon_sym_GT_EQ] = ACTIONS(6048), + [anon_sym_LT_EQ] = ACTIONS(6046), + [anon_sym_LT] = ACTIONS(6046), + [anon_sym_LT_LT] = ACTIONS(6048), + [anon_sym_GT_GT] = ACTIONS(6048), + [anon_sym_SEMI] = ACTIONS(6048), + [anon_sym___extension__] = ACTIONS(6048), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6048), + [anon_sym_LBRACE] = ACTIONS(6259), + [anon_sym_RBRACE] = ACTIONS(6048), + [anon_sym_LBRACK] = ACTIONS(6048), + [anon_sym_RBRACK] = ACTIONS(6048), + [anon_sym_const] = ACTIONS(6046), + [anon_sym_constexpr] = ACTIONS(6048), + [anon_sym_volatile] = ACTIONS(6048), + [anon_sym_restrict] = ACTIONS(6048), + [anon_sym___restrict__] = ACTIONS(6048), + [anon_sym__Atomic] = ACTIONS(6048), + [anon_sym__Noreturn] = ACTIONS(6048), + [anon_sym_noreturn] = ACTIONS(6048), + [anon_sym__Nonnull] = ACTIONS(6048), + [anon_sym_mutable] = ACTIONS(6048), + [anon_sym_constinit] = ACTIONS(6048), + [anon_sym_consteval] = ACTIONS(6048), + [anon_sym_alignas] = ACTIONS(6048), + [anon_sym__Alignas] = ACTIONS(6048), + [anon_sym_QMARK] = ACTIONS(6048), + [anon_sym_LT_EQ_GT] = ACTIONS(6048), + [anon_sym_or] = ACTIONS(6048), + [anon_sym_and] = ACTIONS(6048), + [anon_sym_bitor] = ACTIONS(6048), + [anon_sym_xor] = ACTIONS(6048), + [anon_sym_bitand] = ACTIONS(6048), + [anon_sym_not_eq] = ACTIONS(6048), + [anon_sym_DASH_DASH] = ACTIONS(6048), + [anon_sym_PLUS_PLUS] = ACTIONS(6048), + [anon_sym_DOT] = ACTIONS(6046), + [anon_sym_DOT_STAR] = ACTIONS(6048), + [anon_sym_DASH_GT] = ACTIONS(6048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6048), + [anon_sym_decltype] = ACTIONS(6048), + [anon_sym_final] = ACTIONS(6048), + [anon_sym_override] = ACTIONS(6048), + [anon_sym_requires] = ACTIONS(6048), + }, + [STATE(2350)] = { + [sym_string_literal] = STATE(2670), + [sym_template_argument_list] = STATE(3655), + [sym_raw_string_literal] = STATE(2670), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4161), + [anon_sym_COMMA] = ACTIONS(4161), + [anon_sym_LPAREN2] = ACTIONS(4161), + [anon_sym_DASH] = ACTIONS(4168), + [anon_sym_PLUS] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_SLASH] = ACTIONS(4168), + [anon_sym_PERCENT] = ACTIONS(4168), + [anon_sym_PIPE_PIPE] = ACTIONS(4161), + [anon_sym_AMP_AMP] = ACTIONS(4161), + [anon_sym_PIPE] = ACTIONS(4168), + [anon_sym_CARET] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4168), + [anon_sym_EQ_EQ] = ACTIONS(4161), + [anon_sym_BANG_EQ] = ACTIONS(4161), + [anon_sym_GT] = ACTIONS(4168), + [anon_sym_GT_EQ] = ACTIONS(4161), + [anon_sym_LT_EQ] = ACTIONS(4168), + [anon_sym_LT] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(4168), + [anon_sym_GT_GT] = ACTIONS(4168), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_LBRACE] = ACTIONS(4180), + [anon_sym_LBRACK] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(6109), + [anon_sym_QMARK] = ACTIONS(4161), + [anon_sym_STAR_EQ] = ACTIONS(6111), + [anon_sym_SLASH_EQ] = ACTIONS(6111), + [anon_sym_PERCENT_EQ] = ACTIONS(6111), + [anon_sym_PLUS_EQ] = ACTIONS(6111), + [anon_sym_DASH_EQ] = ACTIONS(6111), + [anon_sym_LT_LT_EQ] = ACTIONS(6111), + [anon_sym_GT_GT_EQ] = ACTIONS(6111), + [anon_sym_AMP_EQ] = ACTIONS(6111), + [anon_sym_CARET_EQ] = ACTIONS(6111), + [anon_sym_PIPE_EQ] = ACTIONS(6111), + [anon_sym_and_eq] = ACTIONS(6111), + [anon_sym_or_eq] = ACTIONS(6111), + [anon_sym_xor_eq] = ACTIONS(6111), + [anon_sym_LT_EQ_GT] = ACTIONS(4161), + [anon_sym_or] = ACTIONS(4168), + [anon_sym_and] = ACTIONS(4168), + [anon_sym_bitor] = ACTIONS(4161), + [anon_sym_xor] = ACTIONS(4168), + [anon_sym_bitand] = ACTIONS(4161), + [anon_sym_not_eq] = ACTIONS(4161), + [anon_sym_DASH_DASH] = ACTIONS(4161), + [anon_sym_PLUS_PLUS] = ACTIONS(4161), + [anon_sym_DOT] = ACTIONS(4168), + [anon_sym_DOT_STAR] = ACTIONS(4161), + [anon_sym_DASH_GT] = ACTIONS(4161), + [anon_sym_L_DQUOTE] = ACTIONS(3639), + [anon_sym_u_DQUOTE] = ACTIONS(3639), + [anon_sym_U_DQUOTE] = ACTIONS(3639), + [anon_sym_u8_DQUOTE] = ACTIONS(3639), + [anon_sym_DQUOTE] = ACTIONS(3639), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(3643), + [anon_sym_LR_DQUOTE] = ACTIONS(3643), + [anon_sym_uR_DQUOTE] = ACTIONS(3643), + [anon_sym_UR_DQUOTE] = ACTIONS(3643), + [anon_sym_u8R_DQUOTE] = ACTIONS(3643), + }, + [STATE(2351)] = { [sym_identifier] = ACTIONS(5753), [anon_sym_DOT_DOT_DOT] = ACTIONS(5755), [anon_sym_COMMA] = ACTIONS(5755), @@ -294239,209 +295621,1216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(5753), [anon_sym_decltype] = ACTIONS(5753), }, - [STATE(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), + [STATE(2352)] = { + [sym_identifier] = ACTIONS(5757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5759), + [anon_sym_COMMA] = ACTIONS(5759), + [anon_sym_RPAREN] = ACTIONS(5759), + [aux_sym_preproc_if_token2] = ACTIONS(5759), + [aux_sym_preproc_else_token1] = ACTIONS(5759), + [aux_sym_preproc_elif_token1] = ACTIONS(5757), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5759), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5759), + [anon_sym_LPAREN2] = ACTIONS(5759), + [anon_sym_DASH] = ACTIONS(5757), + [anon_sym_PLUS] = ACTIONS(5757), + [anon_sym_STAR] = ACTIONS(5757), + [anon_sym_SLASH] = ACTIONS(5757), + [anon_sym_PERCENT] = ACTIONS(5757), + [anon_sym_PIPE_PIPE] = ACTIONS(5759), + [anon_sym_AMP_AMP] = ACTIONS(5759), + [anon_sym_PIPE] = ACTIONS(5757), + [anon_sym_CARET] = ACTIONS(5757), + [anon_sym_AMP] = ACTIONS(5757), + [anon_sym_EQ_EQ] = ACTIONS(5759), + [anon_sym_BANG_EQ] = ACTIONS(5759), + [anon_sym_GT] = ACTIONS(5757), + [anon_sym_GT_EQ] = ACTIONS(5759), + [anon_sym_LT_EQ] = ACTIONS(5757), + [anon_sym_LT] = ACTIONS(5757), + [anon_sym_LT_LT] = ACTIONS(5757), + [anon_sym_GT_GT] = ACTIONS(5757), + [anon_sym_SEMI] = ACTIONS(5759), + [anon_sym___attribute__] = ACTIONS(5757), + [anon_sym___attribute] = ACTIONS(5757), + [anon_sym_COLON] = ACTIONS(5759), + [anon_sym_LBRACE] = ACTIONS(5759), + [anon_sym_RBRACE] = ACTIONS(5759), + [anon_sym_LBRACK] = ACTIONS(5759), + [anon_sym_RBRACK] = ACTIONS(5759), + [anon_sym_EQ] = ACTIONS(5757), + [anon_sym_QMARK] = ACTIONS(5759), + [anon_sym_STAR_EQ] = ACTIONS(5759), + [anon_sym_SLASH_EQ] = ACTIONS(5759), + [anon_sym_PERCENT_EQ] = ACTIONS(5759), + [anon_sym_PLUS_EQ] = ACTIONS(5759), + [anon_sym_DASH_EQ] = ACTIONS(5759), + [anon_sym_LT_LT_EQ] = ACTIONS(5759), + [anon_sym_GT_GT_EQ] = ACTIONS(5759), + [anon_sym_AMP_EQ] = ACTIONS(5759), + [anon_sym_CARET_EQ] = ACTIONS(5759), + [anon_sym_PIPE_EQ] = ACTIONS(5759), + [anon_sym_and_eq] = ACTIONS(5757), + [anon_sym_or_eq] = ACTIONS(5757), + [anon_sym_xor_eq] = ACTIONS(5757), + [anon_sym_LT_EQ_GT] = ACTIONS(5759), + [anon_sym_or] = ACTIONS(5757), + [anon_sym_and] = ACTIONS(5757), + [anon_sym_bitor] = ACTIONS(5757), + [anon_sym_xor] = ACTIONS(5757), + [anon_sym_bitand] = ACTIONS(5757), + [anon_sym_not_eq] = ACTIONS(5757), + [anon_sym_DASH_DASH] = ACTIONS(5759), + [anon_sym_PLUS_PLUS] = ACTIONS(5759), + [anon_sym_DOT] = ACTIONS(5757), + [anon_sym_DOT_STAR] = ACTIONS(5759), + [anon_sym_DASH_GT] = ACTIONS(5759), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5757), + [anon_sym_decltype] = ACTIONS(5757), }, - [STATE(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), + [STATE(2353)] = { + [sym_identifier] = ACTIONS(5719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5721), + [anon_sym_COMMA] = ACTIONS(5721), + [anon_sym_RPAREN] = ACTIONS(5721), + [aux_sym_preproc_if_token2] = ACTIONS(5721), + [aux_sym_preproc_else_token1] = ACTIONS(5721), + [aux_sym_preproc_elif_token1] = ACTIONS(5719), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5721), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5721), + [anon_sym_LPAREN2] = ACTIONS(5721), + [anon_sym_DASH] = ACTIONS(5719), + [anon_sym_PLUS] = ACTIONS(5719), + [anon_sym_STAR] = ACTIONS(5719), + [anon_sym_SLASH] = ACTIONS(5719), + [anon_sym_PERCENT] = ACTIONS(5719), + [anon_sym_PIPE_PIPE] = ACTIONS(5721), + [anon_sym_AMP_AMP] = ACTIONS(5721), + [anon_sym_PIPE] = ACTIONS(5719), + [anon_sym_CARET] = ACTIONS(5719), + [anon_sym_AMP] = ACTIONS(5719), + [anon_sym_EQ_EQ] = ACTIONS(5721), + [anon_sym_BANG_EQ] = ACTIONS(5721), + [anon_sym_GT] = ACTIONS(5719), + [anon_sym_GT_EQ] = ACTIONS(5721), + [anon_sym_LT_EQ] = ACTIONS(5719), + [anon_sym_LT] = ACTIONS(5719), + [anon_sym_LT_LT] = ACTIONS(5719), + [anon_sym_GT_GT] = ACTIONS(5719), + [anon_sym_SEMI] = ACTIONS(5721), + [anon_sym___attribute__] = ACTIONS(5719), + [anon_sym___attribute] = ACTIONS(5719), + [anon_sym_COLON] = ACTIONS(5721), + [anon_sym_LBRACE] = ACTIONS(5721), + [anon_sym_RBRACE] = ACTIONS(5721), + [anon_sym_LBRACK] = ACTIONS(5721), + [anon_sym_RBRACK] = ACTIONS(5721), + [anon_sym_EQ] = ACTIONS(5719), + [anon_sym_QMARK] = ACTIONS(5721), + [anon_sym_STAR_EQ] = ACTIONS(5721), + [anon_sym_SLASH_EQ] = ACTIONS(5721), + [anon_sym_PERCENT_EQ] = ACTIONS(5721), + [anon_sym_PLUS_EQ] = ACTIONS(5721), + [anon_sym_DASH_EQ] = ACTIONS(5721), + [anon_sym_LT_LT_EQ] = ACTIONS(5721), + [anon_sym_GT_GT_EQ] = ACTIONS(5721), + [anon_sym_AMP_EQ] = ACTIONS(5721), + [anon_sym_CARET_EQ] = ACTIONS(5721), + [anon_sym_PIPE_EQ] = ACTIONS(5721), + [anon_sym_and_eq] = ACTIONS(5719), + [anon_sym_or_eq] = ACTIONS(5719), + [anon_sym_xor_eq] = ACTIONS(5719), + [anon_sym_LT_EQ_GT] = ACTIONS(5721), + [anon_sym_or] = ACTIONS(5719), + [anon_sym_and] = ACTIONS(5719), + [anon_sym_bitor] = ACTIONS(5719), + [anon_sym_xor] = ACTIONS(5719), + [anon_sym_bitand] = ACTIONS(5719), + [anon_sym_not_eq] = ACTIONS(5719), + [anon_sym_DASH_DASH] = ACTIONS(5721), + [anon_sym_PLUS_PLUS] = ACTIONS(5721), + [anon_sym_DOT] = ACTIONS(5719), + [anon_sym_DOT_STAR] = ACTIONS(5721), + [anon_sym_DASH_GT] = ACTIONS(5721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5719), + [anon_sym_decltype] = ACTIONS(5719), }, - [STATE(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), + [STATE(2354)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_COMMA] = ACTIONS(5956), + [anon_sym_RPAREN] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(5956), + [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(5956), + [anon_sym_AMP_AMP] = ACTIONS(5956), + [anon_sym_PIPE] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5958), + [anon_sym_AMP] = ACTIONS(5958), + [anon_sym_EQ_EQ] = ACTIONS(5956), + [anon_sym_BANG_EQ] = ACTIONS(5956), + [anon_sym_GT] = ACTIONS(5958), + [anon_sym_GT_EQ] = ACTIONS(5956), + [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(5956), + [anon_sym___attribute__] = ACTIONS(5956), + [anon_sym___attribute] = ACTIONS(5958), + [anon_sym_COLON] = ACTIONS(5956), + [anon_sym_LBRACE] = ACTIONS(5956), + [anon_sym_RBRACE] = ACTIONS(5956), [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), + [anon_sym_LBRACK] = ACTIONS(5956), + [anon_sym_RBRACK] = ACTIONS(5956), + [anon_sym_EQ] = ACTIONS(5958), + [anon_sym_QMARK] = ACTIONS(5956), + [anon_sym_STAR_EQ] = ACTIONS(5956), + [anon_sym_SLASH_EQ] = ACTIONS(5956), + [anon_sym_PERCENT_EQ] = ACTIONS(5956), + [anon_sym_PLUS_EQ] = ACTIONS(5956), + [anon_sym_DASH_EQ] = ACTIONS(5956), + [anon_sym_LT_LT_EQ] = ACTIONS(5956), + [anon_sym_GT_GT_EQ] = ACTIONS(5956), + [anon_sym_AMP_EQ] = ACTIONS(5956), + [anon_sym_CARET_EQ] = ACTIONS(5956), + [anon_sym_PIPE_EQ] = ACTIONS(5956), + [anon_sym_and_eq] = ACTIONS(5956), + [anon_sym_or_eq] = ACTIONS(5956), + [anon_sym_xor_eq] = ACTIONS(5956), + [anon_sym_LT_EQ_GT] = ACTIONS(5956), + [anon_sym_or] = ACTIONS(5958), + [anon_sym_and] = ACTIONS(5958), + [anon_sym_bitor] = ACTIONS(5956), + [anon_sym_xor] = ACTIONS(5958), + [anon_sym_bitand] = ACTIONS(5956), + [anon_sym_not_eq] = ACTIONS(5956), + [anon_sym_DASH_DASH] = ACTIONS(5956), + [anon_sym_PLUS_PLUS] = ACTIONS(5956), + [anon_sym_DOT] = ACTIONS(5958), + [anon_sym_DOT_STAR] = ACTIONS(5956), + [anon_sym_DASH_GT] = ACTIONS(5956), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5919), - [anon_sym_decltype] = ACTIONS(5919), + [sym_auto] = ACTIONS(5956), + [anon_sym_decltype] = ACTIONS(5956), }, - [STATE(2345)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1608), + [STATE(2355)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2361), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5917), + [anon_sym_COMMA] = ACTIONS(5917), + [anon_sym_LPAREN2] = ACTIONS(5917), + [anon_sym_DASH] = ACTIONS(5919), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5917), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_PERCENT] = ACTIONS(5917), + [anon_sym_PIPE_PIPE] = ACTIONS(5917), + [anon_sym_AMP_AMP] = ACTIONS(5917), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5917), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_EQ_EQ] = ACTIONS(5917), + [anon_sym_BANG_EQ] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_GT_EQ] = ACTIONS(5919), + [anon_sym_LT_EQ] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_LT_LT] = ACTIONS(5917), + [anon_sym_GT_GT] = ACTIONS(5919), + [anon_sym___extension__] = ACTIONS(5917), + [anon_sym___attribute__] = ACTIONS(5917), + [anon_sym___attribute] = ACTIONS(5919), + [anon_sym_LBRACE] = ACTIONS(5917), + [anon_sym_signed] = ACTIONS(6326), + [anon_sym_unsigned] = ACTIONS(6326), + [anon_sym_long] = ACTIONS(6326), + [anon_sym_short] = ACTIONS(6326), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_const] = ACTIONS(5919), + [anon_sym_constexpr] = ACTIONS(5917), + [anon_sym_volatile] = ACTIONS(5917), + [anon_sym_restrict] = ACTIONS(5917), + [anon_sym___restrict__] = ACTIONS(5917), + [anon_sym__Atomic] = ACTIONS(5917), + [anon_sym__Noreturn] = ACTIONS(5917), + [anon_sym_noreturn] = ACTIONS(5917), + [anon_sym__Nonnull] = ACTIONS(5917), + [anon_sym_mutable] = ACTIONS(5917), + [anon_sym_constinit] = ACTIONS(5917), + [anon_sym_consteval] = ACTIONS(5917), + [anon_sym_alignas] = ACTIONS(5917), + [anon_sym__Alignas] = ACTIONS(5917), + [anon_sym_QMARK] = ACTIONS(5917), + [anon_sym_LT_EQ_GT] = ACTIONS(5917), + [anon_sym_or] = ACTIONS(5917), + [anon_sym_and] = ACTIONS(5917), + [anon_sym_bitor] = ACTIONS(5917), + [anon_sym_xor] = ACTIONS(5917), + [anon_sym_bitand] = ACTIONS(5917), + [anon_sym_not_eq] = ACTIONS(5917), + [anon_sym_DASH_DASH] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5919), + [anon_sym_DOT_STAR] = ACTIONS(5917), + [anon_sym_DASH_GT] = ACTIONS(5917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5917), + [anon_sym_decltype] = ACTIONS(5917), + [anon_sym_final] = ACTIONS(5917), + [anon_sym_override] = ACTIONS(5917), + [anon_sym_GT2] = ACTIONS(5917), + [anon_sym_requires] = ACTIONS(5917), + }, + [STATE(2356)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5923), + [anon_sym_COMMA] = ACTIONS(5923), + [anon_sym_LPAREN2] = ACTIONS(5923), + [anon_sym_DASH] = ACTIONS(5925), + [anon_sym_PLUS] = ACTIONS(5925), + [anon_sym_STAR] = ACTIONS(5923), + [anon_sym_SLASH] = ACTIONS(5925), + [anon_sym_PERCENT] = ACTIONS(5923), + [anon_sym_PIPE_PIPE] = ACTIONS(5923), + [anon_sym_AMP_AMP] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5923), + [anon_sym_AMP] = ACTIONS(5925), + [anon_sym_EQ_EQ] = ACTIONS(5923), + [anon_sym_BANG_EQ] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_GT_EQ] = ACTIONS(5925), + [anon_sym_LT_EQ] = ACTIONS(5925), + [anon_sym_LT] = ACTIONS(5925), + [anon_sym_LT_LT] = ACTIONS(5923), + [anon_sym_GT_GT] = ACTIONS(5925), + [anon_sym___extension__] = ACTIONS(5923), + [anon_sym___attribute__] = ACTIONS(5923), + [anon_sym___attribute] = ACTIONS(5925), + [anon_sym_LBRACE] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(6328), + [anon_sym_unsigned] = ACTIONS(6328), + [anon_sym_long] = ACTIONS(6328), + [anon_sym_short] = ACTIONS(6328), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_const] = ACTIONS(5925), + [anon_sym_constexpr] = ACTIONS(5923), + [anon_sym_volatile] = ACTIONS(5923), + [anon_sym_restrict] = ACTIONS(5923), + [anon_sym___restrict__] = ACTIONS(5923), + [anon_sym__Atomic] = ACTIONS(5923), + [anon_sym__Noreturn] = ACTIONS(5923), + [anon_sym_noreturn] = ACTIONS(5923), + [anon_sym__Nonnull] = ACTIONS(5923), + [anon_sym_mutable] = ACTIONS(5923), + [anon_sym_constinit] = ACTIONS(5923), + [anon_sym_consteval] = ACTIONS(5923), + [anon_sym_alignas] = ACTIONS(5923), + [anon_sym__Alignas] = ACTIONS(5923), + [anon_sym_QMARK] = ACTIONS(5923), + [anon_sym_LT_EQ_GT] = ACTIONS(5923), + [anon_sym_or] = ACTIONS(5923), + [anon_sym_and] = ACTIONS(5923), + [anon_sym_bitor] = ACTIONS(5923), + [anon_sym_xor] = ACTIONS(5923), + [anon_sym_bitand] = ACTIONS(5923), + [anon_sym_not_eq] = ACTIONS(5923), + [anon_sym_DASH_DASH] = ACTIONS(5923), + [anon_sym_PLUS_PLUS] = ACTIONS(5923), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_DOT_STAR] = ACTIONS(5923), + [anon_sym_DASH_GT] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5923), + [anon_sym_decltype] = ACTIONS(5923), + [anon_sym_final] = ACTIONS(5923), + [anon_sym_override] = ACTIONS(5923), + [anon_sym_GT2] = ACTIONS(5923), + [anon_sym_requires] = ACTIONS(5923), + }, + [STATE(2357)] = { + [sym_identifier] = ACTIONS(6330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6332), + [anon_sym_COMMA] = ACTIONS(6332), + [anon_sym_RPAREN] = ACTIONS(6332), + [aux_sym_preproc_if_token2] = ACTIONS(6332), + [aux_sym_preproc_else_token1] = ACTIONS(6332), + [aux_sym_preproc_elif_token1] = ACTIONS(6330), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6332), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6332), + [anon_sym_LPAREN2] = ACTIONS(6332), + [anon_sym_DASH] = ACTIONS(6330), + [anon_sym_PLUS] = ACTIONS(6330), + [anon_sym_STAR] = ACTIONS(6330), + [anon_sym_SLASH] = ACTIONS(6330), + [anon_sym_PERCENT] = ACTIONS(6330), + [anon_sym_PIPE_PIPE] = ACTIONS(6332), + [anon_sym_AMP_AMP] = ACTIONS(6332), + [anon_sym_PIPE] = ACTIONS(6330), + [anon_sym_CARET] = ACTIONS(6330), + [anon_sym_AMP] = ACTIONS(6330), + [anon_sym_EQ_EQ] = ACTIONS(6332), + [anon_sym_BANG_EQ] = ACTIONS(6332), + [anon_sym_GT] = ACTIONS(6330), + [anon_sym_GT_EQ] = ACTIONS(6332), + [anon_sym_LT_EQ] = ACTIONS(6330), + [anon_sym_LT] = ACTIONS(6330), + [anon_sym_LT_LT] = ACTIONS(6330), + [anon_sym_GT_GT] = ACTIONS(6330), + [anon_sym_SEMI] = ACTIONS(6332), + [anon_sym___attribute__] = ACTIONS(6330), + [anon_sym___attribute] = ACTIONS(6330), + [anon_sym_COLON] = ACTIONS(6330), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(6332), + [anon_sym_RBRACE] = ACTIONS(6332), + [anon_sym_LBRACK] = ACTIONS(6332), + [anon_sym_RBRACK] = ACTIONS(6332), + [anon_sym_EQ] = ACTIONS(6330), + [anon_sym_QMARK] = ACTIONS(6332), + [anon_sym_STAR_EQ] = ACTIONS(6332), + [anon_sym_SLASH_EQ] = ACTIONS(6332), + [anon_sym_PERCENT_EQ] = ACTIONS(6332), + [anon_sym_PLUS_EQ] = ACTIONS(6332), + [anon_sym_DASH_EQ] = ACTIONS(6332), + [anon_sym_LT_LT_EQ] = ACTIONS(6332), + [anon_sym_GT_GT_EQ] = ACTIONS(6332), + [anon_sym_AMP_EQ] = ACTIONS(6332), + [anon_sym_CARET_EQ] = ACTIONS(6332), + [anon_sym_PIPE_EQ] = ACTIONS(6332), + [anon_sym_and_eq] = ACTIONS(6330), + [anon_sym_or_eq] = ACTIONS(6330), + [anon_sym_xor_eq] = ACTIONS(6330), + [anon_sym_LT_EQ_GT] = ACTIONS(6332), + [anon_sym_or] = ACTIONS(6330), + [anon_sym_and] = ACTIONS(6330), + [anon_sym_bitor] = ACTIONS(6330), + [anon_sym_xor] = ACTIONS(6330), + [anon_sym_bitand] = ACTIONS(6330), + [anon_sym_not_eq] = ACTIONS(6330), + [anon_sym_DASH_DASH] = ACTIONS(6332), + [anon_sym_PLUS_PLUS] = ACTIONS(6332), + [anon_sym_DOT] = ACTIONS(6330), + [anon_sym_DOT_STAR] = ACTIONS(6332), + [anon_sym_DASH_GT] = ACTIONS(6332), + [sym_comment] = ACTIONS(3), + }, + [STATE(2358)] = { + [sym_attribute_specifier] = STATE(1912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6194), + [anon_sym_COMMA] = ACTIONS(6194), + [anon_sym_RPAREN] = ACTIONS(6194), + [anon_sym_LPAREN2] = ACTIONS(6194), + [anon_sym_DASH] = ACTIONS(6192), + [anon_sym_PLUS] = ACTIONS(6192), + [anon_sym_STAR] = ACTIONS(6194), + [anon_sym_SLASH] = ACTIONS(6192), + [anon_sym_PERCENT] = ACTIONS(6194), + [anon_sym_PIPE_PIPE] = ACTIONS(6194), + [anon_sym_AMP_AMP] = ACTIONS(6194), + [anon_sym_PIPE] = ACTIONS(6192), + [anon_sym_CARET] = ACTIONS(6194), + [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(6194), + [anon_sym_GT_GT] = ACTIONS(6194), + [anon_sym_SEMI] = ACTIONS(6194), + [anon_sym___extension__] = ACTIONS(6194), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6194), + [anon_sym_LBRACE] = ACTIONS(6194), + [anon_sym_RBRACE] = ACTIONS(6194), + [anon_sym_LBRACK] = ACTIONS(6194), + [anon_sym_RBRACK] = ACTIONS(6194), + [anon_sym_const] = ACTIONS(6192), + [anon_sym_constexpr] = ACTIONS(6194), + [anon_sym_volatile] = ACTIONS(6194), + [anon_sym_restrict] = ACTIONS(6194), + [anon_sym___restrict__] = ACTIONS(6194), + [anon_sym__Atomic] = ACTIONS(6194), + [anon_sym__Noreturn] = ACTIONS(6194), + [anon_sym_noreturn] = ACTIONS(6194), + [anon_sym__Nonnull] = ACTIONS(6194), + [anon_sym_mutable] = ACTIONS(6194), + [anon_sym_constinit] = ACTIONS(6194), + [anon_sym_consteval] = ACTIONS(6194), + [anon_sym_alignas] = ACTIONS(6194), + [anon_sym__Alignas] = ACTIONS(6194), + [anon_sym_QMARK] = ACTIONS(6194), + [anon_sym_LT_EQ_GT] = ACTIONS(6194), + [anon_sym_or] = ACTIONS(6194), + [anon_sym_and] = ACTIONS(6194), + [anon_sym_bitor] = ACTIONS(6194), + [anon_sym_xor] = ACTIONS(6194), + [anon_sym_bitand] = ACTIONS(6194), + [anon_sym_not_eq] = ACTIONS(6194), + [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), + [sym_auto] = ACTIONS(6194), + [anon_sym_decltype] = ACTIONS(6194), + [anon_sym_final] = ACTIONS(6194), + [anon_sym_override] = ACTIONS(6194), + [anon_sym_requires] = ACTIONS(6194), + }, + [STATE(2359)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2354), + [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(5919), + [anon_sym_PLUS] = ACTIONS(5919), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_SLASH] = ACTIONS(5919), + [anon_sym_PERCENT] = ACTIONS(5919), + [anon_sym_PIPE_PIPE] = ACTIONS(5917), + [anon_sym_AMP_AMP] = ACTIONS(5917), + [anon_sym_PIPE] = ACTIONS(5919), + [anon_sym_CARET] = ACTIONS(5919), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_EQ_EQ] = ACTIONS(5917), + [anon_sym_BANG_EQ] = ACTIONS(5917), + [anon_sym_GT] = ACTIONS(5919), + [anon_sym_GT_EQ] = ACTIONS(5917), + [anon_sym_LT_EQ] = ACTIONS(5919), + [anon_sym_LT] = ACTIONS(5919), + [anon_sym_LT_LT] = ACTIONS(5919), + [anon_sym_GT_GT] = ACTIONS(5919), + [anon_sym_SEMI] = ACTIONS(5917), + [anon_sym___attribute__] = ACTIONS(5917), + [anon_sym___attribute] = ACTIONS(5919), + [anon_sym_COLON] = ACTIONS(5917), + [anon_sym_LBRACE] = ACTIONS(5917), + [anon_sym_RBRACE] = ACTIONS(5917), + [anon_sym_signed] = ACTIONS(6334), + [anon_sym_unsigned] = ACTIONS(6334), + [anon_sym_long] = ACTIONS(6334), + [anon_sym_short] = ACTIONS(6334), + [anon_sym_LBRACK] = ACTIONS(5917), + [anon_sym_RBRACK] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(5919), + [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(5917), + [anon_sym_or_eq] = ACTIONS(5917), + [anon_sym_xor_eq] = ACTIONS(5917), + [anon_sym_LT_EQ_GT] = ACTIONS(5917), + [anon_sym_or] = ACTIONS(5919), + [anon_sym_and] = ACTIONS(5919), + [anon_sym_bitor] = ACTIONS(5917), + [anon_sym_xor] = ACTIONS(5919), + [anon_sym_bitand] = ACTIONS(5917), + [anon_sym_not_eq] = ACTIONS(5917), + [anon_sym_DASH_DASH] = ACTIONS(5917), + [anon_sym_PLUS_PLUS] = ACTIONS(5917), + [anon_sym_DOT] = ACTIONS(5919), + [anon_sym_DOT_STAR] = ACTIONS(5917), + [anon_sym_DASH_GT] = ACTIONS(5917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5917), + [anon_sym_decltype] = ACTIONS(5917), + }, + [STATE(2360)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5923), + [anon_sym_COMMA] = ACTIONS(5923), + [anon_sym_RPAREN] = ACTIONS(5923), + [anon_sym_LPAREN2] = ACTIONS(5923), + [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(5923), + [anon_sym_AMP_AMP] = ACTIONS(5923), + [anon_sym_PIPE] = ACTIONS(5925), + [anon_sym_CARET] = ACTIONS(5925), + [anon_sym_AMP] = ACTIONS(5925), + [anon_sym_EQ_EQ] = ACTIONS(5923), + [anon_sym_BANG_EQ] = ACTIONS(5923), + [anon_sym_GT] = ACTIONS(5925), + [anon_sym_GT_EQ] = ACTIONS(5923), + [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(5923), + [anon_sym___attribute__] = ACTIONS(5923), + [anon_sym___attribute] = ACTIONS(5925), + [anon_sym_COLON] = ACTIONS(5923), + [anon_sym_LBRACE] = ACTIONS(5923), + [anon_sym_RBRACE] = ACTIONS(5923), + [anon_sym_signed] = ACTIONS(6336), + [anon_sym_unsigned] = ACTIONS(6336), + [anon_sym_long] = ACTIONS(6336), + [anon_sym_short] = ACTIONS(6336), + [anon_sym_LBRACK] = ACTIONS(5923), + [anon_sym_RBRACK] = ACTIONS(5923), + [anon_sym_EQ] = ACTIONS(5925), + [anon_sym_QMARK] = ACTIONS(5923), + [anon_sym_STAR_EQ] = ACTIONS(5923), + [anon_sym_SLASH_EQ] = ACTIONS(5923), + [anon_sym_PERCENT_EQ] = ACTIONS(5923), + [anon_sym_PLUS_EQ] = ACTIONS(5923), + [anon_sym_DASH_EQ] = ACTIONS(5923), + [anon_sym_LT_LT_EQ] = ACTIONS(5923), + [anon_sym_GT_GT_EQ] = ACTIONS(5923), + [anon_sym_AMP_EQ] = ACTIONS(5923), + [anon_sym_CARET_EQ] = ACTIONS(5923), + [anon_sym_PIPE_EQ] = ACTIONS(5923), + [anon_sym_and_eq] = ACTIONS(5923), + [anon_sym_or_eq] = ACTIONS(5923), + [anon_sym_xor_eq] = ACTIONS(5923), + [anon_sym_LT_EQ_GT] = ACTIONS(5923), + [anon_sym_or] = ACTIONS(5925), + [anon_sym_and] = ACTIONS(5925), + [anon_sym_bitor] = ACTIONS(5923), + [anon_sym_xor] = ACTIONS(5925), + [anon_sym_bitand] = ACTIONS(5923), + [anon_sym_not_eq] = ACTIONS(5923), + [anon_sym_DASH_DASH] = ACTIONS(5923), + [anon_sym_PLUS_PLUS] = ACTIONS(5923), + [anon_sym_DOT] = ACTIONS(5925), + [anon_sym_DOT_STAR] = ACTIONS(5923), + [anon_sym_DASH_GT] = ACTIONS(5923), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5923), + [anon_sym_decltype] = ACTIONS(5923), + }, + [STATE(2361)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5956), + [anon_sym_COMMA] = ACTIONS(5956), + [anon_sym_LPAREN2] = ACTIONS(5956), + [anon_sym_DASH] = ACTIONS(5958), + [anon_sym_PLUS] = ACTIONS(5958), + [anon_sym_STAR] = ACTIONS(5956), + [anon_sym_SLASH] = ACTIONS(5958), + [anon_sym_PERCENT] = ACTIONS(5956), + [anon_sym_PIPE_PIPE] = ACTIONS(5956), + [anon_sym_AMP_AMP] = ACTIONS(5956), + [anon_sym_PIPE] = ACTIONS(5958), + [anon_sym_CARET] = ACTIONS(5956), + [anon_sym_AMP] = ACTIONS(5958), + [anon_sym_EQ_EQ] = ACTIONS(5956), + [anon_sym_BANG_EQ] = ACTIONS(5956), + [anon_sym_GT] = ACTIONS(5958), + [anon_sym_GT_EQ] = ACTIONS(5958), + [anon_sym_LT_EQ] = ACTIONS(5958), + [anon_sym_LT] = ACTIONS(5958), + [anon_sym_LT_LT] = ACTIONS(5956), + [anon_sym_GT_GT] = ACTIONS(5958), + [anon_sym___extension__] = ACTIONS(5956), + [anon_sym___attribute__] = ACTIONS(5956), + [anon_sym___attribute] = ACTIONS(5958), + [anon_sym_LBRACE] = ACTIONS(5956), + [anon_sym_signed] = ACTIONS(6338), + [anon_sym_unsigned] = ACTIONS(6338), + [anon_sym_long] = ACTIONS(6338), + [anon_sym_short] = ACTIONS(6338), + [anon_sym_LBRACK] = ACTIONS(5956), + [anon_sym_const] = ACTIONS(5958), + [anon_sym_constexpr] = ACTIONS(5956), + [anon_sym_volatile] = ACTIONS(5956), + [anon_sym_restrict] = ACTIONS(5956), + [anon_sym___restrict__] = ACTIONS(5956), + [anon_sym__Atomic] = ACTIONS(5956), + [anon_sym__Noreturn] = ACTIONS(5956), + [anon_sym_noreturn] = ACTIONS(5956), + [anon_sym__Nonnull] = ACTIONS(5956), + [anon_sym_mutable] = ACTIONS(5956), + [anon_sym_constinit] = ACTIONS(5956), + [anon_sym_consteval] = ACTIONS(5956), + [anon_sym_alignas] = ACTIONS(5956), + [anon_sym__Alignas] = ACTIONS(5956), + [anon_sym_QMARK] = ACTIONS(5956), + [anon_sym_LT_EQ_GT] = ACTIONS(5956), + [anon_sym_or] = ACTIONS(5956), + [anon_sym_and] = ACTIONS(5956), + [anon_sym_bitor] = ACTIONS(5956), + [anon_sym_xor] = ACTIONS(5956), + [anon_sym_bitand] = ACTIONS(5956), + [anon_sym_not_eq] = ACTIONS(5956), + [anon_sym_DASH_DASH] = ACTIONS(5956), + [anon_sym_PLUS_PLUS] = ACTIONS(5956), + [anon_sym_DOT] = ACTIONS(5958), + [anon_sym_DOT_STAR] = ACTIONS(5956), + [anon_sym_DASH_GT] = ACTIONS(5956), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5956), + [anon_sym_decltype] = ACTIONS(5956), + [anon_sym_final] = ACTIONS(5956), + [anon_sym_override] = ACTIONS(5956), + [anon_sym_GT2] = ACTIONS(5956), + [anon_sym_requires] = ACTIONS(5956), + }, + [STATE(2362)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5960), + [anon_sym_COMMA] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [anon_sym_DASH] = ACTIONS(5962), + [anon_sym_PLUS] = ACTIONS(5962), + [anon_sym_STAR] = ACTIONS(5960), + [anon_sym_SLASH] = ACTIONS(5962), + [anon_sym_PERCENT] = ACTIONS(5960), + [anon_sym_PIPE_PIPE] = ACTIONS(5960), + [anon_sym_AMP_AMP] = ACTIONS(5960), + [anon_sym_PIPE] = ACTIONS(5962), + [anon_sym_CARET] = ACTIONS(5960), + [anon_sym_AMP] = ACTIONS(5962), + [anon_sym_EQ_EQ] = ACTIONS(5960), + [anon_sym_BANG_EQ] = ACTIONS(5960), + [anon_sym_GT] = ACTIONS(5962), + [anon_sym_GT_EQ] = ACTIONS(5962), + [anon_sym_LT_EQ] = ACTIONS(5962), + [anon_sym_LT] = ACTIONS(5962), + [anon_sym_LT_LT] = ACTIONS(5960), + [anon_sym_GT_GT] = ACTIONS(5962), + [anon_sym___extension__] = ACTIONS(5960), + [anon_sym___attribute__] = ACTIONS(5960), + [anon_sym___attribute] = ACTIONS(5962), + [anon_sym_LBRACE] = ACTIONS(5960), + [anon_sym_signed] = ACTIONS(6338), + [anon_sym_unsigned] = ACTIONS(6338), + [anon_sym_long] = ACTIONS(6338), + [anon_sym_short] = ACTIONS(6338), + [anon_sym_LBRACK] = ACTIONS(5960), + [anon_sym_const] = ACTIONS(5962), + [anon_sym_constexpr] = ACTIONS(5960), + [anon_sym_volatile] = ACTIONS(5960), + [anon_sym_restrict] = ACTIONS(5960), + [anon_sym___restrict__] = ACTIONS(5960), + [anon_sym__Atomic] = ACTIONS(5960), + [anon_sym__Noreturn] = ACTIONS(5960), + [anon_sym_noreturn] = ACTIONS(5960), + [anon_sym__Nonnull] = ACTIONS(5960), + [anon_sym_mutable] = ACTIONS(5960), + [anon_sym_constinit] = ACTIONS(5960), + [anon_sym_consteval] = ACTIONS(5960), + [anon_sym_alignas] = ACTIONS(5960), + [anon_sym__Alignas] = ACTIONS(5960), + [anon_sym_QMARK] = ACTIONS(5960), + [anon_sym_LT_EQ_GT] = ACTIONS(5960), + [anon_sym_or] = ACTIONS(5960), + [anon_sym_and] = ACTIONS(5960), + [anon_sym_bitor] = ACTIONS(5960), + [anon_sym_xor] = ACTIONS(5960), + [anon_sym_bitand] = ACTIONS(5960), + [anon_sym_not_eq] = ACTIONS(5960), + [anon_sym_DASH_DASH] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5960), + [anon_sym_DOT] = ACTIONS(5962), + [anon_sym_DOT_STAR] = ACTIONS(5960), + [anon_sym_DASH_GT] = ACTIONS(5960), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5960), + [anon_sym_decltype] = ACTIONS(5960), + [anon_sym_final] = ACTIONS(5960), + [anon_sym_override] = ACTIONS(5960), + [anon_sym_GT2] = ACTIONS(5960), + [anon_sym_requires] = ACTIONS(5960), + }, + [STATE(2363)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5964), + [anon_sym_COMMA] = ACTIONS(5964), + [anon_sym_LPAREN2] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5966), + [anon_sym_PLUS] = ACTIONS(5966), + [anon_sym_STAR] = ACTIONS(5964), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5964), + [anon_sym_PIPE_PIPE] = ACTIONS(5964), + [anon_sym_AMP_AMP] = ACTIONS(5964), + [anon_sym_PIPE] = ACTIONS(5966), + [anon_sym_CARET] = ACTIONS(5964), + [anon_sym_AMP] = ACTIONS(5966), + [anon_sym_EQ_EQ] = ACTIONS(5964), + [anon_sym_BANG_EQ] = ACTIONS(5964), + [anon_sym_GT] = ACTIONS(5966), + [anon_sym_GT_EQ] = ACTIONS(5966), + [anon_sym_LT_EQ] = ACTIONS(5966), + [anon_sym_LT] = ACTIONS(5966), + [anon_sym_LT_LT] = ACTIONS(5964), + [anon_sym_GT_GT] = ACTIONS(5966), + [anon_sym___extension__] = ACTIONS(5964), + [anon_sym___attribute__] = ACTIONS(5964), + [anon_sym___attribute] = ACTIONS(5966), + [anon_sym_LBRACE] = ACTIONS(5964), + [anon_sym_signed] = ACTIONS(6340), + [anon_sym_unsigned] = ACTIONS(6340), + [anon_sym_long] = ACTIONS(6340), + [anon_sym_short] = ACTIONS(6340), + [anon_sym_LBRACK] = ACTIONS(5964), + [anon_sym_const] = ACTIONS(5966), + [anon_sym_constexpr] = ACTIONS(5964), + [anon_sym_volatile] = ACTIONS(5964), + [anon_sym_restrict] = ACTIONS(5964), + [anon_sym___restrict__] = ACTIONS(5964), + [anon_sym__Atomic] = ACTIONS(5964), + [anon_sym__Noreturn] = ACTIONS(5964), + [anon_sym_noreturn] = ACTIONS(5964), + [anon_sym__Nonnull] = ACTIONS(5964), + [anon_sym_mutable] = ACTIONS(5964), + [anon_sym_constinit] = ACTIONS(5964), + [anon_sym_consteval] = ACTIONS(5964), + [anon_sym_alignas] = ACTIONS(5964), + [anon_sym__Alignas] = ACTIONS(5964), + [anon_sym_QMARK] = ACTIONS(5964), + [anon_sym_LT_EQ_GT] = ACTIONS(5964), + [anon_sym_or] = ACTIONS(5964), + [anon_sym_and] = ACTIONS(5964), + [anon_sym_bitor] = ACTIONS(5964), + [anon_sym_xor] = ACTIONS(5964), + [anon_sym_bitand] = ACTIONS(5964), + [anon_sym_not_eq] = ACTIONS(5964), + [anon_sym_DASH_DASH] = ACTIONS(5964), + [anon_sym_PLUS_PLUS] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5966), + [anon_sym_DOT_STAR] = ACTIONS(5964), + [anon_sym_DASH_GT] = ACTIONS(5964), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5964), + [anon_sym_decltype] = ACTIONS(5964), + [anon_sym_final] = ACTIONS(5964), + [anon_sym_override] = ACTIONS(5964), + [anon_sym_GT2] = ACTIONS(5964), + [anon_sym_requires] = ACTIONS(5964), + }, + [STATE(2364)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5974), + [anon_sym_COMMA] = ACTIONS(5974), + [anon_sym_LPAREN2] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5976), + [anon_sym_PLUS] = ACTIONS(5976), + [anon_sym_STAR] = ACTIONS(5974), + [anon_sym_SLASH] = ACTIONS(5976), + [anon_sym_PERCENT] = ACTIONS(5974), + [anon_sym_PIPE_PIPE] = ACTIONS(5974), + [anon_sym_AMP_AMP] = ACTIONS(5974), + [anon_sym_PIPE] = ACTIONS(5976), + [anon_sym_CARET] = ACTIONS(5974), + [anon_sym_AMP] = ACTIONS(5976), + [anon_sym_EQ_EQ] = ACTIONS(5974), + [anon_sym_BANG_EQ] = ACTIONS(5974), + [anon_sym_GT] = ACTIONS(5976), + [anon_sym_GT_EQ] = ACTIONS(5976), + [anon_sym_LT_EQ] = ACTIONS(5976), + [anon_sym_LT] = ACTIONS(5976), + [anon_sym_LT_LT] = ACTIONS(5974), + [anon_sym_GT_GT] = ACTIONS(5976), + [anon_sym___extension__] = ACTIONS(5974), + [anon_sym___attribute__] = ACTIONS(5974), + [anon_sym___attribute] = ACTIONS(5976), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_signed] = ACTIONS(6342), + [anon_sym_unsigned] = ACTIONS(6342), + [anon_sym_long] = ACTIONS(6342), + [anon_sym_short] = ACTIONS(6342), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_const] = ACTIONS(5976), + [anon_sym_constexpr] = ACTIONS(5974), + [anon_sym_volatile] = ACTIONS(5974), + [anon_sym_restrict] = ACTIONS(5974), + [anon_sym___restrict__] = ACTIONS(5974), + [anon_sym__Atomic] = ACTIONS(5974), + [anon_sym__Noreturn] = ACTIONS(5974), + [anon_sym_noreturn] = ACTIONS(5974), + [anon_sym__Nonnull] = ACTIONS(5974), + [anon_sym_mutable] = ACTIONS(5974), + [anon_sym_constinit] = ACTIONS(5974), + [anon_sym_consteval] = ACTIONS(5974), + [anon_sym_alignas] = ACTIONS(5974), + [anon_sym__Alignas] = ACTIONS(5974), + [anon_sym_QMARK] = ACTIONS(5974), + [anon_sym_LT_EQ_GT] = ACTIONS(5974), + [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(5974), + [anon_sym_PLUS_PLUS] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5976), + [anon_sym_DOT_STAR] = ACTIONS(5974), + [anon_sym_DASH_GT] = ACTIONS(5974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5974), + [anon_sym_decltype] = ACTIONS(5974), + [anon_sym_final] = ACTIONS(5974), + [anon_sym_override] = ACTIONS(5974), + [anon_sym_GT2] = ACTIONS(5974), + [anon_sym_requires] = ACTIONS(5974), + }, + [STATE(2365)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5980), + [anon_sym_COMMA] = ACTIONS(5980), + [anon_sym_LPAREN2] = ACTIONS(5980), + [anon_sym_DASH] = ACTIONS(5982), + [anon_sym_PLUS] = ACTIONS(5982), + [anon_sym_STAR] = ACTIONS(5980), + [anon_sym_SLASH] = ACTIONS(5982), + [anon_sym_PERCENT] = ACTIONS(5980), + [anon_sym_PIPE_PIPE] = ACTIONS(5980), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE] = ACTIONS(5982), + [anon_sym_CARET] = ACTIONS(5980), + [anon_sym_AMP] = ACTIONS(5982), + [anon_sym_EQ_EQ] = ACTIONS(5980), + [anon_sym_BANG_EQ] = ACTIONS(5980), + [anon_sym_GT] = ACTIONS(5982), + [anon_sym_GT_EQ] = ACTIONS(5982), + [anon_sym_LT_EQ] = ACTIONS(5982), + [anon_sym_LT] = ACTIONS(5982), + [anon_sym_LT_LT] = ACTIONS(5980), + [anon_sym_GT_GT] = ACTIONS(5982), + [anon_sym___extension__] = ACTIONS(5980), + [anon_sym___attribute__] = ACTIONS(5980), + [anon_sym___attribute] = ACTIONS(5982), + [anon_sym_LBRACE] = ACTIONS(5980), + [anon_sym_signed] = ACTIONS(6338), + [anon_sym_unsigned] = ACTIONS(6338), + [anon_sym_long] = ACTIONS(6338), + [anon_sym_short] = ACTIONS(6338), + [anon_sym_LBRACK] = ACTIONS(5980), + [anon_sym_const] = ACTIONS(5982), + [anon_sym_constexpr] = ACTIONS(5980), + [anon_sym_volatile] = ACTIONS(5980), + [anon_sym_restrict] = ACTIONS(5980), + [anon_sym___restrict__] = ACTIONS(5980), + [anon_sym__Atomic] = ACTIONS(5980), + [anon_sym__Noreturn] = ACTIONS(5980), + [anon_sym_noreturn] = ACTIONS(5980), + [anon_sym__Nonnull] = ACTIONS(5980), + [anon_sym_mutable] = ACTIONS(5980), + [anon_sym_constinit] = ACTIONS(5980), + [anon_sym_consteval] = ACTIONS(5980), + [anon_sym_alignas] = ACTIONS(5980), + [anon_sym__Alignas] = ACTIONS(5980), + [anon_sym_QMARK] = ACTIONS(5980), + [anon_sym_LT_EQ_GT] = ACTIONS(5980), + [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(5980), + [anon_sym_PLUS_PLUS] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5982), + [anon_sym_DOT_STAR] = ACTIONS(5980), + [anon_sym_DASH_GT] = ACTIONS(5980), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5980), + [anon_sym_decltype] = ACTIONS(5980), + [anon_sym_final] = ACTIONS(5980), + [anon_sym_override] = ACTIONS(5980), + [anon_sym_GT2] = ACTIONS(5980), + [anon_sym_requires] = ACTIONS(5980), + }, + [STATE(2366)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_LPAREN2] = ACTIONS(5809), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5809), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_PERCENT] = ACTIONS(5809), + [anon_sym_PIPE_PIPE] = ACTIONS(5809), + [anon_sym_AMP_AMP] = ACTIONS(5809), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5809), + [anon_sym_AMP] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5809), + [anon_sym_BANG_EQ] = ACTIONS(5809), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_GT_EQ] = ACTIONS(5807), + [anon_sym_LT_EQ] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_LT_LT] = ACTIONS(5809), + [anon_sym_GT_GT] = ACTIONS(5807), + [anon_sym___extension__] = ACTIONS(5809), + [anon_sym___attribute__] = ACTIONS(5809), + [anon_sym___attribute] = ACTIONS(5807), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_signed] = ACTIONS(6344), + [anon_sym_unsigned] = ACTIONS(6344), + [anon_sym_long] = ACTIONS(6344), + [anon_sym_short] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_const] = ACTIONS(5807), + [anon_sym_constexpr] = ACTIONS(5809), + [anon_sym_volatile] = ACTIONS(5809), + [anon_sym_restrict] = ACTIONS(5809), + [anon_sym___restrict__] = ACTIONS(5809), + [anon_sym__Atomic] = ACTIONS(5809), + [anon_sym__Noreturn] = ACTIONS(5809), + [anon_sym_noreturn] = ACTIONS(5809), + [anon_sym__Nonnull] = ACTIONS(5809), + [anon_sym_mutable] = ACTIONS(5809), + [anon_sym_constinit] = ACTIONS(5809), + [anon_sym_consteval] = ACTIONS(5809), + [anon_sym_alignas] = ACTIONS(5809), + [anon_sym__Alignas] = ACTIONS(5809), + [anon_sym_QMARK] = ACTIONS(5809), + [anon_sym_LT_EQ_GT] = ACTIONS(5809), + [anon_sym_or] = ACTIONS(5809), + [anon_sym_and] = ACTIONS(5809), + [anon_sym_bitor] = ACTIONS(5809), + [anon_sym_xor] = ACTIONS(5809), + [anon_sym_bitand] = ACTIONS(5809), + [anon_sym_not_eq] = ACTIONS(5809), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_DOT_STAR] = ACTIONS(5809), + [anon_sym_DASH_GT] = ACTIONS(5809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5809), + [anon_sym_decltype] = ACTIONS(5809), + [anon_sym_final] = ACTIONS(5809), + [anon_sym_override] = ACTIONS(5809), + [anon_sym_GT2] = ACTIONS(5809), + [anon_sym_requires] = ACTIONS(5809), + }, + [STATE(2367)] = { + [sym_attribute_specifier] = STATE(2287), + [sym_enumerator_list] = STATE(2226), + [sym__enum_base_clause] = STATE(2077), + [sym_identifier] = ACTIONS(6346), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6348), + [anon_sym_COMMA] = 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___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6350), + [anon_sym_LBRACE] = ACTIONS(6050), + [anon_sym_LBRACK] = 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), + [sym_auto] = ACTIONS(6346), + [anon_sym_decltype] = ACTIONS(6346), + }, + [STATE(2368)] = { + [sym_attribute_specifier] = STATE(2319), + [sym_enumerator_list] = STATE(2261), + [sym__enum_base_clause] = STATE(2147), + [sym_identifier] = ACTIONS(6352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6354), + [anon_sym_COMMA] = ACTIONS(6354), + [aux_sym_preproc_if_token2] = ACTIONS(6354), + [aux_sym_preproc_else_token1] = ACTIONS(6354), + [aux_sym_preproc_elif_token1] = ACTIONS(6352), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6354), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6354), + [anon_sym_LPAREN2] = ACTIONS(6354), + [anon_sym_DASH] = ACTIONS(6352), + [anon_sym_PLUS] = ACTIONS(6352), + [anon_sym_STAR] = ACTIONS(6352), + [anon_sym_SLASH] = ACTIONS(6352), + [anon_sym_PERCENT] = ACTIONS(6352), + [anon_sym_PIPE_PIPE] = ACTIONS(6354), + [anon_sym_AMP_AMP] = ACTIONS(6354), + [anon_sym_PIPE] = ACTIONS(6352), + [anon_sym_CARET] = ACTIONS(6352), + [anon_sym_AMP] = ACTIONS(6352), + [anon_sym_EQ_EQ] = ACTIONS(6354), + [anon_sym_BANG_EQ] = ACTIONS(6354), + [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_LT] = ACTIONS(6352), + [anon_sym_GT_GT] = ACTIONS(6352), + [anon_sym___attribute__] = ACTIONS(5605), + [anon_sym___attribute] = ACTIONS(5605), + [anon_sym_COLON] = ACTIONS(6350), + [anon_sym_LBRACE] = ACTIONS(6050), + [anon_sym_LBRACK] = ACTIONS(6354), + [anon_sym_EQ] = ACTIONS(6352), + [anon_sym_QMARK] = ACTIONS(6354), + [anon_sym_STAR_EQ] = ACTIONS(6354), + [anon_sym_SLASH_EQ] = ACTIONS(6354), + [anon_sym_PERCENT_EQ] = ACTIONS(6354), + [anon_sym_PLUS_EQ] = ACTIONS(6354), + [anon_sym_DASH_EQ] = ACTIONS(6354), + [anon_sym_LT_LT_EQ] = ACTIONS(6354), + [anon_sym_GT_GT_EQ] = ACTIONS(6354), + [anon_sym_AMP_EQ] = ACTIONS(6354), + [anon_sym_CARET_EQ] = ACTIONS(6354), + [anon_sym_PIPE_EQ] = ACTIONS(6354), + [anon_sym_and_eq] = ACTIONS(6352), + [anon_sym_or_eq] = ACTIONS(6352), + [anon_sym_xor_eq] = ACTIONS(6352), + [anon_sym_LT_EQ_GT] = ACTIONS(6354), + [anon_sym_or] = ACTIONS(6352), + [anon_sym_and] = ACTIONS(6352), + [anon_sym_bitor] = ACTIONS(6352), + [anon_sym_xor] = ACTIONS(6352), + [anon_sym_bitand] = ACTIONS(6352), + [anon_sym_not_eq] = ACTIONS(6352), + [anon_sym_DASH_DASH] = ACTIONS(6354), + [anon_sym_PLUS_PLUS] = ACTIONS(6354), + [anon_sym_DOT] = ACTIONS(6352), + [anon_sym_DOT_STAR] = ACTIONS(6354), + [anon_sym_DASH_GT] = ACTIONS(6354), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6352), + [anon_sym_decltype] = ACTIONS(6352), + }, + [STATE(2369)] = { + [sym_type_qualifier] = STATE(2385), + [sym_alignas_qualifier] = STATE(1693), + [aux_sym__type_definition_type_repeat1] = STATE(2385), + [aux_sym_sized_type_specifier_repeat1] = STATE(2587), + [sym_identifier] = ACTIONS(6356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5123), + [anon_sym_COMMA] = ACTIONS(5123), + [anon_sym_RPAREN] = ACTIONS(5123), + [anon_sym_LPAREN2] = ACTIONS(5123), + [anon_sym_TILDE] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_AMP_AMP] = ACTIONS(5123), + [anon_sym_AMP] = ACTIONS(5125), + [anon_sym_SEMI] = ACTIONS(5123), + [anon_sym___extension__] = ACTIONS(6359), + [anon_sym_virtual] = ACTIONS(5125), + [anon_sym_extern] = ACTIONS(5125), + [anon_sym___attribute__] = ACTIONS(5125), + [anon_sym___attribute] = ACTIONS(5125), + [anon_sym_COLON_COLON] = ACTIONS(5123), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5123), + [anon_sym___declspec] = ACTIONS(5125), + [anon_sym___based] = ACTIONS(5125), + [anon_sym___cdecl] = ACTIONS(5125), + [anon_sym___clrcall] = ACTIONS(5125), + [anon_sym___stdcall] = ACTIONS(5125), + [anon_sym___fastcall] = ACTIONS(5125), + [anon_sym___thiscall] = ACTIONS(5125), + [anon_sym___vectorcall] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5123), + [anon_sym_signed] = ACTIONS(6362), + [anon_sym_unsigned] = ACTIONS(6362), + [anon_sym_long] = ACTIONS(6362), + [anon_sym_short] = ACTIONS(6362), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_static] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5123), + [anon_sym_register] = ACTIONS(5125), + [anon_sym_inline] = ACTIONS(5125), + [anon_sym___inline] = ACTIONS(5125), + [anon_sym___inline__] = ACTIONS(5125), + [anon_sym___forceinline] = ACTIONS(5125), + [anon_sym_thread_local] = ACTIONS(5125), + [anon_sym___thread] = ACTIONS(5125), + [anon_sym_const] = ACTIONS(6359), + [anon_sym_constexpr] = ACTIONS(6359), + [anon_sym_volatile] = ACTIONS(6359), + [anon_sym_restrict] = ACTIONS(6359), + [anon_sym___restrict__] = ACTIONS(6359), + [anon_sym__Atomic] = ACTIONS(6359), + [anon_sym__Noreturn] = ACTIONS(6359), + [anon_sym_noreturn] = ACTIONS(6359), + [anon_sym__Nonnull] = ACTIONS(6359), + [anon_sym_mutable] = ACTIONS(6359), + [anon_sym_constinit] = ACTIONS(6359), + [anon_sym_consteval] = ACTIONS(6359), + [anon_sym_alignas] = ACTIONS(6364), + [anon_sym__Alignas] = ACTIONS(6364), + [sym_primitive_type] = ACTIONS(6367), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5125), + [anon_sym_decltype] = ACTIONS(5125), + [anon_sym_template] = ACTIONS(5125), + [anon_sym_GT2] = ACTIONS(5123), + [anon_sym_operator] = ACTIONS(5125), + }, + [STATE(2370)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), [anon_sym_COMMA] = ACTIONS(5929), [anon_sym_RPAREN] = ACTIONS(5929), @@ -294499,284 +296888,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [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(5986), - [anon_sym_decltype] = ACTIONS(5986), + [sym_auto] = ACTIONS(5929), + [anon_sym_decltype] = ACTIONS(5929), }, - [STATE(2350)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2354), + [STATE(2371)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), [anon_sym_DOT_DOT_DOT] = ACTIONS(5933), [anon_sym_COMMA] = ACTIONS(5933), [anon_sym_RPAREN] = ACTIONS(5933), @@ -294805,10 +296926,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), [anon_sym_LBRACK] = ACTIONS(5933), [anon_sym_RBRACK] = ACTIONS(5933), [anon_sym_EQ] = ACTIONS(5935), @@ -294842,477 +296963,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(5933), [anon_sym_decltype] = ACTIONS(5933), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(2372)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5539), + [anon_sym_COMMA] = ACTIONS(5539), + [anon_sym_RPAREN] = ACTIONS(5539), + [anon_sym_LPAREN2] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_STAR] = ACTIONS(5537), + [anon_sym_SLASH] = ACTIONS(5537), + [anon_sym_PERCENT] = ACTIONS(5537), + [anon_sym_PIPE_PIPE] = ACTIONS(5539), + [anon_sym_AMP_AMP] = ACTIONS(5539), + [anon_sym_PIPE] = ACTIONS(5537), + [anon_sym_CARET] = ACTIONS(5537), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_EQ_EQ] = ACTIONS(5539), + [anon_sym_BANG_EQ] = ACTIONS(5539), + [anon_sym_GT] = ACTIONS(5537), + [anon_sym_GT_EQ] = ACTIONS(5539), + [anon_sym_LT_EQ] = ACTIONS(5537), + [anon_sym_LT] = ACTIONS(5537), + [anon_sym_LT_LT] = ACTIONS(5537), + [anon_sym_GT_GT] = ACTIONS(5537), + [anon_sym_SEMI] = ACTIONS(5539), + [anon_sym___attribute__] = ACTIONS(5539), + [anon_sym___attribute] = ACTIONS(5537), + [anon_sym_COLON] = ACTIONS(5539), + [anon_sym_LBRACE] = ACTIONS(5539), + [anon_sym_RBRACE] = ACTIONS(5539), + [anon_sym_signed] = ACTIONS(6369), + [anon_sym_unsigned] = ACTIONS(6369), + [anon_sym_long] = ACTIONS(6369), + [anon_sym_short] = ACTIONS(6369), + [anon_sym_LBRACK] = ACTIONS(5539), + [anon_sym_RBRACK] = ACTIONS(5539), + [anon_sym_EQ] = ACTIONS(5537), + [anon_sym_QMARK] = ACTIONS(5539), + [anon_sym_STAR_EQ] = ACTIONS(5539), + [anon_sym_SLASH_EQ] = ACTIONS(5539), + [anon_sym_PERCENT_EQ] = ACTIONS(5539), + [anon_sym_PLUS_EQ] = ACTIONS(5539), + [anon_sym_DASH_EQ] = ACTIONS(5539), + [anon_sym_LT_LT_EQ] = ACTIONS(5539), + [anon_sym_GT_GT_EQ] = ACTIONS(5539), + [anon_sym_AMP_EQ] = ACTIONS(5539), + [anon_sym_CARET_EQ] = ACTIONS(5539), + [anon_sym_PIPE_EQ] = ACTIONS(5539), + [anon_sym_and_eq] = ACTIONS(5539), + [anon_sym_or_eq] = ACTIONS(5539), + [anon_sym_xor_eq] = ACTIONS(5539), + [anon_sym_LT_EQ_GT] = ACTIONS(5539), + [anon_sym_or] = ACTIONS(5537), + [anon_sym_and] = ACTIONS(5537), + [anon_sym_bitor] = ACTIONS(5539), + [anon_sym_xor] = ACTIONS(5537), + [anon_sym_bitand] = ACTIONS(5539), + [anon_sym_not_eq] = ACTIONS(5539), + [anon_sym_DASH_DASH] = ACTIONS(5539), + [anon_sym_PLUS_PLUS] = ACTIONS(5539), + [anon_sym_DOT] = ACTIONS(5537), + [anon_sym_DOT_STAR] = ACTIONS(5539), + [anon_sym_DASH_GT] = ACTIONS(5539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5539), + [anon_sym_decltype] = ACTIONS(5539), }, - [STATE(2358)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2220), + [STATE(2373)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2252), [anon_sym_DOT_DOT_DOT] = ACTIONS(5929), [anon_sym_COMMA] = ACTIONS(5929), [anon_sym_LPAREN2] = ACTIONS(5929), @@ -295338,10 +297057,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_signed] = ACTIONS(6338), + [anon_sym_unsigned] = ACTIONS(6338), + [anon_sym_long] = ACTIONS(6338), + [anon_sym_short] = ACTIONS(6338), [anon_sym_LBRACK] = ACTIONS(5929), [anon_sym_const] = ACTIONS(5931), [anon_sym_constexpr] = ACTIONS(5929), @@ -295378,410 +297097,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(5929), [anon_sym_requires] = ACTIONS(5929), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6344), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6344), - [anon_sym_LPAREN2] = ACTIONS(6344), - [anon_sym_DASH] = ACTIONS(6342), - [anon_sym_PLUS] = ACTIONS(6342), - [anon_sym_STAR] = ACTIONS(6342), - [anon_sym_SLASH] = ACTIONS(6342), - [anon_sym_PERCENT] = ACTIONS(6342), - [anon_sym_PIPE_PIPE] = ACTIONS(6344), - [anon_sym_AMP_AMP] = ACTIONS(6344), - [anon_sym_PIPE] = ACTIONS(6342), - [anon_sym_CARET] = ACTIONS(6342), - [anon_sym_AMP] = ACTIONS(6342), - [anon_sym_EQ_EQ] = ACTIONS(6344), - [anon_sym_BANG_EQ] = ACTIONS(6344), - [anon_sym_GT] = ACTIONS(6342), - [anon_sym_GT_EQ] = ACTIONS(6344), - [anon_sym_LT_EQ] = ACTIONS(6342), - [anon_sym_LT] = ACTIONS(6342), - [anon_sym_LT_LT] = ACTIONS(6342), - [anon_sym_GT_GT] = ACTIONS(6342), - [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), - [anon_sym_SLASH_EQ] = ACTIONS(6344), - [anon_sym_PERCENT_EQ] = ACTIONS(6344), - [anon_sym_PLUS_EQ] = ACTIONS(6344), - [anon_sym_DASH_EQ] = ACTIONS(6344), - [anon_sym_LT_LT_EQ] = ACTIONS(6344), - [anon_sym_GT_GT_EQ] = ACTIONS(6344), - [anon_sym_AMP_EQ] = ACTIONS(6344), - [anon_sym_CARET_EQ] = ACTIONS(6344), - [anon_sym_PIPE_EQ] = ACTIONS(6344), - [anon_sym_and_eq] = ACTIONS(6342), - [anon_sym_or_eq] = ACTIONS(6342), - [anon_sym_xor_eq] = ACTIONS(6342), - [anon_sym_LT_EQ_GT] = ACTIONS(6344), - [anon_sym_or] = ACTIONS(6342), - [anon_sym_and] = ACTIONS(6342), - [anon_sym_bitor] = ACTIONS(6342), - [anon_sym_xor] = ACTIONS(6342), - [anon_sym_bitand] = ACTIONS(6342), - [anon_sym_not_eq] = ACTIONS(6342), - [anon_sym_DASH_DASH] = ACTIONS(6344), - [anon_sym_PLUS_PLUS] = ACTIONS(6344), - [anon_sym_DOT] = ACTIONS(6342), - [anon_sym_DOT_STAR] = ACTIONS(6344), - [anon_sym_DASH_GT] = ACTIONS(6344), - [sym_comment] = ACTIONS(3), - }, - [STATE(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_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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(2365)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2371), + [STATE(2374)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2252), [anon_sym_DOT_DOT_DOT] = ACTIONS(5933), [anon_sym_COMMA] = ACTIONS(5933), [anon_sym_LPAREN2] = ACTIONS(5933), @@ -295807,10 +297124,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_signed] = ACTIONS(6338), + [anon_sym_unsigned] = ACTIONS(6338), + [anon_sym_long] = ACTIONS(6338), + [anon_sym_short] = ACTIONS(6338), [anon_sym_LBRACK] = ACTIONS(5933), [anon_sym_const] = ACTIONS(5935), [anon_sym_constexpr] = ACTIONS(5933), @@ -295847,1080 +297164,1750 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(5933), [anon_sym_requires] = ACTIONS(5933), }, - [STATE(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), + [STATE(2375)] = { + [sym_string_literal] = STATE(2247), + [sym_raw_string_literal] = STATE(2247), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5950), + [anon_sym_COMMA] = ACTIONS(5950), + [anon_sym_RPAREN] = ACTIONS(5950), + [anon_sym_LPAREN2] = ACTIONS(5950), + [anon_sym_DASH] = ACTIONS(5948), + [anon_sym_PLUS] = ACTIONS(5948), + [anon_sym_STAR] = ACTIONS(5948), + [anon_sym_SLASH] = ACTIONS(5948), + [anon_sym_PERCENT] = ACTIONS(5948), + [anon_sym_PIPE_PIPE] = ACTIONS(5950), + [anon_sym_AMP_AMP] = ACTIONS(5950), + [anon_sym_PIPE] = ACTIONS(5948), + [anon_sym_CARET] = ACTIONS(5948), + [anon_sym_AMP] = ACTIONS(5948), + [anon_sym_EQ_EQ] = ACTIONS(5950), + [anon_sym_BANG_EQ] = ACTIONS(5950), + [anon_sym_GT] = ACTIONS(5948), + [anon_sym_GT_EQ] = ACTIONS(5950), + [anon_sym_LT_EQ] = ACTIONS(5948), + [anon_sym_LT] = ACTIONS(5948), + [anon_sym_LT_LT] = ACTIONS(5948), + [anon_sym_GT_GT] = ACTIONS(5948), + [anon_sym_LBRACK] = ACTIONS(5950), + [anon_sym_EQ] = ACTIONS(5948), + [anon_sym_QMARK] = ACTIONS(5950), + [anon_sym_STAR_EQ] = ACTIONS(5950), + [anon_sym_SLASH_EQ] = ACTIONS(5950), + [anon_sym_PERCENT_EQ] = ACTIONS(5950), + [anon_sym_PLUS_EQ] = ACTIONS(5950), + [anon_sym_DASH_EQ] = ACTIONS(5950), + [anon_sym_LT_LT_EQ] = ACTIONS(5950), + [anon_sym_GT_GT_EQ] = ACTIONS(5950), + [anon_sym_AMP_EQ] = ACTIONS(5950), + [anon_sym_CARET_EQ] = ACTIONS(5950), + [anon_sym_PIPE_EQ] = ACTIONS(5950), + [anon_sym_and_eq] = ACTIONS(5948), + [anon_sym_or_eq] = ACTIONS(5948), + [anon_sym_xor_eq] = ACTIONS(5948), + [anon_sym_LT_EQ_GT] = ACTIONS(5950), + [anon_sym_or] = ACTIONS(5948), + [anon_sym_and] = ACTIONS(5948), + [anon_sym_bitor] = ACTIONS(5948), + [anon_sym_xor] = ACTIONS(5948), + [anon_sym_bitand] = ACTIONS(5948), + [anon_sym_not_eq] = ACTIONS(5948), + [anon_sym_DASH_DASH] = ACTIONS(5950), + [anon_sym_PLUS_PLUS] = ACTIONS(5950), + [anon_sym_DOT] = ACTIONS(5948), + [anon_sym_DOT_STAR] = ACTIONS(5950), + [anon_sym_DASH_GT] = ACTIONS(5948), + [anon_sym_L_DQUOTE] = ACTIONS(5056), + [anon_sym_u_DQUOTE] = ACTIONS(5056), + [anon_sym_U_DQUOTE] = ACTIONS(5056), + [anon_sym_u8_DQUOTE] = ACTIONS(5056), + [anon_sym_DQUOTE] = ACTIONS(5056), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5058), + [anon_sym_LR_DQUOTE] = ACTIONS(5058), + [anon_sym_uR_DQUOTE] = ACTIONS(5058), + [anon_sym_UR_DQUOTE] = ACTIONS(5058), + [anon_sym_u8R_DQUOTE] = ACTIONS(5058), + [anon_sym_DASH_GT_STAR] = ACTIONS(5950), + [sym_literal_suffix] = ACTIONS(5948), }, - [STATE(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), + [STATE(2376)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_RPAREN] = ACTIONS(5984), + [anon_sym_LPAREN2] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5986), + [anon_sym_STAR] = ACTIONS(5986), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_PERCENT] = ACTIONS(5986), + [anon_sym_PIPE_PIPE] = ACTIONS(5984), + [anon_sym_AMP_AMP] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5986), + [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5984), + [anon_sym_LT_EQ] = ACTIONS(5986), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5986), + [anon_sym_GT_GT] = ACTIONS(5986), + [anon_sym_SEMI] = ACTIONS(5984), + [anon_sym___attribute__] = ACTIONS(5984), + [anon_sym___attribute] = ACTIONS(5986), + [anon_sym_COLON] = ACTIONS(5984), + [anon_sym_LBRACE] = ACTIONS(5984), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5984), + [anon_sym_RBRACK] = ACTIONS(5984), + [anon_sym_EQ] = ACTIONS(5986), + [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(5984), + [anon_sym_or_eq] = ACTIONS(5984), + [anon_sym_xor_eq] = ACTIONS(5984), + [anon_sym_LT_EQ_GT] = ACTIONS(5984), + [anon_sym_or] = ACTIONS(5986), + [anon_sym_and] = ACTIONS(5986), + [anon_sym_bitor] = ACTIONS(5984), + [anon_sym_xor] = ACTIONS(5986), + [anon_sym_bitand] = ACTIONS(5984), + [anon_sym_not_eq] = ACTIONS(5984), + [anon_sym_DASH_DASH] = ACTIONS(5984), + [anon_sym_PLUS_PLUS] = ACTIONS(5984), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_DOT_STAR] = ACTIONS(5984), + [anon_sym_DASH_GT] = ACTIONS(5984), [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), + [sym_auto] = ACTIONS(5984), + [anon_sym_decltype] = ACTIONS(5984), }, - [STATE(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), + [STATE(2377)] = { + [sym_attribute_specifier] = STATE(1900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6133), + [anon_sym_COMMA] = ACTIONS(6133), + [anon_sym_RPAREN] = ACTIONS(6133), + [anon_sym_LPAREN2] = ACTIONS(6133), + [anon_sym_DASH] = ACTIONS(6131), + [anon_sym_PLUS] = ACTIONS(6131), + [anon_sym_STAR] = ACTIONS(6133), + [anon_sym_SLASH] = ACTIONS(6131), + [anon_sym_PERCENT] = ACTIONS(6133), + [anon_sym_PIPE_PIPE] = ACTIONS(6133), + [anon_sym_AMP_AMP] = ACTIONS(6133), + [anon_sym_PIPE] = ACTIONS(6131), + [anon_sym_CARET] = ACTIONS(6133), + [anon_sym_AMP] = ACTIONS(6131), + [anon_sym_EQ_EQ] = ACTIONS(6133), + [anon_sym_BANG_EQ] = ACTIONS(6133), + [anon_sym_GT] = ACTIONS(6131), + [anon_sym_GT_EQ] = ACTIONS(6133), + [anon_sym_LT_EQ] = ACTIONS(6131), + [anon_sym_LT] = ACTIONS(6131), + [anon_sym_LT_LT] = ACTIONS(6133), + [anon_sym_GT_GT] = ACTIONS(6133), + [anon_sym_SEMI] = ACTIONS(6133), + [anon_sym___extension__] = ACTIONS(6133), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6133), + [anon_sym_LBRACE] = ACTIONS(6133), + [anon_sym_RBRACE] = ACTIONS(6133), + [anon_sym_LBRACK] = ACTIONS(6133), + [anon_sym_RBRACK] = ACTIONS(6133), + [anon_sym_const] = ACTIONS(6131), + [anon_sym_constexpr] = ACTIONS(6133), + [anon_sym_volatile] = ACTIONS(6133), + [anon_sym_restrict] = ACTIONS(6133), + [anon_sym___restrict__] = ACTIONS(6133), + [anon_sym__Atomic] = ACTIONS(6133), + [anon_sym__Noreturn] = ACTIONS(6133), + [anon_sym_noreturn] = ACTIONS(6133), + [anon_sym__Nonnull] = ACTIONS(6133), + [anon_sym_mutable] = ACTIONS(6133), + [anon_sym_constinit] = ACTIONS(6133), + [anon_sym_consteval] = ACTIONS(6133), + [anon_sym_alignas] = ACTIONS(6133), + [anon_sym__Alignas] = ACTIONS(6133), + [anon_sym_QMARK] = ACTIONS(6133), + [anon_sym_LT_EQ_GT] = ACTIONS(6133), + [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(6133), + [anon_sym_PLUS_PLUS] = ACTIONS(6133), + [anon_sym_DOT] = ACTIONS(6131), + [anon_sym_DOT_STAR] = ACTIONS(6133), + [anon_sym_DASH_GT] = ACTIONS(6133), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6133), + [anon_sym_decltype] = ACTIONS(6133), + [anon_sym_final] = ACTIONS(6133), + [anon_sym_override] = ACTIONS(6133), + [anon_sym_requires] = ACTIONS(6133), + }, + [STATE(2378)] = { + [sym_attribute_specifier] = STATE(1877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6129), + [anon_sym_COMMA] = ACTIONS(6129), + [anon_sym_RPAREN] = ACTIONS(6129), + [anon_sym_LPAREN2] = ACTIONS(6129), + [anon_sym_DASH] = ACTIONS(6127), + [anon_sym_PLUS] = ACTIONS(6127), + [anon_sym_STAR] = ACTIONS(6129), + [anon_sym_SLASH] = ACTIONS(6127), + [anon_sym_PERCENT] = ACTIONS(6129), + [anon_sym_PIPE_PIPE] = ACTIONS(6129), + [anon_sym_AMP_AMP] = ACTIONS(6129), + [anon_sym_PIPE] = ACTIONS(6127), + [anon_sym_CARET] = ACTIONS(6129), + [anon_sym_AMP] = ACTIONS(6127), + [anon_sym_EQ_EQ] = ACTIONS(6129), + [anon_sym_BANG_EQ] = ACTIONS(6129), + [anon_sym_GT] = ACTIONS(6127), + [anon_sym_GT_EQ] = ACTIONS(6129), + [anon_sym_LT_EQ] = ACTIONS(6127), + [anon_sym_LT] = ACTIONS(6127), + [anon_sym_LT_LT] = ACTIONS(6129), + [anon_sym_GT_GT] = ACTIONS(6129), + [anon_sym_SEMI] = ACTIONS(6129), + [anon_sym___extension__] = ACTIONS(6129), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6129), + [anon_sym_LBRACE] = ACTIONS(6129), + [anon_sym_RBRACE] = ACTIONS(6129), + [anon_sym_LBRACK] = ACTIONS(6129), + [anon_sym_RBRACK] = ACTIONS(6129), + [anon_sym_const] = ACTIONS(6127), + [anon_sym_constexpr] = ACTIONS(6129), + [anon_sym_volatile] = ACTIONS(6129), + [anon_sym_restrict] = ACTIONS(6129), + [anon_sym___restrict__] = ACTIONS(6129), + [anon_sym__Atomic] = ACTIONS(6129), + [anon_sym__Noreturn] = ACTIONS(6129), + [anon_sym_noreturn] = ACTIONS(6129), + [anon_sym__Nonnull] = ACTIONS(6129), + [anon_sym_mutable] = ACTIONS(6129), + [anon_sym_constinit] = ACTIONS(6129), + [anon_sym_consteval] = ACTIONS(6129), + [anon_sym_alignas] = ACTIONS(6129), + [anon_sym__Alignas] = ACTIONS(6129), + [anon_sym_QMARK] = ACTIONS(6129), + [anon_sym_LT_EQ_GT] = ACTIONS(6129), + [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(6129), + [anon_sym_PLUS_PLUS] = ACTIONS(6129), + [anon_sym_DOT] = ACTIONS(6127), + [anon_sym_DOT_STAR] = ACTIONS(6129), + [anon_sym_DASH_GT] = ACTIONS(6129), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6129), + [anon_sym_decltype] = ACTIONS(6129), + [anon_sym_final] = ACTIONS(6129), + [anon_sym_override] = ACTIONS(6129), + [anon_sym_requires] = ACTIONS(6129), + }, + [STATE(2379)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5964), + [anon_sym_COMMA] = ACTIONS(5964), + [anon_sym_RPAREN] = ACTIONS(5964), + [anon_sym_LPAREN2] = ACTIONS(5964), + [anon_sym_DASH] = ACTIONS(5966), + [anon_sym_PLUS] = ACTIONS(5966), + [anon_sym_STAR] = ACTIONS(5966), + [anon_sym_SLASH] = ACTIONS(5966), + [anon_sym_PERCENT] = ACTIONS(5966), + [anon_sym_PIPE_PIPE] = ACTIONS(5964), + [anon_sym_AMP_AMP] = ACTIONS(5964), + [anon_sym_PIPE] = ACTIONS(5966), + [anon_sym_CARET] = ACTIONS(5966), + [anon_sym_AMP] = ACTIONS(5966), + [anon_sym_EQ_EQ] = ACTIONS(5964), + [anon_sym_BANG_EQ] = ACTIONS(5964), + [anon_sym_GT] = ACTIONS(5966), + [anon_sym_GT_EQ] = ACTIONS(5964), + [anon_sym_LT_EQ] = ACTIONS(5966), + [anon_sym_LT] = ACTIONS(5966), + [anon_sym_LT_LT] = ACTIONS(5966), + [anon_sym_GT_GT] = ACTIONS(5966), + [anon_sym_SEMI] = ACTIONS(5964), + [anon_sym___attribute__] = ACTIONS(5964), + [anon_sym___attribute] = ACTIONS(5966), + [anon_sym_COLON] = ACTIONS(5964), + [anon_sym_LBRACE] = ACTIONS(5964), + [anon_sym_RBRACE] = ACTIONS(5964), + [anon_sym_signed] = ACTIONS(6371), + [anon_sym_unsigned] = ACTIONS(6371), + [anon_sym_long] = ACTIONS(6371), + [anon_sym_short] = ACTIONS(6371), + [anon_sym_LBRACK] = ACTIONS(5964), + [anon_sym_RBRACK] = ACTIONS(5964), + [anon_sym_EQ] = ACTIONS(5966), + [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(5964), + [anon_sym_or_eq] = ACTIONS(5964), + [anon_sym_xor_eq] = ACTIONS(5964), + [anon_sym_LT_EQ_GT] = ACTIONS(5964), + [anon_sym_or] = ACTIONS(5966), + [anon_sym_and] = ACTIONS(5966), + [anon_sym_bitor] = ACTIONS(5964), + [anon_sym_xor] = ACTIONS(5966), + [anon_sym_bitand] = ACTIONS(5964), + [anon_sym_not_eq] = ACTIONS(5964), + [anon_sym_DASH_DASH] = ACTIONS(5964), + [anon_sym_PLUS_PLUS] = ACTIONS(5964), + [anon_sym_DOT] = ACTIONS(5966), + [anon_sym_DOT_STAR] = ACTIONS(5964), + [anon_sym_DASH_GT] = ACTIONS(5964), [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), + [sym_auto] = ACTIONS(5964), + [anon_sym_decltype] = ACTIONS(5964), }, - [STATE(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), + [STATE(2380)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5974), + [anon_sym_COMMA] = ACTIONS(5974), + [anon_sym_RPAREN] = ACTIONS(5974), + [anon_sym_LPAREN2] = ACTIONS(5974), + [anon_sym_DASH] = ACTIONS(5976), + [anon_sym_PLUS] = ACTIONS(5976), + [anon_sym_STAR] = ACTIONS(5976), + [anon_sym_SLASH] = ACTIONS(5976), + [anon_sym_PERCENT] = ACTIONS(5976), + [anon_sym_PIPE_PIPE] = ACTIONS(5974), + [anon_sym_AMP_AMP] = ACTIONS(5974), + [anon_sym_PIPE] = ACTIONS(5976), + [anon_sym_CARET] = ACTIONS(5976), + [anon_sym_AMP] = ACTIONS(5976), + [anon_sym_EQ_EQ] = ACTIONS(5974), + [anon_sym_BANG_EQ] = ACTIONS(5974), + [anon_sym_GT] = ACTIONS(5976), + [anon_sym_GT_EQ] = ACTIONS(5974), + [anon_sym_LT_EQ] = ACTIONS(5976), + [anon_sym_LT] = ACTIONS(5976), + [anon_sym_LT_LT] = ACTIONS(5976), + [anon_sym_GT_GT] = ACTIONS(5976), + [anon_sym_SEMI] = ACTIONS(5974), + [anon_sym___attribute__] = ACTIONS(5974), + [anon_sym___attribute] = ACTIONS(5976), + [anon_sym_COLON] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_RBRACE] = ACTIONS(5974), + [anon_sym_signed] = ACTIONS(6373), + [anon_sym_unsigned] = ACTIONS(6373), + [anon_sym_long] = ACTIONS(6373), + [anon_sym_short] = ACTIONS(6373), + [anon_sym_LBRACK] = ACTIONS(5974), + [anon_sym_RBRACK] = ACTIONS(5974), + [anon_sym_EQ] = ACTIONS(5976), + [anon_sym_QMARK] = ACTIONS(5974), + [anon_sym_STAR_EQ] = ACTIONS(5974), + [anon_sym_SLASH_EQ] = ACTIONS(5974), + [anon_sym_PERCENT_EQ] = ACTIONS(5974), + [anon_sym_PLUS_EQ] = ACTIONS(5974), + [anon_sym_DASH_EQ] = ACTIONS(5974), + [anon_sym_LT_LT_EQ] = ACTIONS(5974), + [anon_sym_GT_GT_EQ] = ACTIONS(5974), + [anon_sym_AMP_EQ] = ACTIONS(5974), + [anon_sym_CARET_EQ] = ACTIONS(5974), + [anon_sym_PIPE_EQ] = ACTIONS(5974), + [anon_sym_and_eq] = ACTIONS(5974), + [anon_sym_or_eq] = ACTIONS(5974), + [anon_sym_xor_eq] = ACTIONS(5974), + [anon_sym_LT_EQ_GT] = ACTIONS(5974), + [anon_sym_or] = ACTIONS(5976), + [anon_sym_and] = ACTIONS(5976), + [anon_sym_bitor] = ACTIONS(5974), + [anon_sym_xor] = ACTIONS(5976), + [anon_sym_bitand] = ACTIONS(5974), + [anon_sym_not_eq] = ACTIONS(5974), + [anon_sym_DASH_DASH] = ACTIONS(5974), + [anon_sym_PLUS_PLUS] = ACTIONS(5974), + [anon_sym_DOT] = ACTIONS(5976), + [anon_sym_DOT_STAR] = ACTIONS(5974), + [anon_sym_DASH_GT] = ACTIONS(5974), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5974), + [anon_sym_decltype] = ACTIONS(5974), }, - [STATE(2370)] = { - [sym_template_argument_list] = STATE(2361), - [sym_identifier] = ACTIONS(6352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6354), - [anon_sym_COMMA] = ACTIONS(6354), - [anon_sym_RPAREN] = ACTIONS(6354), - [aux_sym_preproc_if_token2] = ACTIONS(6354), - [aux_sym_preproc_else_token1] = ACTIONS(6354), - [aux_sym_preproc_elif_token1] = ACTIONS(6352), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6354), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6354), - [anon_sym_LPAREN2] = ACTIONS(6354), - [anon_sym_DASH] = ACTIONS(6352), - [anon_sym_PLUS] = ACTIONS(6352), - [anon_sym_STAR] = ACTIONS(6352), - [anon_sym_SLASH] = ACTIONS(6352), - [anon_sym_PERCENT] = ACTIONS(6352), - [anon_sym_PIPE_PIPE] = ACTIONS(6354), - [anon_sym_AMP_AMP] = ACTIONS(6354), - [anon_sym_PIPE] = ACTIONS(6352), - [anon_sym_CARET] = ACTIONS(6352), - [anon_sym_AMP] = ACTIONS(6352), - [anon_sym_EQ_EQ] = ACTIONS(6354), - [anon_sym_BANG_EQ] = ACTIONS(6354), - [anon_sym_GT] = ACTIONS(6352), - [anon_sym_GT_EQ] = ACTIONS(6354), - [anon_sym_LT_EQ] = 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(6352), - [anon_sym_COLON_COLON] = ACTIONS(4187), - [anon_sym_RBRACE] = ACTIONS(6354), - [anon_sym_LBRACK] = ACTIONS(6354), - [anon_sym_RBRACK] = ACTIONS(6354), - [anon_sym_EQ] = ACTIONS(6352), - [anon_sym_QMARK] = ACTIONS(6354), - [anon_sym_STAR_EQ] = ACTIONS(6354), - [anon_sym_SLASH_EQ] = ACTIONS(6354), - [anon_sym_PERCENT_EQ] = ACTIONS(6354), - [anon_sym_PLUS_EQ] = ACTIONS(6354), - [anon_sym_DASH_EQ] = ACTIONS(6354), - [anon_sym_LT_LT_EQ] = ACTIONS(6354), - [anon_sym_GT_GT_EQ] = ACTIONS(6354), - [anon_sym_AMP_EQ] = ACTIONS(6354), - [anon_sym_CARET_EQ] = ACTIONS(6354), - [anon_sym_PIPE_EQ] = ACTIONS(6354), - [anon_sym_and_eq] = ACTIONS(6352), - [anon_sym_or_eq] = ACTIONS(6352), - [anon_sym_xor_eq] = ACTIONS(6352), - [anon_sym_LT_EQ_GT] = ACTIONS(6354), - [anon_sym_or] = ACTIONS(6352), - [anon_sym_and] = ACTIONS(6352), - [anon_sym_bitor] = ACTIONS(6352), - [anon_sym_xor] = ACTIONS(6352), - [anon_sym_bitand] = ACTIONS(6352), - [anon_sym_not_eq] = ACTIONS(6352), - [anon_sym_DASH_DASH] = ACTIONS(6354), - [anon_sym_PLUS_PLUS] = ACTIONS(6354), - [anon_sym_DOT] = ACTIONS(6352), - [anon_sym_DOT_STAR] = ACTIONS(6354), - [anon_sym_DASH_GT] = ACTIONS(6354), + [STATE(2381)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5980), + [anon_sym_COMMA] = ACTIONS(5980), + [anon_sym_RPAREN] = ACTIONS(5980), + [anon_sym_LPAREN2] = ACTIONS(5980), + [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(5980), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE] = ACTIONS(5982), + [anon_sym_CARET] = ACTIONS(5982), + [anon_sym_AMP] = ACTIONS(5982), + [anon_sym_EQ_EQ] = ACTIONS(5980), + [anon_sym_BANG_EQ] = ACTIONS(5980), + [anon_sym_GT] = ACTIONS(5982), + [anon_sym_GT_EQ] = ACTIONS(5980), + [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(5980), + [anon_sym___attribute__] = ACTIONS(5980), + [anon_sym___attribute] = ACTIONS(5982), + [anon_sym_COLON] = ACTIONS(5980), + [anon_sym_LBRACE] = ACTIONS(5980), + [anon_sym_RBRACE] = ACTIONS(5980), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5980), + [anon_sym_RBRACK] = ACTIONS(5980), + [anon_sym_EQ] = ACTIONS(5982), + [anon_sym_QMARK] = ACTIONS(5980), + [anon_sym_STAR_EQ] = ACTIONS(5980), + [anon_sym_SLASH_EQ] = ACTIONS(5980), + [anon_sym_PERCENT_EQ] = ACTIONS(5980), + [anon_sym_PLUS_EQ] = ACTIONS(5980), + [anon_sym_DASH_EQ] = ACTIONS(5980), + [anon_sym_LT_LT_EQ] = ACTIONS(5980), + [anon_sym_GT_GT_EQ] = ACTIONS(5980), + [anon_sym_AMP_EQ] = ACTIONS(5980), + [anon_sym_CARET_EQ] = ACTIONS(5980), + [anon_sym_PIPE_EQ] = ACTIONS(5980), + [anon_sym_and_eq] = ACTIONS(5980), + [anon_sym_or_eq] = ACTIONS(5980), + [anon_sym_xor_eq] = ACTIONS(5980), + [anon_sym_LT_EQ_GT] = ACTIONS(5980), + [anon_sym_or] = ACTIONS(5982), + [anon_sym_and] = ACTIONS(5982), + [anon_sym_bitor] = ACTIONS(5980), + [anon_sym_xor] = ACTIONS(5982), + [anon_sym_bitand] = ACTIONS(5980), + [anon_sym_not_eq] = ACTIONS(5980), + [anon_sym_DASH_DASH] = ACTIONS(5980), + [anon_sym_PLUS_PLUS] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5982), + [anon_sym_DOT_STAR] = ACTIONS(5980), + [anon_sym_DASH_GT] = ACTIONS(5980), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5980), + [anon_sym_decltype] = ACTIONS(5980), }, - [STATE(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), + [STATE(2382)] = { + [sym_new_declarator] = STATE(2420), + [sym_identifier] = ACTIONS(6375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6377), + [anon_sym_COMMA] = ACTIONS(6377), + [anon_sym_RPAREN] = ACTIONS(6377), + [aux_sym_preproc_if_token2] = ACTIONS(6377), + [aux_sym_preproc_else_token1] = ACTIONS(6377), + [aux_sym_preproc_elif_token1] = ACTIONS(6375), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6377), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6377), + [anon_sym_LPAREN2] = ACTIONS(6377), + [anon_sym_DASH] = ACTIONS(6375), + [anon_sym_PLUS] = ACTIONS(6375), + [anon_sym_STAR] = ACTIONS(6375), + [anon_sym_SLASH] = ACTIONS(6375), + [anon_sym_PERCENT] = ACTIONS(6375), + [anon_sym_PIPE_PIPE] = ACTIONS(6377), + [anon_sym_AMP_AMP] = ACTIONS(6377), + [anon_sym_PIPE] = ACTIONS(6375), + [anon_sym_CARET] = ACTIONS(6375), + [anon_sym_AMP] = ACTIONS(6375), + [anon_sym_EQ_EQ] = ACTIONS(6377), + [anon_sym_BANG_EQ] = ACTIONS(6377), + [anon_sym_GT] = ACTIONS(6375), + [anon_sym_GT_EQ] = ACTIONS(6377), + [anon_sym_LT_EQ] = ACTIONS(6375), + [anon_sym_LT] = ACTIONS(6375), + [anon_sym_LT_LT] = ACTIONS(6375), + [anon_sym_GT_GT] = ACTIONS(6375), + [anon_sym_SEMI] = ACTIONS(6377), + [anon_sym___attribute__] = ACTIONS(6375), + [anon_sym___attribute] = ACTIONS(6375), + [anon_sym_COLON] = ACTIONS(6377), + [anon_sym_LBRACE] = ACTIONS(6377), + [anon_sym_RBRACE] = ACTIONS(6377), + [anon_sym_LBRACK] = ACTIONS(5852), + [anon_sym_RBRACK] = ACTIONS(6377), + [anon_sym_EQ] = ACTIONS(6375), + [anon_sym_QMARK] = ACTIONS(6377), + [anon_sym_STAR_EQ] = ACTIONS(6377), + [anon_sym_SLASH_EQ] = ACTIONS(6377), + [anon_sym_PERCENT_EQ] = ACTIONS(6377), + [anon_sym_PLUS_EQ] = ACTIONS(6377), + [anon_sym_DASH_EQ] = ACTIONS(6377), + [anon_sym_LT_LT_EQ] = ACTIONS(6377), + [anon_sym_GT_GT_EQ] = ACTIONS(6377), + [anon_sym_AMP_EQ] = ACTIONS(6377), + [anon_sym_CARET_EQ] = ACTIONS(6377), + [anon_sym_PIPE_EQ] = ACTIONS(6377), + [anon_sym_and_eq] = ACTIONS(6375), + [anon_sym_or_eq] = ACTIONS(6375), + [anon_sym_xor_eq] = ACTIONS(6375), + [anon_sym_LT_EQ_GT] = ACTIONS(6377), + [anon_sym_or] = ACTIONS(6375), + [anon_sym_and] = ACTIONS(6375), + [anon_sym_bitor] = ACTIONS(6375), + [anon_sym_xor] = ACTIONS(6375), + [anon_sym_bitand] = ACTIONS(6375), + [anon_sym_not_eq] = ACTIONS(6375), + [anon_sym_DASH_DASH] = ACTIONS(6377), + [anon_sym_PLUS_PLUS] = ACTIONS(6377), + [anon_sym_DOT] = ACTIONS(6375), + [anon_sym_DOT_STAR] = ACTIONS(6377), + [anon_sym_DASH_GT] = ACTIONS(6377), + [sym_comment] = ACTIONS(3), }, - [STATE(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), + [STATE(2383)] = { + [sym_attribute_specifier] = STATE(1884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6183), + [anon_sym_COMMA] = ACTIONS(6183), + [anon_sym_RPAREN] = ACTIONS(6183), + [anon_sym_LPAREN2] = ACTIONS(6183), + [anon_sym_DASH] = ACTIONS(6181), + [anon_sym_PLUS] = ACTIONS(6181), + [anon_sym_STAR] = ACTIONS(6183), + [anon_sym_SLASH] = ACTIONS(6181), + [anon_sym_PERCENT] = ACTIONS(6183), + [anon_sym_PIPE_PIPE] = ACTIONS(6183), + [anon_sym_AMP_AMP] = ACTIONS(6183), + [anon_sym_PIPE] = ACTIONS(6181), + [anon_sym_CARET] = ACTIONS(6183), + [anon_sym_AMP] = ACTIONS(6181), + [anon_sym_EQ_EQ] = ACTIONS(6183), + [anon_sym_BANG_EQ] = ACTIONS(6183), + [anon_sym_GT] = ACTIONS(6181), + [anon_sym_GT_EQ] = ACTIONS(6183), + [anon_sym_LT_EQ] = ACTIONS(6181), + [anon_sym_LT] = ACTIONS(6181), + [anon_sym_LT_LT] = ACTIONS(6183), + [anon_sym_GT_GT] = ACTIONS(6183), + [anon_sym_SEMI] = ACTIONS(6183), + [anon_sym___extension__] = ACTIONS(6183), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6183), + [anon_sym_LBRACE] = ACTIONS(6183), + [anon_sym_RBRACE] = ACTIONS(6183), + [anon_sym_LBRACK] = ACTIONS(6183), + [anon_sym_RBRACK] = ACTIONS(6183), + [anon_sym_const] = ACTIONS(6181), + [anon_sym_constexpr] = ACTIONS(6183), + [anon_sym_volatile] = ACTIONS(6183), + [anon_sym_restrict] = ACTIONS(6183), + [anon_sym___restrict__] = ACTIONS(6183), + [anon_sym__Atomic] = ACTIONS(6183), + [anon_sym__Noreturn] = ACTIONS(6183), + [anon_sym_noreturn] = ACTIONS(6183), + [anon_sym__Nonnull] = ACTIONS(6183), + [anon_sym_mutable] = ACTIONS(6183), + [anon_sym_constinit] = ACTIONS(6183), + [anon_sym_consteval] = ACTIONS(6183), + [anon_sym_alignas] = ACTIONS(6183), + [anon_sym__Alignas] = ACTIONS(6183), + [anon_sym_QMARK] = ACTIONS(6183), + [anon_sym_LT_EQ_GT] = ACTIONS(6183), + [anon_sym_or] = ACTIONS(6183), + [anon_sym_and] = ACTIONS(6183), + [anon_sym_bitor] = ACTIONS(6183), + [anon_sym_xor] = ACTIONS(6183), + [anon_sym_bitand] = ACTIONS(6183), + [anon_sym_not_eq] = ACTIONS(6183), + [anon_sym_DASH_DASH] = ACTIONS(6183), + [anon_sym_PLUS_PLUS] = ACTIONS(6183), + [anon_sym_DOT] = ACTIONS(6181), + [anon_sym_DOT_STAR] = ACTIONS(6183), + [anon_sym_DASH_GT] = ACTIONS(6183), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6183), + [anon_sym_decltype] = ACTIONS(6183), + [anon_sym_final] = ACTIONS(6183), + [anon_sym_override] = ACTIONS(6183), + [anon_sym_requires] = ACTIONS(6183), }, - [STATE(2373)] = { - [sym_attribute_specifier] = STATE(1877), - [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(6155), - [anon_sym_decltype] = ACTIONS(6155), - [anon_sym_final] = ACTIONS(6155), - [anon_sym_override] = ACTIONS(6155), - [anon_sym_requires] = ACTIONS(6155), + [STATE(2384)] = { + [sym_template_argument_list] = STATE(2357), + [sym_identifier] = ACTIONS(6379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6381), + [anon_sym_COMMA] = ACTIONS(6381), + [anon_sym_RPAREN] = ACTIONS(6381), + [aux_sym_preproc_if_token2] = ACTIONS(6381), + [aux_sym_preproc_else_token1] = ACTIONS(6381), + [aux_sym_preproc_elif_token1] = ACTIONS(6379), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6381), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6381), + [anon_sym_LPAREN2] = ACTIONS(6381), + [anon_sym_DASH] = ACTIONS(6379), + [anon_sym_PLUS] = ACTIONS(6379), + [anon_sym_STAR] = ACTIONS(6379), + [anon_sym_SLASH] = ACTIONS(6379), + [anon_sym_PERCENT] = ACTIONS(6379), + [anon_sym_PIPE_PIPE] = ACTIONS(6381), + [anon_sym_AMP_AMP] = ACTIONS(6381), + [anon_sym_PIPE] = ACTIONS(6379), + [anon_sym_CARET] = ACTIONS(6379), + [anon_sym_AMP] = ACTIONS(6379), + [anon_sym_EQ_EQ] = ACTIONS(6381), + [anon_sym_BANG_EQ] = ACTIONS(6381), + [anon_sym_GT] = ACTIONS(6379), + [anon_sym_GT_EQ] = ACTIONS(6381), + [anon_sym_LT_EQ] = ACTIONS(6379), + [anon_sym_LT] = ACTIONS(6383), + [anon_sym_LT_LT] = ACTIONS(6379), + [anon_sym_GT_GT] = ACTIONS(6379), + [anon_sym_SEMI] = ACTIONS(6381), + [anon_sym___attribute__] = ACTIONS(6379), + [anon_sym___attribute] = ACTIONS(6379), + [anon_sym_COLON] = ACTIONS(6379), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_RBRACE] = ACTIONS(6381), + [anon_sym_LBRACK] = ACTIONS(6381), + [anon_sym_RBRACK] = ACTIONS(6381), + [anon_sym_EQ] = ACTIONS(6379), + [anon_sym_QMARK] = ACTIONS(6381), + [anon_sym_STAR_EQ] = ACTIONS(6381), + [anon_sym_SLASH_EQ] = ACTIONS(6381), + [anon_sym_PERCENT_EQ] = ACTIONS(6381), + [anon_sym_PLUS_EQ] = ACTIONS(6381), + [anon_sym_DASH_EQ] = ACTIONS(6381), + [anon_sym_LT_LT_EQ] = ACTIONS(6381), + [anon_sym_GT_GT_EQ] = ACTIONS(6381), + [anon_sym_AMP_EQ] = ACTIONS(6381), + [anon_sym_CARET_EQ] = ACTIONS(6381), + [anon_sym_PIPE_EQ] = ACTIONS(6381), + [anon_sym_and_eq] = ACTIONS(6379), + [anon_sym_or_eq] = ACTIONS(6379), + [anon_sym_xor_eq] = ACTIONS(6379), + [anon_sym_LT_EQ_GT] = ACTIONS(6381), + [anon_sym_or] = ACTIONS(6379), + [anon_sym_and] = ACTIONS(6379), + [anon_sym_bitor] = ACTIONS(6379), + [anon_sym_xor] = ACTIONS(6379), + [anon_sym_bitand] = ACTIONS(6379), + [anon_sym_not_eq] = ACTIONS(6379), + [anon_sym_DASH_DASH] = ACTIONS(6381), + [anon_sym_PLUS_PLUS] = ACTIONS(6381), + [anon_sym_DOT] = ACTIONS(6379), + [anon_sym_DOT_STAR] = ACTIONS(6381), + [anon_sym_DASH_GT] = ACTIONS(6381), + [sym_comment] = ACTIONS(3), }, - [STATE(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), + [STATE(2385)] = { + [sym_type_qualifier] = STATE(1666), + [sym_alignas_qualifier] = STATE(1693), + [aux_sym__type_definition_type_repeat1] = STATE(1666), + [aux_sym_sized_type_specifier_repeat1] = STATE(2639), + [sym_identifier] = ACTIONS(6386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5102), + [anon_sym_COMMA] = ACTIONS(5102), + [anon_sym_RPAREN] = ACTIONS(5102), + [anon_sym_LPAREN2] = ACTIONS(5102), + [anon_sym_TILDE] = ACTIONS(5102), + [anon_sym_STAR] = ACTIONS(5102), + [anon_sym_AMP_AMP] = ACTIONS(5102), + [anon_sym_AMP] = ACTIONS(5104), + [anon_sym_SEMI] = ACTIONS(5102), + [anon_sym___extension__] = ACTIONS(6389), + [anon_sym_virtual] = ACTIONS(5104), + [anon_sym_extern] = ACTIONS(5104), + [anon_sym___attribute__] = ACTIONS(5104), + [anon_sym___attribute] = ACTIONS(5104), + [anon_sym_COLON_COLON] = ACTIONS(5102), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5102), + [anon_sym___declspec] = ACTIONS(5104), + [anon_sym___based] = ACTIONS(5104), + [anon_sym___cdecl] = ACTIONS(5104), + [anon_sym___clrcall] = ACTIONS(5104), + [anon_sym___stdcall] = ACTIONS(5104), + [anon_sym___fastcall] = ACTIONS(5104), + [anon_sym___thiscall] = ACTIONS(5104), + [anon_sym___vectorcall] = ACTIONS(5104), + [anon_sym_LBRACE] = ACTIONS(5102), + [anon_sym_signed] = ACTIONS(6392), + [anon_sym_unsigned] = ACTIONS(6392), + [anon_sym_long] = ACTIONS(6392), + [anon_sym_short] = ACTIONS(6392), + [anon_sym_LBRACK] = ACTIONS(5104), + [anon_sym_static] = ACTIONS(5104), + [anon_sym_EQ] = ACTIONS(5102), + [anon_sym_register] = ACTIONS(5104), + [anon_sym_inline] = ACTIONS(5104), + [anon_sym___inline] = ACTIONS(5104), + [anon_sym___inline__] = ACTIONS(5104), + [anon_sym___forceinline] = ACTIONS(5104), + [anon_sym_thread_local] = ACTIONS(5104), + [anon_sym___thread] = ACTIONS(5104), + [anon_sym_const] = ACTIONS(6389), + [anon_sym_constexpr] = ACTIONS(6389), + [anon_sym_volatile] = ACTIONS(6389), + [anon_sym_restrict] = ACTIONS(6389), + [anon_sym___restrict__] = ACTIONS(6389), + [anon_sym__Atomic] = ACTIONS(6389), + [anon_sym__Noreturn] = ACTIONS(6389), + [anon_sym_noreturn] = ACTIONS(6389), + [anon_sym__Nonnull] = ACTIONS(6389), + [anon_sym_mutable] = ACTIONS(6389), + [anon_sym_constinit] = ACTIONS(6389), + [anon_sym_consteval] = ACTIONS(6389), + [anon_sym_alignas] = ACTIONS(6394), + [anon_sym__Alignas] = ACTIONS(6394), + [sym_primitive_type] = ACTIONS(6397), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5104), + [anon_sym_decltype] = ACTIONS(5104), + [anon_sym_template] = ACTIONS(5104), + [anon_sym_GT2] = ACTIONS(5102), + [anon_sym_operator] = ACTIONS(5104), }, - [STATE(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), + [STATE(2386)] = { + [sym_identifier] = ACTIONS(5617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5619), + [anon_sym_COMMA] = 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_LBRACK] = 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), + [anon_sym_L_DQUOTE] = ACTIONS(5619), + [anon_sym_u_DQUOTE] = ACTIONS(5619), + [anon_sym_U_DQUOTE] = ACTIONS(5619), + [anon_sym_u8_DQUOTE] = ACTIONS(5619), + [anon_sym_DQUOTE] = ACTIONS(5619), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5619), + [anon_sym_LR_DQUOTE] = ACTIONS(5619), + [anon_sym_uR_DQUOTE] = ACTIONS(5619), + [anon_sym_UR_DQUOTE] = ACTIONS(5619), + [anon_sym_u8R_DQUOTE] = ACTIONS(5619), + [sym_literal_suffix] = ACTIONS(5617), + }, + [STATE(2387)] = { + [sym_identifier] = ACTIONS(5629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5631), + [anon_sym_COMMA] = 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_LBRACK] = 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), + [anon_sym_L_DQUOTE] = ACTIONS(5631), + [anon_sym_u_DQUOTE] = ACTIONS(5631), + [anon_sym_U_DQUOTE] = ACTIONS(5631), + [anon_sym_u8_DQUOTE] = ACTIONS(5631), + [anon_sym_DQUOTE] = ACTIONS(5631), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5631), + [anon_sym_LR_DQUOTE] = ACTIONS(5631), + [anon_sym_uR_DQUOTE] = ACTIONS(5631), + [anon_sym_UR_DQUOTE] = ACTIONS(5631), + [anon_sym_u8R_DQUOTE] = ACTIONS(5631), + [sym_literal_suffix] = ACTIONS(5629), + }, + [STATE(2388)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5539), + [anon_sym_COMMA] = ACTIONS(5539), + [anon_sym_LPAREN2] = ACTIONS(5539), + [anon_sym_DASH] = ACTIONS(5537), + [anon_sym_PLUS] = ACTIONS(5537), + [anon_sym_STAR] = ACTIONS(5539), + [anon_sym_SLASH] = ACTIONS(5537), + [anon_sym_PERCENT] = ACTIONS(5539), + [anon_sym_PIPE_PIPE] = ACTIONS(5539), + [anon_sym_AMP_AMP] = ACTIONS(5539), + [anon_sym_PIPE] = ACTIONS(5537), + [anon_sym_CARET] = ACTIONS(5539), + [anon_sym_AMP] = ACTIONS(5537), + [anon_sym_EQ_EQ] = ACTIONS(5539), + [anon_sym_BANG_EQ] = ACTIONS(5539), + [anon_sym_GT] = ACTIONS(5537), + [anon_sym_GT_EQ] = ACTIONS(5537), + [anon_sym_LT_EQ] = ACTIONS(5537), + [anon_sym_LT] = ACTIONS(5537), + [anon_sym_LT_LT] = ACTIONS(5539), + [anon_sym_GT_GT] = ACTIONS(5537), + [anon_sym___extension__] = ACTIONS(5539), + [anon_sym___attribute__] = ACTIONS(5539), + [anon_sym___attribute] = ACTIONS(5537), + [anon_sym_LBRACE] = ACTIONS(5539), + [anon_sym_signed] = ACTIONS(6344), + [anon_sym_unsigned] = ACTIONS(6344), + [anon_sym_long] = ACTIONS(6344), + [anon_sym_short] = ACTIONS(6344), + [anon_sym_LBRACK] = ACTIONS(5539), + [anon_sym_const] = ACTIONS(5537), + [anon_sym_constexpr] = ACTIONS(5539), + [anon_sym_volatile] = ACTIONS(5539), + [anon_sym_restrict] = ACTIONS(5539), + [anon_sym___restrict__] = ACTIONS(5539), + [anon_sym__Atomic] = ACTIONS(5539), + [anon_sym__Noreturn] = ACTIONS(5539), + [anon_sym_noreturn] = ACTIONS(5539), + [anon_sym__Nonnull] = ACTIONS(5539), + [anon_sym_mutable] = ACTIONS(5539), + [anon_sym_constinit] = ACTIONS(5539), + [anon_sym_consteval] = ACTIONS(5539), + [anon_sym_alignas] = ACTIONS(5539), + [anon_sym__Alignas] = ACTIONS(5539), + [anon_sym_QMARK] = ACTIONS(5539), + [anon_sym_LT_EQ_GT] = ACTIONS(5539), + [anon_sym_or] = ACTIONS(5539), + [anon_sym_and] = ACTIONS(5539), + [anon_sym_bitor] = ACTIONS(5539), + [anon_sym_xor] = ACTIONS(5539), + [anon_sym_bitand] = ACTIONS(5539), + [anon_sym_not_eq] = ACTIONS(5539), + [anon_sym_DASH_DASH] = ACTIONS(5539), + [anon_sym_PLUS_PLUS] = ACTIONS(5539), + [anon_sym_DOT] = ACTIONS(5537), + [anon_sym_DOT_STAR] = ACTIONS(5539), + [anon_sym_DASH_GT] = ACTIONS(5539), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5539), + [anon_sym_decltype] = ACTIONS(5539), + [anon_sym_final] = ACTIONS(5539), + [anon_sym_override] = ACTIONS(5539), + [anon_sym_GT2] = ACTIONS(5539), + [anon_sym_requires] = ACTIONS(5539), + }, + [STATE(2389)] = { + [sym_identifier] = ACTIONS(5502), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5504), + [anon_sym_COMMA] = ACTIONS(5504), + [anon_sym_LPAREN2] = ACTIONS(5504), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_PLUS] = ACTIONS(5502), + [anon_sym_STAR] = ACTIONS(5502), + [anon_sym_SLASH] = ACTIONS(5502), + [anon_sym_PERCENT] = ACTIONS(5502), + [anon_sym_PIPE_PIPE] = ACTIONS(5504), + [anon_sym_AMP_AMP] = ACTIONS(5504), + [anon_sym_PIPE] = ACTIONS(5502), + [anon_sym_CARET] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5502), + [anon_sym_EQ_EQ] = ACTIONS(5504), + [anon_sym_BANG_EQ] = ACTIONS(5504), + [anon_sym_GT] = ACTIONS(5502), + [anon_sym_GT_EQ] = ACTIONS(5504), + [anon_sym_LT_EQ] = ACTIONS(5502), + [anon_sym_LT] = ACTIONS(5502), + [anon_sym_LT_LT] = ACTIONS(5502), + [anon_sym_GT_GT] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(5504), + [anon_sym___attribute__] = ACTIONS(5502), + [anon_sym___attribute] = ACTIONS(5502), + [anon_sym_LBRACK] = ACTIONS(5504), + [anon_sym_EQ] = ACTIONS(5502), + [anon_sym_QMARK] = ACTIONS(5504), + [anon_sym_STAR_EQ] = ACTIONS(5504), + [anon_sym_SLASH_EQ] = ACTIONS(5504), + [anon_sym_PERCENT_EQ] = ACTIONS(5504), + [anon_sym_PLUS_EQ] = ACTIONS(5504), + [anon_sym_DASH_EQ] = ACTIONS(5504), + [anon_sym_LT_LT_EQ] = ACTIONS(5504), + [anon_sym_GT_GT_EQ] = ACTIONS(5504), + [anon_sym_AMP_EQ] = ACTIONS(5504), + [anon_sym_CARET_EQ] = ACTIONS(5504), + [anon_sym_PIPE_EQ] = ACTIONS(5504), + [anon_sym_and_eq] = ACTIONS(5502), + [anon_sym_or_eq] = ACTIONS(5502), + [anon_sym_xor_eq] = ACTIONS(5502), + [anon_sym_LT_EQ_GT] = ACTIONS(5504), + [anon_sym_or] = ACTIONS(5502), + [anon_sym_and] = ACTIONS(5502), + [anon_sym_bitor] = ACTIONS(5502), + [anon_sym_xor] = ACTIONS(5502), + [anon_sym_bitand] = ACTIONS(5502), + [anon_sym_not_eq] = ACTIONS(5502), + [anon_sym_DASH_DASH] = ACTIONS(5504), + [anon_sym_PLUS_PLUS] = ACTIONS(5504), + [anon_sym_DOT] = ACTIONS(5502), + [anon_sym_DOT_STAR] = ACTIONS(5504), + [anon_sym_DASH_GT] = ACTIONS(5504), + [anon_sym_L_DQUOTE] = ACTIONS(5504), + [anon_sym_u_DQUOTE] = ACTIONS(5504), + [anon_sym_U_DQUOTE] = ACTIONS(5504), + [anon_sym_u8_DQUOTE] = ACTIONS(5504), + [anon_sym_DQUOTE] = ACTIONS(5504), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5504), + [anon_sym_LR_DQUOTE] = ACTIONS(5504), + [anon_sym_uR_DQUOTE] = ACTIONS(5504), + [anon_sym_UR_DQUOTE] = ACTIONS(5504), + [anon_sym_u8R_DQUOTE] = ACTIONS(5504), + [sym_literal_suffix] = ACTIONS(5502), + }, + [STATE(2390)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5984), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_LPAREN2] = ACTIONS(5984), + [anon_sym_DASH] = ACTIONS(5986), + [anon_sym_PLUS] = ACTIONS(5986), + [anon_sym_STAR] = ACTIONS(5984), + [anon_sym_SLASH] = ACTIONS(5986), + [anon_sym_PERCENT] = ACTIONS(5984), + [anon_sym_PIPE_PIPE] = ACTIONS(5984), + [anon_sym_AMP_AMP] = ACTIONS(5984), + [anon_sym_PIPE] = ACTIONS(5986), + [anon_sym_CARET] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5986), + [anon_sym_EQ_EQ] = ACTIONS(5984), + [anon_sym_BANG_EQ] = ACTIONS(5984), + [anon_sym_GT] = ACTIONS(5986), + [anon_sym_GT_EQ] = ACTIONS(5986), + [anon_sym_LT_EQ] = ACTIONS(5986), + [anon_sym_LT] = ACTIONS(5986), + [anon_sym_LT_LT] = ACTIONS(5984), + [anon_sym_GT_GT] = ACTIONS(5986), + [anon_sym___extension__] = ACTIONS(5984), + [anon_sym___attribute__] = ACTIONS(5984), + [anon_sym___attribute] = ACTIONS(5986), + [anon_sym_LBRACE] = ACTIONS(5984), + [anon_sym_signed] = ACTIONS(6338), + [anon_sym_unsigned] = ACTIONS(6338), + [anon_sym_long] = ACTIONS(6338), + [anon_sym_short] = ACTIONS(6338), + [anon_sym_LBRACK] = ACTIONS(5984), + [anon_sym_const] = ACTIONS(5986), + [anon_sym_constexpr] = ACTIONS(5984), + [anon_sym_volatile] = ACTIONS(5984), + [anon_sym_restrict] = ACTIONS(5984), + [anon_sym___restrict__] = ACTIONS(5984), + [anon_sym__Atomic] = ACTIONS(5984), + [anon_sym__Noreturn] = ACTIONS(5984), + [anon_sym_noreturn] = ACTIONS(5984), + [anon_sym__Nonnull] = ACTIONS(5984), + [anon_sym_mutable] = ACTIONS(5984), + [anon_sym_constinit] = ACTIONS(5984), + [anon_sym_consteval] = ACTIONS(5984), + [anon_sym_alignas] = ACTIONS(5984), + [anon_sym__Alignas] = ACTIONS(5984), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_LT_EQ_GT] = ACTIONS(5984), + [anon_sym_or] = ACTIONS(5984), + [anon_sym_and] = ACTIONS(5984), + [anon_sym_bitor] = ACTIONS(5984), + [anon_sym_xor] = ACTIONS(5984), + [anon_sym_bitand] = ACTIONS(5984), + [anon_sym_not_eq] = ACTIONS(5984), + [anon_sym_DASH_DASH] = ACTIONS(5984), + [anon_sym_PLUS_PLUS] = ACTIONS(5984), + [anon_sym_DOT] = ACTIONS(5986), + [anon_sym_DOT_STAR] = ACTIONS(5984), + [anon_sym_DASH_GT] = ACTIONS(5984), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5984), + [anon_sym_decltype] = ACTIONS(5984), + [anon_sym_final] = ACTIONS(5984), + [anon_sym_override] = ACTIONS(5984), + [anon_sym_GT2] = ACTIONS(5984), + [anon_sym_requires] = ACTIONS(5984), }, - [STATE(2376)] = { - [sym_identifier] = ACTIONS(5601), + [STATE(2391)] = { + [sym_attribute_specifier] = STATE(1880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6210), + [anon_sym_COMMA] = ACTIONS(6210), + [anon_sym_RPAREN] = ACTIONS(6210), + [anon_sym_LPAREN2] = ACTIONS(6210), + [anon_sym_DASH] = ACTIONS(6208), + [anon_sym_PLUS] = ACTIONS(6208), + [anon_sym_STAR] = ACTIONS(6210), + [anon_sym_SLASH] = ACTIONS(6208), + [anon_sym_PERCENT] = ACTIONS(6210), + [anon_sym_PIPE_PIPE] = ACTIONS(6210), + [anon_sym_AMP_AMP] = ACTIONS(6210), + [anon_sym_PIPE] = ACTIONS(6208), + [anon_sym_CARET] = ACTIONS(6210), + [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(6210), + [anon_sym_GT_GT] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6210), + [anon_sym___extension__] = ACTIONS(6210), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6210), + [anon_sym_LBRACE] = ACTIONS(6210), + [anon_sym_RBRACE] = ACTIONS(6210), + [anon_sym_LBRACK] = ACTIONS(6210), + [anon_sym_RBRACK] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6208), + [anon_sym_constexpr] = ACTIONS(6210), + [anon_sym_volatile] = ACTIONS(6210), + [anon_sym_restrict] = ACTIONS(6210), + [anon_sym___restrict__] = ACTIONS(6210), + [anon_sym__Atomic] = ACTIONS(6210), + [anon_sym__Noreturn] = ACTIONS(6210), + [anon_sym_noreturn] = ACTIONS(6210), + [anon_sym__Nonnull] = ACTIONS(6210), + [anon_sym_mutable] = ACTIONS(6210), + [anon_sym_constinit] = ACTIONS(6210), + [anon_sym_consteval] = ACTIONS(6210), + [anon_sym_alignas] = ACTIONS(6210), + [anon_sym__Alignas] = ACTIONS(6210), + [anon_sym_QMARK] = ACTIONS(6210), + [anon_sym_LT_EQ_GT] = ACTIONS(6210), + [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(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), + [sym_auto] = ACTIONS(6210), + [anon_sym_decltype] = ACTIONS(6210), + [anon_sym_final] = ACTIONS(6210), + [anon_sym_override] = ACTIONS(6210), + [anon_sym_requires] = ACTIONS(6210), + }, + [STATE(2392)] = { + [sym_identifier] = ACTIONS(5509), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5511), + [anon_sym_COMMA] = ACTIONS(5511), + [anon_sym_LPAREN2] = ACTIONS(5511), + [anon_sym_DASH] = ACTIONS(5509), + [anon_sym_PLUS] = ACTIONS(5509), + [anon_sym_STAR] = ACTIONS(5509), + [anon_sym_SLASH] = ACTIONS(5509), + [anon_sym_PERCENT] = ACTIONS(5509), + [anon_sym_PIPE_PIPE] = ACTIONS(5511), + [anon_sym_AMP_AMP] = ACTIONS(5511), + [anon_sym_PIPE] = ACTIONS(5509), + [anon_sym_CARET] = ACTIONS(5509), + [anon_sym_AMP] = ACTIONS(5509), + [anon_sym_EQ_EQ] = ACTIONS(5511), + [anon_sym_BANG_EQ] = ACTIONS(5511), + [anon_sym_GT] = ACTIONS(5509), + [anon_sym_GT_EQ] = ACTIONS(5511), + [anon_sym_LT_EQ] = ACTIONS(5509), + [anon_sym_LT] = ACTIONS(5509), + [anon_sym_LT_LT] = ACTIONS(5509), + [anon_sym_GT_GT] = ACTIONS(5509), + [anon_sym_SEMI] = ACTIONS(5511), + [anon_sym___attribute__] = ACTIONS(5509), + [anon_sym___attribute] = ACTIONS(5509), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_EQ] = ACTIONS(5509), + [anon_sym_QMARK] = ACTIONS(5511), + [anon_sym_STAR_EQ] = ACTIONS(5511), + [anon_sym_SLASH_EQ] = ACTIONS(5511), + [anon_sym_PERCENT_EQ] = ACTIONS(5511), + [anon_sym_PLUS_EQ] = ACTIONS(5511), + [anon_sym_DASH_EQ] = ACTIONS(5511), + [anon_sym_LT_LT_EQ] = ACTIONS(5511), + [anon_sym_GT_GT_EQ] = ACTIONS(5511), + [anon_sym_AMP_EQ] = ACTIONS(5511), + [anon_sym_CARET_EQ] = ACTIONS(5511), + [anon_sym_PIPE_EQ] = ACTIONS(5511), + [anon_sym_and_eq] = ACTIONS(5509), + [anon_sym_or_eq] = ACTIONS(5509), + [anon_sym_xor_eq] = ACTIONS(5509), + [anon_sym_LT_EQ_GT] = ACTIONS(5511), + [anon_sym_or] = ACTIONS(5509), + [anon_sym_and] = ACTIONS(5509), + [anon_sym_bitor] = ACTIONS(5509), + [anon_sym_xor] = ACTIONS(5509), + [anon_sym_bitand] = ACTIONS(5509), + [anon_sym_not_eq] = ACTIONS(5509), + [anon_sym_DASH_DASH] = ACTIONS(5511), + [anon_sym_PLUS_PLUS] = ACTIONS(5511), + [anon_sym_DOT] = ACTIONS(5509), + [anon_sym_DOT_STAR] = ACTIONS(5511), + [anon_sym_DASH_GT] = ACTIONS(5511), + [anon_sym_L_DQUOTE] = ACTIONS(5511), + [anon_sym_u_DQUOTE] = ACTIONS(5511), + [anon_sym_U_DQUOTE] = ACTIONS(5511), + [anon_sym_u8_DQUOTE] = ACTIONS(5511), + [anon_sym_DQUOTE] = ACTIONS(5511), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5511), + [anon_sym_LR_DQUOTE] = ACTIONS(5511), + [anon_sym_uR_DQUOTE] = ACTIONS(5511), + [anon_sym_UR_DQUOTE] = ACTIONS(5511), + [anon_sym_u8R_DQUOTE] = ACTIONS(5511), + [sym_literal_suffix] = ACTIONS(5509), + }, + [STATE(2393)] = { + [sym_template_argument_list] = STATE(2357), + [sym_identifier] = ACTIONS(6399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6401), + [anon_sym_COMMA] = ACTIONS(6401), + [anon_sym_RPAREN] = ACTIONS(6401), + [aux_sym_preproc_if_token2] = ACTIONS(6401), + [aux_sym_preproc_else_token1] = ACTIONS(6401), + [aux_sym_preproc_elif_token1] = ACTIONS(6399), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6401), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6401), + [anon_sym_LPAREN2] = ACTIONS(6401), + [anon_sym_DASH] = ACTIONS(6399), + [anon_sym_PLUS] = ACTIONS(6399), + [anon_sym_STAR] = ACTIONS(6399), + [anon_sym_SLASH] = ACTIONS(6399), + [anon_sym_PERCENT] = ACTIONS(6399), + [anon_sym_PIPE_PIPE] = ACTIONS(6401), + [anon_sym_AMP_AMP] = ACTIONS(6401), + [anon_sym_PIPE] = ACTIONS(6399), + [anon_sym_CARET] = ACTIONS(6399), + [anon_sym_AMP] = ACTIONS(6399), + [anon_sym_EQ_EQ] = ACTIONS(6401), + [anon_sym_BANG_EQ] = ACTIONS(6401), + [anon_sym_GT] = ACTIONS(6399), + [anon_sym_GT_EQ] = ACTIONS(6401), + [anon_sym_LT_EQ] = ACTIONS(6399), + [anon_sym_LT] = ACTIONS(6403), + [anon_sym_LT_LT] = ACTIONS(6399), + [anon_sym_GT_GT] = ACTIONS(6399), + [anon_sym_SEMI] = ACTIONS(6401), + [anon_sym___attribute__] = ACTIONS(6399), + [anon_sym___attribute] = ACTIONS(6399), + [anon_sym_COLON] = ACTIONS(6399), + [anon_sym_COLON_COLON] = ACTIONS(4178), + [anon_sym_RBRACE] = ACTIONS(6401), + [anon_sym_LBRACK] = ACTIONS(6401), + [anon_sym_RBRACK] = ACTIONS(6401), + [anon_sym_EQ] = ACTIONS(6399), + [anon_sym_QMARK] = ACTIONS(6401), + [anon_sym_STAR_EQ] = ACTIONS(6401), + [anon_sym_SLASH_EQ] = ACTIONS(6401), + [anon_sym_PERCENT_EQ] = ACTIONS(6401), + [anon_sym_PLUS_EQ] = ACTIONS(6401), + [anon_sym_DASH_EQ] = ACTIONS(6401), + [anon_sym_LT_LT_EQ] = ACTIONS(6401), + [anon_sym_GT_GT_EQ] = ACTIONS(6401), + [anon_sym_AMP_EQ] = ACTIONS(6401), + [anon_sym_CARET_EQ] = ACTIONS(6401), + [anon_sym_PIPE_EQ] = ACTIONS(6401), + [anon_sym_and_eq] = ACTIONS(6399), + [anon_sym_or_eq] = ACTIONS(6399), + [anon_sym_xor_eq] = ACTIONS(6399), + [anon_sym_LT_EQ_GT] = ACTIONS(6401), + [anon_sym_or] = ACTIONS(6399), + [anon_sym_and] = ACTIONS(6399), + [anon_sym_bitor] = ACTIONS(6399), + [anon_sym_xor] = ACTIONS(6399), + [anon_sym_bitand] = ACTIONS(6399), + [anon_sym_not_eq] = ACTIONS(6399), + [anon_sym_DASH_DASH] = ACTIONS(6401), + [anon_sym_PLUS_PLUS] = ACTIONS(6401), + [anon_sym_DOT] = ACTIONS(6399), + [anon_sym_DOT_STAR] = ACTIONS(6401), + [anon_sym_DASH_GT] = ACTIONS(6401), + [sym_comment] = ACTIONS(3), + }, + [STATE(2394)] = { + [sym_attribute_specifier] = STATE(2726), + [sym_field_declaration_list] = STATE(2652), + [sym_virtual_specifier] = STATE(7146), + [sym_base_class_clause] = STATE(7873), [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_STAR] = ACTIONS(5603), [anon_sym_SLASH] = ACTIONS(5601), - [anon_sym_PERCENT] = ACTIONS(5601), + [anon_sym_PERCENT] = ACTIONS(5603), [anon_sym_PIPE_PIPE] = ACTIONS(5603), [anon_sym_AMP_AMP] = ACTIONS(5603), [anon_sym_PIPE] = ACTIONS(5601), - [anon_sym_CARET] = ACTIONS(5601), + [anon_sym_CARET] = ACTIONS(5603), [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_GT_EQ] = ACTIONS(5601), [anon_sym_LT_EQ] = ACTIONS(5601), [anon_sym_LT] = ACTIONS(5601), - [anon_sym_LT_LT] = ACTIONS(5601), + [anon_sym_LT_LT] = ACTIONS(5603), [anon_sym_GT_GT] = ACTIONS(5601), - [anon_sym_SEMI] = ACTIONS(5603), - [anon_sym___attribute__] = ACTIONS(5601), - [anon_sym___attribute] = ACTIONS(5601), + [anon_sym___extension__] = ACTIONS(5603), + [anon_sym___attribute__] = ACTIONS(6406), + [anon_sym___attribute] = ACTIONS(6408), + [anon_sym_COLON] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(6410), [anon_sym_LBRACK] = ACTIONS(5603), - [anon_sym_EQ] = ACTIONS(5601), + [anon_sym_const] = ACTIONS(5601), + [anon_sym_constexpr] = ACTIONS(5603), + [anon_sym_volatile] = ACTIONS(5603), + [anon_sym_restrict] = ACTIONS(5603), + [anon_sym___restrict__] = ACTIONS(5603), + [anon_sym__Atomic] = ACTIONS(5603), + [anon_sym__Noreturn] = ACTIONS(5603), + [anon_sym_noreturn] = ACTIONS(5603), + [anon_sym__Nonnull] = ACTIONS(5603), + [anon_sym_mutable] = ACTIONS(5603), + [anon_sym_constinit] = ACTIONS(5603), + [anon_sym_consteval] = ACTIONS(5603), + [anon_sym_alignas] = ACTIONS(5603), + [anon_sym__Alignas] = ACTIONS(5603), [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_or] = ACTIONS(5603), + [anon_sym_and] = ACTIONS(5603), + [anon_sym_bitor] = ACTIONS(5603), + [anon_sym_xor] = ACTIONS(5603), + [anon_sym_bitand] = ACTIONS(5603), + [anon_sym_not_eq] = ACTIONS(5603), [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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5603), + [anon_sym_decltype] = ACTIONS(5603), + [anon_sym_final] = ACTIONS(6026), + [anon_sym_override] = ACTIONS(6026), + [anon_sym_GT2] = ACTIONS(5603), + [anon_sym_requires] = ACTIONS(5603), }, - [STATE(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), + [STATE(2395)] = { + [sym_identifier] = ACTIONS(5009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [aux_sym_preproc_if_token2] = ACTIONS(5002), + [aux_sym_preproc_else_token1] = ACTIONS(5002), + [aux_sym_preproc_elif_token1] = ACTIONS(5009), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5002), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5002), + [anon_sym_LPAREN2] = ACTIONS(5002), + [anon_sym_DASH] = ACTIONS(5009), + [anon_sym_PLUS] = ACTIONS(5009), + [anon_sym_STAR] = ACTIONS(5009), + [anon_sym_SLASH] = ACTIONS(5009), + [anon_sym_PERCENT] = ACTIONS(5009), + [anon_sym_PIPE_PIPE] = ACTIONS(5002), + [anon_sym_AMP_AMP] = ACTIONS(5002), + [anon_sym_PIPE] = ACTIONS(5009), + [anon_sym_CARET] = ACTIONS(5009), + [anon_sym_AMP] = ACTIONS(5009), + [anon_sym_EQ_EQ] = ACTIONS(5002), + [anon_sym_BANG_EQ] = ACTIONS(5002), + [anon_sym_GT] = ACTIONS(5009), + [anon_sym_GT_EQ] = ACTIONS(5002), + [anon_sym_LT_EQ] = ACTIONS(5009), + [anon_sym_LT] = ACTIONS(5009), + [anon_sym_LT_LT] = ACTIONS(5009), + [anon_sym_GT_GT] = ACTIONS(5009), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym___attribute__] = ACTIONS(5009), + [anon_sym___attribute] = ACTIONS(5009), + [anon_sym_COLON] = ACTIONS(5009), + [anon_sym_COLON_COLON] = ACTIONS(5007), + [anon_sym_LBRACE] = ACTIONS(5007), + [anon_sym_RBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_RBRACK] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5009), + [anon_sym_QMARK] = ACTIONS(5002), + [anon_sym_STAR_EQ] = ACTIONS(5002), + [anon_sym_SLASH_EQ] = ACTIONS(5002), + [anon_sym_PERCENT_EQ] = ACTIONS(5002), + [anon_sym_PLUS_EQ] = ACTIONS(5002), + [anon_sym_DASH_EQ] = ACTIONS(5002), + [anon_sym_LT_LT_EQ] = ACTIONS(5002), + [anon_sym_GT_GT_EQ] = ACTIONS(5002), + [anon_sym_AMP_EQ] = ACTIONS(5002), + [anon_sym_CARET_EQ] = ACTIONS(5002), + [anon_sym_PIPE_EQ] = ACTIONS(5002), + [anon_sym_and_eq] = ACTIONS(5009), + [anon_sym_or_eq] = ACTIONS(5009), + [anon_sym_xor_eq] = ACTIONS(5009), + [anon_sym_LT_EQ_GT] = ACTIONS(5002), + [anon_sym_or] = ACTIONS(5009), + [anon_sym_and] = ACTIONS(5009), + [anon_sym_bitor] = ACTIONS(5009), + [anon_sym_xor] = ACTIONS(5009), + [anon_sym_bitand] = ACTIONS(5009), + [anon_sym_not_eq] = ACTIONS(5009), + [anon_sym_DASH_DASH] = ACTIONS(5002), + [anon_sym_PLUS_PLUS] = ACTIONS(5002), + [anon_sym_DOT] = ACTIONS(5009), + [anon_sym_DOT_STAR] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), [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), }, - [STATE(2382)] = { - [sym_attribute_specifier] = STATE(1883), + [STATE(2396)] = { + [sym_attribute_specifier] = STATE(1898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6206), + [anon_sym_COMMA] = ACTIONS(6206), + [anon_sym_RPAREN] = ACTIONS(6206), + [anon_sym_LPAREN2] = ACTIONS(6206), + [anon_sym_DASH] = ACTIONS(6204), + [anon_sym_PLUS] = ACTIONS(6204), + [anon_sym_STAR] = ACTIONS(6206), + [anon_sym_SLASH] = ACTIONS(6204), + [anon_sym_PERCENT] = ACTIONS(6206), + [anon_sym_PIPE_PIPE] = ACTIONS(6206), + [anon_sym_AMP_AMP] = ACTIONS(6206), + [anon_sym_PIPE] = ACTIONS(6204), + [anon_sym_CARET] = ACTIONS(6206), + [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(6206), + [anon_sym_GT_GT] = ACTIONS(6206), + [anon_sym_SEMI] = ACTIONS(6206), + [anon_sym___extension__] = ACTIONS(6206), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6206), + [anon_sym_LBRACE] = ACTIONS(6206), + [anon_sym_RBRACE] = ACTIONS(6206), + [anon_sym_LBRACK] = ACTIONS(6206), + [anon_sym_RBRACK] = ACTIONS(6206), + [anon_sym_const] = ACTIONS(6204), + [anon_sym_constexpr] = ACTIONS(6206), + [anon_sym_volatile] = ACTIONS(6206), + [anon_sym_restrict] = ACTIONS(6206), + [anon_sym___restrict__] = ACTIONS(6206), + [anon_sym__Atomic] = ACTIONS(6206), + [anon_sym__Noreturn] = ACTIONS(6206), + [anon_sym_noreturn] = ACTIONS(6206), + [anon_sym__Nonnull] = ACTIONS(6206), + [anon_sym_mutable] = ACTIONS(6206), + [anon_sym_constinit] = ACTIONS(6206), + [anon_sym_consteval] = ACTIONS(6206), + [anon_sym_alignas] = ACTIONS(6206), + [anon_sym__Alignas] = ACTIONS(6206), + [anon_sym_QMARK] = ACTIONS(6206), + [anon_sym_LT_EQ_GT] = ACTIONS(6206), + [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(6206), + [anon_sym_PLUS_PLUS] = ACTIONS(6206), + [anon_sym_DOT] = ACTIONS(6204), + [anon_sym_DOT_STAR] = ACTIONS(6206), + [anon_sym_DASH_GT] = ACTIONS(6206), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6206), + [anon_sym_decltype] = ACTIONS(6206), + [anon_sym_final] = ACTIONS(6206), + [anon_sym_override] = ACTIONS(6206), + [anon_sym_requires] = ACTIONS(6206), + }, + [STATE(2397)] = { + [sym_attribute_specifier] = STATE(1921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6214), + [anon_sym_COMMA] = ACTIONS(6214), + [anon_sym_RPAREN] = ACTIONS(6214), + [anon_sym_LPAREN2] = ACTIONS(6214), + [anon_sym_DASH] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6214), + [anon_sym_SLASH] = ACTIONS(6212), + [anon_sym_PERCENT] = ACTIONS(6214), + [anon_sym_PIPE_PIPE] = ACTIONS(6214), + [anon_sym_AMP_AMP] = ACTIONS(6214), + [anon_sym_PIPE] = ACTIONS(6212), + [anon_sym_CARET] = ACTIONS(6214), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_EQ_EQ] = ACTIONS(6214), + [anon_sym_BANG_EQ] = ACTIONS(6214), + [anon_sym_GT] = ACTIONS(6212), + [anon_sym_GT_EQ] = ACTIONS(6214), + [anon_sym_LT_EQ] = ACTIONS(6212), + [anon_sym_LT] = ACTIONS(6212), + [anon_sym_LT_LT] = ACTIONS(6214), + [anon_sym_GT_GT] = ACTIONS(6214), + [anon_sym_SEMI] = ACTIONS(6214), + [anon_sym___extension__] = ACTIONS(6214), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6214), + [anon_sym_LBRACE] = ACTIONS(6214), + [anon_sym_RBRACE] = ACTIONS(6214), + [anon_sym_LBRACK] = ACTIONS(6214), + [anon_sym_RBRACK] = ACTIONS(6214), + [anon_sym_const] = ACTIONS(6212), + [anon_sym_constexpr] = ACTIONS(6214), + [anon_sym_volatile] = ACTIONS(6214), + [anon_sym_restrict] = ACTIONS(6214), + [anon_sym___restrict__] = ACTIONS(6214), + [anon_sym__Atomic] = ACTIONS(6214), + [anon_sym__Noreturn] = ACTIONS(6214), + [anon_sym_noreturn] = ACTIONS(6214), + [anon_sym__Nonnull] = ACTIONS(6214), + [anon_sym_mutable] = ACTIONS(6214), + [anon_sym_constinit] = ACTIONS(6214), + [anon_sym_consteval] = ACTIONS(6214), + [anon_sym_alignas] = ACTIONS(6214), + [anon_sym__Alignas] = ACTIONS(6214), + [anon_sym_QMARK] = ACTIONS(6214), + [anon_sym_LT_EQ_GT] = ACTIONS(6214), + [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(6214), + [anon_sym_PLUS_PLUS] = ACTIONS(6214), + [anon_sym_DOT] = ACTIONS(6212), + [anon_sym_DOT_STAR] = ACTIONS(6214), + [anon_sym_DASH_GT] = ACTIONS(6214), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6214), + [anon_sym_decltype] = ACTIONS(6214), + [anon_sym_final] = ACTIONS(6214), + [anon_sym_override] = ACTIONS(6214), + [anon_sym_requires] = ACTIONS(6214), + }, + [STATE(2398)] = { + [sym_attribute_specifier] = STATE(1911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6161), + [anon_sym_COMMA] = ACTIONS(6161), + [anon_sym_RPAREN] = ACTIONS(6161), + [anon_sym_LPAREN2] = ACTIONS(6161), + [anon_sym_DASH] = ACTIONS(6159), + [anon_sym_PLUS] = ACTIONS(6159), + [anon_sym_STAR] = ACTIONS(6161), + [anon_sym_SLASH] = ACTIONS(6159), + [anon_sym_PERCENT] = ACTIONS(6161), + [anon_sym_PIPE_PIPE] = ACTIONS(6161), + [anon_sym_AMP_AMP] = ACTIONS(6161), + [anon_sym_PIPE] = ACTIONS(6159), + [anon_sym_CARET] = ACTIONS(6161), + [anon_sym_AMP] = ACTIONS(6159), + [anon_sym_EQ_EQ] = ACTIONS(6161), + [anon_sym_BANG_EQ] = ACTIONS(6161), + [anon_sym_GT] = ACTIONS(6159), + [anon_sym_GT_EQ] = ACTIONS(6161), + [anon_sym_LT_EQ] = ACTIONS(6159), + [anon_sym_LT] = ACTIONS(6159), + [anon_sym_LT_LT] = ACTIONS(6161), + [anon_sym_GT_GT] = ACTIONS(6161), + [anon_sym_SEMI] = ACTIONS(6161), + [anon_sym___extension__] = ACTIONS(6161), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6161), + [anon_sym_LBRACE] = ACTIONS(6161), + [anon_sym_RBRACE] = ACTIONS(6161), + [anon_sym_LBRACK] = ACTIONS(6161), + [anon_sym_RBRACK] = ACTIONS(6161), + [anon_sym_const] = ACTIONS(6159), + [anon_sym_constexpr] = ACTIONS(6161), + [anon_sym_volatile] = ACTIONS(6161), + [anon_sym_restrict] = ACTIONS(6161), + [anon_sym___restrict__] = ACTIONS(6161), + [anon_sym__Atomic] = ACTIONS(6161), + [anon_sym__Noreturn] = ACTIONS(6161), + [anon_sym_noreturn] = ACTIONS(6161), + [anon_sym__Nonnull] = ACTIONS(6161), + [anon_sym_mutable] = ACTIONS(6161), + [anon_sym_constinit] = ACTIONS(6161), + [anon_sym_consteval] = ACTIONS(6161), + [anon_sym_alignas] = ACTIONS(6161), + [anon_sym__Alignas] = ACTIONS(6161), + [anon_sym_QMARK] = ACTIONS(6161), + [anon_sym_LT_EQ_GT] = ACTIONS(6161), + [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(6161), + [anon_sym_PLUS_PLUS] = ACTIONS(6161), + [anon_sym_DOT] = ACTIONS(6159), + [anon_sym_DOT_STAR] = ACTIONS(6161), + [anon_sym_DASH_GT] = ACTIONS(6161), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6161), + [anon_sym_decltype] = ACTIONS(6161), + [anon_sym_final] = ACTIONS(6161), + [anon_sym_override] = ACTIONS(6161), + [anon_sym_requires] = ACTIONS(6161), + }, + [STATE(2399)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5897), + [anon_sym_COMMA] = ACTIONS(5897), + [anon_sym_RPAREN] = ACTIONS(5897), + [anon_sym_LPAREN2] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5899), + [anon_sym_STAR] = ACTIONS(5899), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_PERCENT] = ACTIONS(5899), + [anon_sym_PIPE_PIPE] = ACTIONS(5897), + [anon_sym_AMP_AMP] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5899), + [anon_sym_AMP] = ACTIONS(5899), + [anon_sym_EQ_EQ] = ACTIONS(5897), + [anon_sym_BANG_EQ] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5899), + [anon_sym_GT_EQ] = ACTIONS(5897), + [anon_sym_LT_EQ] = ACTIONS(5899), + [anon_sym_LT] = ACTIONS(5899), + [anon_sym_LT_LT] = ACTIONS(5899), + [anon_sym_GT_GT] = ACTIONS(5899), + [anon_sym_SEMI] = ACTIONS(5897), + [anon_sym___attribute__] = ACTIONS(5897), + [anon_sym___attribute] = ACTIONS(5899), + [anon_sym_COLON] = ACTIONS(5897), + [anon_sym_LBRACE] = ACTIONS(5897), + [anon_sym_RBRACE] = ACTIONS(5897), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5897), + [anon_sym_RBRACK] = ACTIONS(5897), + [anon_sym_EQ] = ACTIONS(5899), + [anon_sym_QMARK] = ACTIONS(5897), + [anon_sym_STAR_EQ] = ACTIONS(5897), + [anon_sym_SLASH_EQ] = ACTIONS(5897), + [anon_sym_PERCENT_EQ] = ACTIONS(5897), + [anon_sym_PLUS_EQ] = ACTIONS(5897), + [anon_sym_DASH_EQ] = ACTIONS(5897), + [anon_sym_LT_LT_EQ] = ACTIONS(5897), + [anon_sym_GT_GT_EQ] = ACTIONS(5897), + [anon_sym_AMP_EQ] = ACTIONS(5897), + [anon_sym_CARET_EQ] = ACTIONS(5897), + [anon_sym_PIPE_EQ] = ACTIONS(5897), + [anon_sym_and_eq] = ACTIONS(5897), + [anon_sym_or_eq] = ACTIONS(5897), + [anon_sym_xor_eq] = ACTIONS(5897), + [anon_sym_LT_EQ_GT] = ACTIONS(5897), + [anon_sym_or] = ACTIONS(5899), + [anon_sym_and] = ACTIONS(5899), + [anon_sym_bitor] = ACTIONS(5897), + [anon_sym_xor] = ACTIONS(5899), + [anon_sym_bitand] = ACTIONS(5897), + [anon_sym_not_eq] = ACTIONS(5897), + [anon_sym_DASH_DASH] = ACTIONS(5897), + [anon_sym_PLUS_PLUS] = ACTIONS(5897), + [anon_sym_DOT] = ACTIONS(5899), + [anon_sym_DOT_STAR] = ACTIONS(5897), + [anon_sym_DASH_GT] = ACTIONS(5897), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5897), + [anon_sym_decltype] = ACTIONS(5897), + }, + [STATE(2400)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_LPAREN2] = ACTIONS(5809), + [anon_sym_DASH] = ACTIONS(5807), + [anon_sym_PLUS] = ACTIONS(5807), + [anon_sym_STAR] = ACTIONS(5807), + [anon_sym_SLASH] = ACTIONS(5807), + [anon_sym_PERCENT] = ACTIONS(5807), + [anon_sym_PIPE_PIPE] = ACTIONS(5809), + [anon_sym_AMP_AMP] = ACTIONS(5809), + [anon_sym_PIPE] = ACTIONS(5807), + [anon_sym_CARET] = ACTIONS(5807), + [anon_sym_AMP] = ACTIONS(5807), + [anon_sym_EQ_EQ] = ACTIONS(5809), + [anon_sym_BANG_EQ] = ACTIONS(5809), + [anon_sym_GT] = ACTIONS(5807), + [anon_sym_GT_EQ] = ACTIONS(5809), + [anon_sym_LT_EQ] = ACTIONS(5807), + [anon_sym_LT] = ACTIONS(5807), + [anon_sym_LT_LT] = ACTIONS(5807), + [anon_sym_GT_GT] = ACTIONS(5807), + [anon_sym_SEMI] = ACTIONS(5809), + [anon_sym___attribute__] = ACTIONS(5809), + [anon_sym___attribute] = ACTIONS(5807), + [anon_sym_COLON] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_signed] = ACTIONS(6369), + [anon_sym_unsigned] = ACTIONS(6369), + [anon_sym_long] = ACTIONS(6369), + [anon_sym_short] = ACTIONS(6369), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_RBRACK] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5807), + [anon_sym_QMARK] = ACTIONS(5809), + [anon_sym_STAR_EQ] = ACTIONS(5809), + [anon_sym_SLASH_EQ] = ACTIONS(5809), + [anon_sym_PERCENT_EQ] = ACTIONS(5809), + [anon_sym_PLUS_EQ] = ACTIONS(5809), + [anon_sym_DASH_EQ] = ACTIONS(5809), + [anon_sym_LT_LT_EQ] = ACTIONS(5809), + [anon_sym_GT_GT_EQ] = ACTIONS(5809), + [anon_sym_AMP_EQ] = ACTIONS(5809), + [anon_sym_CARET_EQ] = ACTIONS(5809), + [anon_sym_PIPE_EQ] = ACTIONS(5809), + [anon_sym_and_eq] = ACTIONS(5809), + [anon_sym_or_eq] = ACTIONS(5809), + [anon_sym_xor_eq] = ACTIONS(5809), + [anon_sym_LT_EQ_GT] = ACTIONS(5809), + [anon_sym_or] = ACTIONS(5807), + [anon_sym_and] = ACTIONS(5807), + [anon_sym_bitor] = ACTIONS(5809), + [anon_sym_xor] = ACTIONS(5807), + [anon_sym_bitand] = ACTIONS(5809), + [anon_sym_not_eq] = ACTIONS(5809), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_DOT] = ACTIONS(5807), + [anon_sym_DOT_STAR] = ACTIONS(5809), + [anon_sym_DASH_GT] = ACTIONS(5809), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5809), + [anon_sym_decltype] = ACTIONS(5809), + }, + [STATE(2401)] = { + [sym_attribute_specifier] = STATE(1915), [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), [anon_sym_COMMA] = ACTIONS(6102), [anon_sym_RPAREN] = ACTIONS(6102), @@ -296945,8 +298932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), [anon_sym_COLON] = ACTIONS(6102), [anon_sym_LBRACE] = ACTIONS(6102), [anon_sym_RBRACE] = ACTIONS(6102), @@ -296986,951 +298973,488 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(6102), [anon_sym_requires] = ACTIONS(6102), }, - [STATE(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), + [STATE(2402)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2252), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5897), + [anon_sym_COMMA] = ACTIONS(5897), + [anon_sym_LPAREN2] = ACTIONS(5897), + [anon_sym_DASH] = ACTIONS(5899), + [anon_sym_PLUS] = ACTIONS(5899), + [anon_sym_STAR] = ACTIONS(5897), + [anon_sym_SLASH] = ACTIONS(5899), + [anon_sym_PERCENT] = ACTIONS(5897), + [anon_sym_PIPE_PIPE] = ACTIONS(5897), + [anon_sym_AMP_AMP] = ACTIONS(5897), + [anon_sym_PIPE] = ACTIONS(5899), + [anon_sym_CARET] = ACTIONS(5897), + [anon_sym_AMP] = ACTIONS(5899), + [anon_sym_EQ_EQ] = ACTIONS(5897), + [anon_sym_BANG_EQ] = ACTIONS(5897), + [anon_sym_GT] = ACTIONS(5899), + [anon_sym_GT_EQ] = ACTIONS(5899), + [anon_sym_LT_EQ] = ACTIONS(5899), + [anon_sym_LT] = ACTIONS(5899), + [anon_sym_LT_LT] = ACTIONS(5897), + [anon_sym_GT_GT] = ACTIONS(5899), + [anon_sym___extension__] = ACTIONS(5897), + [anon_sym___attribute__] = ACTIONS(5897), + [anon_sym___attribute] = ACTIONS(5899), + [anon_sym_LBRACE] = ACTIONS(5897), + [anon_sym_signed] = ACTIONS(6338), + [anon_sym_unsigned] = ACTIONS(6338), + [anon_sym_long] = ACTIONS(6338), + [anon_sym_short] = ACTIONS(6338), + [anon_sym_LBRACK] = ACTIONS(5897), + [anon_sym_const] = ACTIONS(5899), + [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(5897), + [anon_sym__Alignas] = ACTIONS(5897), + [anon_sym_QMARK] = ACTIONS(5897), + [anon_sym_LT_EQ_GT] = ACTIONS(5897), + [anon_sym_or] = ACTIONS(5897), + [anon_sym_and] = ACTIONS(5897), + [anon_sym_bitor] = ACTIONS(5897), + [anon_sym_xor] = ACTIONS(5897), + [anon_sym_bitand] = ACTIONS(5897), + [anon_sym_not_eq] = ACTIONS(5897), + [anon_sym_DASH_DASH] = ACTIONS(5897), + [anon_sym_PLUS_PLUS] = ACTIONS(5897), + [anon_sym_DOT] = ACTIONS(5899), + [anon_sym_DOT_STAR] = ACTIONS(5897), + [anon_sym_DASH_GT] = ACTIONS(5897), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5897), + [anon_sym_decltype] = ACTIONS(5897), + [anon_sym_final] = ACTIONS(5897), + [anon_sym_override] = ACTIONS(5897), + [anon_sym_GT2] = ACTIONS(5897), + [anon_sym_requires] = ACTIONS(5897), + }, + [STATE(2403)] = { + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(2406), + [sym__declarator] = STATE(6547), + [sym__abstract_declarator] = STATE(6810), + [sym_parenthesized_declarator] = STATE(6137), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_function_declarator] = STATE(6137), + [sym_abstract_function_declarator] = STATE(6117), + [sym_array_declarator] = STATE(6137), + [sym_abstract_array_declarator] = STATE(6117), + [sym_type_qualifier] = STATE(2907), + [sym_alignas_qualifier] = STATE(4359), + [sym_parameter_list] = STATE(3134), + [sym_decltype] = STATE(8381), + [sym_reference_declarator] = STATE(6137), + [sym_abstract_reference_declarator] = STATE(6117), + [sym_structured_binding_declarator] = STATE(6137), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5903), + [sym_qualified_identifier] = STATE(6137), + [sym_operator_name] = STATE(6137), + [aux_sym__type_definition_type_repeat1] = STATE(2907), + [aux_sym_pointer_declarator_repeat1] = STATE(2406), + [sym_identifier] = ACTIONS(5484), + [anon_sym_RPAREN] = ACTIONS(5889), + [anon_sym_LPAREN2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4322), + [anon_sym_AMP] = ACTIONS(4324), + [anon_sym___extension__] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(6412), [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_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), + [STATE(2404)] = { + [sym_attribute_specifier] = STATE(1918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6115), + [anon_sym_COMMA] = ACTIONS(6115), + [anon_sym_RPAREN] = ACTIONS(6115), + [anon_sym_LPAREN2] = ACTIONS(6115), + [anon_sym_DASH] = ACTIONS(6113), + [anon_sym_PLUS] = ACTIONS(6113), + [anon_sym_STAR] = ACTIONS(6115), + [anon_sym_SLASH] = ACTIONS(6113), + [anon_sym_PERCENT] = ACTIONS(6115), + [anon_sym_PIPE_PIPE] = ACTIONS(6115), + [anon_sym_AMP_AMP] = ACTIONS(6115), + [anon_sym_PIPE] = ACTIONS(6113), + [anon_sym_CARET] = ACTIONS(6115), + [anon_sym_AMP] = ACTIONS(6113), + [anon_sym_EQ_EQ] = ACTIONS(6115), + [anon_sym_BANG_EQ] = ACTIONS(6115), + [anon_sym_GT] = ACTIONS(6113), + [anon_sym_GT_EQ] = ACTIONS(6115), + [anon_sym_LT_EQ] = ACTIONS(6113), + [anon_sym_LT] = ACTIONS(6113), + [anon_sym_LT_LT] = ACTIONS(6115), + [anon_sym_GT_GT] = ACTIONS(6115), + [anon_sym_SEMI] = ACTIONS(6115), + [anon_sym___extension__] = ACTIONS(6115), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6115), + [anon_sym_LBRACE] = ACTIONS(6115), + [anon_sym_RBRACE] = ACTIONS(6115), + [anon_sym_LBRACK] = ACTIONS(6115), + [anon_sym_RBRACK] = ACTIONS(6115), + [anon_sym_const] = ACTIONS(6113), + [anon_sym_constexpr] = ACTIONS(6115), + [anon_sym_volatile] = ACTIONS(6115), + [anon_sym_restrict] = ACTIONS(6115), + [anon_sym___restrict__] = ACTIONS(6115), + [anon_sym__Atomic] = ACTIONS(6115), + [anon_sym__Noreturn] = ACTIONS(6115), + [anon_sym_noreturn] = ACTIONS(6115), + [anon_sym__Nonnull] = ACTIONS(6115), + [anon_sym_mutable] = ACTIONS(6115), + [anon_sym_constinit] = ACTIONS(6115), + [anon_sym_consteval] = ACTIONS(6115), + [anon_sym_alignas] = ACTIONS(6115), + [anon_sym__Alignas] = ACTIONS(6115), + [anon_sym_QMARK] = ACTIONS(6115), + [anon_sym_LT_EQ_GT] = ACTIONS(6115), + [anon_sym_or] = ACTIONS(6115), + [anon_sym_and] = ACTIONS(6115), + [anon_sym_bitor] = ACTIONS(6115), + [anon_sym_xor] = ACTIONS(6115), + [anon_sym_bitand] = ACTIONS(6115), + [anon_sym_not_eq] = ACTIONS(6115), + [anon_sym_DASH_DASH] = ACTIONS(6115), + [anon_sym_PLUS_PLUS] = ACTIONS(6115), + [anon_sym_DOT] = ACTIONS(6113), + [anon_sym_DOT_STAR] = ACTIONS(6115), + [anon_sym_DASH_GT] = ACTIONS(6115), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6115), + [anon_sym_decltype] = ACTIONS(6115), + [anon_sym_final] = ACTIONS(6115), + [anon_sym_override] = ACTIONS(6115), + [anon_sym_requires] = ACTIONS(6115), + }, + [STATE(2405)] = { + [sym_attribute_specifier] = STATE(1887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6152), + [anon_sym_COMMA] = ACTIONS(6152), + [anon_sym_RPAREN] = ACTIONS(6152), + [anon_sym_LPAREN2] = ACTIONS(6152), + [anon_sym_DASH] = ACTIONS(6150), + [anon_sym_PLUS] = ACTIONS(6150), + [anon_sym_STAR] = ACTIONS(6152), + [anon_sym_SLASH] = ACTIONS(6150), + [anon_sym_PERCENT] = ACTIONS(6152), + [anon_sym_PIPE_PIPE] = ACTIONS(6152), + [anon_sym_AMP_AMP] = ACTIONS(6152), + [anon_sym_PIPE] = ACTIONS(6150), + [anon_sym_CARET] = ACTIONS(6152), + [anon_sym_AMP] = ACTIONS(6150), + [anon_sym_EQ_EQ] = ACTIONS(6152), + [anon_sym_BANG_EQ] = ACTIONS(6152), + [anon_sym_GT] = ACTIONS(6150), + [anon_sym_GT_EQ] = ACTIONS(6152), + [anon_sym_LT_EQ] = ACTIONS(6150), + [anon_sym_LT] = ACTIONS(6150), + [anon_sym_LT_LT] = ACTIONS(6152), + [anon_sym_GT_GT] = ACTIONS(6152), + [anon_sym_SEMI] = ACTIONS(6152), + [anon_sym___extension__] = ACTIONS(6152), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6152), + [anon_sym_LBRACE] = ACTIONS(6152), + [anon_sym_RBRACE] = ACTIONS(6152), + [anon_sym_LBRACK] = ACTIONS(6152), + [anon_sym_RBRACK] = ACTIONS(6152), + [anon_sym_const] = ACTIONS(6150), + [anon_sym_constexpr] = ACTIONS(6152), + [anon_sym_volatile] = ACTIONS(6152), + [anon_sym_restrict] = ACTIONS(6152), + [anon_sym___restrict__] = ACTIONS(6152), + [anon_sym__Atomic] = ACTIONS(6152), + [anon_sym__Noreturn] = ACTIONS(6152), + [anon_sym_noreturn] = ACTIONS(6152), + [anon_sym__Nonnull] = ACTIONS(6152), + [anon_sym_mutable] = ACTIONS(6152), + [anon_sym_constinit] = ACTIONS(6152), + [anon_sym_consteval] = ACTIONS(6152), + [anon_sym_alignas] = ACTIONS(6152), + [anon_sym__Alignas] = ACTIONS(6152), + [anon_sym_QMARK] = ACTIONS(6152), + [anon_sym_LT_EQ_GT] = ACTIONS(6152), + [anon_sym_or] = ACTIONS(6152), + [anon_sym_and] = ACTIONS(6152), + [anon_sym_bitor] = ACTIONS(6152), + [anon_sym_xor] = ACTIONS(6152), + [anon_sym_bitand] = ACTIONS(6152), + [anon_sym_not_eq] = ACTIONS(6152), + [anon_sym_DASH_DASH] = ACTIONS(6152), + [anon_sym_PLUS_PLUS] = ACTIONS(6152), + [anon_sym_DOT] = ACTIONS(6150), + [anon_sym_DOT_STAR] = ACTIONS(6152), + [anon_sym_DASH_GT] = ACTIONS(6152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6152), + [anon_sym_decltype] = ACTIONS(6152), + [anon_sym_final] = ACTIONS(6152), + [anon_sym_override] = ACTIONS(6152), + [anon_sym_requires] = ACTIONS(6152), + }, + [STATE(2406)] = { + [sym_ms_based_modifier] = STATE(8850), + [sym_ms_unaligned_ptr_modifier] = STATE(4104), + [sym_ms_pointer_modifier] = STATE(3870), + [sym__declarator] = STATE(6541), + [sym__abstract_declarator] = STATE(6775), + [sym_parenthesized_declarator] = STATE(6137), + [sym_abstract_parenthesized_declarator] = STATE(6117), + [sym_attributed_declarator] = STATE(6137), + [sym_pointer_declarator] = STATE(6137), + [sym_abstract_pointer_declarator] = STATE(6117), + [sym_function_declarator] = STATE(6137), + [sym_abstract_function_declarator] = STATE(6117), + [sym_array_declarator] = STATE(6137), + [sym_abstract_array_declarator] = STATE(6117), + [sym_type_qualifier] = STATE(2909), + [sym_alignas_qualifier] = STATE(4359), + [sym_parameter_list] = STATE(3134), + [sym_decltype] = STATE(8381), + [sym_reference_declarator] = STATE(6137), + [sym_abstract_reference_declarator] = STATE(6117), + [sym_structured_binding_declarator] = STATE(6137), + [sym__function_declarator_seq] = STATE(6134), + [sym_template_type] = STATE(8381), + [sym_template_function] = STATE(6137), + [sym_destructor_name] = STATE(6137), + [sym_dependent_type_identifier] = STATE(8381), + [sym__scope_resolution] = STATE(5903), + [sym_qualified_identifier] = STATE(6137), + [sym_operator_name] = STATE(6137), + [aux_sym__type_definition_type_repeat1] = STATE(2909), + [aux_sym_pointer_declarator_repeat1] = STATE(3870), + [sym_identifier] = ACTIONS(5484), + [anon_sym_RPAREN] = ACTIONS(5860), + [anon_sym_LPAREN2] = ACTIONS(4318), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_STAR] = ACTIONS(4320), + [anon_sym_AMP_AMP] = ACTIONS(4322), + [anon_sym_AMP] = ACTIONS(4324), + [anon_sym___extension__] = ACTIONS(3351), + [anon_sym_COLON_COLON] = ACTIONS(6412), [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_ms_restrict_modifier] = ACTIONS(3347), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3347), + [sym_ms_signed_ptr_modifier] = ACTIONS(3347), + [anon_sym__unaligned] = ACTIONS(3349), + [anon_sym___unaligned] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(5872), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_constexpr] = ACTIONS(3351), + [anon_sym_volatile] = ACTIONS(3351), + [anon_sym_restrict] = ACTIONS(3351), + [anon_sym___restrict__] = ACTIONS(3351), + [anon_sym__Atomic] = ACTIONS(3351), + [anon_sym__Noreturn] = ACTIONS(3351), + [anon_sym_noreturn] = ACTIONS(3351), + [anon_sym__Nonnull] = ACTIONS(3351), + [anon_sym_mutable] = ACTIONS(3351), + [anon_sym_constinit] = ACTIONS(3351), + [anon_sym_consteval] = ACTIONS(3351), + [anon_sym_alignas] = ACTIONS(3353), + [anon_sym__Alignas] = ACTIONS(3353), [sym_comment] = ACTIONS(3), [anon_sym_decltype] = ACTIONS(1978), [anon_sym_template] = ACTIONS(1268), [anon_sym_operator] = ACTIONS(1850), }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), - }, - [STATE(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), + [STATE(2407)] = { + [sym_attribute_specifier] = STATE(1876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6230), + [anon_sym_COMMA] = ACTIONS(6230), + [anon_sym_RPAREN] = ACTIONS(6230), + [anon_sym_LPAREN2] = ACTIONS(6230), + [anon_sym_DASH] = ACTIONS(6228), + [anon_sym_PLUS] = ACTIONS(6228), + [anon_sym_STAR] = ACTIONS(6230), + [anon_sym_SLASH] = ACTIONS(6228), + [anon_sym_PERCENT] = ACTIONS(6230), + [anon_sym_PIPE_PIPE] = ACTIONS(6230), + [anon_sym_AMP_AMP] = ACTIONS(6230), + [anon_sym_PIPE] = ACTIONS(6228), + [anon_sym_CARET] = ACTIONS(6230), + [anon_sym_AMP] = ACTIONS(6228), + [anon_sym_EQ_EQ] = ACTIONS(6230), + [anon_sym_BANG_EQ] = ACTIONS(6230), + [anon_sym_GT] = ACTIONS(6228), + [anon_sym_GT_EQ] = ACTIONS(6230), + [anon_sym_LT_EQ] = ACTIONS(6228), + [anon_sym_LT] = ACTIONS(6228), + [anon_sym_LT_LT] = ACTIONS(6230), + [anon_sym_GT_GT] = ACTIONS(6230), + [anon_sym_SEMI] = ACTIONS(6230), + [anon_sym___extension__] = ACTIONS(6230), + [anon_sym___attribute__] = ACTIONS(6020), + [anon_sym___attribute] = ACTIONS(6022), + [anon_sym_COLON] = ACTIONS(6230), + [anon_sym_LBRACE] = ACTIONS(6230), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_LBRACK] = ACTIONS(6230), + [anon_sym_RBRACK] = ACTIONS(6230), + [anon_sym_const] = ACTIONS(6228), + [anon_sym_constexpr] = ACTIONS(6230), + [anon_sym_volatile] = ACTIONS(6230), + [anon_sym_restrict] = ACTIONS(6230), + [anon_sym___restrict__] = ACTIONS(6230), + [anon_sym__Atomic] = ACTIONS(6230), + [anon_sym__Noreturn] = ACTIONS(6230), + [anon_sym_noreturn] = ACTIONS(6230), + [anon_sym__Nonnull] = ACTIONS(6230), + [anon_sym_mutable] = ACTIONS(6230), + [anon_sym_constinit] = ACTIONS(6230), + [anon_sym_consteval] = ACTIONS(6230), + [anon_sym_alignas] = ACTIONS(6230), + [anon_sym__Alignas] = ACTIONS(6230), + [anon_sym_QMARK] = ACTIONS(6230), + [anon_sym_LT_EQ_GT] = ACTIONS(6230), + [anon_sym_or] = ACTIONS(6230), + [anon_sym_and] = ACTIONS(6230), + [anon_sym_bitor] = ACTIONS(6230), + [anon_sym_xor] = ACTIONS(6230), + [anon_sym_bitand] = ACTIONS(6230), + [anon_sym_not_eq] = ACTIONS(6230), + [anon_sym_DASH_DASH] = ACTIONS(6230), + [anon_sym_PLUS_PLUS] = ACTIONS(6230), + [anon_sym_DOT] = ACTIONS(6228), + [anon_sym_DOT_STAR] = ACTIONS(6230), + [anon_sym_DASH_GT] = ACTIONS(6230), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6230), + [anon_sym_decltype] = ACTIONS(6230), + [anon_sym_final] = ACTIONS(6230), + [anon_sym_override] = ACTIONS(6230), + [anon_sym_requires] = ACTIONS(6230), + }, + [STATE(2408)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1620), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5960), + [anon_sym_COMMA] = ACTIONS(5960), + [anon_sym_RPAREN] = ACTIONS(5960), + [anon_sym_LPAREN2] = ACTIONS(5960), + [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(5960), + [anon_sym_AMP_AMP] = ACTIONS(5960), + [anon_sym_PIPE] = ACTIONS(5962), + [anon_sym_CARET] = ACTIONS(5962), + [anon_sym_AMP] = ACTIONS(5962), + [anon_sym_EQ_EQ] = ACTIONS(5960), + [anon_sym_BANG_EQ] = ACTIONS(5960), + [anon_sym_GT] = ACTIONS(5962), + [anon_sym_GT_EQ] = ACTIONS(5960), + [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(5960), + [anon_sym___attribute__] = ACTIONS(5960), + [anon_sym___attribute] = ACTIONS(5962), + [anon_sym_COLON] = ACTIONS(5960), + [anon_sym_LBRACE] = ACTIONS(5960), + [anon_sym_RBRACE] = ACTIONS(5960), + [anon_sym_signed] = ACTIONS(6324), + [anon_sym_unsigned] = ACTIONS(6324), + [anon_sym_long] = ACTIONS(6324), + [anon_sym_short] = ACTIONS(6324), + [anon_sym_LBRACK] = ACTIONS(5960), + [anon_sym_RBRACK] = ACTIONS(5960), + [anon_sym_EQ] = ACTIONS(5962), + [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(5960), + [anon_sym_or_eq] = ACTIONS(5960), + [anon_sym_xor_eq] = ACTIONS(5960), + [anon_sym_LT_EQ_GT] = ACTIONS(5960), + [anon_sym_or] = ACTIONS(5962), + [anon_sym_and] = ACTIONS(5962), + [anon_sym_bitor] = ACTIONS(5960), + [anon_sym_xor] = ACTIONS(5962), + [anon_sym_bitand] = ACTIONS(5960), + [anon_sym_not_eq] = ACTIONS(5960), + [anon_sym_DASH_DASH] = ACTIONS(5960), + [anon_sym_PLUS_PLUS] = ACTIONS(5960), + [anon_sym_DOT] = ACTIONS(5962), + [anon_sym_DOT_STAR] = ACTIONS(5960), + [anon_sym_DASH_GT] = ACTIONS(5960), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5960), + [anon_sym_decltype] = ACTIONS(5960), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5527), 13, + ACTIONS(6414), 1, + sym_auto, + ACTIONS(6416), 1, + anon_sym_decltype, + STATE(2549), 1, + sym_decltype_auto, + ACTIONS(5639), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -297944,14 +299468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5525), 50, + ACTIONS(5637), 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, @@ -297987,89 +299510,16 @@ 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, - [71] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(2220), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6130), 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, - ACTIONS(5167), 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(5164), 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, - [148] = 3, + [77] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 28, + ACTIONS(6418), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298086,6 +299536,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, @@ -298098,7 +299549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6408), 35, + ACTIONS(6420), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298114,9 +299565,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, @@ -298134,168 +299584,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, 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, - 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5517), 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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [294] = 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, - ACTIONS(6410), 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(6412), 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, - [379] = 10, + [148] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, ACTIONS(6422), 27, @@ -298354,14 +299659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [464] = 5, + [233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 1, - anon_sym_LT, - STATE(2375), 1, - sym_template_argument_list, - ACTIONS(6426), 27, + ACTIONS(6434), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298373,6 +299674,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__, @@ -298389,7 +299691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6428), 34, + ACTIONS(6436), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298405,6 +299707,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, @@ -298424,78 +299727,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [539] = 3, + [304] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 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, - ACTIONS(5603), 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_GT_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_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(6438), 1, + sym_identifier, + STATE(2435), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4499), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + ACTIONS(4501), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5641), 27, + ACTIONS(5431), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298509,12 +299762,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, @@ -298522,85 +299770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5643), 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_GT_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_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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [681] = 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_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, - ACTIONS(5472), 36, + ACTIONS(5429), 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_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -298617,21 +299798,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_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, - [752] = 3, + anon_sym_DASH_GT_STAR, + [383] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 27, + STATE(2275), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6279), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5537), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298645,8 +299824,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, @@ -298658,17 +299835,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5479), 36, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5539), 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_PIPE_PIPE, 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, @@ -298686,33 +299869,23 @@ 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, - [823] = 9, + [458] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6433), 27, + ACTIONS(6440), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298740,7 +299913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6435), 29, + ACTIONS(6442), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -298770,11 +299943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [906] = 3, + [541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5502), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -298801,15 +299973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6408), 35, + sym_literal_suffix, + ACTIONS(5504), 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, @@ -298817,11 +299984,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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -298838,63 +300001,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [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, @@ -298905,79 +300011,10 @@ 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, - [1048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6437), 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(6439), 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, - [1119] = 3, + [612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6441), 28, + ACTIONS(3963), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -298994,74 +300031,7 @@ static const uint16_t ts_small_parse_table[] = { 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(6443), 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, - [1190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6445), 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, @@ -299074,7 +300044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6447), 35, + ACTIONS(3965), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299090,9 +300060,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, @@ -299110,154 +300079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1261] = 7, - ACTIONS(3), 1, - sym_comment, - 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, - 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(6060), 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, - [1340] = 7, - ACTIONS(3), 1, - sym_comment, - 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_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, - [1419] = 3, + [683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 29, + ACTIONS(3967), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -299287,7 +300112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3961), 34, + ACTIONS(3969), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299322,26 +300147,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [1490] = 10, + [754] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6460), 27, + ACTIONS(6444), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -299369,7 +300194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6462), 27, + ACTIONS(6446), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299397,12 +300222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [1575] = 4, + [839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6464), 29, + ACTIONS(6448), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -299419,7 +300242,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, @@ -299432,7 +300254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6466), 33, + ACTIONS(6450), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299448,80 +300270,10 @@ 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_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, - [1648] = 7, - ACTIONS(3), 1, - sym_comment, - 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, - 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(5395), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299537,230 +300289,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, - [1727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5601), 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(5603), 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, - [1798] = 6, - ACTIONS(3), 1, - sym_comment, - 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, - 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(5533), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [1875] = 15, - 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, - 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, + [910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 28, + ACTIONS(6452), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -299789,7 +300322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6484), 35, + ACTIONS(6454), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -299825,108 +300358,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2041] = 15, + [981] = 9, 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(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, + ACTIONS(5850), 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(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, + ACTIONS(6426), 1, 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, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6456), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299940,27 +300389,35 @@ 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, - sym_literal_suffix, - ACTIONS(5401), 26, + sym_identifier, + ACTIONS(6458), 29, 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -299975,12 +300432,10 @@ 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_STAR, - [2215] = 3, + [1064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 27, + ACTIONS(5509), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -299994,6 +300449,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, @@ -300005,19 +300462,17 @@ 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(5472), 36, + ACTIONS(5511), 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, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300034,6 +300489,7 @@ 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, @@ -300044,11 +300500,10 @@ 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, - [2286] = 3, + [1135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 29, + ACTIONS(6452), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300065,7 +300520,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, @@ -300078,7 +300532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6496), 34, + ACTIONS(6454), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300094,8 +300548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300113,10 +300568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2357] = 3, + [1206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 28, + ACTIONS(6464), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6460), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300133,6 +300590,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, @@ -300145,7 +300603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6500), 35, + ACTIONS(6462), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300161,9 +300619,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, @@ -300181,10 +300637,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2428] = 3, + [1279] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 27, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6466), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300198,6 +300671,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, @@ -300208,21 +300683,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, sym_identifier, - sym_literal_suffix, - ACTIONS(5643), 36, + ACTIONS(6468), 27, 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300235,24 +300712,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_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, + [1364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 29, + ACTIONS(6452), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300269,7 +300732,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, @@ -300282,7 +300744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6504), 34, + ACTIONS(6454), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300298,8 +300760,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300317,10 +300780,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [2570] = 3, + [1435] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 29, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6470), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300337,7 +300816,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, @@ -300348,9 +300826,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(6508), 34, + ACTIONS(6472), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300358,15 +300835,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, @@ -300381,31 +300855,79 @@ 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, - [2641] = 10, + [1520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5539), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6414), 1, + 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(5537), 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, - 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_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, + [1593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5509), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300419,8 +300941,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, @@ -300431,23 +300951,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - ACTIONS(6512), 27, + sym_literal_suffix, + ACTIONS(5511), 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_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -300460,69 +300978,82 @@ 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_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(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_DASH_GT_STAR, + [1664] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2252), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6189), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5089), 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(5141), 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_STAR_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(5915), 27, + ACTIONS(5138), 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_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -300530,24 +301061,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - [2803] = 9, + sym_auto, + anon_sym_decltype, + [1741] = 5, 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), 27, + ACTIONS(6478), 1, + anon_sym_LT, + STATE(2395), 1, + sym_template_argument_list, + ACTIONS(6474), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300559,7 +301082,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__, @@ -300574,8 +301096,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(6516), 29, + ACTIONS(6476), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300583,13 +301106,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, @@ -300605,26 +301131,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [2886] = 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [1816] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6518), 27, + ACTIONS(6481), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300652,7 +301180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6520), 27, + ACTIONS(6483), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300680,10 +301208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [2971] = 3, + [1901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 29, + ACTIONS(6485), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -300700,7 +301228,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, @@ -300713,7 +301240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3945), 34, + ACTIONS(6487), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300729,8 +301256,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -300748,29 +301276,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3042] = 12, + [1972] = 7, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6489), 1, + sym_identifier, + STATE(2440), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4499), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4501), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5421), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -300787,10 +301314,14 @@ static const uint16_t ts_small_parse_table[] = { 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(5559), 34, + sym_literal_suffix, + ACTIONS(5419), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300812,93 +301343,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_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, - [3131] = 3, + [2051] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 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, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6414), 1, + sym_auto, + ACTIONS(6416), 1, + anon_sym_decltype, + ACTIONS(6495), 1, + anon_sym_virtual, + STATE(2549), 1, + sym_decltype_auto, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(5492), 2, 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(6408), 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, - [3202] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 12, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2595), 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(5490), 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(6493), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300907,19 +301398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5515), 50, + ACTIONS(6491), 12, 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, @@ -300928,14 +301411,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_identifier, + anon_sym_template, + anon_sym_operator, + ACTIONS(5486), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -300948,42 +301428,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__, - 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, + [2146] = 3, 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, + ACTIONS(5482), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -300994,13 +301442,17 @@ 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(5557), 40, + ACTIONS(5480), 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, @@ -301032,16 +301484,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, - [3361] = 3, + anon_sym_try, + anon_sym_requires, + [2217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5617), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301068,15 +301526,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6534), 34, + sym_literal_suffix, + ACTIONS(5619), 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, @@ -301084,10 +301537,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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301104,11 +301554,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3431] = 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, + [2288] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6414), 1, + sym_auto, + ACTIONS(6416), 1, + anon_sym_decltype, + ACTIONS(6501), 1, + anon_sym_virtual, + STATE(2549), 1, + sym_decltype_auto, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2603), 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(5490), 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(6499), 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(6497), 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(5486), 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, + [2383] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6503), 1, + sym_identifier, + STATE(2440), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6506), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6509), 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, @@ -301122,12 +301679,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, @@ -301135,26 +301687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6538), 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, @@ -301170,12 +301715,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [3501] = 3, + anon_sym_DASH_GT_STAR, + [2462] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6512), 1, + anon_sym___attribute__, + ACTIONS(6514), 1, + anon_sym___attribute, + ACTIONS(6516), 1, + anon_sym_LBRACE, + STATE(2887), 1, + sym_field_declaration_list, + STATE(3154), 1, + sym_attribute_specifier, + STATE(7131), 1, + sym_virtual_specifier, + STATE(7766), 1, + sym_base_class_clause, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5601), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301189,39 +301752,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(4166), 34, + anon_sym_DASH_GT, + ACTIONS(5603), 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, @@ -301233,15 +301780,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, - [3571] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [2551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 28, + ACTIONS(6518), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301258,6 +301813,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, @@ -301270,7 +301826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6542), 34, + ACTIONS(6520), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301286,8 +301842,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, @@ -301305,11 +301861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3641] = 3, + [2622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5629), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301336,15 +301891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6546), 34, + sym_literal_suffix, + ACTIONS(5631), 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, @@ -301352,10 +301902,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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301372,10 +301919,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3711] = 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, + [2693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 28, + ACTIONS(6522), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301392,6 +301949,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, @@ -301404,7 +301962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6550), 34, + ACTIONS(6524), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301420,8 +301978,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, @@ -301439,10 +301997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3781] = 3, + [2764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 28, + ACTIONS(6526), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301471,7 +302029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6554), 34, + ACTIONS(6528), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301487,6 +302045,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, @@ -301506,11 +302065,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [3851] = 3, + [2835] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 28, - aux_sym_preproc_elif_token1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + STATE(1635), 1, + sym_template_argument_list, + STATE(2597), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301524,39 +302093,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___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(6558), 34, + anon_sym_DASH_GT, + ACTIONS(6068), 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -301568,83 +302124,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, - [3921] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + anon_sym_DASH_GT_STAR, + [2914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5617), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301658,8 +302154,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, @@ -301671,26 +302165,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(4166), 34, + sym_literal_suffix, + ACTIONS(5619), 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, @@ -301706,11 +302194,92 @@ 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, + [2985] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2307), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6251), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6253), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5950), 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, - [4061] = 3, + anon_sym_GT2, + ACTIONS(5948), 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, + [3062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 28, + ACTIONS(6532), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -301739,7 +302308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6562), 34, + ACTIONS(6534), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -301755,6 +302324,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, @@ -301774,11 +302344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4131] = 3, + [3133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5629), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301792,8 +302361,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, @@ -301805,26 +302372,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(6566), 34, + sym_literal_suffix, + ACTIONS(5631), 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, @@ -301840,79 +302401,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, - [4201] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + 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, + [3204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5502), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -301926,8 +302429,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, @@ -301939,26 +302440,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(6570), 34, + sym_literal_suffix, + ACTIONS(5504), 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, @@ -301974,279 +302469,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, - [4341] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - 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, - 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, - [4481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 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(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, - 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, - [4551] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + 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, + [3275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5762), 13, + ACTIONS(5539), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302260,7 +302497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5760), 49, + ACTIONS(5537), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -302310,10 +302547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [4691] = 3, + [3345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 28, + ACTIONS(3911), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -302342,7 +302579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6574), 34, + ACTIONS(3907), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302377,10 +302614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4761] = 3, + [3415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5790), 13, + ACTIONS(5729), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302394,7 +302631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5788), 49, + ACTIONS(5727), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -302444,11 +302681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [4831] = 3, + [3485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5617), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302458,13 +302694,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, @@ -302476,25 +302712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6578), 34, + sym_literal_suffix, + ACTIONS(5619), 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, @@ -302502,7 +302729,73 @@ static const uint16_t ts_small_parse_table[] = { 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, + [3555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 28, + anon_sym_DASH, + anon_sym_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_identifier, + sym_literal_suffix, + ACTIONS(5631), 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, @@ -302511,23 +302804,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [4901] = 8, + 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, + [3625] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - STATE(2660), 1, + STATE(2674), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4194), 4, + ACTIONS(4182), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6060), 12, + ACTIONS(6068), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302540,7 +302844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6058), 42, + ACTIONS(6066), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -302583,10 +302887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [4981] = 3, + [3705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5778), 13, + ACTIONS(5801), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302600,7 +302904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5776), 49, + ACTIONS(5799), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -302650,21 +302954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [5051] = 7, + [3775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - STATE(1623), 1, - sym_template_argument_list, - STATE(2633), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6582), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6058), 21, + ACTIONS(6538), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302674,29 +302968,43 @@ 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(6060), 34, + sym_identifier, + ACTIONS(6540), 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___attribute__, - anon_sym_LBRACE, + 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, @@ -302704,113 +303012,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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [5129] = 3, + [3845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 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(5780), 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, - [5199] = 12, - ACTIONS(3), 1, - sym_comment, - 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, + ACTIONS(6542), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -302820,26 +303035,43 @@ 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(5559), 32, + sym_identifier, + ACTIONS(6544), 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, @@ -302847,27 +303079,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, - [5287] = 3, + [3915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 28, + ACTIONS(5192), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -302896,7 +303120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6592), 34, + ACTIONS(5194), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -302931,77 +303155,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [5357] = 3, + [3985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5703), 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(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_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(5470), 26, + ACTIONS(5174), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303015,6 +303173,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, @@ -303026,19 +303186,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(5472), 36, + sym_identifier, + ACTIONS(5176), 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, @@ -303054,21 +303221,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, - [5497] = 3, + anon_sym_DASH_GT, + [4055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 28, + ACTIONS(4924), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -303097,7 +303254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(1934), 34, + ACTIONS(4917), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303132,10 +303289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [5567] = 3, + [4125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 13, + ACTIONS(5715), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303149,7 +303306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5816), 49, + ACTIONS(5713), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -303199,10 +303356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [5637] = 3, + [4195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 28, + ACTIONS(4924), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303212,13 +303370,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, @@ -303230,16 +303388,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5603), 34, + ACTIONS(4917), 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, @@ -303247,6 +303414,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, @@ -303255,21 +303423,11 @@ 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, - [5707] = 3, + [4265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 28, + ACTIONS(6546), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303279,13 +303437,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, @@ -303297,16 +303455,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5643), 34, + ACTIONS(6548), 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, @@ -303314,6 +303481,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, @@ -303322,21 +303490,10 @@ 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, - [5777] = 3, + [4335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5786), 13, + ACTIONS(5770), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303350,7 +303507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5784), 49, + ACTIONS(5768), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -303400,10 +303557,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [5847] = 3, + [4405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 28, + ACTIONS(6550), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303413,13 +303571,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, @@ -303431,16 +303589,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5472), 34, + ACTIONS(6552), 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, @@ -303448,6 +303615,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, @@ -303456,21 +303624,11 @@ 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, - [5917] = 3, + [4475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 28, + ACTIONS(6554), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303480,13 +303638,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, @@ -303498,16 +303656,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5479), 34, + 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, @@ -303515,6 +303682,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, @@ -303523,88 +303691,10 @@ 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, - [5987] = 3, + [4545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5726), 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(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_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(6594), 28, + ACTIONS(4924), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -303633,7 +303723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6596), 34, + ACTIONS(4917), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303668,77 +303758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6127] = 3, + [4615] = 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(6598), 28, + ACTIONS(4924), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -303767,7 +303790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6600), 34, + ACTIONS(4917), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303802,10 +303825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6267] = 3, + [4685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 13, + ACTIONS(5797), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -303819,7 +303842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5697), 49, + ACTIONS(5795), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -303869,78 +303892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [6337] = 3, + [4755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 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(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_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(6602), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5502), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -303950,13 +303905,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, @@ -303968,25 +303923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6604), 34, + sym_literal_suffix, + ACTIONS(5504), 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, @@ -303994,7 +303940,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, @@ -304003,10 +303948,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6477] = 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, + [4825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 28, + ACTIONS(6558), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304035,7 +303991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6608), 34, + ACTIONS(6560), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304070,10 +304026,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6547] = 3, + [4895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 28, + ACTIONS(1940), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304102,7 +304058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5190), 34, + ACTIONS(1938), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304137,10 +304093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6617] = 3, + [4965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 28, + ACTIONS(6562), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304169,7 +304125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6612), 34, + ACTIONS(6564), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304204,10 +304160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6687] = 3, + [5035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 28, + ACTIONS(6566), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304236,7 +304192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6616), 34, + ACTIONS(6568), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304271,19 +304227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6757] = 7, + [5105] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5509), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -304293,39 +304240,34 @@ 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, sym_identifier, - ACTIONS(6300), 32, + sym_literal_suffix, + ACTIONS(5511), 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, @@ -304333,7 +304275,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, @@ -304342,10 +304283,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6835] = 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, + [5175] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5733), 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(5731), 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, + [5245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 28, + ACTIONS(1936), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304374,7 +304393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3899), 34, + ACTIONS(1934), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304409,10 +304428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6905] = 3, + [5315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 28, + ACTIONS(4924), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304441,7 +304460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6566), 34, + ACTIONS(4917), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304476,10 +304495,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [6975] = 3, + [5385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6626), 28, + ACTIONS(5809), 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(5807), 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, + [5455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 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(5815), 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, + [5525] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5680), 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(5678), 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, + [5595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304508,7 +304728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6628), 34, + ACTIONS(4917), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304543,10 +304763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7045] = 3, + [5665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 28, + ACTIONS(6570), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304575,7 +304795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6632), 34, + ACTIONS(6572), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304610,10 +304830,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7115] = 3, + [5735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5676), 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(5674), 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, + [5805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 28, + ACTIONS(6574), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304642,7 +304929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6636), 34, + ACTIONS(6576), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304677,10 +304964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7185] = 3, + [5875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5730), 13, + ACTIONS(5759), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304694,7 +304981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5728), 49, + ACTIONS(5757), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -304744,11 +305031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [7255] = 3, + [5945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5629), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -304762,8 +305048,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, @@ -304775,26 +305059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6640), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5631), 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, @@ -304810,11 +305087,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, - [7325] = 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, + [6015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 28, + ACTIONS(6578), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304843,7 +305130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5194), 34, + ACTIONS(6580), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304878,10 +305165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7395] = 3, + [6085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 28, + ACTIONS(5170), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304910,7 +305197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4927), 34, + ACTIONS(5172), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -304945,10 +305232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7465] = 3, + [6155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 28, + ACTIONS(6582), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -304977,7 +305264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4927), 34, + ACTIONS(6584), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305012,144 +305299,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7535] = 3, + [6225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5744), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6586), 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(5742), 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, - [7605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5798), 13, + ACTIONS(6588), 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(5796), 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, - [7675] = 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, + [6295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6642), 28, + ACTIONS(6590), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305178,7 +305398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6644), 34, + ACTIONS(6592), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305213,77 +305433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7745] = 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, - 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, - [7815] = 3, + [6365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 28, + ACTIONS(6594), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305312,7 +305465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6648), 34, + ACTIONS(6596), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305347,77 +305500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [7885] = 3, + [6435] = 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(4934), 28, + ACTIONS(6598), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305446,7 +305532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4927), 34, + ACTIONS(6600), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305481,10 +305567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8025] = 3, + [6505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 28, + ACTIONS(6602), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305513,7 +305599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4927), 34, + ACTIONS(6604), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305548,10 +305634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8095] = 3, + [6575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 28, + ACTIONS(5158), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305580,7 +305666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6652), 34, + ACTIONS(5160), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305615,77 +305701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8165] = 3, + [6645] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6606), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305714,7 +305733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4927), 34, + ACTIONS(6608), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305749,10 +305768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8305] = 3, + [6715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 28, + ACTIONS(5144), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305781,7 +305800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4927), 34, + ACTIONS(5146), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305816,10 +305835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8375] = 3, + [6785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5802), 13, + ACTIONS(5813), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305833,7 +305852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5800), 49, + ACTIONS(5811), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -305883,10 +305902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [8445] = 3, + [6855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 28, + ACTIONS(5144), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305915,7 +305934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6466), 34, + ACTIONS(5146), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -305950,10 +305969,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8515] = 3, + [6925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5684), 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(5682), 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, + [6995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 28, + ACTIONS(6610), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -305982,7 +306068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6656), 34, + ACTIONS(6612), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306017,10 +306103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8585] = 3, + [7065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 13, + ACTIONS(5699), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306034,7 +306120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5804), 49, + ACTIONS(5697), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -306084,10 +306170,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [8655] = 3, + [7135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5810), 13, + ACTIONS(5144), 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(5146), 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, + [7205] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5655), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306101,7 +306254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5808), 49, + ACTIONS(5653), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -306151,10 +306304,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [8725] = 3, + [7275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 28, + ACTIONS(6614), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -306183,7 +306336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5198), 34, + ACTIONS(6616), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306218,10 +306371,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8795] = 3, + [7345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 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, + [7415] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + STATE(1635), 1, + sym_template_argument_list, + STATE(2692), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 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(6068), 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, + [7493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6620), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -306250,7 +306541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5198), 34, + ACTIONS(6622), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306285,10 +306576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8865] = 3, + [7563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 28, + ACTIONS(6624), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -306317,7 +306608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5198), 34, + ACTIONS(6626), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306352,10 +306643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [8935] = 3, + [7633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5814), 13, + ACTIONS(5721), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306369,7 +306660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5812), 49, + ACTIONS(5719), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -306419,77 +306710,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [9005] = 3, + [7703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 28, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5725), 13, + 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_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5723), 49, 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, + 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, - ACTIONS(5182), 34, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [7773] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5837), 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(5835), 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, - [9075] = 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, + [7843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 13, + ACTIONS(5729), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306503,7 +306861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5804), 49, + ACTIONS(5727), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -306553,10 +306911,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [9145] = 3, + [7913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 28, + ACTIONS(6628), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -306585,7 +306943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5146), 34, + ACTIONS(6630), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306620,10 +306978,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9215] = 3, + [7983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 26, + ACTIONS(6632), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -306637,6 +306996,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, @@ -306648,19 +307009,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(5603), 36, + sym_identifier, + ACTIONS(6634), 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, @@ -306676,21 +307044,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, - [9285] = 3, + anon_sym_DASH_GT, + [8053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 28, + ACTIONS(6574), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -306719,7 +307077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(2729), 34, + ACTIONS(6576), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306754,77 +307112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5683), 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(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_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, - [9425] = 3, + [8123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 13, + ACTIONS(5659), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306838,7 +307129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5685), 49, + ACTIONS(5657), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -306888,14 +307179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [9495] = 5, + [8193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 1, - anon_sym_AMP_AMP, - ACTIONS(6624), 1, - anon_sym_and, - ACTIONS(6248), 27, + ACTIONS(6636), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -306917,13 +307204,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(6250), 33, + ACTIONS(6638), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -306933,6 +307221,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, @@ -306957,10 +307246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9569] = 3, + [8263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 28, + ACTIONS(4168), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -306989,7 +307278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5186), 34, + ACTIONS(4161), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307024,10 +307313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9639] = 3, + [8333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 28, + ACTIONS(6640), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -307056,7 +307345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(1938), 34, + ACTIONS(6642), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307091,10 +307380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9709] = 3, + [8403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5691), 13, + ACTIONS(5711), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307108,7 +307397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5689), 49, + ACTIONS(5709), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -307158,77 +307447,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [9779] = 3, + [8473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 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(6004), 34, + ACTIONS(5688), 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(5686), 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, - [9849] = 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, + [8543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(5780), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307242,7 +307531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5705), 49, + ACTIONS(5778), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -307292,10 +307581,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [9919] = 3, + [8613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 26, + ACTIONS(6644), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307309,6 +307599,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, @@ -307320,19 +307612,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(5479), 36, + 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, @@ -307348,21 +307647,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, - [9989] = 3, + anon_sym_DASH_GT, + [8683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 28, + ACTIONS(4168), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -307391,7 +307680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6660), 34, + ACTIONS(4161), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307426,10 +307715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10059] = 3, + [8753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 28, + ACTIONS(6648), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -307458,7 +307747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5172), 34, + ACTIONS(6650), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307493,10 +307782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10129] = 3, + [8823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 28, + ACTIONS(6652), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -307525,7 +307814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6664), 34, + ACTIONS(6654), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307560,10 +307849,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10199] = 3, + [8893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 28, + ACTIONS(5659), 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(5657), 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, + [8963] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6656), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -307592,7 +307948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6668), 34, + ACTIONS(6658), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307627,10 +307983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10269] = 3, + [9033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 28, + ACTIONS(5208), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -307659,7 +308015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6672), 34, + ACTIONS(5210), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307694,10 +308050,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10339] = 3, + [9103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 28, + ACTIONS(5805), 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(5803), 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, + [9173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6660), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -307726,7 +308149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6676), 34, + ACTIONS(6662), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307761,10 +308184,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10409] = 3, + [9243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5747), 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(5745), 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, + [9313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5751), 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(5749), 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, + [9383] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 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(5601), 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, + [9469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 26, + ACTIONS(5460), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307778,6 +308411,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, @@ -307789,19 +308424,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(5643), 36, + sym_identifier, + ACTIONS(2717), 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, @@ -307817,22 +308459,30 @@ 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, - [10479] = 3, + anon_sym_DASH_GT, + [9539] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + ACTIONS(6672), 1, + anon_sym_LBRACE, + STATE(2905), 1, + sym_field_declaration_list, + STATE(3242), 1, + sym_attribute_specifier, + STATE(7089), 1, + sym_virtual_specifier, + STATE(7781), 1, + sym_base_class_clause, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5601), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -307842,43 +308492,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(6680), 34, + ACTIONS(5603), 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, @@ -307886,19 +308519,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, - [10549] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [9627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5718), 13, + ACTIONS(5729), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -307912,7 +308553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5716), 49, + ACTIONS(5727), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -307962,77 +308603,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [10619] = 3, + [9697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5722), 13, + ACTIONS(5182), 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(5184), 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(5720), 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, - [10689] = 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, + [9767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 28, + ACTIONS(6460), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308061,7 +308702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6684), 34, + ACTIONS(6462), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308096,10 +308737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10759] = 3, + [9837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 28, + ACTIONS(6056), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308128,7 +308769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5202), 34, + ACTIONS(6054), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308163,10 +308804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10829] = 3, + [9907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 28, + ACTIONS(6674), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308195,7 +308836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6688), 34, + ACTIONS(6676), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308230,10 +308871,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10899] = 3, + [9977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 28, + ACTIONS(6678), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308262,7 +308903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5142), 34, + ACTIONS(6680), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308297,10 +308938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [10969] = 3, + [10047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 28, + ACTIONS(6682), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308329,7 +308970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6692), 34, + ACTIONS(6684), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308364,10 +309005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11039] = 3, + [10117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 13, + ACTIONS(5707), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308381,7 +309022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5753), 49, + ACTIONS(5705), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -308431,10 +309072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [11109] = 3, + [10187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 28, + ACTIONS(6686), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308463,7 +309104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6696), 34, + ACTIONS(6688), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308498,10 +309139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11179] = 3, + [10257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 28, + ACTIONS(5162), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308530,7 +309171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6700), 34, + ACTIONS(5164), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308565,10 +309206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11249] = 3, + [10327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 28, + ACTIONS(6690), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308597,7 +309238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6704), 34, + ACTIONS(6692), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308632,85 +309273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11319] = 10, - ACTIONS(3), 1, - sym_comment, - 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_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(6395), 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_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_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, - [11403] = 3, + [10397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5617), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -308724,8 +309290,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, @@ -308737,26 +309301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6712), 34, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5619), 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, @@ -308772,11 +309329,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, - [11473] = 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, + [10467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 28, + ACTIONS(6694), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308805,7 +309372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6716), 34, + ACTIONS(6696), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308840,10 +309407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11543] = 3, + [10537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 28, + ACTIONS(6698), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -308872,7 +309439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5150), 34, + ACTIONS(6700), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308907,10 +309474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11613] = 3, + [10607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 13, + ACTIONS(5755), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -308924,7 +309491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5515), 49, + ACTIONS(5753), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -308974,10 +309541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [11683] = 3, + [10677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 28, + ACTIONS(5178), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -309006,7 +309573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5154), 34, + ACTIONS(5180), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309041,10 +309608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11753] = 3, + [10747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 28, + ACTIONS(6702), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -309073,7 +309640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5158), 34, + ACTIONS(6704), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309108,11 +309675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [11823] = 3, + [10817] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5605), 1, + anon_sym___attribute, + ACTIONS(6050), 1, + anon_sym_LBRACE, + ACTIONS(6706), 1, + anon_sym___attribute__, + ACTIONS(6708), 1, + anon_sym_COLON, + STATE(2077), 1, + sym__enum_base_clause, + STATE(2226), 1, + sym_enumerator_list, + STATE(2287), 1, + sym_attribute_specifier, + ACTIONS(6346), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309126,28 +309706,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___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(5162), 34, + ACTIONS(6348), 37, 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, @@ -309155,7 +309722,6 @@ 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, @@ -309170,16 +309736,37 @@ 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, - [11893] = 3, + sym_auto, + anon_sym_decltype, + [10901] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 28, - aux_sym_preproc_elif_token1, + ACTIONS(5605), 1, + anon_sym___attribute, + ACTIONS(6050), 1, + anon_sym_LBRACE, + ACTIONS(6706), 1, + anon_sym___attribute__, + ACTIONS(6708), 1, + anon_sym_COLON, + STATE(2147), 1, + sym__enum_base_clause, + STATE(2261), 1, + sym_enumerator_list, + STATE(2319), 1, + sym_attribute_specifier, + ACTIONS(6352), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309193,28 +309780,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___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(6720), 34, + ACTIONS(6354), 37, 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, @@ -309222,7 +309796,6 @@ 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, @@ -309237,29 +309810,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, - [11963] = 10, + sym_auto, + anon_sym_decltype, + [10985] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5509), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309274,11 +309841,19 @@ 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, - ACTIONS(6318), 37, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5511), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309288,10 +309863,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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -309303,23 +309875,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, - anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - [12047] = 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, + [11055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 28, + ACTIONS(6710), 28, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -309348,7 +309922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6724), 34, + ACTIONS(6712), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309383,10 +309957,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [12117] = 3, + [11125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5822), 13, + ACTIONS(5790), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309400,7 +309974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5820), 49, + ACTIONS(5788), 49, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -309450,17 +310024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [12187] = 5, + [11195] = 3, ACTIONS(3), 1, sym_comment, - STATE(2591), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6726), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5887), 20, + ACTIONS(6714), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309474,26 +310042,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(5885), 36, + 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_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, @@ -309505,30 +310086,16 @@ 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, - [12260] = 5, + anon_sym_DASH_GT, + [11265] = 3, 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(5893), 20, + ACTIONS(5166), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309542,26 +310109,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(5891), 36, + sym_identifier, + ACTIONS(5168), 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, @@ -309573,30 +310153,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, - [12333] = 5, + anon_sym_DASH_GT, + [11335] = 3, ACTIONS(3), 1, sym_comment, - STATE(2600), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6730), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5776), 20, + ACTIONS(5502), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -309610,14 +310175,20 @@ 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(5778), 36, + sym_literal_suffix, + ACTIONS(5504), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -309627,8 +310198,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, @@ -309641,54 +310210,63 @@ 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_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, - [12406] = 3, + [11405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 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(5008), 47, + ACTIONS(5825), 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___extension__, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5823), 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, @@ -309702,59 +310280,60 @@ 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, - [12475] = 3, + [11475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 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(5012), 47, + ACTIONS(5829), 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___extension__, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5827), 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, @@ -309768,59 +310347,60 @@ 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, - [12544] = 3, + [11545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 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(5000), 47, + ACTIONS(5833), 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___extension__, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5831), 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, @@ -309834,298 +310414,431 @@ 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_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, + [11615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5204), 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(5206), 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, - [12613] = 3, + [11685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 14, + ACTIONS(5200), 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(5016), 47, + sym_identifier, + ACTIONS(5202), 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_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, + [11755] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6718), 1, + anon_sym_AMP_AMP, + ACTIONS(6720), 1, + anon_sym_and, + ACTIONS(6315), 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___extension__, + anon_sym_GT_GT, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(6317), 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_EQ_EQ, + anon_sym_BANG_EQ, + 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, - [12682] = 3, + [11829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 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(5004), 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, - [12751] = 3, + [11899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 14, + ACTIONS(5196), 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(4978), 47, + sym_identifier, + ACTIONS(5198), 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, - [12820] = 3, + [11969] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 14, + ACTIONS(6718), 1, + anon_sym_AMP_AMP, + ACTIONS(6720), 1, + anon_sym_and, + ACTIONS(6726), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6728), 1, + anon_sym_or, + ACTIONS(6261), 26, + 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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4982), 47, + sym_identifier, + ACTIONS(6263), 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_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, - [12889] = 6, + [12047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6732), 1, - anon_sym_LT, - STATE(2661), 1, - sym_template_argument_list, - ACTIONS(5834), 20, + ACTIONS(6730), 28, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310136,29 +310849,42 @@ 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___attribute, - anon_sym_COLON, 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(4192), 38, + sym_identifier, + ACTIONS(6732), 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, @@ -310170,57 +310896,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_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [12964] = 12, + anon_sym_DASH_GT, + [12117] = 3, 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(6736), 11, + ACTIONS(5821), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310230,10 +310914,34 @@ static const uint16_t ts_small_parse_table[] = { 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(5483), 13, + ACTIONS(5819), 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, @@ -310246,24 +310954,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6734), 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, + 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, - [13051] = 3, + anon_sym_try, + anon_sym_requires, + [12187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 14, + ACTIONS(4988), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -310278,7 +310986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(4991), 47, + ACTIONS(4990), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -310326,286 +311034,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [13120] = 8, + [12256] = 5, ACTIONS(3), 1, sym_comment, - 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, + STATE(2581), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6734), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5919), 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(6068), 44, + anon_sym_DASH_GT, + ACTIONS(5917), 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_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, - [13199] = 8, + anon_sym_DASH_GT_STAR, + [12329] = 5, ACTIONS(3), 1, sym_comment, - 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, + STATE(1674), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6736), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 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(6074), 44, + anon_sym_DASH_GT, + ACTIONS(5984), 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_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, - [13278] = 4, + anon_sym_DASH_GT_STAR, + [12402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 14, + STATE(1674), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6736), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5958), 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(5543), 46, + anon_sym_DASH_GT, + ACTIONS(5956), 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_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, + anon_sym_DASH_GT_STAR, + [12475] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 14, + STATE(2585), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6738), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + 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_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(5543), 46, + anon_sym_DASH_GT, + ACTIONS(5923), 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_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, - [13420] = 3, + anon_sym_DASH_GT_STAR, + [12548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 14, + ACTIONS(4996), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -310620,7 +311324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(5547), 47, + ACTIONS(4998), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -310668,10 +311372,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [13489] = 3, + [12617] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 27, + STATE(2413), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(4499), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4501), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5948), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310681,16 +311400,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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -310698,15 +311412,18 @@ 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(5603), 34, + ACTIONS(5950), 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, @@ -310715,6 +311432,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, @@ -310722,22 +311440,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_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, + anon_sym_DASH_GT_STAR, + [12692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 27, + STATE(1674), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6736), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310747,32 +311461,100 @@ 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_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5960), 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_or, - anon_sym_and, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [12765] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6740), 1, + anon_sym_LT, + STATE(2597), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2687), 1, + sym_template_argument_list, + ACTIONS(6530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 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, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5643), 34, + anon_sym_DASH_GT, + ACTIONS(4166), 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, @@ -310781,61 +311563,36 @@ 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_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, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [12844] = 6, 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, + ACTIONS(5089), 1, + sym_primitive_type, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5141), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -310845,10 +311602,34 @@ static const uint16_t ts_small_parse_table[] = { 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(5483), 13, + ACTIONS(5138), 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, @@ -310861,24 +311642,24 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [13714] = 3, + [12919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 27, + STATE(1674), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6736), 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, @@ -310888,32 +311669,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_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(5479), 34, + 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_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, @@ -310922,35 +311700,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_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_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [13783] = 6, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [12992] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6746), 1, - anon_sym_LT, - STATE(2661), 1, - sym_template_argument_list, - ACTIONS(4925), 20, + STATE(2588), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6742), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5966), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -310961,17 +311738,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(4932), 38, + ACTIONS(5964), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311007,20 +311784,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [13065] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 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(5472), 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_DASH_GT_STAR, - [13858] = 5, + anon_sym_GT2, + anon_sym_requires, + [13136] = 5, ACTIONS(3), 1, sym_comment, - STATE(1667), 1, + STATE(1674), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6728), 4, + ACTIONS(6736), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5980), 20, + ACTIONS(5935), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -311041,7 +311883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5978), 36, + ACTIONS(5933), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311078,17 +311920,76 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [13931] = 5, + [13209] = 3, 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(5913), 20, + ACTIONS(4984), 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(4986), 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, + [13278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -311098,29 +311999,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(5911), 36, + sym_literal_suffix, + ACTIONS(5631), 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, @@ -311129,109 +312033,109 @@ 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, - [14004] = 5, + 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, + [13347] = 3, 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(5953), 20, + ACTIONS(5000), 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(5951), 36, + ACTIONS(5007), 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, - [14077] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [13416] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6756), 1, - anon_sym_virtual, - ACTIONS(6765), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6768), 1, + ACTIONS(5498), 1, anon_sym___declspec, - STATE(3054), 1, + ACTIONS(6748), 1, + anon_sym_virtual, + STATE(3093), 1, sym_alignas_qualifier, - ACTIONS(6762), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6771), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2592), 7, + STATE(2610), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -311239,7 +312143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(6759), 9, + ACTIONS(5490), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -311249,7 +312153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(6751), 11, + ACTIONS(6746), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311261,7 +312165,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6749), 13, + ACTIONS(5486), 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(6744), 13, anon_sym_AMP, anon_sym___based, anon_sym___cdecl, @@ -311275,9 +312193,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - ACTIONS(6753), 13, - anon_sym___extension__, + [13503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 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(4994), 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, @@ -311289,17 +312239,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [14164] = 5, + 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, + [13572] = 5, ACTIONS(3), 1, sym_comment, - STATE(1667), 1, + STATE(1674), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6728), 4, + ACTIONS(6736), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5988), 20, + ACTIONS(5899), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -311320,7 +312290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5986), 36, + ACTIONS(5897), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311357,25 +312327,25 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [14237] = 9, + [13645] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(6774), 1, + ACTIONS(6750), 1, anon_sym_LPAREN2, - STATE(2452), 1, + STATE(2520), 1, sym_argument_list, - STATE(2677), 1, + STATE(2637), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3883), 1, + STATE(3918), 1, sym_initializer_list, - ACTIONS(6777), 4, + ACTIONS(6753), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5517), 10, + ACTIONS(5539), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311386,7 +312356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - ACTIONS(5515), 42, + ACTIONS(5537), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -311429,94 +312399,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [14318] = 6, + [13726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, - sym_primitive_type, - STATE(1974), 1, + STATE(2591), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5955), 4, + ACTIONS(6755), 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_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5164), 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, - [14393] = 6, - ACTIONS(3), 1, - sym_comment, - 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, + ACTIONS(5976), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -311530,17 +312423,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5917), 26, + ACTIONS(5974), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311550,6 +312440,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, @@ -311562,22 +312454,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_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, - [14468] = 5, + [13799] = 5, ACTIONS(3), 1, sym_comment, - STATE(2590), 1, + STATE(1674), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6779), 4, + ACTIONS(6736), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5935), 20, + ACTIONS(5982), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -311598,7 +312498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5933), 36, + ACTIONS(5980), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311635,90 +312535,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [14541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5521), 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(5523), 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, - [14612] = 8, + [13872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6732), 1, + ACTIONS(6740), 1, anon_sym_LT, - STATE(2601), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2661), 1, + STATE(2687), 1, sym_template_argument_list, - ACTIONS(6449), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4164), 18, + ACTIONS(5839), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -311731,13 +312557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, 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(4172), 35, + ACTIONS(4180), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -311747,6 +312575,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, @@ -311772,144 +312601,222 @@ 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, - [14691] = 5, + [13947] = 3, 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(5921), 20, + ACTIONS(5521), 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(5919), 36, + ACTIONS(5523), 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, - [14764] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14016] = 12, 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, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6748), 1, + anon_sym_virtual, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2610), 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(5490), 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(6759), 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(5486), 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(6757), 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, + [14103] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(2673), 1, + sym_enumerator_list, + STATE(2745), 1, + sym_attribute_specifier, + ACTIONS(6062), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5929), 36, + ACTIONS(6064), 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___attribute__, - anon_sym_LBRACE, + 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_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, - [14837] = 28, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14182] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -311920,61 +312827,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(4310), 1, + ACTIONS(4318), 1, anon_sym_LPAREN2, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5865), 1, + ACTIONS(5862), 1, anon_sym_STAR, - ACTIONS(5867), 1, + ACTIONS(5864), 1, anon_sym_AMP_AMP, - ACTIONS(5869), 1, + ACTIONS(5866), 1, anon_sym_AMP, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(5875), 1, + ACTIONS(5872), 1, anon_sym_LBRACK, - STATE(3109), 1, + STATE(3100), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6451), 1, + STATE(6433), 1, sym__declarator, - STATE(6655), 1, + STATE(6689), 1, sym__abstract_declarator, - STATE(8286), 1, + STATE(8310), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5879), 2, + ACTIONS(5868), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(5877), 4, + ACTIONS(5860), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -311986,7 +312893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -312000,7 +312907,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [14956] = 28, + [14301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5617), 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(5619), 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, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [14370] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -312011,61 +312984,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(4310), 1, + ACTIONS(4318), 1, anon_sym_LPAREN2, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5865), 1, + ACTIONS(5862), 1, anon_sym_STAR, - ACTIONS(5867), 1, + ACTIONS(5864), 1, anon_sym_AMP_AMP, - ACTIONS(5869), 1, + ACTIONS(5866), 1, anon_sym_AMP, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(5875), 1, + ACTIONS(5872), 1, anon_sym_LBRACK, - STATE(3109), 1, + STATE(3100), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6401), 1, + STATE(6468), 1, sym__declarator, - STATE(6657), 1, + STATE(6690), 1, sym__abstract_declarator, - STATE(8286), 1, + STATE(8310), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6783), 2, + ACTIONS(6765), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(6781), 4, + ACTIONS(6763), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -312077,7 +313050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -312091,85 +313064,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [15075] = 5, + [14489] = 4, 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, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 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(5966), 36, + ACTIONS(5472), 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_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, - [15148] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14560] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5509), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312179,29 +313144,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(5972), 36, + sym_literal_suffix, + ACTIONS(5511), 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, @@ -312210,27 +313178,237 @@ 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_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, + [14629] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6774), 1, + anon_sym_virtual, + ACTIONS(6783), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6786), 1, + anon_sym___declspec, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(6780), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6789), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2610), 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(6777), 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(6769), 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(6767), 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, + ACTIONS(6771), 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, + [14716] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5613), 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(5615), 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_DASH_GT_STAR, - [15221] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [14787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 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(5024), 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, + [14856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 27, + ACTIONS(5502), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312258,7 +313436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5472), 34, + ACTIONS(5504), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -312293,17 +313471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [15290] = 5, + [14925] = 6, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6792), 1, + anon_sym_LT, + STATE(2687), 1, + sym_template_argument_list, + ACTIONS(4915), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312313,26 +313490,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_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5933), 34, + anon_sym_DASH_GT, + ACTIONS(4922), 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, @@ -312343,6 +313521,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, @@ -312356,133 +313535,46 @@ 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, - [15362] = 12, - ACTIONS(3), 1, - sym_comment, - 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_GT_STAR, + [15000] = 3, + ACTIONS(3), 1, + sym_comment, + 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_EQ, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5559), 34, + 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_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, - [15448] = 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(5911), 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(5913), 42, - anon_sym_AMP, + 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_COLON_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, @@ -312496,60 +313588,59 @@ 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, - [15520] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [15069] = 3, 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(5951), 13, + ACTIONS(5018), 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(5020), 47, 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(5953), 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_COLON_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, @@ -312563,29 +313654,35 @@ 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, - [15592] = 10, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [15138] = 5, ACTIONS(3), 1, sym_comment, - 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, + STATE(2580), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6795), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5807), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -312599,13 +313696,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(6395), 34, + ACTIONS(5809), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -312615,6 +313713,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, @@ -312640,84 +313740,20 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [15674] = 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(4192), 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(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_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [15748] = 6, + [15211] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, + ACTIONS(6406), 1, anon_sym___attribute__, - ACTIONS(6361), 1, + ACTIONS(6408), 1, anon_sym___attribute, - STATE(2689), 1, + ACTIONS(6761), 1, + anon_sym_LBRACE, + STATE(2662), 1, + sym_enumerator_list, + STATE(2735), 1, sym_attribute_specifier, - ACTIONS(6157), 12, + ACTIONS(6046), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -312730,7 +313766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(6159), 45, + ACTIONS(6048), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -312743,7 +313779,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -312776,16 +313811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [15822] = 6, + [15290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, + ACTIONS(6406), 1, anon_sym___attribute__, - ACTIONS(6361), 1, + ACTIONS(6408), 1, anon_sym___attribute, - STATE(2694), 1, + STATE(2751), 1, sym_attribute_specifier, - ACTIONS(6100), 12, + ACTIONS(6192), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -312798,7 +313833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(6102), 45, + ACTIONS(6194), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -312844,143 +313879,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [15896] = 3, + [15364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 14, + ACTIONS(4924), 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___asm, + anon_sym_DOT, + ACTIONS(4917), 40, 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_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5006), 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_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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, 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_DOT_STAR, + anon_sym_DASH_GT, anon_sym_try, - anon_sym_requires, - [15964] = 6, + [15432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6805), 1, - sym_auto, - ACTIONS(6807), 1, - anon_sym_decltype, - STATE(2741), 1, - sym_decltype_auto, - ACTIONS(5533), 13, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 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_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5535), 44, + anon_sym_DASH_GT, + ACTIONS(5472), 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_DASH_GT_STAR, + [15502] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6797), 1, + anon_sym_LT, + STATE(2768), 1, + sym_template_argument_list, + ACTIONS(4922), 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(4915), 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, - [16038] = 3, + sym_this, + [15576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -313001,7 +314102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(4927), 40, + ACTIONS(4917), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -313042,16 +314143,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_try, - [16106] = 6, + [15644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6809), 1, - anon_sym_LT, - STATE(2740), 1, - sym_template_argument_list, - ACTIONS(4925), 21, + STATE(2650), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6799), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -313063,17 +314165,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___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(4932), 36, + ACTIONS(5974), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -313107,128 +314209,128 @@ 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, - [16180] = 6, + [15716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, - anon_sym___attribute__, - ACTIONS(6361), 1, - anon_sym___attribute, - STATE(2707), 1, - sym_attribute_specifier, - ACTIONS(6206), 12, + ACTIONS(5509), 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_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(6208), 45, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5511), 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_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_LT_EQ_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, - [16254] = 6, + 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, + [15784] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, - anon_sym___attribute__, - ACTIONS(6361), 1, - anon_sym___attribute, - STATE(2715), 1, - sym_attribute_specifier, - ACTIONS(6210), 12, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + STATE(1635), 1, + sym_template_argument_list, + STATE(2780), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 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_const, + anon_sym___attribute, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(6212), 45, + anon_sym_DASH_GT, + ACTIONS(6068), 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -313239,67 +314341,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, - [16328] = 4, + anon_sym_DASH_GT_STAR, + [15860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5515), 13, + STATE(1685), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5958), 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(5517), 46, + ACTIONS(5956), 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, @@ -313308,47 +314410,112 @@ 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, - [16398] = 6, + [15932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, + STATE(2636), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6805), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5964), 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(5966), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, 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_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___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_DOT, - ACTIONS(6106), 45, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [16004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4990), 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___extension__, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4988), 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, @@ -313362,61 +314529,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, - [16472] = 6, + [16072] = 5, ACTIONS(3), 1, sym_comment, - 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_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(6110), 45, + STATE(2686), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6807), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5960), 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___extension__, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5962), 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, @@ -313430,61 +314605,127 @@ 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, - [16546] = 6, + anon_sym_template, + anon_sym_operator, + [16144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, - anon_sym___attribute__, - ACTIONS(6361), 1, - anon_sym___attribute, - STATE(2729), 1, - sym_attribute_specifier, - ACTIONS(6149), 12, + STATE(1685), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5931), 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(6151), 45, + ACTIONS(5929), 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_QMARK, + anon_sym_STAR_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, + [16216] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2646), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6809), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 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(5976), 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, @@ -313498,34 +314739,89 @@ 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, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [16288] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6797), 1, + anon_sym_LT, + STATE(2768), 1, + sym_template_argument_list, + ACTIONS(4180), 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, - 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(5839), 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_GT2, + anon_sym_typename, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [16620] = 6, + sym_this, + [16362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, + ACTIONS(6406), 1, anon_sym___attribute__, - ACTIONS(6361), 1, + ACTIONS(6408), 1, anon_sym___attribute, - STATE(2734), 1, + STATE(2722), 1, sym_attribute_specifier, - ACTIONS(6161), 12, + ACTIONS(6204), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -313538,7 +314834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(6163), 45, + ACTIONS(6206), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -313584,16 +314880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [16694] = 6, + [16436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, + ACTIONS(6406), 1, anon_sym___attribute__, - ACTIONS(6361), 1, + ACTIONS(6408), 1, anon_sym___attribute, - STATE(2737), 1, + STATE(2695), 1, sym_attribute_specifier, - ACTIONS(6165), 12, + ACTIONS(6113), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -313606,7 +314902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(6167), 45, + ACTIONS(6115), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -313652,43 +314948,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [16768] = 6, + [16510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, + STATE(2686), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6807), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5929), 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(5931), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(6361), 1, anon_sym___attribute, - 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___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_DOT, - ACTIONS(6171), 45, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [16582] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2686), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6807), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5984), 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___extension__, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5986), 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, @@ -313702,34 +315077,21 @@ 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, - [16842] = 6, + anon_sym_template, + anon_sym_operator, + [16654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, - anon_sym___attribute__, - ACTIONS(6361), 1, - anon_sym___attribute, - STATE(2744), 1, - sym_attribute_specifier, - ACTIONS(6214), 12, + ACTIONS(6811), 1, + sym_auto, + ACTIONS(6813), 1, + anon_sym_decltype, + STATE(2719), 1, + sym_decltype_auto, + ACTIONS(5637), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -313740,9 +315102,10 @@ 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(6216), 45, + ACTIONS(5639), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -313755,6 +315118,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, @@ -313782,49 +315146,59 @@ 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, - [16916] = 6, + [16728] = 5, ACTIONS(3), 1, sym_comment, - 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, + STATE(2686), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6807), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5980), 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___extension__, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5982), 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, @@ -313838,41 +315212,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, - [16990] = 8, + anon_sym_template, + anon_sym_operator, + [16800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6812), 1, - anon_sym_LT, - STATE(2633), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2740), 1, - sym_template_argument_list, - ACTIONS(6582), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4164), 19, + ACTIONS(5502), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -313882,25 +315230,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_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(4172), 33, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5504), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -313909,34 +315263,36 @@ 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, - [17068] = 5, + 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, + [16868] = 5, ACTIONS(3), 1, sym_comment, - STATE(1675), 1, + STATE(2631), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6814), 4, + ACTIONS(6815), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5921), 21, + ACTIONS(5966), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -313958,7 +315314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5919), 34, + ACTIONS(5964), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -313993,16 +315349,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [17140] = 6, + [16940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6812), 1, - anon_sym_LT, - STATE(2740), 1, - sym_template_argument_list, - ACTIONS(5834), 21, + ACTIONS(5521), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314012,27 +315362,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(4192), 36, + anon_sym_DASH_GT, + ACTIONS(5523), 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, @@ -314042,6 +315395,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, @@ -314055,23 +315409,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, - [17214] = 5, + anon_sym_DASH_GT_STAR, + [17008] = 3, ACTIONS(3), 1, sym_comment, - 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(5931), 21, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314081,29 +315427,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_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(5929), 34, + ACTIONS(4917), 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, @@ -314111,6 +315461,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, @@ -314123,22 +315474,21 @@ 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, - [17286] = 5, + anon_sym_try, + [17076] = 6, ACTIONS(3), 1, sym_comment, - STATE(2636), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6816), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5968), 21, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6817), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + ACTIONS(4915), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314150,17 +315500,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___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(5966), 34, + ACTIONS(4922), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -314194,132 +315544,199 @@ 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, - [17358] = 5, + [17150] = 5, ACTIONS(3), 1, sym_comment, STATE(2637), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6818), 4, + ACTIONS(6753), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5974), 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(5972), 34, + ACTIONS(5809), 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___attribute__, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5807), 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, - [17430] = 5, + anon_sym_template, + anon_sym_operator, + [17222] = 5, ACTIONS(3), 1, sym_comment, - STATE(1675), 1, + STATE(2686), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6814), 4, + ACTIONS(6807), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5980), 21, + 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, + [17294] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + STATE(2760), 1, + sym_attribute_specifier, + ACTIONS(6212), 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(5978), 34, + ACTIONS(6214), 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, @@ -314328,65 +315745,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, - [17502] = 5, + anon_sym_requires, + [17368] = 6, ACTIONS(3), 1, sym_comment, - 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(5988), 21, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + STATE(2734), 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(5986), 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, @@ -314395,18 +315813,86 @@ 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, + [17442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4998), 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, - [17574] = 5, + ACTIONS(4996), 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, + [17510] = 5, ACTIONS(3), 1, sym_comment, - STATE(2643), 1, + STATE(1685), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6820), 4, + ACTIONS(6803), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5887), 21, + ACTIONS(5935), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314428,7 +315914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5885), 34, + ACTIONS(5933), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -314463,17 +315949,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [17646] = 5, + [17582] = 3, ACTIONS(3), 1, sym_comment, - 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(5893), 21, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314483,29 +315962,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_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(5891), 34, + ACTIONS(4917), 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, @@ -314513,6 +315996,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, @@ -314525,69 +316009,67 @@ 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, - [17718] = 5, + anon_sym_try, + [17650] = 6, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + STATE(2738), 1, + sym_attribute_specifier, + ACTIONS(6127), 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(5778), 34, + ACTIONS(6129), 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, @@ -314596,63 +316078,61 @@ 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, - [17790] = 7, + anon_sym_requires, + [17724] = 6, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + STATE(2739), 1, + sym_attribute_specifier, + ACTIONS(6131), 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_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6060), 36, + ACTIONS(6133), 45, 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___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_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, @@ -314663,20 +316143,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, - [17866] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [17798] = 3, ACTIONS(3), 1, sym_comment, - 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(5913), 21, + ACTIONS(6590), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314686,29 +316163,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_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(5911), 34, + ACTIONS(6592), 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, @@ -314716,6 +316197,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, @@ -314728,22 +316210,15 @@ 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, - [17938] = 5, + anon_sym_try, + [17866] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5617), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -314753,28 +316228,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_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(5951), 34, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5619), 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, @@ -314783,27 +316261,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_GT2, - [18010] = 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, + [17934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 13, + ACTIONS(5480), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -314817,7 +316297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5543), 47, + ACTIONS(5482), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -314831,7 +316311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_COLON, + anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -314865,17 +316345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [18078] = 5, + [18002] = 5, ACTIONS(3), 1, sym_comment, - STATE(2677), 1, + STATE(2678), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6777), 4, + ACTIONS(6820), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5778), 13, + ACTIONS(5917), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -314889,7 +316369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5776), 42, + ACTIONS(5919), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -314932,142 +316412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [18150] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - 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_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, - [18218] = 5, + [18074] = 5, ACTIONS(3), 1, sym_comment, - STATE(2674), 1, + STATE(1685), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6797), 4, + ACTIONS(6803), 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_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5893), 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, - [18290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5601), 24, + ACTIONS(5982), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315077,31 +316432,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5603), 36, + ACTIONS(5980), 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, @@ -315110,29 +316462,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, - [18358] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [18146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 24, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315146,18 +316496,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(5643), 36, + ACTIONS(4917), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -315167,7 +316513,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, @@ -315179,32 +316530,105 @@ 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, + [18214] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + STATE(2744), 1, + sym_attribute_specifier, + ACTIONS(6228), 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(6230), 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_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, - [18426] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [18288] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 14, + STATE(2630), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6822), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5923), 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, @@ -315212,16 +316636,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5014), 46, + ACTIONS(5925), 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, @@ -315245,89 +316674,233 @@ 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_template, + anon_sym_operator, + [18360] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + STATE(2746), 1, + sym_attribute_specifier, + ACTIONS(6181), 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(6183), 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_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, + 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_GT2, anon_sym_requires, - [18494] = 3, + [18434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 24, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + STATE(2747), 1, + sym_attribute_specifier, + ACTIONS(6208), 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_const, + anon_sym_DOT, + ACTIONS(6210), 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_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(5472), 36, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [18508] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + STATE(2748), 1, + sym_attribute_specifier, + ACTIONS(6150), 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(6152), 45, 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_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_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, - [18562] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [18582] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 24, + ACTIONS(6512), 1, + anon_sym___attribute__, + ACTIONS(6514), 1, + anon_sym___attribute, + ACTIONS(6824), 1, + anon_sym_COLON, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(2814), 1, + sym__enum_base_clause, + STATE(2885), 1, + sym_enumerator_list, + STATE(3148), 1, + sym_attribute_specifier, + ACTIONS(6346), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315344,15 +316917,10 @@ static const uint16_t ts_small_parse_table[] = { 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(5479), 36, + ACTIONS(6348), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -315374,25 +316942,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, - 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_DASH_GT_STAR, - [18630] = 3, + [18664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315406,14 +316974,15 @@ 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___asm, anon_sym_DOT, - ACTIONS(4927), 40, + anon_sym_DASH_GT, + ACTIONS(5472), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -315423,12 +316992,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_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -315449,29 +317015,16 @@ 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, - anon_sym_try, - [18698] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [18734] = 3, ACTIONS(3), 1, sym_comment, - 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(2754), 1, - sym__enum_base_clause, - STATE(2828), 1, - sym_enumerator_list, - STATE(3045), 1, - sym_attribute_specifier, - ACTIONS(6316), 19, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315485,13 +317038,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(6318), 34, + ACTIONS(4917), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -315501,7 +317055,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, @@ -315522,16 +317081,22 @@ 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_DASH_GT_STAR, - [18780] = 4, + anon_sym_DASH_GT, + anon_sym_try, + [18802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 21, + STATE(2627), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6828), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5919), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315541,28 +317106,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(5543), 38, + ACTIONS(5917), 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, @@ -315573,7 +317136,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, @@ -315587,17 +317149,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, - [18850] = 4, + anon_sym_GT2, + [18874] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 21, + STATE(1685), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315607,28 +317173,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(5543), 38, + ACTIONS(5960), 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, @@ -315639,7 +317203,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, @@ -315653,33 +317216,32 @@ 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, - [18920] = 7, + anon_sym_GT2, + [18946] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6826), 1, + ACTIONS(6830), 1, sym_identifier, - STATE(2664), 3, + STATE(2685), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(3631), 5, + ACTIONS(3639), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(3635), 5, + ACTIONS(3643), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5403), 17, + ACTIONS(5431), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -315697,7 +317259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5401), 29, + ACTIONS(5429), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -315727,10 +317289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [18996] = 3, + [19022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5613), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315744,14 +317308,15 @@ 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___asm, anon_sym_DOT, - ACTIONS(4927), 40, + anon_sym_DASH_GT, + ACTIONS(5615), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -315761,12 +317326,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_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -315787,15 +317349,35 @@ 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, - anon_sym_try, - [19064] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [19092] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 21, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + ACTIONS(6836), 1, + anon_sym_LBRACE, + STATE(3054), 1, + sym_field_declaration_list, + STATE(3477), 1, + sym_attribute_specifier, + STATE(7203), 1, + sym_virtual_specifier, + STATE(7860), 1, + sym_base_class_clause, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5601), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -315809,15 +317391,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_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5547), 39, + ACTIONS(5603), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -315827,9 +317404,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, @@ -315842,32 +317416,98 @@ 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, + [19178] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + STATE(2750), 1, + sym_attribute_specifier, + ACTIONS(6159), 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(6161), 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_DASH_GT_STAR, - [19132] = 5, + anon_sym_GT2, + anon_sym_requires, + [19252] = 5, ACTIONS(3), 1, sym_comment, - STATE(2674), 1, + STATE(2686), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6797), 4, + ACTIONS(6807), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5929), 13, + ACTIONS(5897), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -315881,7 +317521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5931), 42, + ACTIONS(5899), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -315924,277 +317564,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [19204] = 3, + [19324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 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_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4991), 39, + ACTIONS(5024), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5022), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_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_DASH_GT_STAR, - [19272] = 3, + anon_sym_template, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [19392] = 3, ACTIONS(3), 1, sym_comment, - 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_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, - ACTIONS(4927), 40, + 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_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_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_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_EQ, + anon_sym_GT2, + ACTIONS(4984), 46, 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(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_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_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_typename, + anon_sym_final, + anon_sym_override, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_operator, + anon_sym_try, anon_sym_requires, - sym_this, - [19414] = 7, - ACTIONS(3), 1, - sym_comment, - 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_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(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, - anon_sym_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, - [19490] = 3, + [19460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5629), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -316208,14 +317711,18 @@ 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___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4927), 40, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(5631), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316225,12 +317732,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_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, @@ -316242,31 +317744,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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [19558] = 5, + 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, + [19528] = 5, ACTIONS(3), 1, sym_comment, - STATE(2678), 1, + STATE(2686), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6830), 4, + ACTIONS(6807), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5966), 13, + ACTIONS(5956), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316280,7 +317783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5968), 42, + ACTIONS(5958), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -316323,10 +317826,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [19630] = 3, + [19600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 14, + ACTIONS(5016), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316341,7 +317844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5002), 46, + ACTIONS(5014), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -316388,23 +317891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [19698] = 5, + [19668] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5020), 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, @@ -316412,21 +317909,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(5974), 42, + ACTIONS(5018), 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, @@ -316450,15 +317942,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, - [19770] = 3, + anon_sym_try, + anon_sym_requires, + [19736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 14, + ACTIONS(4994), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316473,7 +317974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4976), 46, + ACTIONS(4992), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -316508,40 +318009,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_or, anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, + 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, + [19804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 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(5472), 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, + 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, + [19872] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2689), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6838), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5807), 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(5809), 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, + [19944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5537), 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(5539), 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_template, - anon_sym_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [19838] = 7, + [20014] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6834), 1, + ACTIONS(6840), 1, sym_identifier, - STATE(2670), 3, + STATE(2694), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(6837), 5, + ACTIONS(3639), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(6840), 5, + ACTIONS(3643), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5413), 17, + ACTIONS(5421), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -316559,7 +318258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5411), 29, + ACTIONS(5419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316589,17 +318288,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [19914] = 3, + [20090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 14, + STATE(2686), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6842), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5091), 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, @@ -316607,16 +318312,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(4980), 46, + ACTIONS(5089), 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, @@ -316640,24 +318350,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, - [19982] = 3, + [20162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5000), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -316671,14 +318372,15 @@ 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___asm, anon_sym_DOT, - ACTIONS(4927), 40, + anon_sym_DASH_GT, + ACTIONS(5007), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -316688,12 +318390,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, @@ -316714,17 +318414,93 @@ 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, - anon_sym_try, - [20050] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [20230] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(5521), 21, + ACTIONS(6845), 1, + anon_sym_LT, + STATE(2692), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2704), 1, + sym_template_argument_list, + ACTIONS(6618), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 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(4166), 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, + [20308] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1685), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6803), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -316734,28 +318510,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(5523), 38, + ACTIONS(5984), 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, @@ -316766,7 +318540,72 @@ static const uint16_t ts_small_parse_table[] = { 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, + [20380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6845), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + ACTIONS(5839), 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_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(4180), 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, @@ -316780,82 +318619,162 @@ 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, + [20454] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6512), 1, + anon_sym___attribute__, + ACTIONS(6514), 1, + anon_sym___attribute, + ACTIONS(6824), 1, + anon_sym_COLON, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(2777), 1, + sym__enum_base_clause, + STATE(2833), 1, + sym_enumerator_list, + STATE(3048), 1, + sym_attribute_specifier, + ACTIONS(6352), 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(6354), 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, - [20120] = 5, + [20536] = 5, ACTIONS(3), 1, sym_comment, - STATE(2674), 1, + STATE(1685), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6843), 4, + ACTIONS(6803), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5080), 13, + ACTIONS(5899), 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(5897), 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(5078), 42, - 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___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_AMP_EQ, + anon_sym_CARET_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_template, - anon_sym_operator, - [20192] = 3, + anon_sym_GT2, + [20608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 20, + STATE(2669), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6847), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5925), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -316865,33 +318784,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_LBRACK, + anon_sym___attribute, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(6648), 40, + ACTIONS(5923), 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_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -316899,7 +318814,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, @@ -316912,15 +318826,84 @@ 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, - anon_sym_try, - [20260] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [20680] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6849), 1, + sym_identifier, + STATE(2694), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6852), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6855), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + 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_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(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, + anon_sym_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, + [20756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 13, + ACTIONS(5819), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -316934,7 +318917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5527), 47, + ACTIONS(5821), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -316948,7 +318931,6 @@ 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, @@ -316982,54 +318964,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [20328] = 5, + [20823] = 11, ACTIONS(3), 1, sym_comment, - STATE(2674), 1, + ACTIONS(6858), 1, + sym_identifier, + ACTIONS(6862), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2919), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6797), 4, + ACTIONS(6364), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2698), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5919), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5123), 10, 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, + ACTIONS(6359), 13, 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, @@ -317042,52 +319011,13 @@ 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, - [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, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5980), 42, + ACTIONS(5125), 24, 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, @@ -317097,140 +319027,115 @@ static const uint16_t ts_small_parse_table[] = { 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_asm, + anon_sym___asm__, + anon_sym___asm, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [20472] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [20906] = 4, 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, + ACTIONS(5007), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5009), 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_COLON, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(5002), 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_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(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, - anon_sym_inline, - anon_sym___inline, - anon_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, - [20544] = 5, + 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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [20975] = 11, ACTIONS(3), 1, sym_comment, - STATE(2609), 1, + ACTIONS(6864), 1, + sym_identifier, + ACTIONS(6868), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3082), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6846), 4, + ACTIONS(6394), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5933), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(5102), 10, 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, + ACTIONS(6389), 13, 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, @@ -317243,52 +319148,13 @@ 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, - [20616] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2610), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6848), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5885), 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(5887), 42, + ACTIONS(5104), 24, 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, @@ -317298,53 +319164,48 @@ static const uint16_t ts_small_parse_table[] = { 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_asm, + anon_sym___asm__, + anon_sym___asm, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [20688] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [21058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6876), 1, + anon_sym_template, + STATE(1663), 1, + sym_string_literal, + ACTIONS(6874), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6872), 6, 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, + ACTIONS(6870), 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -317368,90 +319229,176 @@ 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_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_template, + anon_sym_explicit, + anon_sym_typename, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [20756] = 3, + [21131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5660), 13, + STATE(2580), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6795), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5537), 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___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(5662), 46, + anon_sym_DASH_GT, + ACTIONS(5539), 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___attribute__, + 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, - [20823] = 4, + anon_sym_DASH_GT_STAR, + [21202] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 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(3007), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(5521), 22, + ACTIONS(5872), 1, + anon_sym_LBRACK, + ACTIONS(6028), 1, + anon_sym_STAR, + ACTIONS(6030), 1, + anon_sym_AMP_AMP, + ACTIONS(6032), 1, + anon_sym_AMP, + STATE(3281), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6433), 1, + sym__declarator, + STATE(6766), 1, + sym__abstract_declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5860), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5868), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6137), 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(3351), 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, + [21319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317461,7 +319408,6 @@ 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, @@ -317469,20 +319415,21 @@ static const uint16_t ts_small_parse_table[] = { 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(5523), 36, + anon_sym_DASH_GT, + ACTIONS(5007), 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, @@ -317492,77 +319439,168 @@ 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_requires, + anon_sym_DASH_GT_STAR, + [21386] = 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(3007), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(5872), 1, + anon_sym_LBRACK, + ACTIONS(6028), 1, + anon_sym_STAR, + ACTIONS(6030), 1, + anon_sym_AMP_AMP, + ACTIONS(6032), 1, + anon_sym_AMP, + STATE(3281), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6468), 1, + sym__declarator, + STATE(6787), 1, + sym__abstract_declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6763), 2, + anon_sym_COMMA, anon_sym_GT2, - [20892] = 3, + ACTIONS(6765), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6137), 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(3351), 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, + [21503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 13, + ACTIONS(5000), 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(5517), 46, + ACTIONS(5007), 37, 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_BANG_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_AMP_EQ, + anon_sym_CARET_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, @@ -317574,11 +319612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [20959] = 3, + [21570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 13, + ACTIONS(5537), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -317592,7 +319629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5699), 46, + ACTIONS(5539), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -317639,10 +319676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [21026] = 3, + [21637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 23, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317652,30 +319691,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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5479), 36, + 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___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -317684,43 +319722,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_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, - [21093] = 10, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [21706] = 4, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317735,13 +319761,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6318), 32, + ACTIONS(5472), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -317749,6 +319777,8 @@ 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, anon_sym_STAR_EQ, @@ -317773,123 +319803,62 @@ 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, - [21174] = 3, + [21775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 13, + ACTIONS(5521), 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_DOT, - ACTIONS(5707), 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_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_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, - [21241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5712), 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(5714), 46, + ACTIONS(5523), 37, 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, @@ -317901,11 +319870,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [21308] = 3, + [21842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 23, + ACTIONS(5617), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -317929,7 +319897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(5603), 36, + ACTIONS(5619), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -317966,74 +319934,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [21375] = 3, + [21909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5716), 13, + ACTIONS(5629), 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___attribute, - 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(5718), 46, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(5631), 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___attribute__, - 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_LT_EQ_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, - [21442] = 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, + [21976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 13, + ACTIONS(5788), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318047,7 +320015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5722), 46, + ACTIONS(5790), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318094,10 +320062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [21509] = 3, + [22043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 13, + ACTIONS(5537), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318111,7 +320079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5726), 46, + ACTIONS(5539), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318158,130 +320126,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [21576] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6854), 1, - sym_identifier, - ACTIONS(6858), 1, - sym_primitive_type, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(2880), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6375), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2701), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6856), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5094), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - 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, - ACTIONS(5096), 24, - anon_sym_AMP, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - 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_asm, - anon_sym___asm__, - anon_sym___asm, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [21659] = 3, + [22110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 13, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5613), 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(5730), 46, + ACTIONS(5615), 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, @@ -318293,25 +320191,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [21726] = 10, + [22179] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6668), 1, anon_sym___attribute__, - ACTIONS(6586), 1, + ACTIONS(6670), 1, anon_sym___attribute, - ACTIONS(6850), 1, + ACTIONS(6878), 1, anon_sym_COLON, - ACTIONS(6852), 1, + ACTIONS(6880), 1, anon_sym_LBRACE, - STATE(2862), 1, + STATE(2839), 1, sym__enum_base_clause, - STATE(2886), 1, + STATE(2904), 1, sym_enumerator_list, - STATE(3175), 1, + STATE(3238), 1, sym_attribute_specifier, - ACTIONS(6393), 20, + ACTIONS(6346), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318332,7 +320229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6395), 32, + ACTIONS(6348), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318365,124 +320262,122 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [21807] = 3, + [22260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 23, + ACTIONS(5745), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(5643), 36, + ACTIONS(5747), 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_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, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [22327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 22, + ACTIONS(5749), 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(5543), 36, + ACTIONS(5751), 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, @@ -318494,107 +320389,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - [21943] = 4, + anon_sym_requires, + [22394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 22, + ACTIONS(5753), 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(5543), 36, + ACTIONS(5755), 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_QMARK, - anon_sym_STAR_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, - [22012] = 11, - ACTIONS(3), 1, - sym_comment, - 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(6388), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1669), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6862), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5109), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6383), 13, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -318606,35 +320434,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5111), 24, - anon_sym_AMP, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - 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_asm, - anon_sym___asm__, - anon_sym___asm, + 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_try, + anon_sym_GT2, anon_sym_requires, - [22095] = 3, + [22461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 13, + ACTIONS(5757), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318648,7 +320471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5722), 46, + ACTIONS(5759), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318695,10 +320518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22162] = 3, + [22528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 13, + ACTIONS(5705), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318712,7 +320535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5722), 46, + ACTIONS(5707), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318759,10 +320582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22229] = 3, + [22595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 13, + ACTIONS(5713), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318776,7 +320599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5794), 46, + ACTIONS(5715), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318823,13 +320646,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22296] = 4, + [22662] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 2, - anon_sym_COLON_COLON, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + ACTIONS(6878), 1, + anon_sym_COLON, + ACTIONS(6880), 1, anon_sym_LBRACE, - ACTIONS(4993), 21, + STATE(2840), 1, + sym__enum_base_clause, + STATE(2908), 1, + sym_enumerator_list, + STATE(3246), 1, + sym_attribute_specifier, + ACTIONS(6352), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -318839,31 +320673,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_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(4986), 36, + ACTIONS(6354), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -318871,7 +320700,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, @@ -318884,14 +320712,15 @@ 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, - [22365] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [22743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 13, + ACTIONS(5768), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318905,7 +320734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5766), 46, + ACTIONS(5770), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -318952,10 +320781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22432] = 3, + [22810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 13, + ACTIONS(5795), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -318969,7 +320798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5770), 46, + ACTIONS(5797), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -319016,10 +320845,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22499] = 3, + [22877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 13, + ACTIONS(5811), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -319033,7 +320862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5774), 46, + ACTIONS(5813), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -319080,10 +320909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22566] = 3, + [22944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5760), 13, + ACTIONS(5727), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -319097,7 +320926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5762), 46, + ACTIONS(5729), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -319144,343 +320973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [22633] = 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(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, + [23011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 13, + ACTIONS(5835), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -319494,7 +320990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5778), 46, + ACTIONS(5837), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -319541,10 +321037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23122] = 3, + [23078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 13, + ACTIONS(5727), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -319558,7 +321054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5782), 46, + ACTIONS(5729), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -319605,74 +321101,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23189] = 3, + [23145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 20, + ACTIONS(5727), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5543), 39, + ACTIONS(5729), 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_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, - [23256] = 3, + anon_sym_GT2, + anon_sym_requires, + [23212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 13, + ACTIONS(5701), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -319686,7 +321182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5786), 46, + ACTIONS(5703), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -319733,10 +321229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23323] = 3, + [23279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5788), 13, + ACTIONS(5823), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -319750,7 +321246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5790), 46, + ACTIONS(5825), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -319786,85 +321282,21 @@ static const uint16_t ts_small_parse_table[] = { anon_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, - [23390] = 3, - ACTIONS(3), 1, - sym_comment, - 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_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, - [23457] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [23346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 22, + ACTIONS(5470), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -319874,29 +321306,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(5547), 37, + anon_sym_DASH_GT, + ACTIONS(5472), 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, @@ -319906,6 +321338,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, @@ -319919,16 +321352,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, - [23524] = 3, + anon_sym_DASH_GT_STAR, + [23413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 13, + ACTIONS(5831), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -319942,7 +321374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5806), 46, + ACTIONS(5833), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -319989,10 +321421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23591] = 3, + [23480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 13, + ACTIONS(5807), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320006,7 +321438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5810), 46, + ACTIONS(5809), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320053,10 +321485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23658] = 3, + [23547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 13, + ACTIONS(5815), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320070,7 +321502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5818), 46, + ACTIONS(5817), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320117,10 +321549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23725] = 3, + [23614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5812), 13, + ACTIONS(5678), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320134,7 +321566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5814), 46, + ACTIONS(5680), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320181,10 +321613,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23792] = 3, + [23681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 13, + ACTIONS(5653), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320198,7 +321630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5806), 46, + ACTIONS(5655), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320245,10 +321677,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23859] = 3, + [23748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 13, + ACTIONS(5657), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320262,7 +321694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5755), 46, + ACTIONS(5659), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320309,76 +321741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [23926] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1650), 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, - [23997] = 3, + [23815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5742), 13, + ACTIONS(5686), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320392,7 +321758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5744), 46, + ACTIONS(5688), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320439,10 +321805,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24064] = 3, + [23882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 13, + ACTIONS(5778), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320456,7 +321822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5798), 46, + ACTIONS(5780), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320503,91 +321869,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24131] = 5, + [23949] = 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, + STATE(2637), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6753), 4, 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, - 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, + ACTIONS(5539), 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, - ACTIONS(6866), 47, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5537), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -320596,10 +321901,12 @@ 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___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, @@ -320623,22 +321930,15 @@ 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, - [24273] = 3, + [24020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 13, + ACTIONS(5657), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320652,7 +321952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5822), 46, + ACTIONS(5659), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320699,10 +321999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24340] = 3, + [24087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 13, + ACTIONS(5731), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320716,7 +322016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5740), 46, + ACTIONS(5733), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320763,10 +322063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24407] = 3, + [24154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 13, + ACTIONS(5674), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320780,7 +322080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5695), 46, + ACTIONS(5676), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -320827,142 +322127,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [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, + [24221] = 3, ACTIONS(3), 1, sym_comment, - STATE(2600), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6730), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5515), 19, + ACTIONS(5682), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5517), 35, + ACTIONS(5684), 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_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, - [24616] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [24288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 13, + ACTIONS(5697), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -320976,7 +322208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5683), 46, + ACTIONS(5699), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -321023,138 +322255,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [24683] = 28, + [24355] = 3, 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, + ACTIONS(5709), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, 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_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, 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, + ACTIONS(5711), 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(5792), 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, @@ -321168,67 +322301,76 @@ 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, - [24867] = 3, + anon_sym_GT2, + anon_sym_requires, + [24422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 22, + ACTIONS(5693), 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(4991), 37, + ACTIONS(5695), 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_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, @@ -321240,10 +322382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - [24934] = 3, + anon_sym_requires, + [24489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 13, + ACTIONS(5719), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -321257,7 +322400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5668), 46, + ACTIONS(5721), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -321304,10 +322447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [25001] = 3, + [24556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 13, + ACTIONS(5723), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -321321,7 +322464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5687), 46, + ACTIONS(5725), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -321368,10 +322511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [25068] = 3, + [24623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 13, + ACTIONS(5799), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -321385,7 +322528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5691), 46, + ACTIONS(5801), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -321432,10 +322575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [25135] = 3, + [24690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 13, + ACTIONS(5803), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -321449,7 +322592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5647), 46, + ACTIONS(5805), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -321496,10 +322639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [25202] = 3, + [24757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 18, + ACTIONS(5502), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -321513,12 +322656,17 @@ 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(4991), 41, + sym_literal_suffix, + ACTIONS(5504), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321528,10 +322676,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, @@ -321545,25 +322689,531 @@ 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_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, + [24824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5509), 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(5511), 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, + [24891] = 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(3007), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(5872), 1, + anon_sym_LBRACK, + ACTIONS(6008), 1, + anon_sym_STAR, + ACTIONS(6010), 1, + anon_sym_AMP_AMP, + ACTIONS(6012), 1, + anon_sym_AMP, + STATE(3343), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6433), 1, + sym__declarator, + STATE(6847), 1, + sym__abstract_declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5860), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(5868), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6137), 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(3351), 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, + [25008] = 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(3007), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(5872), 1, + anon_sym_LBRACK, + ACTIONS(6008), 1, + anon_sym_STAR, + ACTIONS(6010), 1, + anon_sym_AMP_AMP, + ACTIONS(6012), 1, + anon_sym_AMP, + STATE(3343), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6468), 1, + sym__declarator, + STATE(6794), 1, + sym__abstract_declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6763), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(6765), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6137), 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(3351), 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, + [25125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5703), 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(5701), 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_requires, - anon_sym_DASH_GT_STAR, - [25269] = 3, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [25192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 13, + ACTIONS(6882), 1, + anon_sym_template, + STATE(1660), 1, + sym_string_literal, + ACTIONS(6874), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6872), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6870), 46, + 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_operator, + [25265] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6884), 1, + anon_sym_template, + STATE(1661), 1, + sym_string_literal, + ACTIONS(6874), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6872), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6870), 46, + 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_operator, + [25338] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6886), 1, + anon_sym_template, + STATE(1664), 1, + sym_string_literal, + ACTIONS(6874), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6872), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6870), 46, + 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_operator, + [25411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5827), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -321577,7 +323227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(5703), 46, + ACTIONS(5829), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -321624,53 +323274,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [25336] = 3, + [25478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2709), 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(2707), 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, + [25544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 13, + STATE(2778), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6888), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5807), 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(5517), 46, + anon_sym_DASH_GT, + ACTIONS(5809), 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -321681,60 +323399,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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [25403] = 3, + anon_sym_DASH_GT_STAR, + [25614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 13, + STATE(1699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6890), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5931), 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(5802), 46, + anon_sym_DASH_GT, + ACTIONS(5929), 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -321745,100 +323464,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_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, + anon_sym_DASH_GT_STAR, + [25684] = 5, ACTIONS(3), 1, sym_comment, - STATE(1689), 1, + STATE(1699), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6874), 4, + ACTIONS(6890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5953), 17, + ACTIONS(5935), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -321856,7 +323495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5951), 36, + ACTIONS(5933), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321893,16 +323532,23 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [25632] = 6, + [25754] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6876), 1, + ACTIONS(6892), 1, anon_sym_LT, - STATE(2745), 1, + STATE(2702), 1, sym_template_argument_list, - ACTIONS(5834), 17, + STATE(2780), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6801), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -321915,12 +323561,10 @@ static const uint16_t ts_small_parse_table[] = { 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(4192), 38, + ACTIONS(4166), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -321930,7 +323574,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, @@ -321956,13 +323599,11 @@ 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, - [25704] = 3, + [25830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6880), 28, + ACTIONS(2665), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -321991,7 +323632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(6878), 30, + ACTIONS(2663), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -322022,20 +323663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [25770] = 8, + [25896] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5470), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -322045,94 +323676,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(6068), 34, + ACTIONS(5472), 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_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, - [25846] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 1, anon_sym___attribute__, - ACTIONS(6524), 1, - anon_sym___attribute, - ACTIONS(6801), 1, + anon_sym_COLON, 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, - 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(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_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -322141,7 +323707,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, @@ -322155,160 +323720,149 @@ 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, - [25922] = 16, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [25962] = 3, 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(6882), 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, + ACTIONS(5007), 28, anon_sym_LPAREN2, + anon_sym_BANG, 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_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(5000), 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(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, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6896), 28, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, 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_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(6894), 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_final, - anon_sym_override, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [26080] = 4, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5543), 27, + ACTIONS(6900), 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, @@ -322330,7 +323884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5541), 30, + ACTIONS(6898), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -322361,164 +323915,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [26148] = 16, + [26160] = 4, 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, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5472), 27, anon_sym_LPAREN2, + anon_sym_BANG, 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_SEMI, anon_sym_LBRACE, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - ACTIONS(6888), 1, + anon_sym_RBRACE, 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, + 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(5470), 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, + [26228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6896), 28, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5472), 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, @@ -322540,7 +324012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(6894), 30, + ACTIONS(5470), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -322571,80 +324043,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [26388] = 3, + [26296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5523), 28, anon_sym_LPAREN2, + anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - 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_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(5521), 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_explicit, + anon_sym_typename, anon_sym_template, - anon_sym_operator, - [26454] = 5, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26362] = 6, 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(5980), 17, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6902), 1, + anon_sym_LT, + STATE(2702), 1, + sym_template_argument_list, + ACTIONS(4915), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -322655,14 +324126,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(5978), 36, + ACTIONS(4922), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -322698,229 +324169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [26524] = 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(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_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, - [26616] = 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(6900), 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, - [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, + anon_sym_DASH_GT_STAR, + [26434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6904), 28, + ACTIONS(6907), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -322949,7 +324204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(6902), 30, + ACTIONS(6905), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -322980,78 +324235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [26846] = 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(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_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, - [26918] = 4, + [26500] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, + ACTIONS(5474), 1, anon_sym_COLON_COLON, - ACTIONS(5543), 27, + ACTIONS(5615), 27, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -323079,7 +324268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5541), 30, + ACTIONS(5613), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -323110,27 +324299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [26986] = 11, + [26568] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(6512), 1, + anon_sym___attribute__, + ACTIONS(6514), 1, + anon_sym___attribute, + ACTIONS(6826), 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, + STATE(2832), 1, + sym_enumerator_list, + STATE(3065), 1, + sym_attribute_specifier, + ACTIONS(6062), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323150,15 +324332,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5843), 30, + ACTIONS(6064), 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, @@ -323180,18 +324364,20 @@ 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, - [27068] = 5, + [26644] = 5, ACTIONS(3), 1, sym_comment, - STATE(1689), 1, + STATE(1699), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6874), 4, + ACTIONS(6890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5921), 17, + ACTIONS(5986), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323209,7 +324395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5919), 36, + ACTIONS(5984), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -323246,17 +324432,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [27138] = 5, + [26714] = 6, 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(5988), 17, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6892), 1, + anon_sym_LT, + STATE(2702), 1, + sym_template_argument_list, + ACTIONS(5839), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323267,14 +324452,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(5986), 36, + ACTIONS(4180), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -323310,18 +324495,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, - [27208] = 5, + [26786] = 5, ACTIONS(3), 1, sym_comment, - STATE(1689), 1, + STATE(1699), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6874), 4, + ACTIONS(6890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5931), 17, + ACTIONS(5899), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323339,7 +324526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5929), 36, + ACTIONS(5897), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -323376,10 +324563,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [27278] = 3, + [26856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 28, + ACTIONS(5472), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -323408,7 +324595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5545), 30, + ACTIONS(5470), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -323439,23 +324626,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27344] = 8, + [26922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6876), 1, - anon_sym_LT, - STATE(2745), 1, - sym_template_argument_list, - STATE(2772), 1, + STATE(2689), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6824), 4, + ACTIONS(6838), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4164), 15, + ACTIONS(5537), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323465,22 +324646,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(4172), 35, + ACTIONS(5539), 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, @@ -323490,98 +324674,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, - [27420] = 4, - ACTIONS(3), 1, - sym_comment, - 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_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(5521), 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, - [27488] = 5, + anon_sym_GT2, + [26992] = 5, ACTIONS(3), 1, sym_comment, - STATE(2750), 1, + STATE(2803), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6906), 4, + ACTIONS(6909), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5887), 17, + ACTIONS(5919), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323599,7 +324719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5885), 36, + ACTIONS(5917), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -323636,17 +324756,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [27558] = 5, + [27062] = 5, ACTIONS(3), 1, sym_comment, - STATE(2762), 1, + STATE(2810), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6908), 4, + ACTIONS(6911), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5968), 17, + ACTIONS(5925), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323664,7 +324784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5966), 36, + ACTIONS(5923), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -323701,17 +324821,27 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [27628] = 5, + [27132] = 11, 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, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(6915), 1, + anon_sym_LBRACK, + ACTIONS(6917), 1, + sym_auto, + ACTIONS(6919), 1, + anon_sym_decltype, + STATE(3118), 1, + sym_new_declarator, + STATE(3136), 1, + sym_decltype_auto, + STATE(3591), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5846), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -323725,23 +324855,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(5891), 36, + ACTIONS(5848), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -323753,23 +324881,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, - [27698] = 3, + [27214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 28, + ACTIONS(4998), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -323798,7 +324924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(6910), 30, + ACTIONS(4996), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -323829,10 +324955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27764] = 3, + [27280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6916), 28, + ACTIONS(4986), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -323861,7 +324987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(6914), 30, + ACTIONS(4984), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -323892,10 +325018,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27830] = 3, + [27346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5008), 28, + ACTIONS(4994), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -323924,7 +325050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5006), 30, + ACTIONS(4992), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -323955,10 +325081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27896] = 3, + [27412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2737), 28, + ACTIONS(4990), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -323987,7 +325113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(2735), 30, + ACTIONS(4988), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -324018,151 +325144,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27962] = 5, + [27478] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5024), 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, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_DOT, - 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_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, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [28032] = 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(6920), 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_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(5022), 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(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, - [28124] = 3, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [27544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5012), 28, + ACTIONS(5016), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -324191,7 +325239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5010), 30, + ACTIONS(5014), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -324222,81 +325270,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [28190] = 11, + [27610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6886), 1, + ACTIONS(5020), 28, anon_sym_LPAREN2, - ACTIONS(6888), 1, + 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, - ACTIONS(6890), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5018), 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, + [27676] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6414), 1, sym_auto, - ACTIONS(6892), 1, + ACTIONS(6416), 1, anon_sym_decltype, - STATE(3025), 1, - sym_new_declarator, - STATE(3115), 1, + ACTIONS(6501), 1, + anon_sym_virtual, + ACTIONS(6921), 1, + anon_sym_SEMI, + STATE(2549), 1, sym_decltype_auto, - STATE(3438), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5857), 19, - anon_sym_DASH, - anon_sym_PLUS, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6499), 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(2603), 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(5490), 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(6497), 12, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + 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(5486), 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, + [27768] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, 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(5859), 30, + STATE(1635), 1, + sym_template_argument_list, + ACTIONS(5839), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(4180), 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_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, - [28272] = 3, + 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, + [27840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6924), 13, + ACTIONS(5007), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -324310,7 +325492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6922), 45, + ACTIONS(5000), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -324350,85 +325532,33 @@ static const uint16_t ts_small_parse_table[] = { 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, - [28338] = 3, + [27906] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5000), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(2457), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(6915), 1, 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(4998), 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, + ACTIONS(6917), 1, + sym_auto, + ACTIONS(6919), 1, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [28404] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6926), 1, - anon_sym_LT, - STATE(2745), 1, - sym_template_argument_list, - ACTIONS(4925), 17, + STATE(3041), 1, + sym_new_declarator, + STATE(3136), 1, + sym_decltype_auto, + STATE(3446), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5874), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324439,26 +325569,24 @@ 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(4932), 38, + ACTIONS(5876), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -324470,116 +325598,115 @@ 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, - [28476] = 3, + [27988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 28, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + ACTIONS(4915), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(4922), 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_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(5014), 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, - [28542] = 16, + [28060] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6472), 1, + ACTIONS(6414), 1, sym_auto, - ACTIONS(6474), 1, + ACTIONS(6416), 1, anon_sym_decltype, - ACTIONS(6480), 1, + ACTIONS(6501), 1, anon_sym_virtual, - ACTIONS(6929), 1, + ACTIONS(6923), 1, anon_sym_SEMI, - STATE(2483), 1, + STATE(2549), 1, sym_decltype_auto, - STATE(3054), 1, + STATE(3093), 1, sym_alignas_qualifier, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6478), 5, + ACTIONS(6499), 5, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - STATE(2577), 7, + STATE(2603), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -324587,7 +325714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(5487), 9, + ACTIONS(5490), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -324597,7 +325724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(6476), 12, + ACTIONS(6497), 12, anon_sym_AMP, anon_sym___based, anon_sym___cdecl, @@ -324610,7 +325737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_template, anon_sym_operator, - ACTIONS(5483), 13, + ACTIONS(5486), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -324624,80 +325751,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [28634] = 3, + [28152] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5004), 28, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(2457), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(6915), 1, 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(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, + ACTIONS(6917), 1, + sym_auto, + ACTIONS(6919), 1, anon_sym_decltype, - 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(2771), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6931), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5974), 17, + STATE(3055), 1, + sym_new_declarator, + STATE(3136), 1, + sym_decltype_auto, + STATE(3458), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5885), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324711,23 +325785,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(5972), 36, + ACTIONS(5887), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -324739,23 +325811,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, - [28770] = 3, + [28234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4978), 28, + ACTIONS(6927), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -324784,7 +325854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(4976), 30, + ACTIONS(6925), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -324815,10 +325885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [28836] = 3, + [28300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 28, + ACTIONS(6931), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -324847,7 +325917,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(6929), 30, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -324878,17 +325948,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [28902] = 5, + [28366] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6414), 1, + sym_auto, + ACTIONS(6416), 1, + anon_sym_decltype, + ACTIONS(6501), 1, + anon_sym_virtual, + ACTIONS(6933), 1, + anon_sym_SEMI, + STATE(2549), 1, + sym_decltype_auto, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6499), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + STATE(2603), 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(5490), 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(6497), 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(5486), 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, + [28458] = 5, ACTIONS(3), 1, sym_comment, - STATE(1689), 1, + STATE(1699), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6874), 4, + ACTIONS(6890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5913), 17, + ACTIONS(5958), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -324906,7 +326052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5911), 36, + ACTIONS(5956), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -324943,90 +326089,27 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [28972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2727), 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(2725), 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, - [29038] = 11, + [28528] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(2457), 1, anon_sym_LBRACE, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(6888), 1, + ACTIONS(6915), 1, anon_sym_LBRACK, - ACTIONS(6890), 1, + ACTIONS(6917), 1, sym_auto, - ACTIONS(6892), 1, + ACTIONS(6919), 1, anon_sym_decltype, - STATE(3100), 1, + STATE(3068), 1, sym_new_declarator, - STATE(3115), 1, + STATE(3136), 1, sym_decltype_auto, - STATE(3485), 2, + STATE(3481), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5853), 19, + ACTIONS(5881), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325046,7 +326129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5855), 30, + ACTIONS(5883), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325077,271 +326160,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [29120] = 5, + [28610] = 3, ACTIONS(3), 1, sym_comment, - 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, - 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(5517), 33, + ACTIONS(6937), 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, 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_EQ, anon_sym_GT2, - [29190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5541), 21, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(6935), 45, 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(5543), 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___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, + anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACE, + 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, - sym_auto, + 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_final, anon_sym_override, - anon_sym_GT2, - [29256] = 3, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [28676] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 28, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6414), 1, + sym_auto, + ACTIONS(6416), 1, + anon_sym_decltype, + ACTIONS(6501), 1, + anon_sym_virtual, + ACTIONS(6939), 1, + anon_sym_SEMI, + STATE(2549), 1, + sym_decltype_auto, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6499), 5, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + STATE(2603), 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(5490), 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(6497), 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(5486), 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, + [28768] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6414), 1, + sym_auto, + ACTIONS(6416), 1, + anon_sym_decltype, + ACTIONS(6501), 1, + anon_sym_virtual, + ACTIONS(6941), 1, anon_sym_SEMI, + STATE(2549), 1, + sym_decltype_auto, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6499), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(2603), 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(5490), 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(6497), 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_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_template, + anon_sym_operator, + ACTIONS(5486), 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, + [28860] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6414), 1, + sym_auto, + ACTIONS(6416), 1, anon_sym_decltype, - anon_sym_typename, + ACTIONS(6501), 1, + anon_sym_virtual, + ACTIONS(6943), 1, + anon_sym_SEMI, + STATE(2549), 1, + sym_decltype_auto, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6499), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + STATE(2603), 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(5490), 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(6497), 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_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29322] = 3, + anon_sym_operator, + ACTIONS(5486), 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, + [28952] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 28, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6414), 1, + sym_auto, + ACTIONS(6416), 1, + anon_sym_decltype, + ACTIONS(6501), 1, + anon_sym_virtual, + ACTIONS(6945), 1, + anon_sym_SEMI, + STATE(2549), 1, + sym_decltype_auto, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6499), 5, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + STATE(2603), 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(5490), 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(6497), 12, anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + 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_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, - anon_sym_decltype, - anon_sym_typename, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29388] = 5, + anon_sym_operator, + ACTIONS(5486), 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, + [29044] = 5, ACTIONS(3), 1, sym_comment, - STATE(2796), 1, + STATE(1699), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6933), 4, + ACTIONS(6890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5935), 17, + ACTIONS(5962), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325359,7 +326555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5933), 36, + ACTIONS(5960), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325396,27 +326592,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [29458] = 11, + [29114] = 5, ACTIONS(3), 1, sym_comment, - 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(3199), 1, - sym_new_declarator, - STATE(3235), 1, - sym_decltype_auto, - STATE(3722), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5853), 20, + STATE(2763), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5966), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325426,94 +326612,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, - ACTIONS(5855), 28, + anon_sym_DASH_GT, + ACTIONS(5964), 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_QMARK, - anon_sym_STAR_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, - [29539] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2493), 1, + anon_sym_GT_EQ, + anon_sym___attribute__, 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(3235), 1, - sym_decltype_auto, - STATE(3246), 1, - sym_new_declarator, - STATE(3655), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5881), 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(5883), 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, @@ -325521,35 +326640,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, - anon_sym_GT2, - [29620] = 8, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [29184] = 5, ACTIONS(3), 1, sym_comment, - 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, + STATE(2764), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6949), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325559,25 +326677,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, - ACTIONS(6074), 32, + anon_sym_DASH_GT, + ACTIONS(5974), 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, @@ -325586,95 +326705,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_GT2, - [29695] = 3, + anon_sym_DASH_GT_STAR, + [29254] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6636), 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, - 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(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, + STATE(1699), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6890), 4, 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, - [29760] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 1, - anon_sym___attribute__, - ACTIONS(6524), 1, - anon_sym___attribute, - STATE(3056), 1, - sym_attribute_specifier, - ACTIONS(6157), 19, + ACTIONS(5982), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325688,13 +326746,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(6159), 35, + ACTIONS(5980), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325704,6 +326760,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, @@ -325717,11 +326774,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, @@ -325730,16 +326787,20 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [29831] = 6, + [29324] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, + ACTIONS(6512), 1, anon_sym___attribute__, - ACTIONS(6524), 1, + ACTIONS(6514), 1, anon_sym___attribute, - STATE(3069), 1, + ACTIONS(6826), 1, + anon_sym_LBRACE, + STATE(2868), 1, + sym_enumerator_list, + STATE(3052), 1, sym_attribute_specifier, - ACTIONS(6100), 19, + ACTIONS(6046), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -325759,7 +326820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6102), 35, + ACTIONS(6048), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -325769,7 +326830,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, @@ -325795,41 +326855,31 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [29902] = 12, + [29400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6943), 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, + ACTIONS(5098), 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(5557), 40, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5096), 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, @@ -325862,106 +326912,38 @@ static const uint16_t ts_small_parse_table[] = { 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, - [29985] = 6, + [29466] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, + ACTIONS(6951), 1, + anon_sym_LBRACE, + STATE(2484), 1, + sym_attribute_specifier, + STATE(3022), 1, + sym_enumerator_list, + ACTIONS(5492), 2, anon_sym___attribute__, - ACTIONS(6524), 1, anon_sym___attribute, - STATE(3144), 1, - sym_attribute_specifier, - ACTIONS(6165), 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(6167), 35, + ACTIONS(6048), 12, 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, - [30056] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(6945), 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_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5557), 40, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6046), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -326002,27 +326984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [30139] = 11, + [29539] = 3, ACTIONS(3), 1, sym_comment, - 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(3165), 1, - sym_new_declarator, - STATE(3235), 1, - sym_decltype_auto, - STATE(3649), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5857), 20, + ACTIONS(4992), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -326032,76 +326997,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(5859), 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, - [30220] = 6, - ACTIONS(3), 1, - sym_comment, - 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, - 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_COLON, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6155), 35, + ACTIONS(4994), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -326111,6 +327016,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, @@ -326124,11 +327031,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, @@ -326136,562 +327043,45 @@ 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, - [30291] = 25, + [29604] = 3, 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, - 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, - 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, + ACTIONS(4988), 18, anon_sym_DASH, anon_sym_PLUS, - 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, - ACTIONS(6947), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - 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, - 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, - [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, - 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, - ACTIONS(6951), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(6662), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(6664), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_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, - 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, - ACTIONS(6951), 2, - anon_sym_DASH, - anon_sym_PLUS, - 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, - ACTIONS(6518), 7, - aux_sym_preproc_elif_token1, + anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, - 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, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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, - 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(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, - ACTIONS(6518), 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, - sym_identifier, - ACTIONS(6520), 19, + ACTIONS(4990), 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_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, - [30719] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5845), 1, + anon_sym_RPAREN, 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, - 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(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, - 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(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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30818] = 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(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(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, - 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(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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [30915] = 18, - 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, - 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, - ACTIONS(6967), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6518), 14, - 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(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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -326703,143 +327093,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31010] = 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(6969), 1, - anon_sym_GT_EQ, - ACTIONS(6973), 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(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(6967), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - 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(6520), 21, - 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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31101] = 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(6973), 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(6951), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [29669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5022), 18, 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___attribute, + anon_sym_COLON, 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(6520), 22, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5024), 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, @@ -326849,81 +327153,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [31188] = 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(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_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - ACTIONS(6975), 1, anon_sym_or, - ACTIONS(6977), 1, anon_sym_and, - ACTIONS(6979), 1, + anon_sym_bitor, + anon_sym_xor, + 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, - ACTIONS(6951), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [29734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 18, anon_sym_DASH, anon_sym_PLUS, - 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6985), 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(6987), 17, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5016), 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, @@ -326935,82 +327217,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31297] = 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, - ACTIONS(6975), 1, anon_sym_or, - ACTIONS(6977), 1, anon_sym_and, - ACTIONS(6979), 1, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, 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, - ACTIONS(6951), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [29799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5018), 18, anon_sym_DASH, anon_sym_PLUS, - 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6989), 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(6991), 15, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5020), 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, anon_sym_PERCENT_EQ, @@ -327021,186 +327279,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31410] = 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(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_bitor, + anon_sym_xor, + 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, - ACTIONS(6951), 2, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [29864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5509), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6959), 2, + anon_sym_SLASH, 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, - ACTIONS(6993), 6, - 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, + anon_sym_DOT, sym_identifier, - ACTIONS(6995), 17, + sym_literal_suffix, + ACTIONS(5511), 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, - [31519] = 27, + 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, + [29929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6688), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(6418), 1, - anon_sym_DOT, - ACTIONS(6955), 1, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(6957), 1, anon_sym_AMP_AMP, - ACTIONS(6969), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, 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, - ACTIONS(6981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6983), 1, + 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, anon_sym_QMARK, - STATE(2491), 1, - sym_argument_list, - STATE(2492), 1, - sym_subscript_argument_list, - ACTIONS(6416), 2, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6951), 2, + ACTIONS(6686), 31, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6959), 2, + 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, - 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_not_eq, + anon_sym_DOT, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [29994] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2507), 1, + anon_sym_LBRACE, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(6955), 1, + anon_sym_LBRACK, + ACTIONS(6957), 1, + sym_auto, + ACTIONS(6959), 1, + anon_sym_decltype, + STATE(3220), 1, + sym_new_declarator, + STATE(3234), 1, + sym_decltype_auto, + STATE(3668), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5885), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6967), 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(6997), 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(6999), 15, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5887), 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, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [31632] = 6, + 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, + [30075] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, - anon_sym___attribute__, - ACTIONS(6524), 1, - anon_sym___attribute, - STATE(3084), 1, - sym_attribute_specifier, - ACTIONS(6149), 19, + ACTIONS(2507), 1, + anon_sym_LBRACE, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(6955), 1, + anon_sym_LBRACK, + ACTIONS(6957), 1, + sym_auto, + ACTIONS(6959), 1, + anon_sym_decltype, + STATE(3222), 1, + sym_new_declarator, + STATE(3234), 1, + sym_decltype_auto, + STATE(3720), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5881), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327210,28 +327518,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(6151), 35, + ACTIONS(5883), 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, @@ -327239,7 +327543,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, @@ -327253,13 +327556,12 @@ 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, - [31703] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [30156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 18, + ACTIONS(5629), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -327278,7 +327580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(5472), 39, + ACTIONS(5631), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -327318,30 +327620,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [31768] = 8, + [30221] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - STATE(3104), 1, + STATE(3114), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7001), 4, + ACTIONS(6961), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6058), 6, + ACTIONS(6066), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6060), 43, + ACTIONS(6068), 43, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -327385,37 +327687,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [31843] = 12, + [30296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5613), 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, - ACTIONS(6530), 1, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5615), 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, - ACTIONS(7003), 1, - anon_sym_SEMI, - STATE(2495), 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [30363] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + ACTIONS(6963), 1, + anon_sym_COLON, + ACTIONS(6965), 1, + anon_sym_LBRACE, + STATE(2927), 1, + sym__enum_base_clause, + STATE(3051), 1, + sym_enumerator_list, + STATE(3545), 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, + ACTIONS(6346), 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(6348), 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_LT_EQ_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, + [30442] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6512), 1, anon_sym___attribute__, + ACTIONS(6514), 1, anon_sym___attribute, - ACTIONS(5567), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5559), 6, + STATE(3127), 1, + sym_attribute_specifier, + ACTIONS(6150), 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(6152), 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, + [30513] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6951), 1, + anon_sym_LBRACE, + STATE(2506), 1, + sym_attribute_specifier, + STATE(2976), 1, + sym_enumerator_list, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6064), 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, - ACTIONS(5557), 40, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6062), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -327456,24 +327950,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [31926] = 10, + [30586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(6512), 1, anon_sym___attribute__, - ACTIONS(6793), 1, + ACTIONS(6514), 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, + STATE(3150), 1, sym_attribute_specifier, - ACTIONS(6316), 16, + ACTIONS(6159), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -327488,9 +327974,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(6318), 34, + ACTIONS(6161), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -327500,6 +327989,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, @@ -327512,11 +328002,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, @@ -327525,170 +328015,167 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [32005] = 3, + [30657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6716), 26, + ACTIONS(6512), 1, + anon_sym___attribute__, + ACTIONS(6514), 1, + anon_sym___attribute, + STATE(3064), 1, + sym_attribute_specifier, + ACTIONS(6228), 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(6230), 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_COLON, - anon_sym_RBRACK_RBRACK, 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_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(6714), 31, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [30728] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6512), 1, + anon_sym___attribute__, + ACTIONS(6514), 1, + anon_sym___attribute, + STATE(3160), 1, + sym_attribute_specifier, + ACTIONS(6192), 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_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_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_typename, - anon_sym_template, - [32070] = 12, - ACTIONS(3), 1, - sym_comment, - 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_DASH_GT, + ACTIONS(6194), 35, + 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_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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_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_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, - [32153] = 12, + anon_sym_DASH_GT_STAR, + [30799] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(7011), 1, + ACTIONS(6967), 1, anon_sym_SEMI, - STATE(2495), 1, + STATE(2516), 1, sym_attribute_specifier, - STATE(2916), 1, + STATE(2932), 1, sym_field_declaration_list, - STATE(7168), 1, + STATE(7145), 1, sym_virtual_specifier, - STATE(7765), 1, + STATE(7912), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - ACTIONS(5559), 6, + ACTIONS(5603), 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, + ACTIONS(5601), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -327729,99 +328216,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [32236] = 3, + [30882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 11, + ACTIONS(6704), 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, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5515), 46, + 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(6702), 31, + 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, 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_asm, - anon_sym___asm__, - anon_sym___asm, + 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_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [32301] = 12, + anon_sym_typename, + anon_sym_template, + [30947] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + ACTIONS(6963), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6965), 1, anon_sym_LBRACE, - ACTIONS(7013), 1, + STATE(2930), 1, + sym__enum_base_clause, + STATE(3076), 1, + sym_enumerator_list, + STATE(3525), 1, + sym_attribute_specifier, + ACTIONS(6352), 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(6354), 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_LT_EQ_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, + [31026] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(6969), 1, anon_sym_SEMI, - STATE(2495), 1, + STATE(2516), 1, sym_attribute_specifier, - STATE(2916), 1, + STATE(2932), 1, sym_field_declaration_list, - STATE(7168), 1, + STATE(7145), 1, sym_virtual_specifier, - STATE(7765), 1, + STATE(7912), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - ACTIONS(5559), 6, + ACTIONS(5603), 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, + ACTIONS(5601), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -327860,75 +328416,209 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [32384] = 25, + anon_sym_template, + anon_sym_operator, + [31109] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + ACTIONS(6880), 1, + anon_sym_LBRACE, + STATE(2910), 1, + sym_enumerator_list, + STATE(3248), 1, + sym_attribute_specifier, + ACTIONS(6046), 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(6048), 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, + [31184] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + ACTIONS(6880), 1, + anon_sym_LBRACE, + STATE(2913), 1, + sym_enumerator_list, + STATE(3257), 1, + sym_attribute_specifier, + ACTIONS(6062), 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(6064), 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, + [31259] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6955), 1, + ACTIONS(6979), 1, anon_sym_PIPE_PIPE, - ACTIONS(6957), 1, + ACTIONS(6981), 1, anon_sym_AMP_AMP, - ACTIONS(6969), 1, + ACTIONS(6993), 1, anon_sym_GT_EQ, - ACTIONS(6973), 1, + ACTIONS(6997), 1, anon_sym_LT_EQ_GT, - ACTIONS(6975), 1, + ACTIONS(6999), 1, anon_sym_or, - ACTIONS(6977), 1, + ACTIONS(7001), 1, anon_sym_and, - ACTIONS(6979), 1, + ACTIONS(7003), 1, anon_sym_not_eq, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6951), 2, + ACTIONS(6975), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6959), 2, + ACTIONS(6983), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(6961), 2, + ACTIONS(6985), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6963), 2, + ACTIONS(6987), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6965), 2, + ACTIONS(6989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6971), 2, + ACTIONS(6995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6953), 3, + ACTIONS(6977), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6967), 3, + ACTIONS(6991), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7015), 6, + ACTIONS(6971), 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(6973), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -327946,80 +328636,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32493] = 25, + [31368] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6955), 1, + ACTIONS(6979), 1, anon_sym_PIPE_PIPE, - ACTIONS(6957), 1, + ACTIONS(6981), 1, anon_sym_AMP_AMP, - ACTIONS(6969), 1, + ACTIONS(6993), 1, anon_sym_GT_EQ, - ACTIONS(6973), 1, + ACTIONS(6997), 1, anon_sym_LT_EQ_GT, - ACTIONS(6975), 1, + ACTIONS(6999), 1, anon_sym_or, - ACTIONS(6977), 1, + ACTIONS(7001), 1, anon_sym_and, - ACTIONS(6979), 1, + ACTIONS(7003), 1, anon_sym_not_eq, - STATE(2491), 1, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7007), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6951), 2, + ACTIONS(6975), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(6959), 2, + ACTIONS(6983), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(6961), 2, + ACTIONS(6985), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(6963), 2, + ACTIONS(6987), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(6965), 2, + ACTIONS(6989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6971), 2, + ACTIONS(6995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6953), 3, + ACTIONS(6977), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6967), 3, + ACTIONS(6991), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7019), 6, + ACTIONS(6710), 6, aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(7021), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(6712), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -328030,47 +328722,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [32602] = 6, + [31481] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, - anon_sym___attribute__, - ACTIONS(6524), 1, - anon_sym___attribute, - STATE(3048), 1, - sym_attribute_specifier, - ACTIONS(6169), 19, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6981), 1, + anon_sym_AMP_AMP, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7001), 1, + anon_sym_and, + ACTIONS(7003), 1, + anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6975), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6985), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6987), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6991), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6481), 7, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + sym_identifier, + ACTIONS(6483), 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_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, + [31586] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7003), 1, + anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6975), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6983), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6985), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(6987), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6991), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6481), 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_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6171), 35, + sym_identifier, + ACTIONS(6483), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -328082,60 +328884,74 @@ 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, + [31687] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(7003), 1, anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [32673] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 1, - anon_sym___attribute__, - ACTIONS(6524), 1, - anon_sym___attribute, - STATE(3024), 1, - sym_attribute_specifier, - ACTIONS(6206), 19, + anon_sym_DASH_GT, + ACTIONS(6975), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6985), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6987), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6991), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6481), 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_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6208), 35, + anon_sym_bitor, + sym_identifier, + ACTIONS(6483), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -328147,60 +328963,73 @@ 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, + [31786] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(7003), 1, anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [32744] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 1, - anon_sym___attribute__, - ACTIONS(6524), 1, - anon_sym___attribute, - STATE(3118), 1, - sym_attribute_specifier, - ACTIONS(6210), 19, + anon_sym_DASH_GT, + ACTIONS(6975), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6987), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(6991), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6481), 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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6212), 35, + sym_identifier, + ACTIONS(6483), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -328212,268 +329041,220 @@ 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, + [31883] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(7003), 1, anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [32815] = 12, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_TILDE, + anon_sym_DASH_GT, + ACTIONS(6975), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5557), 40, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6991), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6481), 14, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, 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, + 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, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [32898] = 12, + ACTIONS(6483), 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, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [31978] = 16, 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, + ACTIONS(5850), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6975), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5557), 40, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6991), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6481), 15, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_CARET, 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, + 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, - 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, + ACTIONS(6483), 21, 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_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, + 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_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32069] = 14, 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, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6997), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6975), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6106), 35, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6483), 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_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, @@ -328485,199 +329266,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [32156] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6981), 1, + anon_sym_AMP_AMP, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6999), 1, + anon_sym_or, + ACTIONS(7001), 1, + anon_sym_and, + ACTIONS(7003), 1, + anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6975), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6985), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6987), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6991), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7009), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + sym_identifier, + ACTIONS(7011), 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, + [32265] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6981), 1, + anon_sym_AMP_AMP, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(6999), 1, + anon_sym_or, + ACTIONS(7001), 1, + anon_sym_and, + ACTIONS(7003), 1, anon_sym_not_eq, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7007), 1, + anon_sym_QMARK, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [33125] = 7, + anon_sym_DASH_GT, + ACTIONS(6975), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6985), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6987), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(6989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6991), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7013), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(7015), 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32378] = 25, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5850), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6981), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6072), 40, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6999), 1, + anon_sym_or, + ACTIONS(7001), 1, + anon_sym_and, + ACTIONS(7003), 1, + anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6975), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6985), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6987), 2, 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, + anon_sym_bitand, + ACTIONS(6989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6991), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7017), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [33198] = 12, + ACTIONS(7019), 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, + [32487] = 27, 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, + ACTIONS(5850), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6981), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(5557), 40, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6999), 1, + anon_sym_or, + ACTIONS(7001), 1, + anon_sym_and, + ACTIONS(7003), 1, + anon_sym_not_eq, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7007), 1, + anon_sym_QMARK, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6975), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(6983), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(6985), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6987), 2, 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, + anon_sym_bitand, + ACTIONS(6989), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6991), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7021), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [33281] = 12, + ACTIONS(7023), 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [32600] = 3, 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, + ACTIONS(5539), 11, + 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_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(5557), 40, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5537), 46, 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, @@ -328701,17 +329657,21 @@ 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, - [33364] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [32665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 18, + ACTIONS(4996), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328730,7 +329690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5543), 38, + ACTIONS(4998), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -328741,6 +329701,7 @@ 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, @@ -328769,10 +329730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_DASH_GT_STAR, - [33431] = 3, + [32730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 18, + ACTIONS(4984), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -328791,7 +329752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5547), 39, + ACTIONS(4986), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -328831,170 +329792,37 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(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_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, - [33561] = 12, - ACTIONS(3), 1, - sym_comment, - 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__, - 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, - [33644] = 12, + [32795] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(7035), 1, + ACTIONS(7025), 1, anon_sym_SEMI, - STATE(2495), 1, + STATE(2516), 1, sym_attribute_specifier, - STATE(2916), 1, + STATE(2932), 1, sym_field_declaration_list, - STATE(7168), 1, + STATE(7145), 1, sym_virtual_specifier, - STATE(7765), 1, + STATE(7912), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - ACTIONS(5559), 6, + ACTIONS(5603), 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, + ACTIONS(5601), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -329035,360 +329863,37 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(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, - 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, - [33794] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5521), 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(5523), 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, - [33861] = 11, - ACTIONS(3), 1, - sym_comment, - 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, - 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(5843), 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, - [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(6522), 1, - anon_sym___attribute__, - ACTIONS(6524), 1, - anon_sym___attribute, - STATE(3033), 1, - sym_attribute_specifier, - ACTIONS(6214), 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(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_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, - [34078] = 12, + [32878] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(7037), 1, + ACTIONS(7027), 1, anon_sym_SEMI, - STATE(2495), 1, + STATE(2516), 1, sym_attribute_specifier, - STATE(2916), 1, + STATE(2932), 1, sym_field_declaration_list, - STATE(7168), 1, + STATE(7145), 1, sym_virtual_specifier, - STATE(7765), 1, + STATE(7912), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - ACTIONS(5559), 6, + ACTIONS(5603), 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, + ACTIONS(5601), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -329429,37 +329934,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [34161] = 12, + [32961] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(7039), 1, + ACTIONS(7029), 1, anon_sym_SEMI, - STATE(2495), 1, + STATE(2516), 1, sym_attribute_specifier, - STATE(2916), 1, + STATE(2932), 1, sym_field_declaration_list, - STATE(7168), 1, + STATE(7145), 1, sym_virtual_specifier, - STATE(7765), 1, + STATE(7912), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - ACTIONS(5559), 6, + ACTIONS(5603), 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, + ACTIONS(5601), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -329500,324 +330005,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [34244] = 8, + [33044] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym___attribute__, - ACTIONS(6586), 1, - anon_sym___attribute, - ACTIONS(6852), 1, - anon_sym_LBRACE, - STATE(2894), 1, - sym_enumerator_list, - STATE(3233), 1, - sym_attribute_specifier, - ACTIONS(6066), 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(6068), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5850), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6426), 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, - [34319] = 10, - ACTIONS(3), 1, - sym_comment, - 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(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, - 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(6430), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6395), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(6979), 1, anon_sym_PIPE_PIPE, + ACTIONS(6981), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6993), 1, 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, + ACTIONS(6997), 1, anon_sym_LT_EQ_GT, + ACTIONS(6999), 1, anon_sym_or, + ACTIONS(7001), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, + ACTIONS(7003), 1, anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [34398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6660), 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, - 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, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6658), 31, + ACTIONS(6975), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6983), 2, 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, + ACTIONS(6985), 2, + anon_sym_CARET, 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, - [34463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5641), 18, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6987), 2, 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(5643), 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(6989), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(6995), 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, - [34528] = 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, - anon_sym_DASH_GT, - ACTIONS(6953), 3, + ACTIONS(6977), 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, + ACTIONS(6991), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7031), 6, + 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(6520), 23, + ACTIONS(7033), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329829,138 +330089,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, - [34609] = 12, + [33153] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - STATE(2491), 1, + ACTIONS(6979), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6981), 1, + anon_sym_AMP_AMP, + ACTIONS(6993), 1, + anon_sym_GT_EQ, + ACTIONS(6997), 1, + anon_sym_LT_EQ_GT, + ACTIONS(6999), 1, + anon_sym_or, + ACTIONS(7001), 1, + anon_sym_and, + ACTIONS(7003), 1, + anon_sym_not_eq, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6951), 2, + ACTIONS(6975), 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, + ACTIONS(6983), 2, 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, + ACTIONS(6985), 2, + anon_sym_CARET, anon_sym_xor, + ACTIONS(6987), 2, + anon_sym_AMP, anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(6520), 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_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6989), 2, 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, - [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, - anon_sym_DASH_GT, - ACTIONS(6951), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(6971), 2, + ACTIONS(6995), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6953), 3, + ACTIONS(6977), 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, + ACTIONS(6991), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(7035), 6, + 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(6520), 23, + ACTIONS(7037), 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_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -329972,11 +330173,27 @@ 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, - [34777] = 3, + [33262] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 18, + ACTIONS(2507), 1, + anon_sym_LBRACE, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(6955), 1, + anon_sym_LBRACK, + ACTIONS(6957), 1, + sym_auto, + ACTIONS(6959), 1, + anon_sym_decltype, + STATE(3209), 1, + sym_new_declarator, + STATE(3234), 1, + sym_decltype_auto, + STATE(3598), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5846), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -329986,29 +330203,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___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(5008), 39, + ACTIONS(5848), 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___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -330016,91 +330228,169 @@ 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_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [34842] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [33343] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7039), 1, + anon_sym_SEMI, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 6, + 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, + anon_sym_LBRACK_LBRACK, + ACTIONS(5601), 40, 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___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, + [33426] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6664), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5012), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7041), 1, + anon_sym_SEMI, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 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_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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_LBRACK_LBRACK, + ACTIONS(5601), 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_final, - anon_sym_override, - anon_sym_DASH_GT_STAR, - [34907] = 3, + anon_sym_template, + anon_sym_operator, + [33509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 18, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330119,7 +330409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5000), 39, + ACTIONS(5472), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -330130,7 +330420,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, @@ -330159,72 +330448,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_DASH_GT_STAR, - [34972] = 3, + [33576] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 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, + ACTIONS(6664), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5016), 39, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7043), 1, + anon_sym_SEMI, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 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_GT_EQ, - anon_sym___attribute__, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + ACTIONS(5601), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_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, + [33659] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7045), 1, + anon_sym_SEMI, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [35037] = 3, + ACTIONS(5603), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5601), 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, + [33742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 18, + ACTIONS(6512), 1, + anon_sym___attribute__, + ACTIONS(6514), 1, + anon_sym___attribute, + STATE(3087), 1, + sym_attribute_specifier, + ACTIONS(6181), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330238,12 +330613,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(5004), 39, + ACTIONS(6183), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -330253,8 +330629,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, @@ -330268,11 +330642,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, @@ -330280,13 +330654,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [33813] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7047), 1, + anon_sym_SEMI, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [35102] = 3, + ACTIONS(5603), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5601), 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, + [33896] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7049), 1, + anon_sym_SEMI, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5601), 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, + [33979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 18, + ACTIONS(6512), 1, + anon_sym___attribute__, + ACTIONS(6514), 1, + anon_sym___attribute, + STATE(3109), 1, + sym_attribute_specifier, + ACTIONS(6208), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330300,12 +330820,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(4978), 39, + ACTIONS(6210), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -330315,8 +330836,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, @@ -330330,11 +330849,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, @@ -330342,13 +330861,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, sym_auto, anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [34050] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7051), 1, + anon_sym_SEMI, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - anon_sym_DASH_GT_STAR, - [35167] = 3, + ACTIONS(5603), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5601), 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, + [34133] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7053), 1, + anon_sym_SEMI, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5601), 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, + [34216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 18, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330367,7 +331028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4982), 39, + ACTIONS(5472), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -330378,7 +331039,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, @@ -330407,21 +331067,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_DASH_GT_STAR, - [35232] = 6, + [34283] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6522), 1, - anon_sym___attribute__, - ACTIONS(6524), 1, - anon_sym___attribute, - STATE(3097), 1, - sym_attribute_specifier, - ACTIONS(6161), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6977), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -330431,23 +331103,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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6163), 35, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6483), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -330459,34 +331136,35 @@ 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, + [34364] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [35303] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6522), 1, - anon_sym___attribute__, - ACTIONS(6524), 1, - anon_sym___attribute, - STATE(3078), 1, - sym_attribute_specifier, - ACTIONS(6108), 19, + anon_sym_DASH_GT, + ACTIONS(6975), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6977), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 20, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -330496,23 +331174,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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6110), 35, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6483), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -330524,59 +331207,67 @@ 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, + [34447] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [35374] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6584), 1, - anon_sym___attribute__, - ACTIONS(6586), 1, - anon_sym___attribute, - STATE(3229), 1, - sym_attribute_specifier, - ACTIONS(6149), 20, + anon_sym_DASH_GT, + ACTIONS(6975), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(6995), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6977), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 18, + aux_sym_preproc_elif_token1, 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_DOT, - ACTIONS(6151), 33, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6483), 23, 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_LBRACE, - anon_sym_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -330584,33 +331275,15 @@ 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, - [35444] = 6, + [34532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym___attribute__, - ACTIONS(6586), 1, - anon_sym___attribute, - STATE(3159), 1, - sym_attribute_specifier, - ACTIONS(6169), 20, + ACTIONS(5521), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330620,25 +331293,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_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6171), 33, + anon_sym_DASH_GT, + ACTIONS(5523), 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, @@ -330648,55 +331323,68 @@ 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, - [35514] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_DASH_GT_STAR, + [34597] = 12, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5078), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(5955), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5167), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7055), 1, + anon_sym_SEMI, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 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, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5164), 39, + ACTIONS(5601), 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, @@ -330720,25 +331408,21 @@ 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_try, - anon_sym_requires, - [35584] = 6, + anon_sym_template, + anon_sym_operator, + [34680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6512), 1, anon_sym___attribute__, - ACTIONS(6586), 1, + ACTIONS(6514), 1, anon_sym___attribute, - STATE(3167), 1, + STATE(3147), 1, sym_attribute_specifier, - ACTIONS(6157), 20, + ACTIONS(6204), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330748,25 +331432,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(6159), 33, + anon_sym_DASH_GT, + ACTIONS(6206), 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, @@ -330776,6 +331461,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, @@ -330789,20 +331475,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, - [35654] = 6, + anon_sym_DASH_GT_STAR, + [34751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6512), 1, anon_sym___attribute__, - ACTIONS(6586), 1, + ACTIONS(6514), 1, anon_sym___attribute, - STATE(3171), 1, + STATE(3153), 1, sym_attribute_specifier, - ACTIONS(6214), 20, + ACTIONS(6113), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -330812,25 +331497,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(6216), 33, + anon_sym_DASH_GT, + ACTIONS(6115), 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, @@ -330840,6 +331526,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, @@ -330853,145 +331540,143 @@ 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, - [35724] = 3, + anon_sym_DASH_GT_STAR, + [34822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 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(5699), 36, + ACTIONS(6608), 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___attribute__, + 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, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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(6606), 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_DASH_GT_STAR, - [35788] = 6, + anon_sym_typename, + anon_sym_template, + [34887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym___attribute__, - ACTIONS(6586), 1, - anon_sym___attribute, - STATE(3174), 1, - sym_attribute_specifier, - ACTIONS(6153), 20, + ACTIONS(5617), 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_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(6155), 33, + sym_identifier, + sym_literal_suffix, + ACTIONS(5619), 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_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, - [35858] = 6, + 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, + [34952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6512), 1, anon_sym___attribute__, - ACTIONS(6586), 1, + ACTIONS(6514), 1, anon_sym___attribute, - STATE(3245), 1, + STATE(3149), 1, sym_attribute_specifier, - ACTIONS(6100), 20, + ACTIONS(6212), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331001,25 +331686,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(6102), 33, + anon_sym_DASH_GT, + ACTIONS(6214), 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, @@ -331029,6 +331715,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, @@ -331042,20 +331729,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, - [35928] = 6, + anon_sym_DASH_GT_STAR, + [35023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6512), 1, anon_sym___attribute__, - ACTIONS(6586), 1, + ACTIONS(6514), 1, anon_sym___attribute, - STATE(3207), 1, + STATE(3057), 1, sym_attribute_specifier, - ACTIONS(6210), 20, + ACTIONS(6100), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331065,25 +331751,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(6212), 33, + anon_sym_DASH_GT, + ACTIONS(6102), 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, @@ -331093,6 +331780,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, @@ -331106,17 +331794,30 @@ 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, - [35998] = 4, + anon_sym_DASH_GT_STAR, + [35094] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4174), 26, - aux_sym_preproc_elif_token1, + ACTIONS(2507), 1, + anon_sym_LBRACE, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(6955), 1, + anon_sym_LBRACK, + ACTIONS(6957), 1, + sym_auto, + ACTIONS(6959), 1, + anon_sym_decltype, + STATE(3218), 1, + sym_new_declarator, + STATE(3234), 1, + sym_decltype_auto, + STATE(3625), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5874), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331126,36 +331827,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_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(4166), 29, + ACTIONS(5876), 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_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, @@ -331163,25 +331852,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [36064] = 6, + anon_sym_GT2, + [35175] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6512), 1, anon_sym___attribute__, - ACTIONS(6586), 1, + ACTIONS(6514), 1, anon_sym___attribute, - STATE(3227), 1, + STATE(3108), 1, sym_attribute_specifier, - ACTIONS(6206), 20, + ACTIONS(6127), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331191,25 +331886,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(6208), 33, + anon_sym_DASH_GT, + ACTIONS(6129), 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, @@ -331219,6 +331915,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, @@ -331232,89 +331929,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, - [36134] = 10, + anon_sym_DASH_GT_STAR, + [35246] = 6, ACTIONS(3), 1, sym_comment, - 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, - anon_sym_SEMI, - ACTIONS(4194), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4164), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(6512), 1, anon_sym___attribute__, + ACTIONS(6514), 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_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, - [36212] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + STATE(3034), 1, + sym_attribute_specifier, + ACTIONS(6131), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331329,9 +331956,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(5517), 35, + ACTIONS(6133), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -331354,11 +331984,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, @@ -331367,143 +331997,117 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [36280] = 6, + [35317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym___attribute__, - ACTIONS(6586), 1, - anon_sym___attribute, - STATE(3201), 1, - sym_attribute_specifier, - ACTIONS(6104), 20, + ACTIONS(5502), 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_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(6106), 33, + sym_identifier, + sym_literal_suffix, + ACTIONS(5504), 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_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, - [36350] = 27, + 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, + [35382] = 10, 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, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(7057), 1, + anon_sym_LBRACK, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3764), 1, + sym_template_argument_list, + ACTIONS(4194), 2, anon_sym_LPAREN2, - ACTIONS(4312), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4166), 4, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(4314), 1, anon_sym_AMP_AMP, - ACTIONS(4316), 1, + anon_sym_SEMI, + ACTIONS(4182), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 41, anon_sym_AMP, - ACTIONS(5481), 1, - sym_identifier, - ACTIONS(5875), 1, - anon_sym_LBRACK, - 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(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, - 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_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, @@ -331516,10 +332120,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [36462] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [35460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5716), 20, + ACTIONS(5823), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331540,7 +332151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5718), 36, + ACTIONS(5825), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -331577,16 +332188,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [36526] = 6, + [35524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym___attribute__, - ACTIONS(6586), 1, - anon_sym___attribute, - STATE(3249), 1, - sym_attribute_specifier, - ACTIONS(6161), 20, + ACTIONS(5807), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331596,25 +332201,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(6163), 33, + anon_sym_DASH_GT, + ACTIONS(5809), 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, @@ -331624,6 +332232,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, @@ -331637,34 +332246,26 @@ 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, - [36596] = 8, + anon_sym_DASH_GT_STAR, + [35588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 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), 6, + ACTIONS(5472), 12, + 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, anon_sym_LBRACK_LBRACK, - ACTIONS(4164), 42, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5470), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -331673,12 +332274,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, @@ -331702,106 +332297,23 @@ 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_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_final, + anon_sym_override, 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, + anon_sym_try, + anon_sym_requires, + [35652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym___attribute__, - ACTIONS(6586), 1, - anon_sym___attribute, - STATE(3156), 1, - sym_attribute_specifier, - ACTIONS(6165), 20, + ACTIONS(5653), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331811,25 +332323,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(6167), 33, + anon_sym_DASH_GT, + ACTIONS(5655), 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, @@ -331839,6 +332354,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, @@ -331852,35 +332368,33 @@ 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, - [36852] = 9, + anon_sym_DASH_GT_STAR, + [35716] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(4192), 1, - anon_sym_SEMI, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - STATE(2660), 1, + STATE(2674), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2756), 1, + STATE(2795), 1, sym_template_argument_list, - ACTIONS(4194), 4, + ACTIONS(4182), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4172), 5, + ACTIONS(4166), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(4164), 42, + ACTIONS(4159), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -331923,16 +332437,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [36928] = 6, + [35790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym___attribute__, - ACTIONS(6586), 1, - anon_sym___attribute, - STATE(3220), 1, - sym_attribute_specifier, - ACTIONS(6108), 20, + ACTIONS(7060), 1, + sym_literal_suffix, + ACTIONS(4168), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -331942,26 +332453,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(6110), 33, + sym_identifier, + ACTIONS(4161), 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, @@ -331970,27 +332490,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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [36998] = 3, + [35856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 20, + ACTIONS(7062), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332004,25 +332517,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(5766), 36, + sym_identifier, + sym_literal_suffix, + ACTIONS(7064), 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, @@ -332035,23 +332555,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, - [37062] = 3, + anon_sym_DASH_GT, + [35920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5742), 20, + ACTIONS(5674), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332072,7 +332584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5744), 36, + ACTIONS(5676), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -332109,74 +332621,74 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [37126] = 30, + [35984] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7054), 1, + ACTIONS(7074), 1, anon_sym___attribute__, - ACTIONS(7057), 1, + ACTIONS(7077), 1, anon_sym___attribute, - ACTIONS(7060), 1, + ACTIONS(7080), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7063), 1, + ACTIONS(7083), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7073), 1, + ACTIONS(7093), 1, anon_sym_DASH_GT, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7079), 1, + ACTIONS(7102), 1, anon_sym_requires, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(4688), 1, + STATE(4774), 1, sym__function_attributes_start, - STATE(4971), 1, + STATE(4986), 1, sym_ref_qualifier, - STATE(5584), 1, + STATE(5671), 1, sym_trailing_return_type, - STATE(5845), 1, + STATE(5761), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(4140), 2, + ACTIONS(7095), 2, + anon_sym_final, + anon_sym_override, + STATE(4155), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4332), 2, + STATE(4343), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5965), 2, + STATE(5928), 2, sym__function_postfix, sym_requires_clause, - STATE(5298), 3, + STATE(5359), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7046), 7, + ACTIONS(7066), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -332184,7 +332696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -332197,11 +332709,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [37244] = 3, + [36102] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3237), 1, + sym_attribute_specifier, + ACTIONS(6204), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332211,36 +332728,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(7083), 29, + ACTIONS(6206), 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, @@ -332249,19 +332756,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, - [37308] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [36172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 20, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3241), 1, + sym_attribute_specifier, + ACTIONS(6113), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332271,28 +332792,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(5778), 36, + ACTIONS(6115), 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, @@ -332302,7 +332820,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, @@ -332316,74 +332833,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, sym_auto, anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [37372] = 3, + anon_sym_GT2, + [36242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 12, + ACTIONS(5470), 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(5472), 39, + 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___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5541), 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_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_operator, - anon_sym_try, - anon_sym_requires, - [37436] = 3, + anon_sym_DASH_GT_STAR, + [36306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 20, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3245), 1, + sym_attribute_specifier, + ACTIONS(6212), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332393,28 +332917,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(5802), 36, + ACTIONS(6214), 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, @@ -332424,7 +332945,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, @@ -332438,13 +332958,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, - [37500] = 3, + anon_sym_GT2, + [36376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 17, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3247), 1, + sym_attribute_specifier, + ACTIONS(6100), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332454,26 +332981,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(5543), 39, + ACTIONS(6102), 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, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -332483,128 +333009,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_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, - [37564] = 30, + anon_sym_GT2, + [36446] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, - anon_sym_AMP_AMP, - ACTIONS(7050), 1, - anon_sym_AMP, - ACTIONS(7054), 1, + ACTIONS(6668), 1, anon_sym___attribute__, - ACTIONS(7057), 1, + ACTIONS(6670), 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(7088), 1, - anon_sym_requires, - STATE(4036), 1, - sym_alignas_qualifier, - STATE(4743), 1, - sym__function_attributes_start, - STATE(4967), 1, - sym_ref_qualifier, - STATE(5594), 1, - sym_trailing_return_type, - STATE(5736), 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, + STATE(3250), 1, 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(5333), 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, - [37682] = 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(6112), 19, + ACTIONS(6127), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332614,25 +333045,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, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6114), 30, + ACTIONS(6129), 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, @@ -332640,7 +333073,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, @@ -332654,11 +333086,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_STAR, - [37755] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [36516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 21, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3251), 1, + sym_attribute_specifier, + ACTIONS(6131), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332673,14 +333114,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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5778), 34, + ACTIONS(6133), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -332688,7 +333128,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, @@ -332715,7 +333154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [37818] = 26, + [36586] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -332726,53 +333165,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, - anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(7097), 1, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + ACTIONS(4320), 1, anon_sym_STAR, - ACTIONS(7099), 1, + ACTIONS(4322), 1, anon_sym_AMP_AMP, - ACTIONS(7101), 1, + ACTIONS(4324), 1, anon_sym_AMP, - ACTIONS(7103), 1, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(5860), 1, + anon_sym_RPAREN, + ACTIONS(5872), 1, anon_sym_LBRACK, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + STATE(3134), 1, + sym_parameter_list, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6451), 1, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6541), 1, sym__declarator, - STATE(8286), 1, + STATE(6775), 1, + sym__abstract_declarator, + STATE(8850), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2912), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3994), 2, + STATE(4232), 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, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -332784,7 +333225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -332798,7 +333239,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [37927] = 26, + [36698] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3256), 1, + sym_attribute_specifier, + ACTIONS(6228), 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(6230), 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, + [36768] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -332809,53 +333314,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, - anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(7097), 1, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + ACTIONS(4320), 1, anon_sym_STAR, - ACTIONS(7099), 1, + ACTIONS(4322), 1, anon_sym_AMP_AMP, - ACTIONS(7101), 1, + ACTIONS(4324), 1, anon_sym_AMP, - ACTIONS(7103), 1, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(5872), 1, anon_sym_LBRACK, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(6763), 1, + anon_sym_RPAREN, + STATE(3134), 1, + sym_parameter_list, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6401), 1, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6556), 1, sym__declarator, - STATE(8286), 1, + STATE(6771), 1, + sym__abstract_declarator, + STATE(8850), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3999), 2, + STATE(4232), 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, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -332867,7 +333374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -332881,75 +333388,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [38036] = 8, + [36880] = 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, - 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, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3258), 1, + sym_attribute_specifier, + ACTIONS(6181), 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(6183), 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, + [36950] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, anon_sym___attribute, + STATE(3259), 1, + sym_attribute_specifier, + ACTIONS(6208), 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(6210), 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___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(4172), 41, + anon_sym_QMARK, + anon_sym_STAR_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, + [37020] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3260), 1, + sym_attribute_specifier, + ACTIONS(6150), 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(6152), 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, + 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, + [37090] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6668), 1, + anon_sym___attribute__, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3262), 1, + sym_attribute_specifier, + ACTIONS(6159), 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(6161), 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___extension__, - anon_sym_virtual, - anon_sym_extern, + 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, + [37160] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6668), 1, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + ACTIONS(6670), 1, + anon_sym___attribute, + STATE(3217), 1, + sym_attribute_specifier, + ACTIONS(6192), 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(6194), 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_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__, + 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_try, - anon_sym_requires, - [38109] = 3, + anon_sym_GT2, + [37230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 21, + STATE(2778), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6888), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5537), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -332959,27 +333728,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(5802), 34, + anon_sym_DASH_GT, + ACTIONS(5539), 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___attribute__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -332989,49 +333754,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, anon_sym_LT_EQ_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, - [38172] = 5, + anon_sym_DASH_GT_STAR, + [37298] = 9, ACTIONS(3), 1, sym_comment, - STATE(2505), 1, - sym_attribute_specifier, - ACTIONS(5489), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6216), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4180), 1, + anon_sym_SEMI, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2795), 1, + sym_template_argument_list, + ACTIONS(4182), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4166), 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_EQ, - anon_sym_GT2, - ACTIONS(6214), 40, + ACTIONS(4159), 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, @@ -333068,50 +333838,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [38239] = 5, + [37374] = 30, ACTIONS(3), 1, sym_comment, - STATE(2516), 1, - sym_attribute_specifier, - ACTIONS(5489), 2, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7074), 1, anon_sym___attribute__, + ACTIONS(7077), 1, anon_sym___attribute, - ACTIONS(6106), 12, - anon_sym_DOT_DOT_DOT, + ACTIONS(7080), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7105), 1, + anon_sym_requires, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(4743), 1, + sym__function_attributes_start, + STATE(5009), 1, + sym_ref_qualifier, + STATE(5642), 1, + sym_trailing_return_type, + STATE(5744), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4155), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4343), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5330), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 7, 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_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6104), 40, - anon_sym_AMP, + anon_sym_try, + ACTIONS(7072), 12, 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, @@ -333123,19 +333926,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, - sym_auto, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38306] = 4, + [37492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4174), 24, + ACTIONS(5713), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -333149,18 +333943,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_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(4166), 30, + anon_sym_DASH_GT, + ACTIONS(5715), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -333170,11 +333960,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_COLON, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -333186,45 +333974,51 @@ 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, - [38371] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [37556] = 6, 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, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5089), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(5937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5141), 10, 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(6108), 40, + ACTIONS(5138), 39, 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, @@ -333248,95 +334042,77 @@ 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__, + anon_sym___asm, sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [38438] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [37626] = 3, 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(7097), 1, + ACTIONS(5811), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7099), 1, - anon_sym_AMP_AMP, - ACTIONS(7101), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7103), 1, + 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(5813), 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, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5896), 1, - sym__scope_resolution, - STATE(6437), 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(2980), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3997), 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, - [38547] = 26, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [37690] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -333347,53 +334123,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 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, + anon_sym_STAR, ACTIONS(7109), 1, + anon_sym_AMP_AMP, + ACTIONS(7111), 1, anon_sym_AMP, - STATE(4069), 1, + ACTIONS(7113), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5949), 1, sym__scope_resolution, - STATE(6276), 1, + STATE(6251), 1, sym__declarator, - STATE(8504), 1, + STATE(8245), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(3007), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, STATE(4005), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -333405,7 +334181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -333419,80 +334195,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [38656] = 5, + [37799] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5749), 4, - anon_sym_EQ, - 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, - anon_sym_PLUS_EQ, - anon_sym_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(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, + ACTIONS(5850), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(6426), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7121), 1, + anon_sym_AMP, + ACTIONS(7127), 1, + anon_sym_GT_EQ, + ACTIONS(7131), 1, anon_sym_LT_EQ_GT, + ACTIONS(7133), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(4174), 22, - aux_sym_preproc_elif_token1, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6481), 6, + anon_sym_PIPE, + anon_sym_CARET, + 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, - [38723] = 7, + ACTIONS(6483), 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, + [37894] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(4932), 1, + ACTIONS(2619), 1, anon_sym_LBRACE, - ACTIONS(4939), 1, - anon_sym_LT, - STATE(2705), 1, - sym_template_argument_list, - ACTIONS(4934), 18, + ACTIONS(7135), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7139), 1, + sym_auto, + ACTIONS(7141), 1, + anon_sym_decltype, + STATE(3423), 1, + sym_new_declarator, + STATE(3582), 1, + sym_decltype_auto, + STATE(3889), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5846), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -333503,26 +334302,21 @@ 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, - ACTIONS(4927), 33, + anon_sym_DASH_GT, + ACTIONS(5848), 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_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -333534,20 +334328,109 @@ 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, + [37973] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7155), 1, + anon_sym___asm, + ACTIONS(7158), 1, anon_sym_DASH_GT, - [38794] = 26, + ACTIONS(7160), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4865), 1, + sym__function_attributes_start, + STATE(5054), 1, + sym_ref_qualifier, + STATE(5561), 1, + sym_trailing_return_type, + STATE(5754), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7152), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5378), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7143), 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, + [38090] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -333556,53 +334439,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, + anon_sym_AMP, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 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(4069), 1, + anon_sym_LBRACK, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5923), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6320), 1, + STATE(6541), 1, sym__declarator, - STATE(8339), 1, + STATE(8850), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2925), 2, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4013), 2, + STATE(4015), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -333614,7 +334495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -333628,20 +334509,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [38903] = 8, + [38199] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2619), 1, + anon_sym_LBRACE, + ACTIONS(7135), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_LBRACK, + ACTIONS(7139), 1, + sym_auto, + ACTIONS(7141), 1, + anon_sym_decltype, + STATE(3496), 1, + sym_new_declarator, + STATE(3582), 1, + sym_decltype_auto, + STATE(3907), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5874), 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(5876), 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, + [38278] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(6832), 1, anon_sym___attribute__, - ACTIONS(6793), 1, + ACTIONS(6834), 1, anon_sym___attribute, - ACTIONS(7007), 1, + ACTIONS(6965), 1, anon_sym_LBRACE, - STATE(3062), 1, + STATE(3084), 1, sym_enumerator_list, - STATE(3442), 1, + STATE(3535), 1, sym_attribute_specifier, - ACTIONS(6072), 16, + ACTIONS(6046), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -333658,7 +334607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6074), 34, + ACTIONS(6048), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -333693,285 +334642,95 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [38976] = 26, + [38351] = 11, 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, + ACTIONS(2619), 1, + anon_sym_LBRACE, + ACTIONS(7135), 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, + ACTIONS(7137), 1, anon_sym_LBRACK, - 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(4325), 1, - sym_alignas_qualifier, - STATE(5923), 1, - sym__scope_resolution, - STATE(6321), 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(3962), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4015), 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, - [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, + ACTIONS(7139), 1, + sym_auto, + ACTIONS(7141), 1, + anon_sym_decltype, + STATE(3582), 1, + sym_decltype_auto, + STATE(3587), 1, + sym_new_declarator, + STATE(3957), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5885), 16, 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_DOT, + anon_sym_DASH_GT, + ACTIONS(5887), 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(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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [38430] = 11, 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, + ACTIONS(2619), 1, + anon_sym_LBRACE, + ACTIONS(7135), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, - anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7137), 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(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5895), 1, - sym__scope_resolution, - STATE(6317), 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(2956), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3975), 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, - [39355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5697), 21, + ACTIONS(7139), 1, + sym_auto, + ACTIONS(7141), 1, + anon_sym_decltype, + STATE(3479), 1, + sym_new_declarator, + STATE(3582), 1, + sym_decltype_auto, + STATE(3962), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5881), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -333981,28 +334740,84 @@ 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_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_LT_EQ_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, + [38509] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + ACTIONS(6965), 1, + anon_sym_LBRACE, + STATE(3091), 1, + sym_enumerator_list, + STATE(3454), 1, + sym_attribute_specifier, + ACTIONS(6062), 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, - ACTIONS(5699), 34, + anon_sym_DASH_GT, + ACTIONS(6064), 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, @@ -334011,94 +334826,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_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, - [39418] = 26, + anon_sym_DASH_GT_STAR, + [38582] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7127), 1, + anon_sym_GT_EQ, + ACTIONS(7131), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7119), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7125), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6481), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6483), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, 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_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, + anon_sym_bitand, + [38673] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2526), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6129), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5923), 1, - sym__scope_resolution, - STATE(6552), 1, - sym__declarator, - STATE(8864), 1, - sym_ms_based_modifier, - ACTIONS(3337), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3341), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2930), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(3973), 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_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6127), 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, @@ -334111,77 +334972,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [39527] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_template, - ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2997), 1, + [38740] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2527), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6133), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5923), 1, - sym__scope_resolution, - STATE(6630), 1, - sym__declarator, - STATE(8864), 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(4014), 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_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6131), 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, @@ -334194,78 +335034,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [39636] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, 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, + [38807] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7223), 1, + ACTIONS(7070), 1, anon_sym_AMP, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + ACTIONS(7080), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7102), 1, + anon_sym_requires, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7166), 1, + anon_sym_DASH_GT, + STATE(4041), 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, + STATE(4902), 1, + sym__function_attributes_start, + STATE(5040), 1, + sym_ref_qualifier, + STATE(5671), 1, + sym_trailing_return_type, + STATE(6091), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2933), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4026), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7095), 2, + anon_sym_final, + anon_sym_override, + STATE(4155), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4343), 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, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5387), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7072), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -334277,72 +335128,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [39745] = 26, + [38924] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7015), 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, + ACTIONS(7127), 1, anon_sym_GT_EQ, - ACTIONS(7247), 1, + ACTIONS(7131), 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7225), 2, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7235), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7245), 2, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7227), 3, + ACTIONS(7119), 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, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 20, + ACTIONS(6481), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6483), 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_SEMI, anon_sym_RBRACE, anon_sym_RBRACK, @@ -334360,99 +335198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [39854] = 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(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(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5896), 1, - sym__scope_resolution, - STATE(6696), 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(4027), 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, - [39963] = 6, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [39013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6890), 1, - sym_auto, - ACTIONS(6892), 1, - anon_sym_decltype, - STATE(3115), 1, - sym_decltype_auto, - ACTIONS(5533), 19, + ACTIONS(5480), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -334472,7 +335224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5535), 33, + ACTIONS(5482), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -334482,6 +335234,7 @@ 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, @@ -334505,243 +335258,164 @@ 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, - [40032] = 26, + [39076] = 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, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, - anon_sym_TILDE, - ACTIONS(5481), 1, - sym_identifier, - ACTIONS(7103), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7257), 1, - anon_sym_STAR, - ACTIONS(7259), 1, - anon_sym_AMP_AMP, - ACTIONS(7261), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7009), 1, + anon_sym_EQ, + ACTIONS(7121), 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(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(2936), 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, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [40141] = 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, + ACTIONS(7127), 1, + anon_sym_GT_EQ, + ACTIONS(7131), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7170), 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(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(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, + anon_sym_or, + ACTIONS(7178), 1, + anon_sym_and, + ACTIONS(7180), 1, + anon_sym_bitor, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7125), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7011), 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, + [39185] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6985), 1, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7013), 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, + ACTIONS(7121), 1, anon_sym_AMP, - ACTIONS(7243), 1, + ACTIONS(7127), 1, anon_sym_GT_EQ, - ACTIONS(7247), 1, + ACTIONS(7131), 1, anon_sym_LT_EQ_GT, - ACTIONS(7249), 1, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7170), 1, + anon_sym_AMP_AMP, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, anon_sym_or, - ACTIONS(7251), 1, + ACTIONS(7178), 1, anon_sym_and, - ACTIONS(7253), 1, + ACTIONS(7180), 1, anon_sym_bitor, - ACTIONS(7255), 1, - anon_sym_bitand, - STATE(2491), 1, + ACTIONS(7182), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7225), 2, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7235), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7245), 2, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7227), 3, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7239), 3, + ACTIONS(7123), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7241), 3, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6987), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(7015), 18, 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, @@ -334755,129 +335429,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [40359] = 3, + [39298] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(5716), 21, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7184), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7186), 1, + anon_sym_COMMA, + ACTIONS(7188), 1, + anon_sym_RPAREN, + ACTIONS(7190), 1, anon_sym_DASH, + ACTIONS(7192), 1, anon_sym_PLUS, + ACTIONS(7194), 1, anon_sym_STAR, + ACTIONS(7196), 1, anon_sym_SLASH, + ACTIONS(7198), 1, anon_sym_PERCENT, + ACTIONS(7200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7202), 1, + anon_sym_AMP_AMP, + ACTIONS(7204), 1, anon_sym_PIPE, + ACTIONS(7206), 1, anon_sym_CARET, + ACTIONS(7208), 1, anon_sym_AMP, + ACTIONS(7210), 1, + anon_sym_EQ_EQ, + ACTIONS(7212), 1, + anon_sym_BANG_EQ, + ACTIONS(7214), 1, anon_sym_GT, + ACTIONS(7216), 1, anon_sym_GT_EQ, + ACTIONS(7218), 1, anon_sym_LT_EQ, + ACTIONS(7220), 1, anon_sym_LT, + ACTIONS(7222), 1, anon_sym_LT_LT, + ACTIONS(7224), 1, 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(5718), 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, + ACTIONS(7226), 1, anon_sym_LBRACK, + ACTIONS(7228), 1, + anon_sym_EQ, + ACTIONS(7230), 1, anon_sym_QMARK, + ACTIONS(7232), 1, anon_sym_STAR_EQ, + ACTIONS(7234), 1, anon_sym_SLASH_EQ, + ACTIONS(7236), 1, anon_sym_PERCENT_EQ, + ACTIONS(7238), 1, anon_sym_PLUS_EQ, + ACTIONS(7240), 1, anon_sym_DASH_EQ, + ACTIONS(7242), 1, anon_sym_LT_LT_EQ, + ACTIONS(7244), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7246), 1, anon_sym_AMP_EQ, + ACTIONS(7248), 1, anon_sym_CARET_EQ, + ACTIONS(7250), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, + ACTIONS(7256), 1, + anon_sym_or, + ACTIONS(7258), 1, + anon_sym_and, + ACTIONS(7260), 1, anon_sym_bitor, + ACTIONS(7262), 1, + anon_sym_xor, + ACTIONS(7264), 1, anon_sym_bitand, + ACTIONS(7266), 1, anon_sym_not_eq, + ACTIONS(7272), 1, + anon_sym_DOT_STAR, + ACTIONS(7274), 1, + anon_sym_DASH_GT_STAR, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7270), 2, + anon_sym_DOT, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [40422] = 26, + ACTIONS(7252), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [39459] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6993), 1, + ACTIONS(7017), 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, + ACTIONS(7121), 1, anon_sym_AMP, - ACTIONS(7243), 1, + ACTIONS(7127), 1, anon_sym_GT_EQ, - ACTIONS(7247), 1, + ACTIONS(7131), 1, anon_sym_LT_EQ_GT, - ACTIONS(7249), 1, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7170), 1, + anon_sym_AMP_AMP, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, anon_sym_or, - ACTIONS(7251), 1, + ACTIONS(7178), 1, anon_sym_and, - ACTIONS(7253), 1, + ACTIONS(7180), 1, anon_sym_bitor, - ACTIONS(7255), 1, - anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7225), 2, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7235), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7245), 2, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7227), 3, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7239), 3, + ACTIONS(7123), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7241), 3, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6995), 20, + ACTIONS(7019), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -334898,77 +335621,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [40531] = 26, + [39568] = 6, 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, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(2795), 1, + sym_template_argument_list, + ACTIONS(4180), 7, 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5839), 45, 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_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, @@ -334981,77 +335675,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [40640] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1268), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, - ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(2997), 1, + [39637] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2467), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6206), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6204), 40, 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_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, @@ -335064,41 +335739,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [40749] = 8, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [39704] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7093), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7095), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - STATE(3296), 1, - sym_parameter_list, - STATE(3129), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6090), 19, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7131), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6092), 30, + ACTIONS(6483), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -335107,6 +335797,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_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -335121,15 +335814,419 @@ 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, + [39789] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 1, + anon_sym_const, + ACTIONS(5011), 1, + anon_sym_AMP, + ACTIONS(5004), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(5009), 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(5002), 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(5007), 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, + [39860] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7155), 1, + anon_sym___asm, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(7276), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4892), 1, + sym__function_attributes_start, + STATE(5050), 1, + sym_ref_qualifier, + STATE(5525), 1, + sym_trailing_return_type, + STATE(5769), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7095), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7152), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5373), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(7143), 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, + [39977] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2568), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6214), 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(6212), 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, + [40044] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7080), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7102), 1, + anon_sym_requires, + ACTIONS(7155), 1, + anon_sym___asm, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7279), 1, + anon_sym_DASH_GT, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(4889), 1, + sym__function_attributes_start, + STATE(5032), 1, + sym_ref_qualifier, + STATE(5671), 1, + sym_trailing_return_type, + STATE(5797), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7095), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7152), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4155), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4343), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5379), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(7072), 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, + [40161] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7184), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7186), 1, + anon_sym_COMMA, + ACTIONS(7190), 1, + anon_sym_DASH, + ACTIONS(7192), 1, + anon_sym_PLUS, + ACTIONS(7194), 1, + anon_sym_STAR, + ACTIONS(7196), 1, + anon_sym_SLASH, + ACTIONS(7198), 1, + anon_sym_PERCENT, + ACTIONS(7200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7202), 1, + anon_sym_AMP_AMP, + ACTIONS(7204), 1, + anon_sym_PIPE, + ACTIONS(7206), 1, + anon_sym_CARET, + ACTIONS(7208), 1, + anon_sym_AMP, + ACTIONS(7210), 1, + anon_sym_EQ_EQ, + ACTIONS(7212), 1, + anon_sym_BANG_EQ, + ACTIONS(7214), 1, + anon_sym_GT, + ACTIONS(7216), 1, + anon_sym_GT_EQ, + ACTIONS(7218), 1, + anon_sym_LT_EQ, + ACTIONS(7220), 1, + anon_sym_LT, + ACTIONS(7222), 1, + anon_sym_LT_LT, + ACTIONS(7224), 1, + anon_sym_GT_GT, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7228), 1, + anon_sym_EQ, + ACTIONS(7230), 1, + anon_sym_QMARK, + ACTIONS(7232), 1, + anon_sym_STAR_EQ, + ACTIONS(7234), 1, + anon_sym_SLASH_EQ, + ACTIONS(7236), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7238), 1, + anon_sym_PLUS_EQ, + ACTIONS(7240), 1, + anon_sym_DASH_EQ, + ACTIONS(7242), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7244), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7246), 1, + anon_sym_AMP_EQ, + ACTIONS(7248), 1, + anon_sym_CARET_EQ, + ACTIONS(7250), 1, + anon_sym_PIPE_EQ, + ACTIONS(7254), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7256), 1, + anon_sym_or, + ACTIONS(7258), 1, + anon_sym_and, + ACTIONS(7260), 1, + anon_sym_bitor, + ACTIONS(7262), 1, + anon_sym_xor, + ACTIONS(7264), 1, + anon_sym_bitand, + ACTIONS(7266), 1, + anon_sym_not_eq, + ACTIONS(7272), 1, + anon_sym_DOT_STAR, + ACTIONS(7274), 1, anon_sym_DASH_GT_STAR, - [40822] = 26, + ACTIONS(7281), 1, + anon_sym_RPAREN, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7252), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [40322] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -335140,53 +336237,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7103), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7271), 1, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7273), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7275), 1, + ACTIONS(7287), 1, anon_sym_AMP, - ACTIONS(7277), 1, - anon_sym_COLON_COLON, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5967), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6206), 1, + STATE(6290), 1, sym__declarator, - STATE(8221), 1, + STATE(8848), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2967), 2, + STATE(2997), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3985), 2, + STATE(4024), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -335198,7 +336295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -335212,50 +336309,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [40931] = 5, + [40431] = 8, ACTIONS(3), 1, sym_comment, - STATE(2469), 1, - sym_attribute_specifier, - ACTIONS(5489), 2, - anon_sym___attribute__, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + STATE(3114), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6961), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 6, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(6155), 12, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(4166), 41, 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(6153), 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___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_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -335269,147 +336366,56 @@ 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, - [40998] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [40504] = 6, 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(6202), 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, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, 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(6204), 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, - [41071] = 26, - 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, + STATE(2795), 1, + sym_template_argument_list, + ACTIONS(4922), 7, anon_sym_LPAREN2, - ACTIONS(2999), 1, anon_sym_TILDE, - ACTIONS(3001), 1, anon_sym_STAR, - ACTIONS(3003), 1, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(4915), 45, anon_sym_AMP, - ACTIONS(5481), 1, - sym_identifier, - ACTIONS(6365), 1, - anon_sym_COLON_COLON, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5923), 1, - sym__scope_resolution, - STATE(6623), 1, - sym__declarator, - STATE(8864), 1, - sym_ms_based_modifier, - ACTIONS(3337), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3341), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2958), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4022), 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___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, @@ -335422,7 +336428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [41180] = 26, + 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, + [40573] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -335433,53 +336448,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7287), 1, anon_sym_AMP, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5895), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6320), 1, + STATE(6265), 1, sym__declarator, - STATE(8623), 1, + STATE(8848), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2977), 2, + STATE(2954), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4001), 2, + STATE(4004), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -335491,7 +336506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -335505,78 +336520,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [41289] = 28, + [40682] = 7, 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(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(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, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(5046), 1, + anon_sym_LT, + STATE(3129), 1, + sym_template_argument_list, + ACTIONS(4924), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6991), 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(4917), 32, + 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_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -335590,7 +336576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [41402] = 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, + [40753] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -335601,53 +336595,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7287), 1, anon_sym_AMP, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5895), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6552), 1, + STATE(6230), 1, sym__declarator, - STATE(8135), 1, + STATE(8848), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2955), 2, + STATE(3870), 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, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -335659,7 +336653,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -335673,126 +336667,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [41511] = 52, + [40862] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(5850), 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(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, + ACTIONS(6426), 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, - ACTIONS(7281), 1, - anon_sym_RPAREN, - STATE(1285), 1, - sym__binary_fold_operator, - STATE(3433), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, sym_argument_list, - STATE(3434), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(8910), 1, - sym__fold_operator, - ACTIONS(7201), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, - anon_sym_DOT, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7185), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [41672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5515), 19, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -335805,20 +336706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5517), 35, + ACTIONS(6483), 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_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -335837,142 +336736,78 @@ 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, - [41737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7081), 25, - anon_sym_DASH, - anon_sym_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, - 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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [41800] = 26, + [40943] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7019), 1, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7021), 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, + ACTIONS(7121), 1, anon_sym_AMP, - ACTIONS(7243), 1, + ACTIONS(7127), 1, anon_sym_GT_EQ, - ACTIONS(7247), 1, + ACTIONS(7131), 1, anon_sym_LT_EQ_GT, - ACTIONS(7249), 1, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7170), 1, + anon_sym_AMP_AMP, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, anon_sym_or, - ACTIONS(7251), 1, + ACTIONS(7178), 1, anon_sym_and, - ACTIONS(7253), 1, + ACTIONS(7180), 1, anon_sym_bitor, - ACTIONS(7255), 1, - anon_sym_bitand, - STATE(2491), 1, + ACTIONS(7182), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7225), 2, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7235), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7245), 2, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7227), 3, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7239), 3, + ACTIONS(7123), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7241), 3, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 20, - anon_sym_DOT_DOT_DOT, + ACTIONS(7023), 18, 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, @@ -335986,318 +336821,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [41909] = 5, + [41056] = 3, ACTIONS(3), 1, sym_comment, - STATE(2533), 1, - sym_attribute_specifier, - ACTIONS(5489), 2, - anon_sym___attribute__, + ACTIONS(5713), 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, - ACTIONS(6159), 12, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5715), 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_EQ, - anon_sym_GT2, - ACTIONS(6157), 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___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_AMP_EQ, + anon_sym_CARET_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_template, - anon_sym_operator, - [41976] = 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(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(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, - 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(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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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, - 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(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, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [42303] = 26, + anon_sym_GT2, + [41119] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -336310,134 +336894,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(3001), 1, + ACTIONS(3009), 1, anon_sym_STAR, - ACTIONS(3003), 1, + ACTIONS(3011), 1, anon_sym_AMP, - ACTIONS(5481), 1, - sym_identifier, - ACTIONS(6365), 1, - anon_sym_COLON_COLON, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5923), 1, - sym__scope_resolution, - STATE(6552), 1, - sym__declarator, - STATE(8864), 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(3973), 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, - [42412] = 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, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, - anon_sym_STAR, - ACTIONS(7107), 1, - anon_sym_AMP_AMP, - ACTIONS(7109), 1, - anon_sym_AMP, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6215), 1, + STATE(6547), 1, sym__declarator, - STATE(8504), 1, + STATE(8850), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2940), 2, + STATE(2925), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3980), 2, + STATE(3997), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -336449,7 +336950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -336463,10 +336964,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [42521] = 3, + [41228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5742), 21, + ACTIONS(5811), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -336488,7 +336989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5744), 34, + ACTIONS(5813), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -336523,218 +337024,181 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [42584] = 5, + [41291] = 8, 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, + ACTIONS(7289), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(7291), 1, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6206), 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(7293), 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, - [42651] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2478), 1, - sym_attribute_specifier, - ACTIONS(5489), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6102), 12, + STATE(3319), 1, + sym_parameter_list, + STATE(3039), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6185), 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(6187), 30, 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(6100), 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, - [42718] = 30, + 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, + [41364] = 52, 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, + ACTIONS(6913), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(7184), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7186), 1, + anon_sym_COMMA, + ACTIONS(7190), 1, + anon_sym_DASH, + ACTIONS(7192), 1, + anon_sym_PLUS, + ACTIONS(7194), 1, + anon_sym_STAR, + ACTIONS(7196), 1, + anon_sym_SLASH, + ACTIONS(7198), 1, + anon_sym_PERCENT, + ACTIONS(7200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7202), 1, + anon_sym_AMP_AMP, + ACTIONS(7204), 1, + anon_sym_PIPE, + ACTIONS(7206), 1, + anon_sym_CARET, + ACTIONS(7208), 1, + anon_sym_AMP, + ACTIONS(7210), 1, + anon_sym_EQ_EQ, + ACTIONS(7212), 1, + anon_sym_BANG_EQ, + ACTIONS(7214), 1, + anon_sym_GT, + ACTIONS(7216), 1, + anon_sym_GT_EQ, + ACTIONS(7218), 1, + anon_sym_LT_EQ, + ACTIONS(7220), 1, + anon_sym_LT, + ACTIONS(7222), 1, + anon_sym_LT_LT, + ACTIONS(7224), 1, + anon_sym_GT_GT, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7228), 1, 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(7230), 1, + anon_sym_QMARK, + ACTIONS(7232), 1, + anon_sym_STAR_EQ, + ACTIONS(7234), 1, + anon_sym_SLASH_EQ, + ACTIONS(7236), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7238), 1, + anon_sym_PLUS_EQ, + ACTIONS(7240), 1, + anon_sym_DASH_EQ, + ACTIONS(7242), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7244), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7246), 1, + anon_sym_AMP_EQ, + ACTIONS(7248), 1, + anon_sym_CARET_EQ, + ACTIONS(7250), 1, + anon_sym_PIPE_EQ, + ACTIONS(7254), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7256), 1, + anon_sym_or, + ACTIONS(7258), 1, + anon_sym_and, + ACTIONS(7260), 1, + anon_sym_bitor, + ACTIONS(7262), 1, + anon_sym_xor, + ACTIONS(7264), 1, + anon_sym_bitand, + ACTIONS(7266), 1, + anon_sym_not_eq, + ACTIONS(7272), 1, + anon_sym_DOT_STAR, + ACTIONS(7274), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7295), 1, + anon_sym_RPAREN, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7252), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [41525] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -336745,53 +337209,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7303), 1, anon_sym_AMP, - STATE(4069), 1, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6552), 1, + STATE(6379), 1, sym__declarator, - STATE(8135), 1, + STATE(8817), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(3002), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4012), 2, + STATE(3993), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -336803,7 +337267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -336817,9 +337281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [42944] = 26, + [41634] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -336828,53 +337294,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, + anon_sym_AMP, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 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(4069), 1, + anon_sym_LBRACK, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5923), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6317), 1, + STATE(6556), 1, sym__declarator, - STATE(8339), 1, + STATE(8850), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2971), 2, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3989), 2, + STATE(4029), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -336886,7 +337350,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -336900,7 +337364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43053] = 26, + [41743] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -336911,53 +337375,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7271), 1, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7273), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7275), 1, + ACTIONS(7303), 1, anon_sym_AMP, - ACTIONS(7277), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5967), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6228), 1, + STATE(6388), 1, sym__declarator, - STATE(8221), 1, + STATE(8817), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2974), 2, + STATE(2966), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4025), 2, + STATE(4003), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -336969,7 +337433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -336983,7 +337447,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43162] = 26, + [41852] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7289), 1, + anon_sym_LPAREN2, + ACTIONS(7291), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7293), 1, + anon_sym_LBRACK, + STATE(3319), 1, + sym_parameter_list, + STATE(3039), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6196), 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(6198), 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, + [41925] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -336994,53 +337523,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7271), 1, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7273), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7275), 1, + ACTIONS(7303), 1, anon_sym_AMP, - ACTIONS(7277), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5967), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6228), 1, + STATE(6389), 1, sym__declarator, - STATE(8221), 1, + STATE(8817), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4025), 2, + STATE(4034), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -337052,7 +337581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -337066,21 +337595,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43271] = 8, + [42034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, + ACTIONS(5823), 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(5825), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7093), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7095), 1, + 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, - STATE(3296), 1, - sym_parameter_list, - STATE(3129), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6145), 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_AMP_EQ, + anon_sym_CARET_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, + [42097] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5738), 4, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5740), 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(4161), 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(4168), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337094,13 +337709,55 @@ static const uint16_t ts_small_parse_table[] = { 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, + [42164] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6147), 30, + ACTIONS(7117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7119), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6481), 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(6483), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337109,6 +337766,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_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -337127,34 +337787,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [42247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5807), 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(5809), 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_STAR, - [43344] = 11, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [42310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + STATE(2483), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6102), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6414), 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(6100), 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, + [42377] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7227), 3, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6518), 14, + ACTIONS(6481), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -337169,7 +337947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 29, + ACTIONS(6483), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337199,21 +337977,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [43423] = 8, + [42456] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7093), 1, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6710), 1, + anon_sym_EQ, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7121), 1, + anon_sym_AMP, + ACTIONS(7127), 1, + anon_sym_GT_EQ, + ACTIONS(7131), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7170), 1, + anon_sym_AMP_AMP, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, + anon_sym_or, + ACTIONS(7178), 1, + anon_sym_and, + ACTIONS(7180), 1, + anon_sym_bitor, + ACTIONS(7182), 1, + anon_sym_QMARK, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7125), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6712), 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, + [42569] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, + anon_sym_STAR, + ACTIONS(7309), 1, + anon_sym_AMP_AMP, + ACTIONS(7311), 1, + anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6556), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3988), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [42678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5653), 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(5655), 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, + [42741] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2458), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6161), 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(6159), 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, + [42808] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7289), 1, + anon_sym_LPAREN2, + ACTIONS(7291), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7095), 1, + ACTIONS(7293), 1, anon_sym_LBRACK, - STATE(3296), 1, + STATE(3319), 1, sym_parameter_list, - STATE(3129), 2, + STATE(3039), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6198), 19, + ACTIONS(6163), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -337233,7 +338301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6200), 30, + ACTIONS(6165), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -337264,7 +338332,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [43496] = 26, + [42881] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7121), 1, + anon_sym_AMP, + ACTIONS(7127), 1, + anon_sym_GT_EQ, + ACTIONS(7131), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_bitor, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7117), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(6481), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(7119), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7125), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 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_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, + [42982] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -337275,53 +338422,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7313), 1, anon_sym_STAR, - ACTIONS(7113), 1, + ACTIONS(7315), 1, anon_sym_AMP_AMP, - ACTIONS(7115), 1, + ACTIONS(7317), 1, anon_sym_AMP, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5923), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6320), 1, + STATE(6379), 1, sym__declarator, - STATE(8339), 1, + STATE(8363), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(3008), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4013), 2, + STATE(4008), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -337333,7 +338480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -337347,82 +338494,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43605] = 30, + [43091] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(7107), 1, + anon_sym_STAR, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7111), 1, anon_sym_AMP, - ACTIONS(7060), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7063), 1, + ACTIONS(7113), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 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, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, sym_alignas_qualifier, - 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, + STATE(5949), 1, + sym__scope_resolution, + STATE(6246), 1, + sym__declarator, + STATE(8245), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 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, + STATE(2981), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4028), 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(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, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -337434,7 +338577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43722] = 26, + [43200] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -337445,53 +338588,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 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, + anon_sym_STAR, ACTIONS(7109), 1, + anon_sym_AMP_AMP, + ACTIONS(7111), 1, anon_sym_AMP, - STATE(4069), 1, + ACTIONS(7113), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5949), 1, sym__scope_resolution, - STATE(6213), 1, + STATE(6273), 1, sym__declarator, - STATE(8504), 1, + STATE(8245), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2920), 2, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4008), 2, + STATE(4031), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -337503,8 +338646,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 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, + [43309] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2510), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6210), 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(6208), 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, @@ -337517,7 +338715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43831] = 26, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [43376] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -337528,53 +338733,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7271), 1, + ACTIONS(7319), 1, anon_sym_STAR, - ACTIONS(7273), 1, + ACTIONS(7321), 1, anon_sym_AMP_AMP, - ACTIONS(7275), 1, + ACTIONS(7323), 1, anon_sym_AMP, - ACTIONS(7277), 1, + ACTIONS(7325), 1, anon_sym_COLON_COLON, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5967), 1, + STATE(5953), 1, sym__scope_resolution, - STATE(6244), 1, + STATE(6778), 1, sym__declarator, - STATE(8221), 1, + STATE(8422), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(3012), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3991), 2, + STATE(4019), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -337586,7 +338791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -337600,88 +338805,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [43940] = 24, + [43485] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 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(3005), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, - anon_sym_DOT, - ACTIONS(7231), 1, + ACTIONS(7327), 1, + anon_sym_STAR, + ACTIONS(7329), 1, anon_sym_AMP_AMP, - ACTIONS(7233), 1, - anon_sym_PIPE, - ACTIONS(7237), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7243), 1, - anon_sym_GT_EQ, - ACTIONS(7247), 1, - anon_sym_LT_EQ_GT, - 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(6518), 2, - anon_sym_EQ, - anon_sym_or, - 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(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, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [44045] = 26, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6433), 1, + sym__declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2985), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [43594] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -337692,53 +338899,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7219), 1, + ACTIONS(7327), 1, anon_sym_STAR, - ACTIONS(7221), 1, + ACTIONS(7329), 1, anon_sym_AMP_AMP, - ACTIONS(7223), 1, + ACTIONS(7331), 1, anon_sym_AMP, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6741), 1, + STATE(6468), 1, sym__declarator, - STATE(8381), 1, + STATE(8310), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4026), 2, + STATE(3989), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -337750,7 +338957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -337764,7 +338971,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [44154] = 26, + [43703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 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(5676), 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, + [43766] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -337775,53 +339042,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7327), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7329), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5895), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6321), 1, + STATE(6473), 1, sym__declarator, - STATE(8623), 1, + STATE(8310), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(3013), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3982), 2, + STATE(4022), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -337833,7 +339100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -337847,7 +339114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [44263] = 26, + [43875] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -337858,53 +339125,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(7103), 1, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7257), 1, + ACTIONS(7313), 1, anon_sym_STAR, - ACTIONS(7259), 1, + ACTIONS(7315), 1, anon_sym_AMP_AMP, - ACTIONS(7261), 1, + ACTIONS(7317), 1, anon_sym_AMP, - ACTIONS(7263), 1, - anon_sym_COLON_COLON, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5931), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6816), 1, + STATE(6388), 1, sym__declarator, - STATE(8398), 1, + STATE(8363), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(2989), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3974), 2, + STATE(3994), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -337916,63 +339183,8 @@ static const uint16_t ts_small_parse_table[] = { 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, - [44372] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2509), 1, - sym_attribute_specifier, - ACTIONS(5489), 2, - anon_sym___attribute__, - anon_sym___attribute, - 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_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, + ACTIONS(3351), 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, @@ -337985,14 +339197,7 @@ 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, - [44439] = 26, + [43984] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -338003,53 +339208,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7097), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7313), 1, anon_sym_STAR, - ACTIONS(7099), 1, + ACTIONS(7315), 1, anon_sym_AMP_AMP, - ACTIONS(7101), 1, + ACTIONS(7317), 1, anon_sym_AMP, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6451), 1, + STATE(6389), 1, sym__declarator, - STATE(8286), 1, + STATE(8363), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3994), 2, + STATE(3996), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -338061,416 +339266,8 @@ static const uint16_t ts_small_parse_table[] = { 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, - [44548] = 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(3416), 1, - sym_new_declarator, - STATE(3552), 1, - sym_decltype_auto, - STATE(3903), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5841), 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(5843), 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, - [44627] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(2526), 1, - sym_attribute_specifier, - ACTIONS(5489), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6167), 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(6165), 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, - [44694] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_LBRACK, - 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, - 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, - 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(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(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, - 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(5855), 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, - [44971] = 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(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, + ACTIONS(3351), 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, @@ -338483,24 +339280,15 @@ 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, - [45040] = 5, + [44093] = 5, ACTIONS(3), 1, sym_comment, - STATE(2527), 1, + STATE(2577), 1, sym_attribute_specifier, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6171), 12, + ACTIONS(6115), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -338513,7 +339301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6169), 40, + ACTIONS(6113), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -338554,649 +339342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [45107] = 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(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, - 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(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), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - 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_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, - [45202] = 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(7314), 1, - anon_sym_requires, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(4905), 1, - sym__function_attributes_start, - STATE(5027), 1, - sym_ref_qualifier, - STATE(5524), 1, - sym_trailing_return_type, - STATE(5728), 1, - sym__function_attributes_end, - STATE(6870), 1, - sym_gnu_asm_expression, - ACTIONS(6037), 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(5363), 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, - [45319] = 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(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(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(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), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6520), 24, - 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, - anon_sym_bitand, - [45410] = 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(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, - ACTIONS(7316), 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, - [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(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(7241), 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), 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_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, - anon_sym_bitand, - anon_sym_not_eq, - [45660] = 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(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_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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - [45745] = 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, - anon_sym_DASH_GT, - ACTIONS(7225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7227), 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_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, - [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, - 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, + [44160] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -339207,53 +339353,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7103), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7257), 1, + ACTIONS(7333), 1, anon_sym_STAR, - ACTIONS(7259), 1, + ACTIONS(7335), 1, anon_sym_AMP_AMP, - ACTIONS(7261), 1, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7263), 1, - anon_sym_COLON_COLON, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5931), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6763), 1, + STATE(6740), 1, sym__declarator, - STATE(8398), 1, + STATE(8405), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2978), 2, + STATE(2993), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(3996), 2, + STATE(4002), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -339261,67 +339407,12 @@ static const uint16_t ts_small_parse_table[] = { 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(2466), 1, - sym_attribute_specifier, - ACTIONS(5489), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6212), 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(6210), 40, - anon_sym_AMP, + sym_template_function, + sym_destructor_name, + sym_qualified_identifier, + sym_operator_name, + ACTIONS(3351), 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, @@ -339334,34 +339425,21 @@ 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, - [46111] = 11, + [44269] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_LBRACE, ACTIONS(7289), 1, anon_sym_LPAREN2, ACTIONS(7291), 1, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, 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, - sym_initializer_list, - ACTIONS(5857), 16, + anon_sym_LBRACK, + STATE(3319), 1, + sym_parameter_list, + STATE(3039), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6200), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -339376,9 +339454,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(5859), 30, + ACTIONS(6202), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -339398,136 +339479,172 @@ 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, - [46190] = 13, + [44342] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 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(3005), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 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(7225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7245), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7227), 3, + ACTIONS(7333), 1, 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), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + ACTIONS(7335), 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, - [46273] = 7, + ACTIONS(7337), 1, + anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6746), 1, + sym__declarator, + STATE(8405), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4009), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [44451] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, - anon_sym_const, - ACTIONS(4995), 1, - anon_sym_AMP, - ACTIONS(4988), 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(3005), 1, anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7319), 1, anon_sym_STAR, + ACTIONS(7321), 1, anon_sym_AMP_AMP, - 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__, + ACTIONS(7323), 1, + anon_sym_AMP, + ACTIONS(7325), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__scope_resolution, + STATE(6768), 1, + sym__declarator, + STATE(8422), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2995), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4017), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -339539,86 +339656,78 @@ 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, - [46344] = 30, + [44560] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7319), 1, + anon_sym_STAR, + ACTIONS(7321), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7323), 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, - 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, + ACTIONS(7325), 1, + anon_sym_COLON_COLON, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 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, + STATE(5953), 1, + sym__scope_resolution, + STATE(6808), 1, + sym__declarator, + STATE(8422), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7306), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(4140), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4332), 2, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4018), 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, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -339630,173 +339739,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [46461] = 11, + [44669] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_LBRACE, ACTIONS(7289), 1, anon_sym_LPAREN2, ACTIONS(7291), 1, - anon_sym_LBRACK, + anon_sym_LBRACK_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, - 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(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_LT_EQ_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, - [46540] = 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(6997), 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, - 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(6791), 1, - anon_sym___attribute__, - ACTIONS(6793), 1, - anon_sym___attribute, - ACTIONS(7007), 1, - anon_sym_LBRACE, - STATE(3098), 1, - sym_enumerator_list, - STATE(3466), 1, - sym_attribute_specifier, - ACTIONS(6066), 16, + STATE(3319), 1, + sym_parameter_list, + STATE(3039), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6175), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -339811,85 +339768,20 @@ 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(6068), 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_LT_EQ_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, - [46726] = 7, - ACTIONS(3), 1, - sym_comment, - 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, + ACTIONS(6177), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -339912,82 +339804,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [46797] = 30, + [44742] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7048), 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, + anon_sym_STAR, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7287), 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, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 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, + STATE(5965), 1, + sym__scope_resolution, + STATE(6265), 1, + sym__declarator, + STATE(8848), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 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, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4004), 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, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -339999,48 +339887,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [46914] = 6, + [44851] = 26, 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, + 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(3005), 1, anon_sym_LPAREN2, + ACTIONS(3007), 1, anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, anon_sym_STAR, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - ACTIONS(4925), 45, + ACTIONS(7311), 1, anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6547), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3005), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3999), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, @@ -340053,19 +339970,12 @@ 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, - [46983] = 3, + [44960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 21, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5537), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340075,27 +339985,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, - ACTIONS(5766), 34, + anon_sym_DASH_GT, + ACTIONS(5539), 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___attribute__, + anon_sym_GT_EQ, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, @@ -340105,6 +340014,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, @@ -340118,14 +340028,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, - [47046] = 3, + anon_sym_DASH_GT_STAR, + [45025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 19, + ACTIONS(7060), 1, + sym_literal_suffix, + ACTIONS(4168), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340140,12 +340051,17 @@ 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(5527), 36, + ACTIONS(4161), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -340155,9 +340071,11 @@ 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_SEMI, + anon_sym_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340169,200 +340087,20 @@ 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, - [47109] = 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(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, - 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(6664), 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, - [47339] = 5, + [45090] = 5, ACTIONS(3), 1, sym_comment, - STATE(2501), 1, + STATE(2514), 1, sym_attribute_specifier, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6151), 12, + ACTIONS(6152), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -340375,7 +340113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6149), 40, + ACTIONS(6150), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -340416,102 +340154,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [47406] = 6, + [45157] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, - anon_sym___attribute__, - ACTIONS(6793), 1, - anon_sym___attribute, - STATE(3572), 1, - sym_attribute_specifier, - ACTIONS(6100), 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(6102), 35, - 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(3005), 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_LBRACE, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [47474] = 4, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, + anon_sym_STAR, + ACTIONS(7301), 1, + anon_sym_AMP_AMP, + ACTIONS(7303), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6388), 1, + sym__declarator, + STATE(8817), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4003), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [45266] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, - anon_sym_friend, - ACTIONS(2559), 6, + 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(3005), 1, anon_sym_LPAREN2, + ACTIONS(3007), 1, anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7333), 1, anon_sym_STAR, + ACTIONS(7335), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2569), 47, + ACTIONS(7337), 1, anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6734), 1, + sym__declarator, + STATE(8405), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3011), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4013), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, 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, @@ -340524,88 +340320,75 @@ 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_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [47538] = 26, + [45375] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 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, + ACTIONS(7031), 1, + anon_sym_EQ, + ACTIONS(7121), 1, anon_sym_AMP, - ACTIONS(7343), 1, + ACTIONS(7127), 1, anon_sym_GT_EQ, - ACTIONS(7347), 1, + ACTIONS(7131), 1, anon_sym_LT_EQ_GT, - ACTIONS(7349), 1, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7170), 1, + anon_sym_AMP_AMP, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, anon_sym_or, - ACTIONS(7351), 1, + ACTIONS(7178), 1, anon_sym_and, - ACTIONS(7353), 1, + ACTIONS(7180), 1, anon_sym_bitor, - ACTIONS(7355), 1, - anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7015), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7325), 2, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7335), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7345), 2, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7327), 3, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7339), 3, + ACTIONS(7123), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7341), 3, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 18, + ACTIONS(7033), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340620,10 +340403,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [47646] = 3, + [45484] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, + anon_sym_STAR, + ACTIONS(7309), 1, + anon_sym_AMP_AMP, + ACTIONS(7311), 1, + anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6541), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4033), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [45593] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 19, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(4929), 1, + anon_sym_LT, + STATE(2697), 1, + sym_template_argument_list, + ACTIONS(4924), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -340634,27 +340508,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(5786), 35, + ACTIONS(4917), 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340676,185 +340549,188 @@ 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, - [47708] = 26, + anon_sym_DASH_GT, + [45664] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 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(3005), 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, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(7107), 1, + anon_sym_STAR, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(7333), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7111), 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(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, - 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(7021), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [47816] = 11, + ACTIONS(7113), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5949), 1, + sym__scope_resolution, + STATE(6246), 1, + sym__declarator, + STATE(8245), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4028), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [45773] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 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(3005), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 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(7327), 3, + ACTIONS(7313), 1, 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, - 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, - ACTIONS(6520), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + ACTIONS(7315), 1, 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [47894] = 12, + ACTIONS(7317), 1, + anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5903), 1, + sym__scope_resolution, + STATE(6388), 1, + sym__declarator, + STATE(8363), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3994), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [45882] = 6, 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, - ACTIONS(7325), 2, + ACTIONS(6917), 1, + sym_auto, + ACTIONS(6919), 1, + anon_sym_decltype, + STATE(3136), 1, + sym_decltype_auto, + ACTIONS(5637), 19, 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, @@ -340863,21 +340739,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(6520), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5639), 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340896,57 +340775,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [47974] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [45951] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - STATE(2491), 1, + ACTIONS(7035), 1, + anon_sym_EQ, + ACTIONS(7121), 1, + anon_sym_AMP, + ACTIONS(7127), 1, + anon_sym_GT_EQ, + ACTIONS(7131), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7170), 1, + anon_sym_AMP_AMP, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, + anon_sym_or, + ACTIONS(7178), 1, + anon_sym_and, + ACTIONS(7180), 1, + anon_sym_bitor, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7325), 2, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7345), 2, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7327), 3, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6518), 11, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6520), 27, + ACTIONS(7037), 20, 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_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -340961,84 +340862,330 @@ 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, - [48056] = 30, + [46060] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(67), 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7333), 1, + anon_sym_STAR, + ACTIONS(7335), 1, + anon_sym_AMP_AMP, + ACTIONS(7337), 1, + anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6740), 1, + sym__declarator, + STATE(8405), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4002), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, + anon_sym___extension__, anon_sym_const, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [46169] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7319), 1, + anon_sym_STAR, + ACTIONS(7321), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7323), 1, anon_sym_AMP, - ACTIONS(7063), 1, + ACTIONS(7325), 1, + anon_sym_COLON_COLON, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5953), 1, + sym__scope_resolution, + STATE(6768), 1, + sym__declarator, + STATE(8422), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4017), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [46278] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7327), 1, + anon_sym_STAR, + ACTIONS(7329), 1, + anon_sym_AMP_AMP, + ACTIONS(7331), 1, + anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6433), 1, + sym__declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(3987), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [46387] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7080), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7155), 1, + anon_sym___asm, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(1680), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(4940), 1, + STATE(4909), 1, sym__function_attributes_start, - STATE(5095), 1, + STATE(5052), 1, sym_ref_qualifier, - STATE(5985), 1, + STATE(5642), 1, sym_trailing_return_type, - STATE(6217), 1, + STATE(5790), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6897), 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, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(4041), 2, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7152), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4155), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4265), 2, + STATE(4343), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6125), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5928), 2, sym__function_postfix, sym_requires_clause, STATE(5388), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7046), 5, + ACTIONS(7066), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - ACTIONS(7297), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -341051,167 +341198,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [48172] = 6, + [46504] = 26, ACTIONS(3), 1, sym_comment, - 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, + 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(3009), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(3011), 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(6171), 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, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 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, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [48240] = 8, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5903), 1, + sym__scope_resolution, + STATE(6541), 1, + sym__declarator, + STATE(8850), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2963), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4015), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [46613] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7363), 1, - anon_sym_LPAREN2, - ACTIONS(7365), 1, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7080), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7367), 1, + ACTIONS(7083), 1, anon_sym_LBRACK, - STATE(3419), 1, - sym_parameter_list, - STATE(3239), 2, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7166), 1, + anon_sym_DASH_GT, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(4914), 1, + sym__function_attributes_start, + STATE(5051), 1, + sym_ref_qualifier, + STATE(5642), 1, + sym_trailing_return_type, + STATE(6102), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4155), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4343), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 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, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5384), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_try, + ACTIONS(7072), 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, + [46730] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6200), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6971), 1, + anon_sym_EQ, + ACTIONS(7121), 1, + anon_sym_AMP, + ACTIONS(7127), 1, + anon_sym_GT_EQ, + ACTIONS(7131), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, anon_sym_PIPE_PIPE, + ACTIONS(7170), 1, 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, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, + anon_sym_or, + ACTIONS(7178), 1, + anon_sym_and, + ACTIONS(7180), 1, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [48312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5768), 19, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7125), 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(5770), 35, + ACTIONS(6973), 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, @@ -341226,56 +341451,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [46839] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7121), 1, + anon_sym_AMP, + ACTIONS(7127), 1, + anon_sym_GT_EQ, + ACTIONS(7131), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, + ACTIONS(7133), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [48374] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - STATE(3429), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6224), 19, + anon_sym_DASH_GT, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6481), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6226), 31, + ACTIONS(6483), 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_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -341290,49 +341527,74 @@ 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, + [46936] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7121), 1, + anon_sym_AMP, + ACTIONS(7127), 1, + anon_sym_GT_EQ, + ACTIONS(7131), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7133), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7170), 1, + anon_sym_AMP_AMP, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7178), 1, + anon_sym_and, + ACTIONS(7180), 1, + anon_sym_bitor, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [48442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 20, + anon_sym_DASH_GT, + ACTIONS(6481), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7129), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7123), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7125), 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(5527), 34, + ACTIONS(6483), 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_COLON_COLON, - 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, @@ -341340,27 +341602,79 @@ 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, + [47041] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(2535), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6194), 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(6192), 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_GT2, - [48504] = 3, + anon_sym_template, + anon_sym_operator, + [47108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5760), 19, + ACTIONS(7062), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -341375,12 +341689,18 @@ 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(5762), 35, + sym_literal_suffix, + ACTIONS(7064), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -341390,8 +341710,11 @@ 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_COLON, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -341403,129 +341726,45 @@ 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, - [48566] = 30, + anon_sym_DASH_GT, + [47171] = 5, 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(7314), 1, - anon_sym_requires, - ACTIONS(7369), 1, + STATE(2525), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, anon_sym___attribute__, - ACTIONS(7372), 1, anon_sym___attribute, - ACTIONS(7375), 1, - anon_sym_DASH_GT, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(4958), 1, - sym__function_attributes_start, - STATE(5070), 1, - sym_ref_qualifier, - STATE(5524), 1, - sym_trailing_return_type, - STATE(5990), 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(5376), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7046), 5, + ACTIONS(6183), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - 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_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3943), 48, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6181), 40, 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___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, @@ -341549,26 +341788,20 @@ 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, - [48744] = 5, + [47238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5523), 1, - anon_sym_LBRACE, - ACTIONS(5517), 10, + STATE(2504), 1, + sym_attribute_specifier, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6230), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -341577,15 +341810,15 @@ 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(5515), 42, + anon_sym_GT2, + ACTIONS(6228), 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, @@ -341622,15 +341855,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [48810] = 5, + [47305] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7383), 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, + anon_sym_STAR, + ACTIONS(7309), 1, + anon_sym_AMP_AMP, + ACTIONS(7311), 1, + anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6541), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2974), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4033), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [47414] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3949), 1, anon_sym_DQUOTE_DQUOTE, - ACTIONS(7381), 2, + ACTIONS(7339), 2, anon_sym_delete, anon_sym_new, - ACTIONS(7379), 20, + ACTIONS(3945), 20, anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, @@ -341651,7 +341967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DASH_GT, - ACTIONS(7377), 31, + ACTIONS(3943), 31, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PIPE_PIPE, @@ -341683,104 +341999,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT_STAR, anon_sym_LPAREN_RPAREN, anon_sym_LBRACK_RBRACK, - [48876] = 6, + [47480] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(3965), 6, + 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, + anon_sym_LBRACK_LBRACK, + ACTIONS(3963), 48, 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___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, + [47542] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6151), 35, + ACTIONS(7005), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(7345), 1, anon_sym_PIPE_PIPE, + ACTIONS(7347), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(7349), 1, + anon_sym_PIPE, + ACTIONS(7353), 1, + anon_sym_AMP, + ACTIONS(7359), 1, anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(7363), 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_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7365), 1, anon_sym_LT_EQ_GT, + ACTIONS(7367), 1, anon_sym_or, + ACTIONS(7369), 1, anon_sym_and, + ACTIONS(7371), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7373), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, - anon_sym_DASH_GT_STAR, - [48944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5645), 19, + anon_sym_DASH_GT, + ACTIONS(6710), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7351), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7355), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7357), 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(5647), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(6712), 16, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -341794,87 +342142,73 @@ 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, - [49006] = 28, + [47654] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6981), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7329), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7331), 1, + ACTIONS(7347), 1, anon_sym_AMP_AMP, - ACTIONS(7333), 1, + ACTIONS(7349), 1, anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7353), 1, anon_sym_AMP, - ACTIONS(7343), 1, + ACTIONS(7359), 1, anon_sym_GT_EQ, - ACTIONS(7347), 1, + ACTIONS(7365), 1, anon_sym_LT_EQ_GT, - ACTIONS(7349), 1, - anon_sym_or, - ACTIONS(7351), 1, + ACTIONS(7369), 1, anon_sym_and, - ACTIONS(7353), 1, + ACTIONS(7371), 1, anon_sym_bitor, - ACTIONS(7355), 1, + ACTIONS(7373), 1, anon_sym_bitand, - ACTIONS(7385), 1, - anon_sym_QMARK, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6662), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7325), 2, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7335), 2, + ACTIONS(7351), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7345), 2, + ACTIONS(7361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7327), 3, + ACTIONS(6481), 3, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7339), 3, + ACTIONS(7355), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7341), 3, + ACTIONS(7357), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6664), 16, + ACTIONS(6483), 19, + anon_sym_DOT_DOT_DOT, 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, @@ -341888,41 +342222,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [49118] = 3, + [47758] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5788), 19, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7349), 1, + anon_sym_PIPE, + ACTIONS(7353), 1, + anon_sym_AMP, + ACTIONS(7359), 1, + anon_sym_GT_EQ, + ACTIONS(7365), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7371), 1, + anon_sym_bitor, + ACTIONS(7373), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7351), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7355), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7357), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6481), 4, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5790), 35, + ACTIONS(6483), 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -341937,208 +342300,65 @@ 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, - [49180] = 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(5921), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5919), 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, - [49246] = 9, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_LBRACK_LBRACK, - ACTIONS(6316), 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, - [49320] = 26, + [47858] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 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, + ACTIONS(7353), 1, anon_sym_AMP, - ACTIONS(7343), 1, + ACTIONS(7359), 1, anon_sym_GT_EQ, - ACTIONS(7347), 1, + ACTIONS(7365), 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, + ACTIONS(7373), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6985), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7325), 2, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7335), 2, + ACTIONS(7351), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7345), 2, + ACTIONS(7361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7327), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7339), 3, + ACTIONS(7355), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7341), 3, + ACTIONS(7357), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6987), 18, + ACTIONS(6481), 5, + anon_sym_PIPE, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6483), 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, @@ -342155,71 +342375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [49428] = 5, + anon_sym_bitor, + [47954] = 6, ACTIONS(3), 1, sym_comment, - 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, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5778), 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, + ACTIONS(6832), 1, 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, - [49494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5701), 19, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3566), 1, + sym_attribute_specifier, + ACTIONS(6113), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342234,12 +342400,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(5703), 35, + ACTIONS(6115), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -342262,11 +342425,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, @@ -342275,78 +342438,91 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [49556] = 12, + [48022] = 19, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5850), 1, anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7353), 1, + anon_sym_AMP, + ACTIONS(7359), 1, + anon_sym_GT_EQ, + ACTIONS(7365), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7373), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7341), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7355), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7357), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6481), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6483), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, 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, - [49636] = 3, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [48116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 19, + ACTIONS(7381), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7379), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7377), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342361,24 +342537,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(5818), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(7375), 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, @@ -342392,167 +342563,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_DASH_GT_STAR, - [49698] = 5, - ACTIONS(3), 1, - sym_comment, - 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(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_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, - [49764] = 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(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, + 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, + [48182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 19, + ACTIONS(5778), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342572,7 +342597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5774), 35, + ACTIONS(5780), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -342608,10 +342633,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [49942] = 3, + [48244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 19, + ACTIONS(5657), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342631,7 +342656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5517), 35, + ACTIONS(5659), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -342667,16 +342692,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50004] = 6, + [48306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(6832), 1, anon_sym___attribute__, - ACTIONS(6793), 1, + ACTIONS(6834), 1, anon_sym___attribute, - STATE(3445), 1, + STATE(3516), 1, sym_attribute_specifier, - ACTIONS(6165), 16, + ACTIONS(6212), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342693,7 +342718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6167), 35, + ACTIONS(6214), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -342729,10 +342754,164 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50072] = 3, + [48374] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7383), 1, + anon_sym_DASH_GT, + ACTIONS(7385), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4922), 1, + sym__function_attributes_start, + STATE(5108), 1, + sym_ref_qualifier, + STATE(5987), 1, + sym_trailing_return_type, + STATE(6147), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5427), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(7143), 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, + [48490] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5000), 1, + anon_sym_const, + ACTIONS(5011), 1, + anon_sym_AMP, + ACTIONS(5004), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + ACTIONS(5009), 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(5007), 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(5002), 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, + [48560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 19, + ACTIONS(7291), 1, + anon_sym_LBRACK_LBRACK, + STATE(3162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6288), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342746,13 +342925,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(5687), 35, + ACTIONS(6290), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -342762,8 +342942,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, anon_sym_SLASH_EQ, @@ -342785,13 +342963,91 @@ 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, - [50134] = 3, + [48626] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7359), 1, + anon_sym_GT_EQ, + ACTIONS(7365), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7341), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7355), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7357), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6481), 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(6483), 22, + 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [48716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5660), 19, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + STATE(3480), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6307), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -342811,17 +343067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5662), 35, + ACTIONS(6309), 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, @@ -342844,80 +343098,63 @@ 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, - [50196] = 28, + [48784] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 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, + ACTIONS(7359), 1, anon_sym_GT_EQ, - ACTIONS(7347), 1, + ACTIONS(7365), 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6989), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7325), 2, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7335), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7345), 2, + ACTIONS(7361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7327), 3, + ACTIONS(7343), 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, + ACTIONS(7357), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6991), 16, + ACTIONS(6481), 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(6483), 25, + 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_SEMI, anon_sym___attribute__, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -342931,103 +343168,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [50308] = 4, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [48872] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7397), 1, - anon_sym_namespace, - ACTIONS(6868), 6, + ACTIONS(5850), 1, 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, + ACTIONS(6426), 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, - [50372] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3933), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7399), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3911), 20, - anon_sym_BANG, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7365), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 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(3909), 31, + ACTIONS(6483), 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, @@ -343041,43 +343238,48 @@ 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, - [50438] = 7, + [48956] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 1, - anon_sym_const, - ACTIONS(4995), 1, + STATE(3081), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7387), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5966), 6, anon_sym_AMP, - ACTIONS(4988), 5, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5964), 43, + anon_sym_COMMA, 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_SEMI, anon_sym___extension__, - anon_sym_COLON_COLON, + 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, @@ -343091,47 +343293,176 @@ 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, - 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [49022] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7383), 1, anon_sym_DASH_GT, - [50508] = 3, + ACTIONS(7389), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4925), 1, + sym__function_attributes_start, + STATE(5123), 1, + sym_ref_qualifier, + STATE(6056), 1, + sym_trailing_return_type, + STATE(6114), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7095), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5407), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(7143), 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, + [49138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 12, - anon_sym_DOT_DOT_DOT, + STATE(3104), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5807), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5809), 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, + 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(2569), 42, + anon_sym_try, + anon_sym_requires, + [49204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4088), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4093), 1, + anon_sym_using, + ACTIONS(4095), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(4097), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -343140,12 +343471,10 @@ 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -343169,15 +343498,22 @@ 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, - [50570] = 3, + [49270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 19, + ACTIONS(5831), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343197,7 +343533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5794), 35, + ACTIONS(5833), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -343233,10 +343569,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50632] = 3, + [49332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 19, + ACTIONS(5657), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343256,7 +343592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5707), 35, + ACTIONS(5659), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -343292,10 +343628,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50694] = 3, + [49394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5712), 19, + ACTIONS(5731), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343315,7 +343651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5714), 35, + ACTIONS(5733), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -343351,74 +343687,103 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [50756] = 26, + [49456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3534), 1, + sym_attribute_specifier, + ACTIONS(6100), 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, - ACTIONS(7329), 1, + anon_sym_DASH_GT, + ACTIONS(6102), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7347), 1, + 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, - ACTIONS(7349), 1, anon_sym_or, - ACTIONS(7351), 1, anon_sym_and, - ACTIONS(7353), 1, anon_sym_bitor, - ACTIONS(7355), 1, + anon_sym_xor, anon_sym_bitand, - STATE(2491), 1, - sym_argument_list, - STATE(2492), 1, - sym_subscript_argument_list, - ACTIONS(6416), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6993), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7325), 2, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [49524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5678), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6995), 18, + 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(5680), 35, 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -343433,198 +343798,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [50864] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5523), 1, - anon_sym_LBRACE, - ACTIONS(5517), 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_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, - 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_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, - [50928] = 5, + anon_sym_DASH_GT_STAR, + [49586] = 3, 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, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5966), 43, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7396), 25, anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, 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_COLON_COLON, 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_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(7394), 29, + anon_sym_DASH, + anon_sym_PLUS, 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, + 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__, - sym_auto, + 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_GT2, - anon_sym_try, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [51060] = 6, + sym_this, + [49648] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(6832), 1, anon_sym___attribute__, - ACTIONS(6793), 1, + ACTIONS(6834), 1, anon_sym___attribute, - STATE(3473), 1, + STATE(3550), 1, sym_attribute_specifier, - ACTIONS(6214), 16, + ACTIONS(6127), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343641,7 +343893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6216), 35, + ACTIONS(6129), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -343677,21 +343929,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [51128] = 8, + [49716] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7363), 1, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6913), 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, + STATE(3497), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6242), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343701,24 +343949,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(6204), 28, + anon_sym_DASH_GT, + ACTIONS(6244), 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, @@ -343726,6 +343976,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, @@ -343739,14 +343990,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, - anon_sym_GT2, - [51200] = 4, + anon_sym_DASH_GT_STAR, + [49784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5515), 20, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3554), 1, + sym_attribute_specifier, + ACTIONS(6131), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343756,61 +344010,198 @@ 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(6133), 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, + [49852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5815), 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, - ACTIONS(5517), 33, + anon_sym_DASH_GT, + ACTIONS(5817), 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, + [49914] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(7403), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4961), 1, + sym__function_attributes_start, + STATE(5058), 1, + sym_ref_qualifier, + STATE(6138), 1, + sym_trailing_return_type, + STATE(6302), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7400), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5419), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [51264] = 6, + ACTIONS(7143), 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, + [50030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, - anon_sym___attribute__, - ACTIONS(6793), 1, - anon_sym___attribute, - STATE(3475), 1, - sym_attribute_specifier, - ACTIONS(6153), 16, + ACTIONS(5701), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -343825,9 +344216,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(6155), 35, + ACTIONS(5703), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -343850,11 +344244,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, @@ -343863,24 +344257,24 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [51332] = 5, + [50092] = 5, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + STATE(3105), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7387), 4, + ACTIONS(7406), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5913), 6, + ACTIONS(5976), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(5911), 43, + ACTIONS(5974), 43, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -343924,24 +344318,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [51398] = 5, + [50158] = 5, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + STATE(1968), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7387), 4, + ACTIONS(7408), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5953), 6, + ACTIONS(5958), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(5951), 43, + ACTIONS(5956), 43, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -343985,10 +344379,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [51464] = 3, + [50224] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 19, + ACTIONS(7416), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7414), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7412), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344003,24 +344403,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(5722), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(7410), 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, @@ -344034,20 +344429,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, - [51526] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [50290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 19, + ACTIONS(5480), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344057,26 +344453,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(5726), 35, + ACTIONS(5482), 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, @@ -344086,7 +344482,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, @@ -344100,13 +344495,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, - [51588] = 3, + anon_sym_GT2, + [50352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 19, + ACTIONS(5682), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344126,7 +344522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5730), 35, + ACTIONS(5684), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -344162,75 +344558,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [51650] = 9, - ACTIONS(3), 1, - sym_comment, - 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, - ACTIONS(6393), 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, - [51724] = 3, + [50414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 19, + ACTIONS(5697), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344250,7 +344581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5722), 35, + ACTIONS(5699), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -344286,44 +344617,74 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [51786] = 4, + [50476] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4993), 20, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7347), 1, + anon_sym_AMP_AMP, + ACTIONS(7349), 1, + anon_sym_PIPE, + ACTIONS(7353), 1, + anon_sym_AMP, + ACTIONS(7359), 1, + anon_sym_GT_EQ, + ACTIONS(7365), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7367), 1, + anon_sym_or, + ACTIONS(7369), 1, + anon_sym_and, + ACTIONS(7371), 1, + anon_sym_bitor, + ACTIONS(7373), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7009), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7351), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7355), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7357), 3, 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(4986), 32, + ACTIONS(7011), 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_LBRACK_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -344338,24 +344699,76 @@ 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, - [51850] = 5, + [50584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7411), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7409), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7407), 20, - anon_sym_BANG, + ACTIONS(5539), 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(5537), 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, + [50646] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + STATE(3507), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6303), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344370,19 +344783,22 @@ 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(7405), 31, + ACTIONS(6305), 31, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + 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, anon_sym_PERCENT_EQ, @@ -344396,84 +344812,146 @@ 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, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [51916] = 24, + [50714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5539), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6414), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5537), 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, + [50780] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7331), 1, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7347), 1, anon_sym_AMP_AMP, - ACTIONS(7333), 1, + ACTIONS(7349), 1, anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7353), 1, anon_sym_AMP, - ACTIONS(7343), 1, + ACTIONS(7359), 1, anon_sym_GT_EQ, - ACTIONS(7347), 1, + ACTIONS(7363), 1, + anon_sym_QMARK, + ACTIONS(7365), 1, anon_sym_LT_EQ_GT, - ACTIONS(7351), 1, + ACTIONS(7367), 1, + anon_sym_or, + ACTIONS(7369), 1, anon_sym_and, - ACTIONS(7353), 1, + ACTIONS(7371), 1, anon_sym_bitor, - ACTIONS(7355), 1, + ACTIONS(7373), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7325), 2, + ACTIONS(7013), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7335), 2, + ACTIONS(7351), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7345), 2, + ACTIONS(7361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 3, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7327), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7339), 3, + ACTIONS(7355), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7341), 3, + ACTIONS(7357), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(7015), 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, @@ -344487,10 +344965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [52020] = 3, + [50892] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 19, + ACTIONS(7424), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7422), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7420), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344505,24 +344989,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(5722), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(7418), 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, @@ -344536,91 +345015,198 @@ 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, + [50958] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7426), 1, + anon_sym_friend, + ACTIONS(2562), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2572), 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_DASH_GT_STAR, - [52082] = 30, + anon_sym_explicit, + anon_sym_typename, + anon_sym_template, + anon_sym_operator, + [51022] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7048), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7063), 1, + ACTIONS(7083), 1, anon_sym_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7301), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7393), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(7413), 1, + ACTIONS(7430), 1, anon_sym_requires, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(4936), 1, + STATE(4978), 1, sym__function_attributes_start, - STATE(5111), 1, + STATE(5094), 1, sym_ref_qualifier, - STATE(5988), 1, + STATE(6050), 1, sym_trailing_return_type, - STATE(6114), 1, + STATE(6272), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7085), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4041), 2, + ACTIONS(7400), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4265), 2, + STATE(4246), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5965), 2, + STATE(6151), 2, sym__function_postfix, sym_requires_clause, - STATE(5407), 3, + STATE(5424), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7046), 5, - anon_sym_RPAREN, + ACTIONS(7066), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - ACTIONS(7297), 12, + ACTIONS(7143), 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, + [51138] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7433), 1, + anon_sym_typedef, + ACTIONS(2562), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2572), 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, @@ -344632,41 +345218,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [52198] = 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, + [51202] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5812), 19, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7347), 1, + anon_sym_AMP_AMP, + ACTIONS(7349), 1, + anon_sym_PIPE, + ACTIONS(7353), 1, + anon_sym_AMP, + ACTIONS(7359), 1, + anon_sym_GT_EQ, + ACTIONS(7365), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7367), 1, + anon_sym_or, + ACTIONS(7369), 1, + anon_sym_and, + ACTIONS(7371), 1, + anon_sym_bitor, + ACTIONS(7373), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7017), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7351), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7355), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7357), 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(5814), 35, + ACTIONS(7019), 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, @@ -344681,20 +345314,16 @@ 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, - [52260] = 3, + [51310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 19, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3451), 1, + sym_attribute_specifier, + ACTIONS(6228), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344709,12 +345338,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(5755), 35, + ACTIONS(6230), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -344737,11 +345363,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, @@ -344750,70 +345376,48 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [52322] = 22, + [51378] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(7435), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7437), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7439), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, - anon_sym_DOT, - 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(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(7325), 2, + STATE(3492), 1, + sym_parameter_list, + STATE(3194), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6163), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 4, - 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, - ACTIONS(6520), 20, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6165), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -344821,23 +345425,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, - [52422] = 5, + 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, + [51450] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7422), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7420), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(7418), 20, - anon_sym_BANG, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3532), 1, + sym_attribute_specifier, + ACTIONS(6204), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344852,19 +345464,21 @@ 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(7416), 31, + ACTIONS(6206), 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, @@ -344875,24 +345489,302 @@ 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_compl, anon_sym_LT_EQ_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_co_await, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [52488] = 3, + [51518] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7276), 1, + anon_sym_requires, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7444), 1, + anon_sym___attribute, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4942), 1, + sym__function_attributes_start, + STATE(5115), 1, + sym_ref_qualifier, + STATE(5525), 1, + sym_trailing_return_type, + STATE(6039), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7095), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5415), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7143), 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, + [51634] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2619), 1, + anon_sym_LBRACE, + ACTIONS(7449), 1, + anon_sym_LPAREN2, + STATE(2637), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3585), 1, + sym_argument_list, + STATE(3974), 1, + sym_initializer_list, + ACTIONS(6753), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5539), 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(5537), 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, + [51708] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7408), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5931), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5929), 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, + [51774] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7408), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5982), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5980), 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, + [51840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 19, + ACTIONS(7458), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7456), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(7454), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -344907,24 +345799,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(5740), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(7452), 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, @@ -344938,77 +345825,55 @@ 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, - [52550] = 20, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [51906] = 6, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3475), 1, + sym_attribute_specifier, + ACTIONS(6181), 16, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 5, - anon_sym_PIPE, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(6520), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6183), 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, @@ -345020,14 +345885,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, - [52646] = 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, + [51974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 19, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3476), 1, + sym_attribute_specifier, + ACTIONS(6208), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345042,12 +345922,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(5798), 35, + ACTIONS(6210), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -345070,11 +345947,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, @@ -345083,10 +345960,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [52708] = 3, + [52042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 19, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3482), 1, + sym_attribute_specifier, + ACTIONS(6150), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345101,12 +345984,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(5517), 35, + ACTIONS(6152), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -345129,11 +346009,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, @@ -345142,96 +346022,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [52770] = 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(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_SEMI, - anon_sym_LBRACE, - 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, - [52886] = 3, + [52110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 19, + ACTIONS(5709), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345251,7 +346045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5822), 35, + ACTIONS(5711), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -345287,67 +346081,142 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [52948] = 19, + [52172] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(7460), 1, + anon_sym_COLON, + STATE(2569), 1, + sym_attribute_specifier, + STATE(2831), 1, + sym__enum_base_clause, + STATE(3023), 1, + sym_enumerator_list, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6354), 7, anon_sym_LPAREN2, - ACTIONS(6414), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6352), 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, + [52246] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7337), 1, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7347), 1, + anon_sym_AMP_AMP, + ACTIONS(7349), 1, + anon_sym_PIPE, + ACTIONS(7353), 1, anon_sym_AMP, - ACTIONS(7343), 1, + ACTIONS(7359), 1, anon_sym_GT_EQ, - ACTIONS(7347), 1, + ACTIONS(7363), 1, + anon_sym_QMARK, + ACTIONS(7365), 1, anon_sym_LT_EQ_GT, - ACTIONS(7355), 1, + ACTIONS(7367), 1, + anon_sym_or, + ACTIONS(7369), 1, + anon_sym_and, + ACTIONS(7371), 1, + anon_sym_bitor, + ACTIONS(7373), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7325), 2, + ACTIONS(7021), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7345), 2, + ACTIONS(7351), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7327), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7339), 3, + ACTIONS(7355), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7341), 3, + ACTIONS(7357), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6520), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(7023), 16, anon_sym_COMMA, - 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, @@ -345361,17 +346230,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [53042] = 5, + [52358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(7432), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(3937), 20, - anon_sym_BANG, + ACTIONS(7462), 1, + anon_sym_namespace, + ACTIONS(6872), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6870), 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, + [52422] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3578), 1, + sym_attribute_specifier, + ACTIONS(6159), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345386,19 +346314,21 @@ 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(3935), 31, + ACTIONS(6161), 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, @@ -345409,24 +346339,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_compl, anon_sym_LT_EQ_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_co_await, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [53108] = 3, + [52490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 19, + ACTIONS(6957), 1, + sym_auto, + ACTIONS(6959), 1, + anon_sym_decltype, + STATE(3234), 1, + sym_decltype_auto, + ACTIONS(5637), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345436,26 +346371,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(5806), 35, + ACTIONS(5639), 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, @@ -345465,7 +346399,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, @@ -345479,21 +346412,71 @@ 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, - [53170] = 7, + anon_sym_DASH_GT, + anon_sym_GT2, + [52558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(2562), 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, - ACTIONS(4932), 1, - anon_sym_LBRACE, - ACTIONS(5474), 1, - anon_sym_LT, - STATE(3213), 1, - sym_template_argument_list, - ACTIONS(4934), 18, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(2572), 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, + [52620] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5788), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345504,6 +346487,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, @@ -345512,7 +346496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4927), 32, + ACTIONS(5790), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -345522,6 +346506,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, @@ -345544,78 +346529,105 @@ 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, - [53240] = 28, + [52682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(7464), 1, + anon_sym_friend, + ACTIONS(2562), 6, 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_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7333), 1, - anon_sym_PIPE, - ACTIONS(7337), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2572), 47, 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___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_EQ, - ACTIONS(7325), 2, + 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, + [52746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5537), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6999), 16, + 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(5539), 35, + 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_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -345629,61 +346641,54 @@ static const uint16_t ts_small_parse_table[] = { 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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7325), 2, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [52808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6832), 1, + anon_sym___attribute__, + ACTIONS(6834), 1, + anon_sym___attribute, + STATE(3430), 1, + sym_attribute_specifier, + ACTIONS(6192), 16, 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_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), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6194), 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, @@ -345695,65 +346700,293 @@ 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, - [53440] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [52876] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7155), 1, + anon_sym___asm, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(7466), 1, + anon_sym_DASH_GT, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4960), 1, + sym__function_attributes_start, + STATE(5120), 1, + sym_ref_qualifier, + STATE(5899), 1, + sym__function_attributes_end, + STATE(5987), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7152), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5411), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + ACTIONS(7143), 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, + [52992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(7468), 1, + anon_sym_namespace, + ACTIONS(6872), 6, anon_sym_LPAREN2, - ACTIONS(6414), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(6870), 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, - 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, + 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, + [53056] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7444), 1, + anon_sym___attribute, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(7325), 2, + ACTIONS(7474), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4967), 1, + sym__function_attributes_start, + STATE(5063), 1, + sym_ref_qualifier, + STATE(6053), 1, + sym_trailing_return_type, + STATE(6100), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5418), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7143), 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, + [53172] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7435), 1, + anon_sym_LPAREN2, + ACTIONS(7437), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7439), 1, + anon_sym_LBRACK, + STATE(3492), 1, + sym_parameter_list, + STATE(3194), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6175), 20, 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - 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_xor, - ACTIONS(6520), 26, + anon_sym_DOT, + ACTIONS(6177), 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_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -345761,91 +346994,269 @@ 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, - [53524] = 30, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [53244] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7063), 1, + ACTIONS(7083), 1, anon_sym_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7430), 1, + anon_sym_requires, + ACTIONS(7441), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7444), 1, + anon_sym___attribute, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(7434), 1, - anon_sym_requires, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(4909), 1, + STATE(4935), 1, sym__function_attributes_start, - STATE(5055), 1, + STATE(5091), 1, sym_ref_qualifier, - STATE(6012), 1, + STATE(6050), 1, sym_trailing_return_type, - STATE(6250), 1, + STATE(6065), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7426), 2, + ACTIONS(7400), 2, anon_sym_final, anon_sym_override, - STATE(4041), 2, + STATE(4059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4265), 2, + STATE(4246), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6125), 2, + STATE(6151), 2, sym__function_postfix, sym_requires_clause, - STATE(5408), 3, + STATE(5400), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7046), 5, + ACTIONS(7066), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7143), 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, + [53360] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2670), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3639), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3643), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5948), 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(5950), 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, + [53428] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7408), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5984), 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, - ACTIONS(7297), 12, + anon_sym_requires, + [53494] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7408), 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_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, @@ -345857,24 +347268,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [53640] = 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, + [53560] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5537), 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(5539), 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, + [53624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3961), 6, + ACTIONS(7476), 1, + anon_sym_namespace, + ACTIONS(6872), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3959), 48, + ACTIONS(6870), 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, @@ -345916,10 +347399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [53702] = 3, + [53688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 19, + ACTIONS(5686), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345939,7 +347422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5695), 35, + ACTIONS(5688), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -345975,16 +347458,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [53764] = 6, + [53750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, - anon_sym___attribute__, - ACTIONS(6793), 1, - anon_sym___attribute, - STATE(3443), 1, - sym_attribute_specifier, - ACTIONS(6161), 16, + ACTIONS(5693), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -345999,9 +347476,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(6163), 35, + ACTIONS(5695), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -346024,11 +347504,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, @@ -346037,145 +347517,141 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [53832] = 8, + [53812] = 5, 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(6112), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7408), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 6, 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(6114), 28, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5960), 43, anon_sym_COMMA, - 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_QMARK, - anon_sym_STAR_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_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, - [53904] = 6, + anon_sym_try, + anon_sym_requires, + [53878] = 5, ACTIONS(3), 1, sym_comment, - 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, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + STATE(3104), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7392), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5537), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6264), 31, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5539), 43, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, 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_STAR, - [53972] = 4, + 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, + [53944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7437), 1, - anon_sym_namespace, - ACTIONS(6868), 6, + ACTIONS(7478), 1, + anon_sym_friend, + ACTIONS(2562), 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, + ACTIONS(2572), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -346223,72 +347699,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [54036] = 6, - ACTIONS(3), 1, - sym_comment, - 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_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(5917), 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, - [54104] = 3, + [54008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 19, + ACTIONS(5537), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -346308,7 +347722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5691), 35, + ACTIONS(5539), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -346344,24 +347758,24 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [54166] = 5, + [54070] = 5, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + STATE(1968), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7387), 4, + ACTIONS(7408), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5931), 6, + ACTIONS(5899), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(5929), 43, + ACTIONS(5897), 43, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -346405,143 +347819,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [54232] = 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(6145), 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(6147), 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, - [54304] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7439), 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(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_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, - [54368] = 4, + [54136] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_typedef, - ACTIONS(2559), 6, + ACTIONS(7480), 1, + anon_sym_namespace, + ACTIONS(6872), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2569), 47, + ACTIONS(6870), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -346589,80 +347879,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [54432] = 30, + [54200] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7048), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7063), 1, + ACTIONS(7083), 1, anon_sym_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 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, + ACTIONS(7428), 1, anon_sym_DASH_GT, - STATE(1680), 1, + ACTIONS(7474), 1, + anon_sym_requires, + STATE(1693), 1, sym_alignas_qualifier, - STATE(4941), 1, + STATE(4927), 1, sym__function_attributes_start, - STATE(5100), 1, + STATE(5083), 1, sym_ref_qualifier, - STATE(5882), 1, - sym__function_attributes_end, - STATE(6014), 1, + STATE(6053), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6303), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7304), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7306), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(4041), 2, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4265), 2, + STATE(4246), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5965), 2, + STATE(6151), 2, sym__function_postfix, sym_requires_clause, - STATE(5393), 3, + STATE(5406), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7046), 5, - anon_sym_COMMA, + ACTIONS(7066), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - ACTIONS(7297), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -346675,81 +347965,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [54548] = 30, + [54316] = 3, 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(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, + ACTIONS(6872), 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(7297), 12, + ACTIONS(6870), 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, @@ -346761,81 +348017,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [54664] = 30, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [54378] = 6, 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, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + STATE(3457), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6275), 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, - ACTIONS(7063), 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, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6277), 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, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [54446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5745), 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, - 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__, - 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, + ACTIONS(5747), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + 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_try, - ACTIONS(7297), 12, + 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, + [54508] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7482), 1, + anon_sym_friend, + ACTIONS(2562), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2572), 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, @@ -346847,81 +348191,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [54780] = 30, + 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, + [54572] = 3, 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, + ACTIONS(5749), 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, - ACTIONS(7063), 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, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5751), 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, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [54634] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 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, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(7145), 1, + anon_sym___attribute__, + STATE(2516), 1, 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, + STATE(3684), 1, + sym_field_declaration_list, + STATE(7250), 1, 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, + STATE(8008), 1, + sym_base_class_clause, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5601), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5603), 39, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7297), 12, + 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, @@ -346933,81 +348323,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [54896] = 30, + 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, + [54714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7048), 1, - anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(5753), 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, - 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_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, - 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__, - 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, + 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_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, + [54776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5757), 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_GT2, - ACTIONS(7297), 12, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5759), 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, + [54838] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(7460), 1, + anon_sym_COLON, + STATE(2472), 1, + sym_attribute_specifier, + STATE(2816), 1, + sym__enum_base_clause, + STATE(2971), 1, + sym_enumerator_list, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6348), 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(6346), 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, @@ -347019,81 +348508,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [55012] = 30, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [54912] = 4, 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, + ACTIONS(7484), 1, + anon_sym_friend, + ACTIONS(2562), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2572), 47, 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(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_SEMI, - anon_sym_LBRACE, - ACTIONS(7297), 12, 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, @@ -347105,10 +348561,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [55128] = 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, + [54976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 19, + ACTIONS(5719), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347128,7 +348598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5806), 35, + ACTIONS(5721), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347164,10 +348634,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [55190] = 3, + [55038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 19, + ACTIONS(5723), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347187,7 +348657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5668), 35, + ACTIONS(5725), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347223,19 +348693,79 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [55252] = 4, + [55100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7449), 1, - anon_sym_namespace, - ACTIONS(6868), 6, + ACTIONS(5007), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5009), 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(5002), 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, + [55164] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7486), 1, + anon_sym_friend, + ACTIONS(2562), 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, + ACTIONS(2572), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -347283,35 +348813,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [55316] = 9, + [55228] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_LBRACE, - ACTIONS(7451), 1, - anon_sym_LPAREN2, - STATE(2677), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(2674), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3409), 1, - sym_argument_list, - STATE(3904), 1, - sym_initializer_list, - ACTIONS(6777), 4, + STATE(2795), 1, + sym_template_argument_list, + ACTIONS(4182), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5517), 9, + ACTIONS(4166), 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, anon_sym_EQ, - ACTIONS(5515), 36, + anon_sym_GT2, + ACTIONS(4159), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -347348,10 +348877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [55390] = 3, + [55300] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 19, + ACTIONS(3941), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(7490), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(3919), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347366,24 +348901,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(5782), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(3917), 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, @@ -347397,29 +348927,30 @@ 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, - [55452] = 4, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [55366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7454), 1, + ACTIONS(7492), 1, anon_sym_friend, - ACTIONS(2559), 6, + ACTIONS(2562), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2569), 47, + ACTIONS(2572), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -347467,10 +348998,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [55516] = 3, + [55430] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(7494), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4940), 1, + sym__function_attributes_start, + STATE(5057), 1, + sym_ref_qualifier, + STATE(6154), 1, + sym_trailing_return_type, + STATE(6252), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5423), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(7143), 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, + [55546] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7347), 1, + anon_sym_AMP_AMP, + ACTIONS(7349), 1, + anon_sym_PIPE, + ACTIONS(7353), 1, + anon_sym_AMP, + ACTIONS(7359), 1, + anon_sym_GT_EQ, + ACTIONS(7365), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7367), 1, + anon_sym_or, + ACTIONS(7369), 1, + anon_sym_and, + ACTIONS(7371), 1, + anon_sym_bitor, + ACTIONS(7373), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7031), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7341), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7351), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7355), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7357), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7033), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [55654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 19, + ACTIONS(5705), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -347490,7 +349189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5810), 35, + ACTIONS(5707), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -347526,45 +349225,74 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [55578] = 5, + [55716] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7456), 1, - anon_sym_LBRACK_LBRACK, - STATE(3121), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2043), 20, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7345), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7347), 1, + anon_sym_AMP_AMP, + ACTIONS(7349), 1, + anon_sym_PIPE, + ACTIONS(7353), 1, + anon_sym_AMP, + ACTIONS(7359), 1, + anon_sym_GT_EQ, + ACTIONS(7365), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7367), 1, + anon_sym_or, + ACTIONS(7369), 1, + anon_sym_and, + ACTIONS(7371), 1, + anon_sym_bitor, + ACTIONS(7373), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7035), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7351), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7355), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7357), 3, 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(6273), 31, + ACTIONS(7037), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -347579,29 +349307,92 @@ 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, + [55824] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5539), 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_LBRACK_LBRACK, + anon_sym_EQ, + ACTIONS(5537), 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, + [55888] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [55644] = 5, - ACTIONS(3), 1, - sym_comment, - 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_DASH_GT, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -347610,20 +349401,22 @@ 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_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(7459), 31, + ACTIONS(6483), 27, + 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, @@ -347637,52 +349430,49 @@ 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, - [55710] = 4, + [55966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7467), 1, - anon_sym_namespace, - ACTIONS(6868), 6, + STATE(3061), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7496), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5919), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5917), 43, + 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(6866), 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_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, @@ -347696,31 +349486,96 @@ 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, - [55774] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [56032] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7469), 1, - anon_sym_friend, - ACTIONS(2559), 6, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7341), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7343), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6481), 13, + 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, + ACTIONS(6483), 27, + 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___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [56112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7498), 1, + anon_sym_typedef, + ACTIONS(2562), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2569), 47, + ACTIONS(2572), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -347768,44 +349623,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [55838] = 6, + [56176] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, - anon_sym___attribute__, - ACTIONS(6793), 1, - anon_sym___attribute, - STATE(3397), 1, - sym_attribute_specifier, - ACTIONS(6157), 16, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7361), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(6159), 35, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6483), 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, @@ -347817,83 +349685,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, anon_sym_LT_EQ_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, - [55906] = 26, + [56258] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7329), 1, + ACTIONS(7345), 1, anon_sym_PIPE_PIPE, - ACTIONS(7331), 1, + ACTIONS(7347), 1, anon_sym_AMP_AMP, - ACTIONS(7333), 1, + ACTIONS(7349), 1, anon_sym_PIPE, - ACTIONS(7337), 1, + ACTIONS(7353), 1, anon_sym_AMP, - ACTIONS(7343), 1, + ACTIONS(7359), 1, anon_sym_GT_EQ, - ACTIONS(7347), 1, + ACTIONS(7365), 1, anon_sym_LT_EQ_GT, - ACTIONS(7349), 1, + ACTIONS(7367), 1, anon_sym_or, - ACTIONS(7351), 1, + ACTIONS(7369), 1, anon_sym_and, - ACTIONS(7353), 1, + ACTIONS(7371), 1, anon_sym_bitor, - ACTIONS(7355), 1, + ACTIONS(7373), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6947), 2, + ACTIONS(6971), 2, anon_sym___attribute, anon_sym_EQ, - ACTIONS(7325), 2, + ACTIONS(7341), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7335), 2, + ACTIONS(7351), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7345), 2, + ACTIONS(7361), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7327), 3, + ACTIONS(7343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7339), 3, + ACTIONS(7355), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7341), 3, + ACTIONS(7357), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6949), 18, + ACTIONS(6973), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_SEMI, @@ -347912,41 +349774,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [56014] = 4, + [56366] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7471), 1, - anon_sym_friend, - ACTIONS(2559), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(5506), 1, + anon_sym_LT, + STATE(3168), 1, + sym_template_argument_list, + ACTIONS(4924), 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, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4917), 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_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2569), 47, + 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_STAR, + [56436] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3110), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7500), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5925), 6, anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5923), 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_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - 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, @@ -347960,53 +349889,326 @@ 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, - [56078] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7473), 1, - anon_sym_friend, - ACTIONS(2559), 6, + 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, + [56502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 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(5770), 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, + [56564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5795), 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(5797), 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, + [56626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5827), 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(5829), 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, + [56688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5799), 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(5801), 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, + [56750] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7444), 1, + anon_sym___attribute, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4952), 1, + sym__function_attributes_start, + STATE(5117), 1, + sym_ref_qualifier, + STATE(5561), 1, + sym_trailing_return_type, + STATE(6031), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5426), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 5, + 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(2569), 47, - anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7143), 12, 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, @@ -348018,29 +350220,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_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, - [56142] = 5, + [56866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7093), 1, - anon_sym_LBRACK_LBRACK, - STATE(3121), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6244), 20, + ACTIONS(5727), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348054,14 +350237,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(6246), 31, + ACTIONS(5729), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -348071,6 +350253,8 @@ 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, anon_sym_SLASH_EQ, @@ -348092,137 +350276,72 @@ 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, - [56208] = 3, + [56928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 12, + ACTIONS(5819), 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(5821), 35, 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(7475), 1, - anon_sym_friend, - ACTIONS(2559), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - 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___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_explicit, - anon_sym_typename, - anon_sym_template, - anon_sym_operator, - [56334] = 6, + anon_sym_DASH_GT_STAR, + [56990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - STATE(3423), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6309), 19, + ACTIONS(5835), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348242,15 +350361,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6311), 31, + ACTIONS(5837), 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, @@ -348273,27 +350394,27 @@ 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, - [56402] = 5, + [57052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(4057), 1, - anon_sym_using, - ACTIONS(4059), 5, + ACTIONS(3969), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(4061), 47, + anon_sym_LBRACK_LBRACK, + ACTIONS(3967), 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, @@ -348335,16 +350456,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [56468] = 6, + [57114] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6939), 1, - sym_auto, - ACTIONS(6941), 1, - anon_sym_decltype, - STATE(3235), 1, - sym_decltype_auto, - ACTIONS(5533), 20, + ACTIONS(7435), 1, + anon_sym_LPAREN2, + ACTIONS(7437), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7439), 1, + anon_sym_LBRACK, + STATE(3492), 1, + sym_parameter_list, + STATE(3194), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6200), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348365,16 +350491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5535), 31, + ACTIONS(6202), 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_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -348397,21 +350520,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [56536] = 8, + [57186] = 3, 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(6090), 20, + ACTIONS(5727), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348421,24 +350533,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(6092), 28, + anon_sym_DASH_GT, + ACTIONS(5729), 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, @@ -348446,6 +350562,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, @@ -348459,80 +350576,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, - anon_sym_GT2, - [56608] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [57248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7479), 25, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(5727), 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_COLON_COLON, + 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(5729), 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, - 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_DOT_STAR, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [56670] = 4, + anon_sym_DASH_GT_STAR, + [57310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7481), 1, + ACTIONS(7502), 1, anon_sym_typedef, - ACTIONS(2559), 6, + ACTIONS(2562), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2569), 47, + ACTIONS(2572), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -348580,76 +350698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [56734] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - [56796] = 6, + [57374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, - anon_sym_LBRACE, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - STATE(3440), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6283), 19, + ACTIONS(5803), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348669,15 +350721,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6285), 31, + ACTIONS(5805), 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, @@ -348700,203 +350754,24 @@ 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, - [56864] = 8, - ACTIONS(3), 1, - sym_comment, - 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_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4164), 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, - [56936] = 5, + anon_sym_DASH_GT_STAR, + [57436] = 8, 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, + ACTIONS(7435), 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___attribute__, + ACTIONS(7437), 1, 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, - 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, + ACTIONS(7439), 1, 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(3450), 1, - sym_attribute_specifier, - ACTIONS(6206), 16, + STATE(3492), 1, + sym_parameter_list, + STATE(3194), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6185), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348906,25 +350781,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(6208), 35, + ACTIONS(6187), 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, @@ -348932,27 +350806,30 @@ 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, - [57136] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [57508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 19, + ACTIONS(7504), 1, + anon_sym_LBRACK_LBRACK, + STATE(3162), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2043), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -348966,13 +350843,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(5683), 35, + ACTIONS(6319), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -348982,8 +350860,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, anon_sym_SLASH_EQ, @@ -349005,19 +350881,22 @@ 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, - [57198] = 6, + [57574] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, - anon_sym___attribute__, - ACTIONS(6793), 1, - anon_sym___attribute, - STATE(3462), 1, - sym_attribute_specifier, - ACTIONS(6210), 16, + ACTIONS(7435), 1, + anon_sym_LPAREN2, + ACTIONS(7437), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7439), 1, + anon_sym_LBRACK, + STATE(3492), 1, + sym_parameter_list, + STATE(3194), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6196), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349027,25 +350906,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(6212), 35, + ACTIONS(6198), 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, @@ -349053,62 +350931,96 @@ 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, - [57266] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [57646] = 30, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(67), 1, anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7155), 1, anon_sym___asm, - ACTIONS(5933), 43, + ACTIONS(7389), 1, + anon_sym_requires, + ACTIONS(7466), 1, + anon_sym_DASH_GT, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4934), 1, + sym__function_attributes_start, + STATE(5073), 1, + sym_ref_qualifier, + STATE(5904), 1, + sym__function_attributes_end, + STATE(6056), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7095), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7152), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5397), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 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_try, + ACTIONS(7143), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -349120,56 +351032,80 @@ 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, - [57332] = 5, + [57762] = 30, 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, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(67), 1, anon_sym_const, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(5885), 43, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(7509), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4985), 1, + sym__function_attributes_start, + STATE(5134), 1, + sym_ref_qualifier, + STATE(6324), 1, + sym_trailing_return_type, + STATE(6336), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7400), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5428), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 4, + 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_GT2, + ACTIONS(7143), 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, @@ -349181,27 +351117,197 @@ 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, + [57877] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(7512), 1, + anon_sym_LBRACE, + STATE(3991), 1, + sym_field_declaration_list, + STATE(4142), 1, + sym_attribute_specifier, + STATE(7177), 1, + sym_virtual_specifier, + STATE(7827), 1, + sym_base_class_clause, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [57398] = 6, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5601), 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(5603), 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, + [57954] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(7514), 1, + sym_identifier, + STATE(3171), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6042), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6044), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5431), 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__, - ACTIONS(6793), 1, anon_sym___attribute, - STATE(3470), 1, - sym_attribute_specifier, - ACTIONS(6104), 16, + 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(5429), 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, + [58023] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5007), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5009), 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(5002), 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_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, + [58086] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5713), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349215,10 +351321,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_DOT, anon_sym_DASH_GT, - ACTIONS(6106), 35, + ACTIONS(5715), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -349228,6 +351335,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, @@ -349254,45 +351362,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [57466] = 5, + [58147] = 10, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_LT, + ACTIONS(7518), 1, + anon_sym_EQ, + STATE(2674), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7387), 4, + STATE(2795), 1, + sym_template_argument_list, + ACTIONS(7516), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(4182), 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, + ACTIONS(4166), 6, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(4159), 36, + 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_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, @@ -349306,25 +351422,83 @@ static const uint16_t ts_small_parse_table[] = { 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, - [57532] = 6, + anon_sym_template, + anon_sym_operator, + [58222] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(7520), 1, + sym_identifier, + STATE(3175), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6042), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6044), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5421), 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__, - ACTIONS(6793), 1, anon_sym___attribute, - STATE(3474), 1, - sym_attribute_specifier, - ACTIONS(6108), 16, + 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(5419), 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, + [58291] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7522), 1, + anon_sym_LT, + STATE(3327), 1, + sym_template_argument_list, + ACTIONS(6379), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349335,13 +351509,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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6110), 35, + ACTIONS(6381), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -349351,7 +351527,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, @@ -349364,136 +351539,51 @@ 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, - [57600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7489), 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(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_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, + [58358] = 3, 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, + ACTIONS(5811), 17, 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(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(6518), 8, 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, - ACTIONS(6520), 22, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5813), 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_SEMI, + 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, @@ -349505,31 +351595,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, - [57754] = 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(7201), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6518), 17, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [58419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5701), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349539,23 +351621,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(6520), 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, @@ -349563,7 +351649,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, @@ -349574,26 +351659,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [57829] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [58480] = 7, ACTIONS(3), 1, sym_comment, - STATE(2657), 2, + ACTIONS(7525), 1, + sym_identifier, + STATE(3175), 3, sym_string_literal, sym_raw_string_literal, - ACTIONS(3631), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(7528), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(3635), 5, + ACTIONS(7531), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(5915), 16, + ACTIONS(5403), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -349602,6 +351696,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, @@ -349610,10 +351706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5917), 25, + ACTIONS(5401), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -349626,20 +351721,22 @@ 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, - [57896] = 3, + [58549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 20, + ACTIONS(7534), 1, + anon_sym_LBRACK_LBRACK, + STATE(3176), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2043), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349654,13 +351751,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(5806), 33, + ACTIONS(6319), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349668,8 +351766,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, @@ -349691,34 +351787,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, - [57957] = 3, + [58614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 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(5683), 33, + ACTIONS(7060), 1, + sym_literal_suffix, + ACTIONS(4161), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -349726,7 +351801,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_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -349735,27 +351811,16 @@ 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, - [58018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5738), 20, + ACTIONS(4168), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349765,55 +351830,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___attribute, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5740), 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_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, - [58079] = 3, + anon_sym_DOT, + [58677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 20, + ACTIONS(5823), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349823,25 +351860,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(5517), 33, + anon_sym_DASH_GT, + ACTIONS(5825), 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, @@ -349851,27 +351888,40 @@ 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, - [58140] = 3, + anon_sym_DASH_GT_STAR, + [58738] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 20, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6456), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349881,27 +351931,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(5687), 33, + ACTIONS(6458), 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, @@ -349909,6 +351955,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, @@ -349921,15 +351968,11 @@ 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, - [58201] = 3, + anon_sym_DASH_GT_STAR, + [58811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 17, + ACTIONS(5807), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349947,7 +351990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5766), 36, + ACTIONS(5809), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -349984,10 +352027,26 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [58262] = 3, + [58872] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 20, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6466), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -349997,27 +352056,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(5691), 33, + ACTIONS(6468), 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, @@ -350025,6 +352080,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, @@ -350035,17 +352091,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, - sym_auto, - anon_sym_decltype, - anon_sym_GT2, - [58323] = 3, + anon_sym_DASH_GT_STAR, + [58947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 20, + ACTIONS(5653), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350055,25 +352105,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(5722), 33, + anon_sym_DASH_GT, + ACTIONS(5655), 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, @@ -350083,86 +352133,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, anon_sym_LT_EQ_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, - [58384] = 26, + anon_sym_DASH_GT_STAR, + [59008] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(6947), 1, + ACTIONS(7031), 1, anon_sym_EQ, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7187), 1, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7497), 1, + ACTIONS(7543), 1, anon_sym_PIPE_PIPE, - ACTIONS(7499), 1, + ACTIONS(7545), 1, anon_sym_AMP_AMP, - ACTIONS(7501), 1, + ACTIONS(7547), 1, anon_sym_PIPE, - ACTIONS(7505), 1, + ACTIONS(7551), 1, anon_sym_AMP, - ACTIONS(7511), 1, + ACTIONS(7557), 1, anon_sym_GT_EQ, - ACTIONS(7515), 1, + ACTIONS(7561), 1, anon_sym_or, - ACTIONS(7517), 1, + ACTIONS(7563), 1, anon_sym_and, - ACTIONS(7519), 1, + ACTIONS(7565), 1, anon_sym_bitor, - ACTIONS(7521), 1, + ACTIONS(7567), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7503), 2, + ACTIONS(7549), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7513), 2, + ACTIONS(7559), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7507), 3, + ACTIONS(7553), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7509), 3, + ACTIONS(7555), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6949), 18, + ACTIONS(7033), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -350181,10 +352231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [58491] = 3, + [59115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 20, + ACTIONS(5674), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350194,25 +352244,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(5794), 33, + anon_sym_DASH_GT, + ACTIONS(5676), 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, @@ -350222,34 +352272,43 @@ 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, - [58552] = 6, + anon_sym_DASH_GT_STAR, + [59176] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(6935), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - STATE(3733), 2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6224), 20, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6444), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350259,25 +352318,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(6226), 29, + ACTIONS(6446), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350285,6 +352342,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, @@ -350295,15 +352353,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [59251] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7270), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - [58619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5800), 17, + ACTIONS(6470), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350317,23 +352387,19 @@ 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_DOT, - anon_sym_DASH_GT, - ACTIONS(5802), 36, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6472), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350345,23 +352411,112 @@ 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_GT_STAR, + [59326] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7035), 1, + anon_sym_EQ, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + ACTIONS(7543), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7545), 1, + anon_sym_AMP_AMP, + ACTIONS(7547), 1, + anon_sym_PIPE, + ACTIONS(7551), 1, + anon_sym_AMP, + ACTIONS(7557), 1, + anon_sym_GT_EQ, + ACTIONS(7561), 1, anon_sym_or, + ACTIONS(7563), 1, anon_sym_and, + ACTIONS(7565), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7567), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - sym_auto, - anon_sym_decltype, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7539), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7549), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7559), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7541), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7553), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7555), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7037), 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, - [58680] = 3, + [59433] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 20, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6440), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350371,27 +352526,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(5707), 33, + ACTIONS(6442), 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, @@ -350399,6 +352550,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, @@ -350411,22 +352563,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_DASH_GT_STAR, + [59506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7064), 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, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_GT2, - [58741] = 3, + ACTIONS(7062), 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, + [59567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 6, + ACTIONS(6872), 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, + ACTIONS(6870), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -350474,126 +352680,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typename, anon_sym_template, anon_sym_operator, - [58802] = 3, + [59628] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 20, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + STATE(1635), 1, + sym_template_argument_list, + STATE(3546), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7569), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 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_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(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_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_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [58863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 26, + ACTIONS(6068), 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_SEMI, + 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, - 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, + [59697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 20, + ACTIONS(5537), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350614,7 +352766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5647), 33, + ACTIONS(5539), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -350648,10 +352800,12 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [58985] = 3, + [59758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 17, + ACTIONS(7571), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6460), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350665,11 +352819,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_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5778), 36, + ACTIONS(6462), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -350679,9 +352836,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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -350693,31 +352848,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_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, - [59046] = 7, + [59821] = 5, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(7437), 1, + anon_sym_LBRACK_LBRACK, + STATE(3176), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6288), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350729,15 +352879,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(4927), 30, + ACTIONS(6290), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -350745,7 +352897,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, @@ -350768,10 +352919,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [59115] = 3, + [59886] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 20, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4922), 1, + anon_sym_LBRACE, + ACTIONS(5690), 1, + anon_sym_LT, + STATE(3284), 1, + sym_template_argument_list, + ACTIONS(4924), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350783,7 +352942,6 @@ 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, @@ -350792,7 +352950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5703), 33, + ACTIONS(4917), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -350800,7 +352958,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, @@ -350823,13 +352980,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_GT2, + [59955] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7580), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(7576), 4, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7578), 5, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(7583), 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(7573), 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, + [60022] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7057), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4037), 1, + sym_template_argument_list, + ACTIONS(4194), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4182), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4166), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(4159), 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_GT2, - [59176] = 3, + anon_sym_template, + anon_sym_operator, + [60097] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(6971), 1, + anon_sym_EQ, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7254), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + ACTIONS(7543), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7545), 1, + anon_sym_AMP_AMP, + ACTIONS(7547), 1, + anon_sym_PIPE, + ACTIONS(7551), 1, + anon_sym_AMP, + ACTIONS(7557), 1, + anon_sym_GT_EQ, + ACTIONS(7561), 1, + anon_sym_or, + ACTIONS(7563), 1, + anon_sym_and, + ACTIONS(7565), 1, + anon_sym_bitor, + ACTIONS(7567), 1, + anon_sym_bitand, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7539), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7549), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7559), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7541), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7553), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7555), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6973), 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, + [60204] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5712), 20, + ACTIONS(7585), 1, + anon_sym_LT, + STATE(2697), 1, + sym_template_argument_list, + ACTIONS(6474), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350839,18 +353205,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(5714), 33, + ACTIONS(6476), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -350858,8 +353222,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, @@ -350867,6 +353233,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, @@ -350881,76 +353248,73 @@ 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, - [59237] = 28, + [60269] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 1, + ACTIONS(6710), 1, anon_sym_EQ, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7117), 1, + ACTIONS(7184), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7163), 1, + ACTIONS(7230), 1, anon_sym_QMARK, - ACTIONS(7187), 1, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7497), 1, + ACTIONS(7543), 1, anon_sym_PIPE_PIPE, - ACTIONS(7499), 1, + ACTIONS(7545), 1, anon_sym_AMP_AMP, - ACTIONS(7501), 1, + ACTIONS(7547), 1, anon_sym_PIPE, - ACTIONS(7505), 1, + ACTIONS(7551), 1, anon_sym_AMP, - ACTIONS(7511), 1, + ACTIONS(7557), 1, anon_sym_GT_EQ, - ACTIONS(7515), 1, + ACTIONS(7561), 1, anon_sym_or, - ACTIONS(7517), 1, + ACTIONS(7563), 1, anon_sym_and, - ACTIONS(7519), 1, + ACTIONS(7565), 1, anon_sym_bitor, - ACTIONS(7521), 1, + ACTIONS(7567), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7503), 2, + ACTIONS(7549), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7513), 2, + ACTIONS(7559), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7507), 3, + ACTIONS(7553), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7509), 3, + ACTIONS(7555), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6664), 16, + ACTIONS(6712), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_STAR_EQ, @@ -350967,14 +353331,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [59348] = 5, + [60380] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(2795), 1, + sym_template_argument_list, + ACTIONS(4922), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(4915), 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, + 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, + [60447] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6888), 1, - anon_sym_LBRACK, - STATE(3308), 1, - sym_new_declarator, - ACTIONS(6346), 19, + ACTIONS(7588), 1, + anon_sym_LT, + STATE(3129), 1, + sym_template_argument_list, + ACTIONS(6474), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -350985,16 +353410,16 @@ 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(6348), 32, + ACTIONS(6476), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351004,7 +353429,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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351027,103 +353452,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59413] = 4, + [60512] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4166), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6913), 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(7226), 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, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(7270), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4174), 26, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_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, - [59476] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7523), 1, - anon_sym_LT, - STATE(1561), 1, - sym_template_argument_list, - ACTIONS(6426), 17, + ACTIONS(6481), 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, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6428), 34, + ACTIONS(6483), 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_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351142,36 +353517,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, - [59541] = 11, + anon_sym_DASH_GT_STAR, + [60589] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7495), 3, + ACTIONS(6481), 17, + anon_sym_DASH, + anon_sym_PLUS, 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, @@ -351184,7 +353555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 27, + ACTIONS(6483), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351212,128 +353583,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [59618] = 7, - ACTIONS(3), 1, - sym_comment, - 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_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(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_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, + [60664] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7187), 1, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7499), 1, + ACTIONS(7545), 1, anon_sym_AMP_AMP, - ACTIONS(7501), 1, + ACTIONS(7547), 1, anon_sym_PIPE, - ACTIONS(7505), 1, + ACTIONS(7551), 1, anon_sym_AMP, - ACTIONS(7511), 1, + ACTIONS(7557), 1, anon_sym_GT_EQ, - ACTIONS(7517), 1, + ACTIONS(7563), 1, anon_sym_and, - ACTIONS(7519), 1, + ACTIONS(7565), 1, anon_sym_bitor, - ACTIONS(7521), 1, + ACTIONS(7567), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(6518), 2, + ACTIONS(6481), 2, anon_sym_EQ, anon_sym_or, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7503), 2, + ACTIONS(7549), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7513), 2, + ACTIONS(7559), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7507), 3, + ACTIONS(7553), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7509), 3, + ACTIONS(7555), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 19, + ACTIONS(6483), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351353,63 +353662,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [59790] = 22, + [60767] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7187), 1, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7501), 1, + ACTIONS(7547), 1, anon_sym_PIPE, - ACTIONS(7505), 1, + ACTIONS(7551), 1, anon_sym_AMP, - ACTIONS(7511), 1, + ACTIONS(7557), 1, anon_sym_GT_EQ, - ACTIONS(7519), 1, + ACTIONS(7565), 1, anon_sym_bitor, - ACTIONS(7521), 1, + ACTIONS(7567), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7503), 2, + ACTIONS(7549), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7513), 2, + ACTIONS(7559), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 3, + ACTIONS(6481), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7507), 3, + ACTIONS(7553), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7509), 3, + ACTIONS(7555), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 20, + ACTIONS(6483), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351430,60 +353739,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [59889] = 20, + [60866] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7187), 1, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7505), 1, + ACTIONS(7551), 1, anon_sym_AMP, - ACTIONS(7511), 1, + ACTIONS(7557), 1, anon_sym_GT_EQ, - ACTIONS(7521), 1, + ACTIONS(7567), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7503), 2, + ACTIONS(7549), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7513), 2, + ACTIONS(7559), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7507), 3, + ACTIONS(7553), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7509), 3, + ACTIONS(7555), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 4, + ACTIONS(6481), 4, anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6520), 21, + ACTIONS(6483), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351505,59 +353814,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_DASH_GT_STAR, - [59984] = 19, + [60961] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7187), 1, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7505), 1, + ACTIONS(7551), 1, anon_sym_AMP, - ACTIONS(7511), 1, + ACTIONS(7557), 1, anon_sym_GT_EQ, - ACTIONS(7521), 1, + ACTIONS(7567), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7559), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7507), 3, + ACTIONS(7553), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7509), 3, + ACTIONS(7555), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 6, + ACTIONS(6481), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 21, + ACTIONS(6483), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351579,61 +353888,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_DASH_GT_STAR, - [60077] = 17, + [61054] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(2507), 1, + anon_sym_LBRACE, + ACTIONS(6953), 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, + STATE(3664), 2, 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, + sym_initializer_list, + ACTIONS(6275), 20, 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, 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(6520), 22, + anon_sym_DOT, + ACTIONS(6277), 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, @@ -351641,54 +353934,63 @@ 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_DASH_GT_STAR, - [60166] = 16, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [61121] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7187), 1, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7511), 1, + ACTIONS(7557), 1, anon_sym_GT_EQ, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7559), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7509), 3, + ACTIONS(7553), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7555), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 7, + ACTIONS(6481), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -351696,14 +353998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 25, + ACTIONS(6483), 22, 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, @@ -351720,51 +354020,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [60253] = 14, + [61210] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7187), 1, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + ACTIONS(7557), 1, + anon_sym_GT_EQ, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, + ACTIONS(7559), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6518), 10, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7555), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6481), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 26, + ACTIONS(6483), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351772,7 +354074,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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351791,46 +354092,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [60336] = 12, + [61297] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7254), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7495), 3, + ACTIONS(7559), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6518), 12, + ACTIONS(6481), 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(6520), 27, + ACTIONS(6483), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351853,52 +354157,50 @@ 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, - [60415] = 13, + [61380] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7513), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6518), 10, + ACTIONS(6481), 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(6520), 27, + ACTIONS(6483), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -351926,45 +354228,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [60496] = 6, + [61459] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(7528), 1, - anon_sym_LT, - STATE(3373), 1, - sym_template_argument_list, - ACTIONS(6397), 18, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7559), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 10, 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_LT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6399), 32, + ACTIONS(6483), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -351983,79 +354295,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_STAR, - [60563] = 6, + [61540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(7483), 1, + ACTIONS(7591), 1, anon_sym_LT, - STATE(2756), 1, + STATE(3327), 1, sym_template_argument_list, - ACTIONS(4192), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5834), 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, - 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, - [60630] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7531), 1, - anon_sym_LT, - STATE(1724), 1, - sym_template_argument_list, - ACTIONS(6426), 19, + ACTIONS(6399), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352068,14 +354318,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(6428), 32, + ACTIONS(6401), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352085,7 +354334,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, @@ -352108,12 +354357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [60695] = 4, + [61607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7534), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6464), 20, + ACTIONS(7588), 1, + anon_sym_LT, + STATE(1736), 1, + sym_template_argument_list, + ACTIONS(6474), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352124,7 +354375,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_LBRACK, @@ -352134,7 +354384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6466), 32, + ACTIONS(6476), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -352167,153 +354417,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(5760), 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(5762), 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, - [60934] = 3, + [61672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5788), 20, + ACTIONS(5803), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352334,7 +354441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5790), 33, + ACTIONS(5805), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -352368,102 +354475,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + [61733] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(2507), 1, anon_sym_LBRACE, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - STATE(3591), 2, + STATE(3713), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6262), 20, + ACTIONS(6307), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352484,7 +354506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6264), 29, + ACTIONS(6309), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -352514,93 +354536,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [61177] = 28, + [61800] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(6997), 1, - anon_sym_EQ, - ACTIONS(7117), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7163), 1, - anon_sym_QMARK, - ACTIONS(7187), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 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, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 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(6999), 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, - [61288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5808), 20, + ACTIONS(6422), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352610,85 +354565,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(5810), 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, - [61349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5742), 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(5744), 36, + ACTIONS(6424), 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___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -352700,121 +354593,6 @@ 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_DASH_GT_STAR, - [61410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6924), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - 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, - 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(5818), 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, @@ -352822,24 +354600,18 @@ 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, - [61532] = 6, + anon_sym_DASH_GT_STAR, + [61875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(2507), 1, anon_sym_LBRACE, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - STATE(3713), 2, + STATE(3611), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6283), 20, + ACTIONS(6242), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352860,7 +354632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6285), 29, + ACTIONS(6244), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -352890,10 +354662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [61599] = 3, + [61942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5660), 20, + ACTIONS(7585), 1, + anon_sym_LT, + STATE(1571), 1, + sym_template_argument_list, + ACTIONS(6474), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352903,26 +354679,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(5662), 33, + ACTIONS(6476), 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_SEMI, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -352931,6 +354707,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, @@ -352945,13 +354722,17 @@ 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, - [61660] = 3, + [62007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 20, + ACTIONS(2507), 1, + anon_sym_LBRACE, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + STATE(3631), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6303), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -352972,15 +354753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5782), 33, + ACTIONS(6305), 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, @@ -353003,55 +354782,73 @@ 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, - [61721] = 10, + [62074] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7009), 1, + anon_sym_EQ, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7254), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + ACTIONS(7543), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7545), 1, + anon_sym_AMP_AMP, + ACTIONS(7547), 1, + anon_sym_PIPE, + ACTIONS(7551), 1, + anon_sym_AMP, + ACTIONS(7557), 1, + anon_sym_GT_EQ, + ACTIONS(7561), 1, + anon_sym_or, + ACTIONS(7563), 1, + anon_sym_and, + ACTIONS(7565), 1, + anon_sym_bitor, + ACTIONS(7567), 1, + anon_sym_bitand, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6410), 17, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7549), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7559), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7553), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7555), 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(6412), 27, + ACTIONS(7011), 18, 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, @@ -353066,58 +354863,76 @@ 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, - [61796] = 10, + [62181] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7230), 1, + anon_sym_QMARK, + ACTIONS(7254), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + ACTIONS(7543), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7545), 1, + anon_sym_AMP_AMP, + ACTIONS(7547), 1, + anon_sym_PIPE, + ACTIONS(7551), 1, + anon_sym_AMP, + ACTIONS(7557), 1, + anon_sym_GT_EQ, + ACTIONS(7561), 1, + anon_sym_or, + ACTIONS(7563), 1, + anon_sym_and, + ACTIONS(7565), 1, + anon_sym_bitor, + ACTIONS(7567), 1, + anon_sym_bitand, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6422), 17, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7549), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7559), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7553), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7555), 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(6424), 27, - anon_sym_DOT_DOT_DOT, + ACTIONS(7015), 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, @@ -353131,207 +354946,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_GT_STAR, - [61871] = 11, - ACTIONS(3), 1, - sym_comment, - 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, - 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(5559), 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, - [61948] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7552), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(7548), 4, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7550), 5, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - 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, + [62292] = 5, 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, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(7585), 1, 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(5401), 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, - [62084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4993), 19, + STATE(1576), 1, + sym_template_argument_list, + ACTIONS(6474), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353342,26 +354965,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(4986), 32, + ACTIONS(6476), 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, @@ -353383,76 +355006,74 @@ 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, - [62147] = 28, + anon_sym_DASH_GT, + [62357] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(6989), 1, + ACTIONS(7017), 1, anon_sym_EQ, - ACTIONS(7117), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7163), 1, - anon_sym_QMARK, - ACTIONS(7187), 1, + ACTIONS(7254), 1, anon_sym_LT_EQ_GT, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7497), 1, + ACTIONS(7543), 1, anon_sym_PIPE_PIPE, - ACTIONS(7499), 1, + ACTIONS(7545), 1, anon_sym_AMP_AMP, - ACTIONS(7501), 1, + ACTIONS(7547), 1, anon_sym_PIPE, - ACTIONS(7505), 1, + ACTIONS(7551), 1, anon_sym_AMP, - ACTIONS(7511), 1, + ACTIONS(7557), 1, anon_sym_GT_EQ, - ACTIONS(7515), 1, + ACTIONS(7561), 1, anon_sym_or, - ACTIONS(7517), 1, + ACTIONS(7563), 1, anon_sym_and, - ACTIONS(7519), 1, + ACTIONS(7565), 1, anon_sym_bitor, - ACTIONS(7521), 1, + ACTIONS(7567), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7201), 2, + ACTIONS(7268), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7493), 2, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7503), 2, + ACTIONS(7549), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7513), 2, + ACTIONS(7559), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7495), 3, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7507), 3, + ACTIONS(7553), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7509), 3, + ACTIONS(7555), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6991), 16, + ACTIONS(7019), 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, @@ -353467,16 +355088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [62258] = 6, + [62464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(7559), 1, - anon_sym_LT, - STATE(3373), 1, - sym_template_argument_list, - ACTIONS(6352), 18, + ACTIONS(5788), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353486,25 +355101,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(6354), 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_LBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -353513,7 +355129,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, @@ -353527,11 +355142,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, - [62325] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [62525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 20, + ACTIONS(5537), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353552,7 +355170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5517), 33, + ACTIONS(5539), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -353586,75 +355204,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [62386] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(7043), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_LT, - STATE(2660), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3998), 1, - sym_template_argument_list, - 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_EQ, - 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, - [62461] = 3, + [62586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 20, + ACTIONS(5745), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353675,7 +355228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5755), 33, + ACTIONS(5747), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -353709,91 +355262,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [62522] = 26, + [62647] = 3, 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, - [62629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5812), 20, + ACTIONS(5749), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353814,7 +355286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5814), 33, + ACTIONS(5751), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -353848,10 +355320,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [62690] = 3, + [62708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 20, + ACTIONS(5753), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353872,7 +355344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5722), 33, + ACTIONS(5755), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -353906,12 +355378,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [62751] = 4, + [62769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7562), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6464), 19, + ACTIONS(5757), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353921,17 +355391,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_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6466), 33, + ACTIONS(5759), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -353939,10 +355410,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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -353950,7 +355419,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, @@ -353965,14 +355433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62814] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [62830] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7523), 1, - anon_sym_LT, - STATE(1568), 1, - sym_template_argument_list, - ACTIONS(6426), 18, + ACTIONS(6915), 1, + anon_sym_LBRACK, + STATE(3351), 1, + sym_new_declarator, + ACTIONS(6375), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -353983,26 +355454,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, - ACTIONS(6428), 33, + anon_sym_DASH_GT, + ACTIONS(6377), 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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354024,15 +355495,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, - [62879] = 5, + anon_sym_DASH_GT_STAR, + [62895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7523), 1, - anon_sym_LT, - STATE(2705), 1, - sym_template_argument_list, - ACTIONS(6426), 18, + ACTIONS(5705), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354042,16 +355509,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_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6428), 33, + ACTIONS(5707), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -354059,10 +355528,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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354070,7 +355537,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, @@ -354085,50 +355551,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [62944] = 9, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [62956] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7021), 1, + anon_sym_EQ, + ACTIONS(7184), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7230), 1, + anon_sym_QMARK, + ACTIONS(7254), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + ACTIONS(7543), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7545), 1, + anon_sym_AMP_AMP, + ACTIONS(7547), 1, + anon_sym_PIPE, + ACTIONS(7551), 1, + anon_sym_AMP, + ACTIONS(7557), 1, + anon_sym_GT_EQ, + ACTIONS(7561), 1, + anon_sym_or, + ACTIONS(7563), 1, + anon_sym_and, + ACTIONS(7565), 1, + anon_sym_bitor, + ACTIONS(7567), 1, + anon_sym_bitand, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7268), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6514), 17, + ACTIONS(7539), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7549), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7559), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7541), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7553), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7555), 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(6516), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(7023), 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, @@ -354142,33 +355636,72 @@ 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_DASH_GT_STAR, - [63017] = 10, + [63067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(2795), 1, + sym_template_argument_list, + ACTIONS(4180), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7159), 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(5839), 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(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(6510), 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, + [63134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354178,23 +355711,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(6512), 27, + anon_sym_DOT, + ACTIONS(5770), 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, @@ -354202,7 +355739,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, @@ -354213,11 +355749,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [63092] = 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, + [63195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 20, + ACTIONS(5795), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354238,7 +355780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5770), 33, + ACTIONS(5797), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -354272,10 +355814,95 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [63153] = 3, + [63256] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(7594), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4981), 1, + sym__function_attributes_start, + STATE(5235), 1, + sym_ref_qualifier, + STATE(6309), 1, + sym_trailing_return_type, + STATE(6396), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5436), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7066), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(7143), 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, + [63371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 20, + ACTIONS(5727), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354296,7 +355923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5774), 33, + ACTIONS(5729), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -354330,10 +355957,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [63214] = 3, + [63432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 20, + ACTIONS(5819), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354354,7 +355981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5798), 33, + ACTIONS(5821), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -354388,215 +356015,40 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [63275] = 26, + [63493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - ACTIONS(7015), 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, + ACTIONS(5835), 20, 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(7017), 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, - [63382] = 7, - ACTIONS(3), 1, - sym_comment, - 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_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(5411), 21, + ACTIONS(5837), 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_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, - [63451] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - ACTIONS(6985), 1, - anon_sym_EQ, - ACTIONS(7159), 1, + anon_sym_LBRACE, 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(6987), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -354604,18 +356056,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_DASH_GT_STAR, - [63558] = 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, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [63554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 20, + ACTIONS(5727), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354636,7 +356097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5786), 33, + ACTIONS(5729), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -354670,72 +356131,68 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [63619] = 7, + [63615] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5727), 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_auto, - anon_sym_decltype, - ACTIONS(6060), 25, + ACTIONS(5729), 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_STAR, - anon_sym_PERCENT, anon_sym_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, - [63688] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [63676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 20, + ACTIONS(5827), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354756,7 +356213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5668), 33, + ACTIONS(5829), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -354790,156 +356247,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [63749] = 10, - 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(2660), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2756), 1, - sym_template_argument_list, - 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(4172), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(4164), 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, - [63824] = 26, - ACTIONS(3), 1, - sym_comment, - 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, - 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, + [63737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 17, + ACTIONS(5831), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -354949,25 +356260,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(5699), 36, + ACTIONS(5833), 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, @@ -354977,32 +356288,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_DASH_GT_STAR, - [63992] = 5, + anon_sym_GT2, + [63798] = 3, 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, + ACTIONS(5815), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355017,14 +356323,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(6246), 29, + ACTIONS(5817), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -355032,6 +356337,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, @@ -355053,11 +356360,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, - [64057] = 3, + [63859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 20, + ACTIONS(5678), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355078,7 +356387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5722), 33, + ACTIONS(5680), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -355112,10 +356421,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [64118] = 3, + [63920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 20, + ACTIONS(5657), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355136,7 +356445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5822), 33, + ACTIONS(5659), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -355170,10 +356479,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [64179] = 3, + [63981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5716), 17, + ACTIONS(5686), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355183,25 +356492,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(5718), 36, + ACTIONS(5688), 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, @@ -355211,40 +356520,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_DASH_GT_STAR, - [64240] = 9, + anon_sym_GT2, + [64042] = 3, 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, + ACTIONS(5778), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355254,23 +356550,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(6435), 29, + anon_sym_DOT, + ACTIONS(5780), 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, @@ -355278,7 +356578,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, @@ -355291,16 +356590,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DASH_GT_STAR, - [64313] = 5, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [64103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, - anon_sym_LBRACK_LBRACK, - STATE(3244), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2043), 21, + ACTIONS(5657), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355315,14 +356613,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(6273), 29, + ACTIONS(5659), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -355330,6 +356627,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, @@ -355351,11 +356650,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, - [64378] = 3, + [64164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 20, + ACTIONS(5731), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355376,7 +356677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5726), 33, + ACTIONS(5733), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -355410,17 +356711,12 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [64439] = 6, + [64225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - STATE(3647), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6309), 20, + ACTIONS(7596), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6460), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355430,25 +356726,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(6311), 29, + ACTIONS(6462), 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_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, @@ -355456,6 +356755,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, @@ -355470,38 +356770,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [64506] = 6, + [64288] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6937), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(4925), 39, + ACTIONS(6935), 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_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -355525,21 +356816,22 @@ 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_final, - anon_sym_override, + anon_sym_explicit, + anon_sym_typename, anon_sym_template, anon_sym_operator, - [64573] = 5, + [64349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7531), 1, - anon_sym_LT, - STATE(3073), 1, - sym_template_argument_list, - ACTIONS(6426), 19, + ACTIONS(5682), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355549,27 +356841,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(6428), 32, + ACTIONS(5684), 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, @@ -355577,7 +356869,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, @@ -355591,11 +356882,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, - [64638] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [64410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 20, + ACTIONS(5697), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355616,7 +356910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5695), 33, + ACTIONS(5699), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -355650,10 +356944,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [64699] = 3, + [64471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 20, + ACTIONS(5709), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355674,7 +356968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5730), 33, + ACTIONS(5711), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -355708,26 +357002,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_GT2, - [64760] = 10, + [64532] = 3, 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(7201), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7203), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6460), 17, + ACTIONS(5693), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -355737,23 +357015,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(6462), 27, + anon_sym_DOT, + ACTIONS(5695), 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, @@ -355761,7 +357043,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, @@ -355772,257 +357053,47 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [64593] = 3, 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, + ACTIONS(5719), 20, 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, + ACTIONS(5721), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, - 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_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356036,200 +357107,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [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_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, - 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, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [64654] = 3, 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(7624), 1, + ACTIONS(5723), 20, 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_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5725), 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, - 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, 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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [64715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5799), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356239,28 +357189,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(4927), 32, + ACTIONS(5801), 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, @@ -356268,7 +357217,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, @@ -356282,213 +357230,119 @@ 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, - [65531] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6751), 1, - anon_sym_COLON_COLON, - ACTIONS(7745), 1, - anon_sym_virtual, - 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, - 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, - anon_sym___inline, - anon_sym___inline__, - 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, - anon_sym_restrict, - 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(6749), 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, + anon_sym_DASH_GT, sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [65609] = 21, + anon_sym_GT2, + [64776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - 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(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(7700), 2, + STATE(2670), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(3639), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(3643), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5948), 16, 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(6518), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7716), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 18, + 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(5950), 25, 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_GT2, - [65705] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6935), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7704), 1, + anon_sym_STAR, + anon_sym_PERCENT, 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_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, - ACTIONS(7722), 1, + anon_sym_RBRACK, + anon_sym_QMARK, 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [64843] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, anon_sym_DOT, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7019), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7700), 2, + ACTIONS(7598), 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, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7702), 3, + ACTIONS(7600), 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, + ACTIONS(6481), 14, + 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), 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, + ACTIONS(6483), 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, @@ -356502,65 +357356,46 @@ 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, - [65809] = 19, + [64921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - 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, - STATE(3652), 1, - sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(6056), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 5, - anon_sym_PIPE, + 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, - ACTIONS(6520), 19, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6054), 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, @@ -356568,71 +357403,56 @@ 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, - anon_sym_GT2, - [65901] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - 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_bitor, anon_sym_bitand, - 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7702), 3, + [64981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 20, + anon_sym_DASH, + anon_sym_PLUS, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 7, - anon_sym_PIPE, - anon_sym_CARET, + 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(6520), 19, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6520), 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, @@ -356640,18 +357460,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_GT2, - [65991] = 3, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356672,7 +357499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4927), 32, + ACTIONS(4917), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -356705,10 +357532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66051] = 3, + [65101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356729,7 +357556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4927), 32, + ACTIONS(4917), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -356762,69 +357589,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66111] = 3, + [65161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 22, - aux_sym_preproc_elif_token1, + ACTIONS(4924), 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(4917), 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, - [66171] = 4, + anon_sym_DASH_GT_STAR, + [65221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5515), 16, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356838,10 +357663,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(5517), 35, + ACTIONS(4917), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -356851,8 +357680,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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -356864,36 +357692,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, - [66233] = 9, + [65281] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6433), 19, + ACTIONS(6456), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -356913,7 +357739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6435), 26, + ACTIONS(6458), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -356940,126 +357766,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_GT2, - [66305] = 3, + [65353] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 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(5190), 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, + ACTIONS(6953), 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_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7602), 1, 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, - [66365] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - ACTIONS(7704), 1, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7610), 1, anon_sym_PIPE_PIPE, - ACTIONS(7706), 1, + ACTIONS(7612), 1, anon_sym_AMP_AMP, - ACTIONS(7708), 1, + ACTIONS(7614), 1, anon_sym_PIPE, - ACTIONS(7712), 1, + ACTIONS(7618), 1, anon_sym_AMP, - ACTIONS(7720), 1, - anon_sym_LBRACK, - ACTIONS(7722), 1, + ACTIONS(7626), 1, anon_sym_LT_EQ_GT, - ACTIONS(7724), 1, + ACTIONS(7628), 1, anon_sym_or, - ACTIONS(7726), 1, + ACTIONS(7630), 1, anon_sym_and, - ACTIONS(7728), 1, + ACTIONS(7632), 1, anon_sym_bitor, - ACTIONS(7730), 1, + ACTIONS(7634), 1, anon_sym_bitand, - ACTIONS(7734), 1, - anon_sym_DOT, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7015), 2, + ACTIONS(7031), 2, anon_sym_EQ, anon_sym_GT_GT_EQ, - ACTIONS(7700), 2, + ACTIONS(7598), 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, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7702), 3, + ACTIONS(7616), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7714), 3, + ACTIONS(7620), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7716), 4, + ACTIONS(7622), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 16, + ACTIONS(7033), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_QMARK, @@ -357076,16 +357845,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_GT2, - [66469] = 6, + [65457] = 10, 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, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7604), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6444), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357097,6 +357876,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, @@ -357104,16 +357884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(6354), 30, + ACTIONS(6446), 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, @@ -357131,65 +357908,42 @@ 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, anon_sym_GT2, - [66535] = 16, + [65531] = 3, 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, + ACTIONS(4924), 20, 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(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(6518), 8, 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 20, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4917), 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, @@ -357197,163 +357951,177 @@ 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_GT2, - [66621] = 29, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(4924), 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, - ACTIONS(6418), 1, - anon_sym_DOT, - ACTIONS(6662), 1, anon_sym_EQ, - ACTIONS(6981), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4917), 32, anon_sym_DOT_DOT_DOT, - ACTIONS(7229), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7247), 1, + 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, - 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, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [65651] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7225), 2, + ACTIONS(6470), 19, 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(7766), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6664), 13, + 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(6472), 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, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, 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, - [66733] = 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(6993), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7700), 2, + anon_sym_not_eq, + anon_sym_GT2, + [65725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6460), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6995), 16, + 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(6462), 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, @@ -357361,28 +358129,36 @@ 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, - [66837] = 8, + 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, + [65785] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(7483), 1, + ACTIONS(7488), 1, anon_sym_LT, - ACTIONS(7577), 1, + ACTIONS(7518), 1, anon_sym_EQ, - STATE(2756), 1, + STATE(2795), 1, sym_template_argument_list, - ACTIONS(7575), 2, + ACTIONS(7516), 2, anon_sym_COMMA, anon_sym_GT2, - ACTIONS(4192), 7, + ACTIONS(4180), 7, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_TILDE, @@ -357390,7 +358166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(5834), 39, + ACTIONS(5839), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -357430,52 +358206,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_template, anon_sym_operator, - [66907] = 15, + [65855] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7722), 1, - anon_sym_LT_EQ_GT, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - STATE(3632), 1, + ACTIONS(7610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7612), 1, + anon_sym_AMP_AMP, + ACTIONS(7614), 1, + anon_sym_PIPE, + ACTIONS(7618), 1, + anon_sym_AMP, + ACTIONS(7626), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7628), 1, + anon_sym_or, + ACTIONS(7630), 1, + anon_sym_and, + ACTIONS(7632), 1, + anon_sym_bitor, + ACTIONS(7634), 1, + anon_sym_bitand, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(7035), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7598), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7718), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7732), 2, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7702), 3, + ACTIONS(7616), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7716), 4, + ACTIONS(7620), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7622), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 8, + ACTIONS(7037), 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, + [65959] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6440), 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_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 23, + ACTIONS(6442), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -357495,82 +358341,85 @@ 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_GT2, - [66991] = 30, + [66031] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7063), 1, + ACTIONS(7083), 1, anon_sym_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7369), 1, + ACTIONS(7441), 1, anon_sym___attribute__, - ACTIONS(7372), 1, + ACTIONS(7444), 1, anon_sym___attribute, - ACTIONS(7538), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(5039), 1, + STATE(5053), 1, sym__function_attributes_start, - STATE(5264), 1, + STATE(5292), 1, sym_ref_qualifier, - STATE(6251), 1, + STATE(6254), 1, sym__function_attributes_end, - STATE(6294), 1, + STATE(6309), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(4041), 2, + STATE(4059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4265), 2, + STATE(4246), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6125), 2, + STATE(6151), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7046), 3, + ACTIONS(7066), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - STATE(5429), 3, + STATE(5457), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7297), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -357583,158 +358432,556 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [67105] = 51, + [66145] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7444), 1, + anon_sym___attribute, + ACTIONS(7509), 1, + anon_sym_requires, + ACTIONS(7636), 1, + anon_sym_DASH_GT, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5029), 1, + sym__function_attributes_start, + STATE(5300), 1, + sym_ref_qualifier, + STATE(6258), 1, + sym__function_attributes_end, + STATE(6324), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7400), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7066), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5450), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7143), 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, + [66259] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7403), 1, + anon_sym_requires, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7444), 1, + anon_sym___attribute, + ACTIONS(7638), 1, + anon_sym_DASH_GT, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5034), 1, + sym__function_attributes_start, + STATE(5303), 1, + sym_ref_qualifier, + STATE(6138), 1, + sym_trailing_return_type, + STATE(6231), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7400), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7066), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5453), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7143), 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, + [66373] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5007), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5009), 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(5002), 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, + [66435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 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(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_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, + [66495] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(7647), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3286), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(7644), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7642), 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(7640), 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, + [66563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 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(5942), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7159), 1, + 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, + [66623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5944), 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, - ACTIONS(7205), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5946), 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, - 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, + [66683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5970), 20, 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_LBRACK, anon_sym_EQ, - ACTIONS(7662), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5972), 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(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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, 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(7770), 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, - [67261] = 11, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66743] = 3, 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(7732), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7702), 3, + ACTIONS(5893), 20, + anon_sym_DASH, + anon_sym_PLUS, 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, 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(6520), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5895), 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, @@ -357742,6 +358989,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, @@ -357752,11 +359000,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [67337] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [66803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 22, + ACTIONS(5192), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -357779,7 +359030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(1934), 30, + ACTIONS(5194), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -357810,10 +359061,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67397] = 3, + [66863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 26, + ACTIONS(6056), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357827,50 +359078,406 @@ 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(6054), 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, + [66923] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7272), 1, + anon_sym_DOT_STAR, + ACTIONS(7274), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_COMMA, + ACTIONS(7654), 1, + anon_sym_RPAREN, + ACTIONS(7656), 1, + anon_sym_DASH, + ACTIONS(7658), 1, + anon_sym_PLUS, + ACTIONS(7660), 1, + anon_sym_STAR, + ACTIONS(7662), 1, + anon_sym_SLASH, + ACTIONS(7664), 1, + anon_sym_PERCENT, + ACTIONS(7666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7668), 1, + anon_sym_AMP_AMP, + ACTIONS(7670), 1, + anon_sym_PIPE, + ACTIONS(7672), 1, + anon_sym_CARET, + ACTIONS(7674), 1, + anon_sym_AMP, + ACTIONS(7676), 1, + anon_sym_EQ_EQ, + ACTIONS(7678), 1, + anon_sym_BANG_EQ, + ACTIONS(7680), 1, + anon_sym_GT, + ACTIONS(7682), 1, + anon_sym_GT_EQ, + ACTIONS(7684), 1, + anon_sym_LT_EQ, + ACTIONS(7686), 1, + anon_sym_LT, + ACTIONS(7688), 1, + anon_sym_LT_LT, + ACTIONS(7690), 1, + anon_sym_GT_GT, + ACTIONS(7692), 1, + anon_sym_EQ, + ACTIONS(7694), 1, + anon_sym_QMARK, + ACTIONS(7696), 1, + anon_sym_STAR_EQ, + ACTIONS(7698), 1, + anon_sym_SLASH_EQ, + ACTIONS(7700), 1, + anon_sym_PERCENT_EQ, + ACTIONS(7702), 1, + anon_sym_PLUS_EQ, + ACTIONS(7704), 1, + anon_sym_DASH_EQ, + ACTIONS(7706), 1, + anon_sym_LT_LT_EQ, + ACTIONS(7708), 1, + anon_sym_GT_GT_EQ, + ACTIONS(7710), 1, + anon_sym_AMP_EQ, + ACTIONS(7712), 1, + anon_sym_CARET_EQ, + ACTIONS(7714), 1, + anon_sym_PIPE_EQ, + ACTIONS(7716), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7718), 1, anon_sym_or, + ACTIONS(7720), 1, anon_sym_and, + ACTIONS(7722), 1, anon_sym_bitor, + ACTIONS(7724), 1, anon_sym_xor, + ACTIONS(7726), 1, anon_sym_bitand, + ACTIONS(7728), 1, anon_sym_not_eq, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(7083), 26, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [67079] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7739), 1, + anon_sym_virtual, + ACTIONS(7748), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7751), 1, + anon_sym___declspec, + ACTIONS(7757), 1, + anon_sym_explicit, + STATE(3093), 1, + sym_alignas_qualifier, + ACTIONS(7745), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7754), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7734), 5, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + ACTIONS(7732), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(7742), 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(3294), 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(7736), 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, + [67159] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7612), 1, + anon_sym_AMP_AMP, + ACTIONS(7614), 1, + anon_sym_PIPE, + ACTIONS(7618), 1, + anon_sym_AMP, + ACTIONS(7626), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7628), 1, + anon_sym_or, + ACTIONS(7630), 1, + anon_sym_and, + ACTIONS(7632), 1, + anon_sym_bitor, + ACTIONS(7634), 1, + anon_sym_bitand, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(6971), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7604), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7616), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7620), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7622), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6973), 16, 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_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, + [67263] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7272), 1, + anon_sym_DOT_STAR, + ACTIONS(7274), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_COMMA, + ACTIONS(7656), 1, + anon_sym_DASH, + ACTIONS(7658), 1, + anon_sym_PLUS, + ACTIONS(7660), 1, + anon_sym_STAR, + ACTIONS(7662), 1, + anon_sym_SLASH, + ACTIONS(7664), 1, + anon_sym_PERCENT, + ACTIONS(7666), 1, anon_sym_PIPE_PIPE, + ACTIONS(7668), 1, anon_sym_AMP_AMP, + ACTIONS(7670), 1, + anon_sym_PIPE, + ACTIONS(7672), 1, + anon_sym_CARET, + ACTIONS(7674), 1, + anon_sym_AMP, + ACTIONS(7676), 1, anon_sym_EQ_EQ, + ACTIONS(7678), 1, anon_sym_BANG_EQ, + ACTIONS(7680), 1, + anon_sym_GT, + ACTIONS(7682), 1, anon_sym_GT_EQ, - anon_sym_LBRACK, + ACTIONS(7684), 1, + anon_sym_LT_EQ, + ACTIONS(7686), 1, + anon_sym_LT, + ACTIONS(7688), 1, + anon_sym_LT_LT, + ACTIONS(7690), 1, + anon_sym_GT_GT, + ACTIONS(7692), 1, + anon_sym_EQ, + ACTIONS(7694), 1, anon_sym_QMARK, + ACTIONS(7696), 1, anon_sym_STAR_EQ, + ACTIONS(7698), 1, anon_sym_SLASH_EQ, + ACTIONS(7700), 1, anon_sym_PERCENT_EQ, + ACTIONS(7702), 1, anon_sym_PLUS_EQ, + ACTIONS(7704), 1, anon_sym_DASH_EQ, + ACTIONS(7706), 1, anon_sym_LT_LT_EQ, + ACTIONS(7708), 1, anon_sym_GT_GT_EQ, + ACTIONS(7710), 1, anon_sym_AMP_EQ, + ACTIONS(7712), 1, anon_sym_CARET_EQ, + ACTIONS(7714), 1, anon_sym_PIPE_EQ, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, + ACTIONS(7718), 1, + anon_sym_or, + ACTIONS(7720), 1, + anon_sym_and, + ACTIONS(7722), 1, + anon_sym_bitor, + ACTIONS(7724), 1, + anon_sym_xor, + ACTIONS(7726), 1, + anon_sym_bitand, + ACTIONS(7728), 1, + anon_sym_not_eq, + ACTIONS(7760), 1, + anon_sym_RPAREN, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [67457] = 3, + [67419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 22, + ACTIONS(5158), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -357893,7 +359500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5202), 30, + ACTIONS(5160), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -357924,10 +359531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67517] = 3, + [67479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 20, + ACTIONS(7762), 1, + sym_literal_suffix, + ACTIONS(4168), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -357941,14 +359550,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_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(6504), 32, + ACTIONS(4161), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -357958,7 +359572,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, @@ -357970,84 +359584,78 @@ 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, - [67577] = 27, + [67541] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7704), 1, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7610), 1, anon_sym_PIPE_PIPE, - ACTIONS(7706), 1, + ACTIONS(7612), 1, anon_sym_AMP_AMP, - ACTIONS(7708), 1, + ACTIONS(7614), 1, anon_sym_PIPE, - ACTIONS(7712), 1, + ACTIONS(7618), 1, anon_sym_AMP, - ACTIONS(7720), 1, - anon_sym_LBRACK, - ACTIONS(7722), 1, + ACTIONS(7626), 1, anon_sym_LT_EQ_GT, - ACTIONS(7724), 1, + ACTIONS(7628), 1, anon_sym_or, - ACTIONS(7726), 1, + ACTIONS(7630), 1, anon_sym_and, - ACTIONS(7728), 1, + ACTIONS(7632), 1, anon_sym_bitor, - ACTIONS(7730), 1, + ACTIONS(7634), 1, anon_sym_bitand, - ACTIONS(7734), 1, - anon_sym_DOT, - ACTIONS(7772), 1, + ACTIONS(7764), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7774), 1, + ACTIONS(7766), 1, anon_sym_QMARK, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6997), 2, + ACTIONS(6710), 2, anon_sym_EQ, anon_sym_GT_GT_EQ, - ACTIONS(7700), 2, + ACTIONS(7598), 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, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7702), 3, + ACTIONS(7616), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7714), 3, + ACTIONS(7620), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7716), 4, + ACTIONS(7622), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6999), 14, + ACTIONS(6712), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358062,57 +359670,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_GT2, - [67685] = 14, + [67649] = 3, 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, + ACTIONS(6714), 20, 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, - ACTIONS(6520), 23, + 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358120,20 +359712,41 @@ 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_GT2, - [67767] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [67709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 20, + ACTIONS(6038), 1, + anon_sym_EQ, + ACTIONS(6040), 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(4168), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358147,38 +359760,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___attribute, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3961), 32, + ACTIONS(4161), 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_LBRACK, + 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, @@ -358186,68 +359785,125 @@ 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, - [67827] = 3, + anon_sym_DASH_GT, + [67773] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 20, + ACTIONS(5170), 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(6508), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5172), 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, - [67887] = 3, + anon_sym_DASH_GT, + [67833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5511), 4, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + ACTIONS(5509), 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, + [67893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 20, + ACTIONS(6714), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358267,18 +359923,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6496), 32, + ACTIONS(6716), 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, @@ -358300,139 +359956,93 @@ 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, - [67947] = 51, + anon_sym_DASH_GT, + [67953] = 6, 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(7624), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7768), 1, + anon_sym_LT, + STATE(3494), 1, + sym_template_argument_list, + ACTIONS(6379), 19, 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_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6381), 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(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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, 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, - [68103] = 12, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [68019] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7732), 2, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7702), 3, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6518), 14, + ACTIONS(6481), 16, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -358447,7 +360057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 24, + ACTIONS(6483), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -358472,10 +360082,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [68181] = 3, + [68095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 20, + ACTIONS(7771), 1, + anon_sym_LT, + STATE(1903), 1, + sym_template_argument_list, + ACTIONS(6474), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358486,17 +360100,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(6004), 32, + ACTIONS(6476), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -358506,7 +360118,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, @@ -358529,10 +360141,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [68241] = 3, + [68159] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 19, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7604), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6481), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -358542,28 +360170,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(6680), 33, + ACTIONS(6483), 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_GT_EQ, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358571,7 +360194,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, @@ -358582,78 +360204,71 @@ 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, - [68301] = 27, + anon_sym_GT2, + [68233] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7704), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7706), 1, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7612), 1, anon_sym_AMP_AMP, - ACTIONS(7708), 1, + ACTIONS(7614), 1, anon_sym_PIPE, - ACTIONS(7712), 1, + ACTIONS(7618), 1, anon_sym_AMP, - ACTIONS(7720), 1, - anon_sym_LBRACK, - ACTIONS(7722), 1, + ACTIONS(7626), 1, anon_sym_LT_EQ_GT, - ACTIONS(7724), 1, - anon_sym_or, - ACTIONS(7726), 1, + ACTIONS(7630), 1, anon_sym_and, - ACTIONS(7728), 1, + ACTIONS(7632), 1, anon_sym_bitor, - ACTIONS(7730), 1, + ACTIONS(7634), 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, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6662), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7700), 2, + ACTIONS(7598), 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, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7702), 3, + ACTIONS(7616), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6481), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7714), 3, + ACTIONS(7620), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7716), 4, + ACTIONS(7622), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6664), 14, + ACTIONS(6483), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -358667,41 +360282,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_GT2, - [68409] = 3, + [68333] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 20, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7614), 1, + anon_sym_PIPE, + ACTIONS(7618), 1, + anon_sym_AMP, + ACTIONS(7626), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7632), 1, + anon_sym_bitor, + ACTIONS(7634), 1, + anon_sym_bitand, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7598), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(7604), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7616), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(7624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(7600), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7620), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6481), 4, 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(3945), 32, + ACTIONS(7622), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -358709,197 +360350,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_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, - [68469] = 30, + anon_sym_GT2, + [68429] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - 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, + ACTIONS(7618), 1, anon_sym_AMP, - ACTIONS(7243), 1, - anon_sym_GT_EQ, - ACTIONS(7247), 1, + ACTIONS(7626), 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, + ACTIONS(7634), 1, anon_sym_bitand, - ACTIONS(7279), 1, - anon_sym_QMARK, - ACTIONS(7316), 1, - anon_sym_RPAREN, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(7780), 1, - anon_sym_EQ, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(7598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7235), 2, + ACTIONS(7616), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7245), 2, + ACTIONS(7624), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7227), 3, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7239), 3, + ACTIONS(7620), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7241), 3, + ACTIONS(7622), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7185), 13, + ACTIONS(6481), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(6483), 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_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, - [68583] = 3, + anon_sym_bitor, + anon_sym_GT2, + [68521] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 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(5150), 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, + ACTIONS(6953), 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_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7602), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7618), 1, + anon_sym_AMP, + ACTIONS(7626), 1, anon_sym_LT_EQ_GT, + ACTIONS(7634), 1, + anon_sym_bitand, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [68643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5907), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7620), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7622), 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, + ACTIONS(6481), 7, + 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, - anon_sym_DASH_GT, - ACTIONS(5909), 32, + ACTIONS(6483), 19, 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, @@ -358907,163 +360494,136 @@ 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, - [68703] = 51, + anon_sym_GT2, + [68611] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7602), 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(7606), 1, + anon_sym_DOT, ACTIONS(7626), 1, + anon_sym_LT_EQ_GT, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7598), 2, + anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7628), 1, + ACTIONS(7604), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, 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, + ACTIONS(7620), 3, anon_sym_EQ_EQ, - ACTIONS(7646), 1, anon_sym_BANG_EQ, - ACTIONS(7648), 1, + anon_sym_not_eq, + ACTIONS(7622), 4, 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, + ACTIONS(6481), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, - ACTIONS(7662), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(6483), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - ACTIONS(7692), 1, - anon_sym_xor, - ACTIONS(7694), 1, anon_sym_bitand, - ACTIONS(7696), 1, - anon_sym_not_eq, - ACTIONS(7782), 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, - [68859] = 5, + anon_sym_GT2, + [68697] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7784), 1, - anon_sym_LT, - STATE(3213), 1, - sym_template_argument_list, - ACTIONS(6426), 18, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7626), 1, + anon_sym_LT_EQ_GT, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7598), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7604), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7622), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6481), 8, 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6428), 32, + ACTIONS(6483), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -359071,336 +360631,114 @@ 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, - [68923] = 3, + anon_sym_GT2, + [68781] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 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(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, + ACTIONS(6953), 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_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7602), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7626), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [68983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5196), 22, - aux_sym_preproc_elif_token1, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7598), 2, 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(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_LT_EQ_GT, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69043] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5144), 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(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, + ACTIONS(7624), 2, 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, - [69103] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5196), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7600), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6481), 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___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_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5198), 30, + ACTIONS(6483), 23, 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, - [69163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5184), 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_STAR_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_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, - 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, - [69223] = 13, + anon_sym_GT2, + [68863] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(7598), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7718), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7732), 2, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7702), 3, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6518), 12, + ACTIONS(6481), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -359413,7 +360751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 24, + ACTIONS(6483), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -359438,181 +360776,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [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, + [68943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6590), 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(5158), 30, + anon_sym_DASH_GT, + ACTIONS(6592), 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, - [69423] = 3, + anon_sym_DASH_GT_STAR, + [69003] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 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(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, + ACTIONS(6953), 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_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(7602), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(7606), 1, + anon_sym_DOT, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 19, + ACTIONS(6422), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359622,28 +360862,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, - anon_sym_DASH_GT, - ACTIONS(6500), 33, + ACTIONS(6424), 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, anon_sym_SLASH_EQ, @@ -359651,7 +360886,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, @@ -359662,11 +360896,8 @@ 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, - [69543] = 3, + anon_sym_GT2, + [69077] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5994), 20, @@ -359723,52 +360954,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [69603] = 10, + [69137] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - STATE(3632), 1, + ACTIONS(7610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7612), 1, + anon_sym_AMP_AMP, + ACTIONS(7614), 1, + anon_sym_PIPE, + ACTIONS(7618), 1, + anon_sym_AMP, + ACTIONS(7626), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7628), 1, + anon_sym_or, + ACTIONS(7630), 1, + anon_sym_and, + ACTIONS(7632), 1, + anon_sym_bitor, + ACTIONS(7634), 1, + anon_sym_bitand, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7732), 2, + ACTIONS(7009), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6518), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7616), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7620), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7622), 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_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6520), 24, + ACTIONS(7011), 16, 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, @@ -359782,177 +361032,280 @@ 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, - [69677] = 51, + [69241] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7205), 1, + ACTIONS(7272), 1, anon_sym_DOT_STAR, - ACTIONS(7207), 1, + ACTIONS(7274), 1, anon_sym_DASH_GT_STAR, - ACTIONS(7618), 1, + ACTIONS(7650), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7620), 1, + ACTIONS(7652), 1, anon_sym_COMMA, - ACTIONS(7624), 1, + ACTIONS(7656), 1, anon_sym_DASH, - ACTIONS(7626), 1, + ACTIONS(7658), 1, anon_sym_PLUS, - ACTIONS(7628), 1, + ACTIONS(7660), 1, anon_sym_STAR, - ACTIONS(7630), 1, + ACTIONS(7662), 1, anon_sym_SLASH, - ACTIONS(7632), 1, + ACTIONS(7664), 1, anon_sym_PERCENT, - ACTIONS(7634), 1, + ACTIONS(7666), 1, anon_sym_PIPE_PIPE, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_AMP_AMP, - ACTIONS(7638), 1, + ACTIONS(7670), 1, anon_sym_PIPE, - ACTIONS(7640), 1, + ACTIONS(7672), 1, anon_sym_CARET, - ACTIONS(7642), 1, + ACTIONS(7674), 1, anon_sym_AMP, - ACTIONS(7644), 1, + ACTIONS(7676), 1, anon_sym_EQ_EQ, - ACTIONS(7646), 1, + ACTIONS(7678), 1, anon_sym_BANG_EQ, - ACTIONS(7648), 1, + ACTIONS(7680), 1, anon_sym_GT, - ACTIONS(7650), 1, + ACTIONS(7682), 1, anon_sym_GT_EQ, - ACTIONS(7652), 1, + ACTIONS(7684), 1, anon_sym_LT_EQ, - ACTIONS(7654), 1, + ACTIONS(7686), 1, anon_sym_LT, - ACTIONS(7656), 1, + ACTIONS(7688), 1, anon_sym_LT_LT, - ACTIONS(7658), 1, + ACTIONS(7690), 1, anon_sym_GT_GT, - ACTIONS(7660), 1, + ACTIONS(7692), 1, anon_sym_EQ, - ACTIONS(7662), 1, + ACTIONS(7694), 1, anon_sym_QMARK, - ACTIONS(7664), 1, + ACTIONS(7696), 1, anon_sym_STAR_EQ, - ACTIONS(7666), 1, + ACTIONS(7698), 1, anon_sym_SLASH_EQ, - ACTIONS(7668), 1, + ACTIONS(7700), 1, anon_sym_PERCENT_EQ, - ACTIONS(7670), 1, + ACTIONS(7702), 1, anon_sym_PLUS_EQ, - ACTIONS(7672), 1, + ACTIONS(7704), 1, anon_sym_DASH_EQ, - ACTIONS(7674), 1, + ACTIONS(7706), 1, anon_sym_LT_LT_EQ, - ACTIONS(7676), 1, + ACTIONS(7708), 1, anon_sym_GT_GT_EQ, - ACTIONS(7678), 1, + ACTIONS(7710), 1, anon_sym_AMP_EQ, - ACTIONS(7680), 1, + ACTIONS(7712), 1, anon_sym_CARET_EQ, - ACTIONS(7682), 1, + ACTIONS(7714), 1, anon_sym_PIPE_EQ, - ACTIONS(7684), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + ACTIONS(7718), 1, anon_sym_or, - ACTIONS(7688), 1, + ACTIONS(7720), 1, anon_sym_and, - ACTIONS(7690), 1, + ACTIONS(7722), 1, anon_sym_bitor, - ACTIONS(7692), 1, + ACTIONS(7724), 1, anon_sym_xor, - ACTIONS(7694), 1, + ACTIONS(7726), 1, anon_sym_bitand, - ACTIONS(7696), 1, + ACTIONS(7728), 1, anon_sym_not_eq, - ACTIONS(7787), 1, + ACTIONS(7774), 1, anon_sym_RPAREN, - STATE(1285), 1, + STATE(1541), 1, sym__binary_fold_operator, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - STATE(8910), 1, + STATE(8952), 1, sym__fold_operator, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [69833] = 3, + [69397] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 22, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7612), 1, + anon_sym_AMP_AMP, + ACTIONS(7614), 1, anon_sym_PIPE, + ACTIONS(7618), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + ACTIONS(7626), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7628), 1, anon_sym_or, + ACTIONS(7630), 1, anon_sym_and, + ACTIONS(7632), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(7634), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5162), 30, + ACTIONS(7764), 1, 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(7766), 1, + anon_sym_QMARK, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7013), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7604), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7616), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(7620), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7622), 4, + anon_sym_GT, 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_LT_EQ, + anon_sym_LT, + ACTIONS(7015), 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, + [69505] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(7610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7612), 1, + anon_sym_AMP_AMP, + ACTIONS(7614), 1, + anon_sym_PIPE, + ACTIONS(7618), 1, + anon_sym_AMP, + ACTIONS(7626), 1, anon_sym_LT_EQ_GT, + ACTIONS(7628), 1, + anon_sym_or, + ACTIONS(7630), 1, + anon_sym_and, + ACTIONS(7632), 1, + anon_sym_bitor, + ACTIONS(7634), 1, + anon_sym_bitand, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7017), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [69893] = 3, + ACTIONS(7616), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7620), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7622), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7019), 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, + [69609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 20, + ACTIONS(7588), 1, + anon_sym_LT, + STATE(1599), 1, + sym_template_argument_list, + ACTIONS(6474), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -359963,17 +361316,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(5905), 32, + ACTIONS(6476), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -359983,7 +361334,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, @@ -360006,10 +361357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [69953] = 3, + [69673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 22, + ACTIONS(5162), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -360032,7 +361383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5142), 30, + ACTIONS(5164), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360063,232 +361414,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [70013] = 6, - ACTIONS(3), 1, - sym_comment, - 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, - 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(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, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [70079] = 3, - ACTIONS(3), 1, - sym_comment, - 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6466), 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, - [70139] = 51, + [69733] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7205), 1, + ACTIONS(7272), 1, anon_sym_DOT_STAR, - ACTIONS(7207), 1, + ACTIONS(7274), 1, anon_sym_DASH_GT_STAR, - ACTIONS(7618), 1, + ACTIONS(7650), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7620), 1, + ACTIONS(7652), 1, anon_sym_COMMA, - ACTIONS(7624), 1, + ACTIONS(7656), 1, anon_sym_DASH, - ACTIONS(7626), 1, + ACTIONS(7658), 1, anon_sym_PLUS, - ACTIONS(7628), 1, + ACTIONS(7660), 1, anon_sym_STAR, - ACTIONS(7630), 1, + ACTIONS(7662), 1, anon_sym_SLASH, - ACTIONS(7632), 1, + ACTIONS(7664), 1, anon_sym_PERCENT, - ACTIONS(7634), 1, + ACTIONS(7666), 1, anon_sym_PIPE_PIPE, - ACTIONS(7636), 1, + ACTIONS(7668), 1, anon_sym_AMP_AMP, - ACTIONS(7638), 1, + ACTIONS(7670), 1, anon_sym_PIPE, - ACTIONS(7640), 1, + ACTIONS(7672), 1, anon_sym_CARET, - ACTIONS(7642), 1, + ACTIONS(7674), 1, anon_sym_AMP, - ACTIONS(7644), 1, + ACTIONS(7676), 1, anon_sym_EQ_EQ, - ACTIONS(7646), 1, + ACTIONS(7678), 1, anon_sym_BANG_EQ, - ACTIONS(7648), 1, + ACTIONS(7680), 1, anon_sym_GT, - ACTIONS(7650), 1, + ACTIONS(7682), 1, anon_sym_GT_EQ, - ACTIONS(7652), 1, + ACTIONS(7684), 1, anon_sym_LT_EQ, - ACTIONS(7654), 1, + ACTIONS(7686), 1, anon_sym_LT, - ACTIONS(7656), 1, + ACTIONS(7688), 1, anon_sym_LT_LT, - ACTIONS(7658), 1, + ACTIONS(7690), 1, anon_sym_GT_GT, - ACTIONS(7660), 1, + ACTIONS(7692), 1, anon_sym_EQ, - ACTIONS(7662), 1, + ACTIONS(7694), 1, anon_sym_QMARK, - ACTIONS(7664), 1, + ACTIONS(7696), 1, anon_sym_STAR_EQ, - ACTIONS(7666), 1, + ACTIONS(7698), 1, anon_sym_SLASH_EQ, - ACTIONS(7668), 1, + ACTIONS(7700), 1, anon_sym_PERCENT_EQ, - ACTIONS(7670), 1, + ACTIONS(7702), 1, anon_sym_PLUS_EQ, - ACTIONS(7672), 1, + ACTIONS(7704), 1, anon_sym_DASH_EQ, - ACTIONS(7674), 1, + ACTIONS(7706), 1, anon_sym_LT_LT_EQ, - ACTIONS(7676), 1, + ACTIONS(7708), 1, anon_sym_GT_GT_EQ, - ACTIONS(7678), 1, + ACTIONS(7710), 1, anon_sym_AMP_EQ, - ACTIONS(7680), 1, + ACTIONS(7712), 1, anon_sym_CARET_EQ, - ACTIONS(7682), 1, + ACTIONS(7714), 1, anon_sym_PIPE_EQ, - ACTIONS(7684), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + ACTIONS(7718), 1, anon_sym_or, - ACTIONS(7688), 1, + ACTIONS(7720), 1, anon_sym_and, - ACTIONS(7690), 1, + ACTIONS(7722), 1, anon_sym_bitor, - ACTIONS(7692), 1, + ACTIONS(7724), 1, anon_sym_xor, - ACTIONS(7694), 1, + ACTIONS(7726), 1, anon_sym_bitand, - ACTIONS(7696), 1, + ACTIONS(7728), 1, anon_sym_not_eq, - ACTIONS(7789), 1, + ACTIONS(7776), 1, anon_sym_RPAREN, - STATE(1285), 1, + STATE(1541), 1, sym__binary_fold_operator, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - STATE(8910), 1, + STATE(8952), 1, sym__fold_operator, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [70295] = 3, + [69889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 20, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + ACTIONS(6330), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360302,14 +361538,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(5992), 32, + ACTIONS(6332), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360319,7 +361554,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, @@ -360342,17 +361577,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [70355] = 6, + [69951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6011), 1, + ACTIONS(6955), 1, anon_sym_LBRACK, - ACTIONS(6008), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(4174), 19, + STATE(3478), 1, + sym_new_declarator, + ACTIONS(6375), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360362,24 +361594,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(4166), 29, + ACTIONS(6377), 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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -360387,7 +361621,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, @@ -360401,117 +361634,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_STAR, - [70421] = 9, + anon_sym_DASH_GT, + anon_sym_GT2, + [70015] = 3, 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, + ACTIONS(5178), 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, - ACTIONS(6395), 11, + 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(5180), 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_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6393), 34, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + 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_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, + 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, + [70075] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - STATE(3632), 1, + ACTIONS(7610), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7612), 1, + anon_sym_AMP_AMP, + ACTIONS(7614), 1, + anon_sym_PIPE, + ACTIONS(7618), 1, + anon_sym_AMP, + ACTIONS(7626), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7628), 1, + anon_sym_or, + ACTIONS(7630), 1, + anon_sym_and, + ACTIONS(7632), 1, + anon_sym_bitor, + ACTIONS(7634), 1, + anon_sym_bitand, + ACTIONS(7764), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7766), 1, + anon_sym_QMARK, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7732), 2, + ACTIONS(7021), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(7598), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7604), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6460), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7616), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7624), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7600), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7620), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7622), 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_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(6462), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(7023), 14, 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, @@ -360524,94 +361773,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_GT2, - [70567] = 9, - ACTIONS(3), 1, - sym_comment, - 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, + [70183] = 3, 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, + ACTIONS(5998), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360625,11 +361791,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, - ACTIONS(4166), 21, + anon_sym_DASH_GT, + ACTIONS(6000), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360639,10 +361808,21 @@ 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_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, @@ -360650,17 +361830,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, - [70703] = 6, + anon_sym_DASH_GT_STAR, + [70243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6008), 1, - anon_sym_LPAREN2, - ACTIONS(6011), 1, - anon_sym_LBRACK, - ACTIONS(4174), 18, + ACTIONS(6002), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360674,21 +361848,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, anon_sym_DOT, - ACTIONS(4166), 31, + anon_sym_DASH_GT, + 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, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -360710,71 +361887,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [70769] = 6, + anon_sym_DASH_GT_STAR, + [70303] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6008), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(6011), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(4174), 18, + ACTIONS(7272), 1, + anon_sym_DOT_STAR, + ACTIONS(7274), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_COMMA, + ACTIONS(7656), 1, anon_sym_DASH, + ACTIONS(7658), 1, anon_sym_PLUS, + ACTIONS(7660), 1, anon_sym_STAR, + ACTIONS(7662), 1, anon_sym_SLASH, + ACTIONS(7664), 1, anon_sym_PERCENT, + ACTIONS(7666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7668), 1, + anon_sym_AMP_AMP, + ACTIONS(7670), 1, anon_sym_PIPE, + ACTIONS(7672), 1, anon_sym_CARET, + ACTIONS(7674), 1, anon_sym_AMP, + ACTIONS(7676), 1, + anon_sym_EQ_EQ, + ACTIONS(7678), 1, + anon_sym_BANG_EQ, + ACTIONS(7680), 1, anon_sym_GT, + ACTIONS(7682), 1, + anon_sym_GT_EQ, + ACTIONS(7684), 1, anon_sym_LT_EQ, + ACTIONS(7686), 1, anon_sym_LT, + ACTIONS(7688), 1, anon_sym_LT_LT, + ACTIONS(7690), 1, anon_sym_GT_GT, + ACTIONS(7692), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4166), 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, + ACTIONS(7694), 1, anon_sym_QMARK, + ACTIONS(7696), 1, anon_sym_STAR_EQ, + ACTIONS(7698), 1, anon_sym_SLASH_EQ, + ACTIONS(7700), 1, anon_sym_PERCENT_EQ, + ACTIONS(7702), 1, anon_sym_PLUS_EQ, + ACTIONS(7704), 1, anon_sym_DASH_EQ, + ACTIONS(7706), 1, anon_sym_LT_LT_EQ, + ACTIONS(7708), 1, anon_sym_GT_GT_EQ, + ACTIONS(7710), 1, anon_sym_AMP_EQ, + ACTIONS(7712), 1, anon_sym_CARET_EQ, + ACTIONS(7714), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, + ACTIONS(7718), 1, + anon_sym_or, + ACTIONS(7720), 1, + anon_sym_and, + ACTIONS(7722), 1, anon_sym_bitor, + ACTIONS(7724), 1, + anon_sym_xor, + ACTIONS(7726), 1, anon_sym_bitand, + ACTIONS(7728), 1, anon_sym_not_eq, + ACTIONS(7778), 1, + anon_sym_RPAREN, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [70835] = 3, + [70459] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 20, + ACTIONS(4184), 1, + anon_sym_EQ, + ACTIONS(4186), 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(4168), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360788,14 +362026,11 @@ 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(5927), 32, + ACTIONS(4161), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -360805,21 +362040,10 @@ 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_SEMI, + 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -360827,24 +362051,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, - [70895] = 9, + anon_sym_DASH_GT, + [70523] = 5, 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(7616), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6514), 17, + ACTIONS(7771), 1, + anon_sym_LT, + STATE(3168), 1, + sym_template_argument_list, + ACTIONS(6474), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -360855,22 +362070,25 @@ 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, - ACTIONS(6516), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6476), 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, @@ -360891,73 +362109,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [70967] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70587] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(6710), 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, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7121), 1, anon_sym_AMP, - ACTIONS(7600), 1, + ACTIONS(7127), 1, anon_sym_GT_EQ, - ACTIONS(7604), 1, + ACTIONS(7131), 1, anon_sym_LT_EQ_GT, - ACTIONS(7606), 1, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7170), 1, + anon_sym_AMP_AMP, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, anon_sym_or, - ACTIONS(7608), 1, + ACTIONS(7178), 1, anon_sym_and, - ACTIONS(7610), 1, + ACTIONS(7180), 1, anon_sym_bitor, - ACTIONS(7612), 1, - anon_sym_bitand, - ACTIONS(7614), 1, - anon_sym_DOT, - STATE(2491), 1, + ACTIONS(7182), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7582), 2, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7592), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7602), 2, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7616), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7584), 3, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7780), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7596), 3, + ACTIONS(7123), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7598), 3, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(6712), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -360971,90 +362194,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [71073] = 10, + [70699] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7226), 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, + ACTIONS(7272), 1, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6410), 17, + ACTIONS(7274), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_COMMA, + ACTIONS(7656), 1, anon_sym_DASH, + ACTIONS(7658), 1, anon_sym_PLUS, + ACTIONS(7660), 1, anon_sym_STAR, + ACTIONS(7662), 1, anon_sym_SLASH, + ACTIONS(7664), 1, anon_sym_PERCENT, + ACTIONS(7666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7668), 1, + anon_sym_AMP_AMP, + ACTIONS(7670), 1, anon_sym_PIPE, + ACTIONS(7672), 1, anon_sym_CARET, + ACTIONS(7674), 1, anon_sym_AMP, + ACTIONS(7676), 1, + anon_sym_EQ_EQ, + ACTIONS(7678), 1, + anon_sym_BANG_EQ, + ACTIONS(7680), 1, anon_sym_GT, + ACTIONS(7682), 1, + anon_sym_GT_EQ, + ACTIONS(7684), 1, anon_sym_LT_EQ, + ACTIONS(7686), 1, anon_sym_LT, + ACTIONS(7688), 1, anon_sym_LT_LT, + ACTIONS(7690), 1, anon_sym_GT_GT, + ACTIONS(7692), 1, anon_sym_EQ, - 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, + ACTIONS(7694), 1, anon_sym_QMARK, + ACTIONS(7696), 1, anon_sym_STAR_EQ, + ACTIONS(7698), 1, anon_sym_SLASH_EQ, + ACTIONS(7700), 1, anon_sym_PERCENT_EQ, + ACTIONS(7702), 1, anon_sym_PLUS_EQ, + ACTIONS(7704), 1, anon_sym_DASH_EQ, + ACTIONS(7706), 1, anon_sym_LT_LT_EQ, + ACTIONS(7708), 1, anon_sym_GT_GT_EQ, + ACTIONS(7710), 1, anon_sym_AMP_EQ, + ACTIONS(7712), 1, anon_sym_CARET_EQ, + ACTIONS(7714), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, + ACTIONS(7718), 1, + anon_sym_or, + ACTIONS(7720), 1, + anon_sym_and, + ACTIONS(7722), 1, anon_sym_bitor, + ACTIONS(7724), 1, + anon_sym_xor, + ACTIONS(7726), 1, anon_sym_bitand, + ACTIONS(7728), 1, anon_sym_not_eq, - [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, + ACTIONS(7782), 1, + anon_sym_RPAREN, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, sym_argument_list, - STATE(2492), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7616), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6422), 17, + [70855] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5052), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6075), 1, + anon_sym_LBRACK, + ACTIONS(6072), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4168), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361072,7 +362327,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6424), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(4161), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -361080,7 +362337,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -361099,10 +362355,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [71221] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5982), 20, + ACTIONS(5052), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6075), 1, + anon_sym_LBRACK, + ACTIONS(4168), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361116,24 +362382,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(5984), 32, + ACTIONS(4161), 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, @@ -361155,11 +362418,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, - [71281] = 3, + anon_sym_DASH_GT, + [70987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5052), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6075), 1, + anon_sym_LBRACK, + ACTIONS(4168), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -361173,24 +362442,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(4927), 32, + ACTIONS(4161), 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, @@ -361212,156 +362478,183 @@ 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, - [71341] = 26, + anon_sym_DASH_GT, + [71053] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7226), 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, + ACTIONS(7272), 1, + anon_sym_DOT_STAR, + ACTIONS(7274), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_COMMA, + ACTIONS(7656), 1, anon_sym_DASH, + ACTIONS(7658), 1, 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, + ACTIONS(7660), 1, anon_sym_STAR, + ACTIONS(7662), 1, anon_sym_SLASH, + ACTIONS(7664), 1, anon_sym_PERCENT, - ACTIONS(7596), 3, + ACTIONS(7666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7668), 1, + anon_sym_AMP_AMP, + ACTIONS(7670), 1, + anon_sym_PIPE, + ACTIONS(7672), 1, + anon_sym_CARET, + ACTIONS(7674), 1, + anon_sym_AMP, + ACTIONS(7676), 1, anon_sym_EQ_EQ, + ACTIONS(7678), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7598), 3, + ACTIONS(7680), 1, anon_sym_GT, + ACTIONS(7682), 1, + anon_sym_GT_EQ, + ACTIONS(7684), 1, anon_sym_LT_EQ, + ACTIONS(7686), 1, anon_sym_LT, - ACTIONS(6949), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(7688), 1, + anon_sym_LT_LT, + ACTIONS(7690), 1, + anon_sym_GT_GT, + ACTIONS(7692), 1, + anon_sym_EQ, + ACTIONS(7694), 1, anon_sym_QMARK, + ACTIONS(7696), 1, anon_sym_STAR_EQ, + ACTIONS(7698), 1, anon_sym_SLASH_EQ, + ACTIONS(7700), 1, anon_sym_PERCENT_EQ, + ACTIONS(7702), 1, anon_sym_PLUS_EQ, + ACTIONS(7704), 1, anon_sym_DASH_EQ, + ACTIONS(7706), 1, anon_sym_LT_LT_EQ, + ACTIONS(7708), 1, anon_sym_GT_GT_EQ, + ACTIONS(7710), 1, anon_sym_AMP_EQ, + ACTIONS(7712), 1, anon_sym_CARET_EQ, + ACTIONS(7714), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [71447] = 28, + ACTIONS(7716), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7718), 1, + anon_sym_or, + ACTIONS(7720), 1, + anon_sym_and, + ACTIONS(7722), 1, + anon_sym_bitor, + ACTIONS(7724), 1, + anon_sym_xor, + ACTIONS(7726), 1, + anon_sym_bitand, + ACTIONS(7728), 1, + anon_sym_not_eq, + ACTIONS(7784), 1, + anon_sym_RPAREN, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [71209] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6662), 1, - anon_sym_EQ, - ACTIONS(6981), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7005), 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, + ACTIONS(7121), 1, anon_sym_AMP, - ACTIONS(7600), 1, + ACTIONS(7127), 1, anon_sym_GT_EQ, - ACTIONS(7604), 1, + ACTIONS(7131), 1, anon_sym_LT_EQ_GT, - ACTIONS(7606), 1, + ACTIONS(7133), 1, + anon_sym_bitand, + ACTIONS(7168), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7170), 1, + anon_sym_AMP_AMP, + ACTIONS(7172), 1, + anon_sym_PIPE, + ACTIONS(7176), 1, anon_sym_or, - ACTIONS(7608), 1, + ACTIONS(7178), 1, anon_sym_and, - ACTIONS(7610), 1, + ACTIONS(7180), 1, anon_sym_bitor, - ACTIONS(7612), 1, - anon_sym_bitand, - ACTIONS(7614), 1, - anon_sym_DOT, - ACTIONS(7793), 1, + ACTIONS(7182), 1, anon_sym_QMARK, - STATE(2491), 1, + ACTIONS(7188), 1, + anon_sym_RPAREN, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(7788), 1, + anon_sym_EQ, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7582), 2, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7117), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7592), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(7602), 2, + ACTIONS(7129), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7616), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7584), 3, + ACTIONS(7174), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7119), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7596), 3, + ACTIONS(7123), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7598), 3, + ACTIONS(7125), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6664), 15, - anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(7252), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -361375,32 +362668,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [71557] = 11, + [71323] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 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, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7441), 1, + anon_sym___attribute__, + ACTIONS(7444), 1, + anon_sym___attribute, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(7584), 3, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5036), 1, + sym__function_attributes_start, + STATE(5243), 1, + sym_ref_qualifier, + STATE(6154), 1, + sym_trailing_return_type, + STATE(6225), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7066), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5462), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7143), 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, + [71437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7062), 26, + anon_sym_DASH, + anon_sym_PLUS, 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, @@ -361410,18 +362770,29 @@ 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(6520), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(7064), 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, @@ -361433,290 +362804,313 @@ 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, - [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, - ACTIONS(6518), 17, + anon_sym_DASH_GT_STAR, + [71497] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5208), 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, - ACTIONS(6520), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5210), 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, - [71707] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [71557] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - 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(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(6518), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(7582), 2, + ACTIONS(7272), 1, + anon_sym_DOT_STAR, + ACTIONS(7274), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_COMMA, + ACTIONS(7656), 1, anon_sym_DASH, + ACTIONS(7658), 1, 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, + ACTIONS(7660), 1, anon_sym_STAR, + ACTIONS(7662), 1, anon_sym_SLASH, + ACTIONS(7664), 1, anon_sym_PERCENT, - ACTIONS(7596), 3, + ACTIONS(7666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7668), 1, + anon_sym_AMP_AMP, + ACTIONS(7670), 1, + anon_sym_PIPE, + ACTIONS(7672), 1, + anon_sym_CARET, + ACTIONS(7674), 1, + anon_sym_AMP, + ACTIONS(7676), 1, anon_sym_EQ_EQ, + ACTIONS(7678), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7598), 3, + ACTIONS(7680), 1, anon_sym_GT, + ACTIONS(7682), 1, + anon_sym_GT_EQ, + ACTIONS(7684), 1, anon_sym_LT_EQ, + ACTIONS(7686), 1, anon_sym_LT, - ACTIONS(6520), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_COLON, + ACTIONS(7688), 1, + anon_sym_LT_LT, + ACTIONS(7690), 1, + anon_sym_GT_GT, + ACTIONS(7692), 1, + anon_sym_EQ, + ACTIONS(7694), 1, anon_sym_QMARK, + ACTIONS(7696), 1, anon_sym_STAR_EQ, + ACTIONS(7698), 1, anon_sym_SLASH_EQ, + ACTIONS(7700), 1, anon_sym_PERCENT_EQ, + ACTIONS(7702), 1, anon_sym_PLUS_EQ, + ACTIONS(7704), 1, anon_sym_DASH_EQ, + ACTIONS(7706), 1, anon_sym_LT_LT_EQ, + ACTIONS(7708), 1, anon_sym_GT_GT_EQ, + ACTIONS(7710), 1, anon_sym_AMP_EQ, + ACTIONS(7712), 1, anon_sym_CARET_EQ, + ACTIONS(7714), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [71809] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(7590), 1, - anon_sym_PIPE, - ACTIONS(7594), 1, - anon_sym_AMP, - ACTIONS(7600), 1, - anon_sym_GT_EQ, - ACTIONS(7604), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7610), 1, + ACTIONS(7718), 1, + anon_sym_or, + ACTIONS(7720), 1, + anon_sym_and, + ACTIONS(7722), 1, anon_sym_bitor, - ACTIONS(7612), 1, + ACTIONS(7724), 1, + anon_sym_xor, + ACTIONS(7726), 1, anon_sym_bitand, - ACTIONS(7614), 1, - anon_sym_DOT, - STATE(2491), 1, + ACTIONS(7728), 1, + anon_sym_not_eq, + ACTIONS(7790), 1, + anon_sym_RPAREN, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, sym_argument_list, - STATE(2492), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7582), 2, + [71713] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7272), 1, + anon_sym_DOT_STAR, + ACTIONS(7274), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7652), 1, + anon_sym_COMMA, + ACTIONS(7656), 1, anon_sym_DASH, + ACTIONS(7658), 1, 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(6518), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(7584), 3, + ACTIONS(7660), 1, anon_sym_STAR, + ACTIONS(7662), 1, anon_sym_SLASH, + ACTIONS(7664), 1, anon_sym_PERCENT, - ACTIONS(7596), 3, + ACTIONS(7666), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7668), 1, + anon_sym_AMP_AMP, + ACTIONS(7670), 1, + anon_sym_PIPE, + ACTIONS(7672), 1, + anon_sym_CARET, + ACTIONS(7674), 1, + anon_sym_AMP, + ACTIONS(7676), 1, anon_sym_EQ_EQ, + ACTIONS(7678), 1, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(7598), 3, + ACTIONS(7680), 1, anon_sym_GT, + ACTIONS(7682), 1, + anon_sym_GT_EQ, + ACTIONS(7684), 1, anon_sym_LT_EQ, + ACTIONS(7686), 1, 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, + ACTIONS(7688), 1, + anon_sym_LT_LT, + ACTIONS(7690), 1, + anon_sym_GT_GT, + ACTIONS(7692), 1, + anon_sym_EQ, + ACTIONS(7694), 1, anon_sym_QMARK, + ACTIONS(7696), 1, anon_sym_STAR_EQ, + ACTIONS(7698), 1, anon_sym_SLASH_EQ, + ACTIONS(7700), 1, anon_sym_PERCENT_EQ, + ACTIONS(7702), 1, anon_sym_PLUS_EQ, + ACTIONS(7704), 1, anon_sym_DASH_EQ, + ACTIONS(7706), 1, anon_sym_LT_LT_EQ, + ACTIONS(7708), 1, anon_sym_GT_GT_EQ, + ACTIONS(7710), 1, anon_sym_AMP_EQ, + ACTIONS(7712), 1, anon_sym_CARET_EQ, + ACTIONS(7714), 1, 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, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7612), 1, + ACTIONS(7718), 1, + anon_sym_or, + ACTIONS(7720), 1, + anon_sym_and, + ACTIONS(7722), 1, + anon_sym_bitor, + ACTIONS(7724), 1, + anon_sym_xor, + ACTIONS(7726), 1, anon_sym_bitand, - ACTIONS(7614), 1, - anon_sym_DOT, - STATE(2491), 1, + ACTIONS(7728), 1, + anon_sym_not_eq, + ACTIONS(7792), 1, + anon_sym_RPAREN, + STATE(1541), 1, + sym__binary_fold_operator, + STATE(3444), 1, sym_argument_list, - STATE(2492), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + STATE(8952), 1, + sym__fold_operator, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7582), 2, + [71869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5903), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(6520), 20, + 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_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, @@ -361731,65 +363125,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [72001] = 19, - 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_bitor, 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7582), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5907), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 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(6520), 20, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5909), 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, @@ -361804,62 +363182,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - 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_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7582), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [71989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5911), 20, 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_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(6520), 21, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5913), 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, @@ -361874,61 +363239,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, - [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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7582), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6448), 19, 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, - ACTIONS(6518), 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(6520), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6450), 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_COLON, + anon_sym_GT_EQ, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -361943,60 +363296,106 @@ 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, - [72267] = 14, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5204), 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(5206), 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, - ACTIONS(6414), 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, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(7604), 1, + anon_sym_RBRACK, + anon_sym_QMARK, 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, + [72169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5952), 20, + anon_sym_DASH, + anon_sym_PLUS, 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_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 25, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5954), 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, @@ -362011,57 +363410,52 @@ 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, - [72349] = 12, - 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_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72229] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7794), 1, + anon_sym_LT, + STATE(3494), 1, + sym_template_argument_list, + ACTIONS(6399), 19, 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, 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(6520), 26, + anon_sym_DOT, + ACTIONS(6401), 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, @@ -362069,7 +363463,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, @@ -362080,55 +363473,46 @@ 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, - ACTIONS(7584), 3, + anon_sym_GT2, + [72295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3967), 20, + anon_sym_DASH, + anon_sym_PLUS, 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_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6520), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(3969), 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, @@ -362147,26 +363531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [72507] = 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(6460), 17, + anon_sym_DASH_GT_STAR, + [72355] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5537), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362181,18 +363555,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, - ACTIONS(6462), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(5539), 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_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -362204,17 +363580,257 @@ 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, - [72581] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [72417] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7797), 1, + anon_sym_DASH_GT, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5047), 1, + sym__function_attributes_start, + STATE(5293), 1, + sym_ref_qualifier, + STATE(5561), 1, + sym_trailing_return_type, + STATE(6348), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7066), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5459), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7143), 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, + [72531] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6769), 1, + anon_sym_COLON_COLON, + ACTIONS(7802), 1, + anon_sym_virtual, + ACTIONS(7811), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7814), 1, + anon_sym___declspec, + STATE(1693), 1, + sym_alignas_qualifier, + ACTIONS(7808), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7817), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3358), 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(7805), 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(7799), 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(6767), 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, + [72609] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7147), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7276), 1, + anon_sym_requires, + ACTIONS(7797), 1, + anon_sym_DASH_GT, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5045), 1, + sym__function_attributes_start, + STATE(5296), 1, + sym_ref_qualifier, + STATE(5525), 1, + sym_trailing_return_type, + STATE(6352), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7095), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5928), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7066), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5440), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7143), 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, + [72723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 20, + ACTIONS(6418), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362235,7 +363851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6466), 32, + ACTIONS(6420), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362268,73 +363884,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [72641] = 26, + [72783] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + STATE(1635), 1, + sym_template_argument_list, + STATE(1951), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5054), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 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(6068), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(6985), 1, - anon_sym_EQ, - ACTIONS(7586), 1, + anon_sym_STAR, + anon_sym_PERCENT, 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7604), 1, + 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, - ACTIONS(7606), 1, anon_sym_or, - ACTIONS(7608), 1, anon_sym_and, - ACTIONS(7610), 1, anon_sym_bitor, - ACTIONS(7612), 1, + anon_sym_xor, 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_not_eq, 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(6987), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, + sym_auto, + anon_sym_decltype, + [72851] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4184), 1, + anon_sym_EQ, + ACTIONS(5052), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6075), 1, + anon_sym_LBRACK, + ACTIONS(4186), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -362348,154 +363970,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [72747] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(6981), 1, + ACTIONS(4168), 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(4161), 18, anon_sym_DOT_DOT_DOT, - ACTIONS(6989), 1, - anon_sym_EQ, - ACTIONS(7586), 1, + anon_sym_COMMA, 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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7604), 1, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(7606), 1, + 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, + [72921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 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, - ACTIONS(7608), 1, anon_sym_and, - ACTIONS(7610), 1, anon_sym_bitor, - ACTIONS(7612), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(7614), 1, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7793), 1, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5176), 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, - STATE(2491), 1, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [72981] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6416), 2, + ACTIONS(7604), 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, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7584), 3, + ACTIONS(6466), 19, + anon_sym_DASH, + anon_sym_PLUS, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6991), 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, + ACTIONS(6468), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + 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_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, - 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_not_eq, + anon_sym_GT2, + [73055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6522), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6995), 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(6524), 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, @@ -362510,197 +364177,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [72963] = 28, + 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, + [73115] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(6981), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7820), 1, + anon_sym_LT, + STATE(1920), 1, + sym_template_argument_list, + STATE(1951), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5054), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 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(4166), 34, anon_sym_DOT_DOT_DOT, - ACTIONS(6997), 1, - anon_sym_EQ, - ACTIONS(7586), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(7604), 1, + 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, - ACTIONS(7606), 1, anon_sym_or, - ACTIONS(7608), 1, anon_sym_and, - ACTIONS(7610), 1, anon_sym_bitor, - ACTIONS(7612), 1, + anon_sym_xor, 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_not_eq, 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, + sym_auto, + anon_sym_decltype, + [73185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5144), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, 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_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6999), 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, - [73073] = 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___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(5146), 30, 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_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, - 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_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, 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(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, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [73245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 22, + ACTIONS(1940), 22, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -362723,7 +364330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5194), 30, + ACTIONS(1938), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362754,10 +364361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [73289] = 3, + [73305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5958), 20, + ACTIONS(3963), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -362778,7 +364385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5960), 32, + ACTIONS(3965), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -362811,21 +364418,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [73349] = 7, + [73365] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5144), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -362834,13 +364431,27 @@ 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, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(6060), 34, + 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, @@ -362853,42 +364464,22 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [73417] = 8, + [73425] = 3, 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, + ACTIONS(5144), 22, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -362896,13 +364487,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(4172), 34, + 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, @@ -362915,98 +364521,51 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [73487] = 30, + [73485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5493), 1, + ACTIONS(5504), 4, + anon_sym_SEMI, + anon_sym_COLON_COLON, 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_LBRACE, + ACTIONS(5502), 48, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(7372), 1, anon_sym___attribute, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7799), 1, - anon_sym_DASH_GT, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(5029), 1, - sym__function_attributes_start, - STATE(5262), 1, - sym_ref_qualifier, - STATE(6126), 1, - sym_trailing_return_type, - STATE(6220), 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, - ACTIONS(7046), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5448), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7297), 12, - anon_sym___extension__, + 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, @@ -363018,10 +364577,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [73601] = 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, + [73545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 16, + ACTIONS(7139), 1, + sym_auto, + ACTIONS(7141), 1, + anon_sym_decltype, + STATE(3582), 1, + sym_decltype_auto, + ACTIONS(5637), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363038,7 +364615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5527), 36, + ACTIONS(5639), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363048,7 +364625,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, @@ -363072,17 +364648,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, - [73661] = 5, + [73611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7531), 1, - anon_sym_LT, - STATE(1587), 1, - sym_template_argument_list, - ACTIONS(6426), 18, + ACTIONS(7822), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6460), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363093,15 +364665,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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6428), 32, + ACTIONS(6462), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -363111,7 +364685,6 @@ 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363134,71 +364707,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [73725] = 25, + [73673] = 3, 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, + ACTIONS(6460), 19, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6949), 16, + 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(6462), 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, @@ -363206,174 +364749,291 @@ 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, - [73829] = 10, + 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, + [73733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5166), 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(5168), 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, - ACTIONS(6414), 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, + anon_sym_LBRACE, + anon_sym_RBRACE, 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_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7616), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6510), 17, + [73793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5182), 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, - ACTIONS(6512), 26, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(5184), 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, - [73903] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [73853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4200), 1, - anon_sym_EQ, - 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, + 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_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(4166), 18, + 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_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, - [73973] = 13, + [73913] = 9, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(7824), 1, + anon_sym_COLON, + STATE(2472), 1, + sym_attribute_specifier, + STATE(2816), 1, + sym__enum_base_clause, + STATE(2971), 1, + sym_enumerator_list, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7823), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7803), 5, + ACTIONS(6348), 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, - ACTIONS(7801), 7, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6346), 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, - ACTIONS(7811), 9, + [73985] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(7824), 1, + anon_sym_COLON, + STATE(2569), 1, + sym_attribute_specifier, + STATE(2831), 1, + sym__enum_base_clause, + STATE(3023), 1, + sym_enumerator_list, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6354), 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(6352), 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, @@ -363382,18 +365042,6 @@ 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, @@ -363406,26 +365054,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [74053] = 10, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [74057] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7732), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6410), 19, + ACTIONS(6456), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363435,23 +365087,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(6412), 24, + ACTIONS(6458), 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_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363459,6 +365111,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, @@ -363469,157 +365122,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [74127] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [74129] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7704), 1, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7031), 1, + anon_sym_EQ, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7834), 1, anon_sym_PIPE_PIPE, - ACTIONS(7706), 1, + ACTIONS(7836), 1, anon_sym_AMP_AMP, - ACTIONS(7708), 1, + ACTIONS(7838), 1, anon_sym_PIPE, - ACTIONS(7712), 1, + ACTIONS(7842), 1, anon_sym_AMP, - ACTIONS(7720), 1, - anon_sym_LBRACK, - ACTIONS(7722), 1, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, anon_sym_LT_EQ_GT, - ACTIONS(7724), 1, + ACTIONS(7854), 1, anon_sym_or, - ACTIONS(7726), 1, + ACTIONS(7856), 1, anon_sym_and, - ACTIONS(7728), 1, + ACTIONS(7858), 1, anon_sym_bitor, - ACTIONS(7730), 1, + ACTIONS(7860), 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, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6989), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(7700), 2, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7710), 2, + ACTIONS(7840), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7718), 2, + ACTIONS(7850), 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, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7714), 3, + ACTIONS(7844), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7716), 4, + ACTIONS(7846), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6991), 14, + ACTIONS(7033), 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, - [74235] = 5, + [74235] = 10, ACTIONS(3), 1, sym_comment, - 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, - 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(4166), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5850), 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___attribute__, + ACTIONS(6426), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7826), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [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, + ACTIONS(6444), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363629,25 +365233,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(6399), 30, + ACTIONS(6446), 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_LBRACK, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363655,6 +365257,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, @@ -363665,15 +365268,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [74309] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [74365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5939), 20, + ACTIONS(6470), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -363687,24 +365301,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(5941), 32, + ACTIONS(6472), 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, @@ -363723,45 +365332,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [74383] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7035), 1, + anon_sym_EQ, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7836), 1, + anon_sym_AMP_AMP, + ACTIONS(7838), 1, + anon_sym_PIPE, + ACTIONS(7842), 1, + anon_sym_AMP, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7854), 1, + anon_sym_or, + ACTIONS(7856), 1, + anon_sym_and, + ACTIONS(7858), 1, + anon_sym_bitor, + ACTIONS(7860), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [74425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6006), 19, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7840), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 3, 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, - ACTIONS(6004), 33, + ACTIONS(7037), 17, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -363776,218 +365412,23 @@ 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, - [74485] = 3, + [74489] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 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(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, + ACTIONS(5850), 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_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, - [74545] = 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, + ACTIONS(6426), 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, - 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, + ACTIONS(7826), 1, 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, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74719] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 1, - anon_sym_COLON_COLON, - ACTIONS(6342), 19, + ACTIONS(6440), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364005,19 +365446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6344), 32, + ACTIONS(6442), 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, @@ -364038,43 +365475,72 @@ 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, - [74781] = 3, + [74561] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5947), 20, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6971), 1, + anon_sym_EQ, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7836), 1, + anon_sym_AMP_AMP, + ACTIONS(7838), 1, + anon_sym_PIPE, + ACTIONS(7842), 1, + anon_sym_AMP, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7854), 1, + anon_sym_or, + ACTIONS(7856), 1, + anon_sym_and, + ACTIONS(7858), 1, + anon_sym_bitor, + ACTIONS(7860), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7840), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 3, 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(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_LBRACK_LBRACK, + ACTIONS(6973), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364089,115 +365555,135 @@ 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, - [74841] = 10, + [74667] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6710), 1, + anon_sym_EQ, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7826), 1, anon_sym_DOT, - STATE(3632), 1, + ACTIONS(7834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7836), 1, + anon_sym_AMP_AMP, + ACTIONS(7838), 1, + anon_sym_PIPE, + ACTIONS(7842), 1, + anon_sym_AMP, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7854), 1, + anon_sym_or, + ACTIONS(7856), 1, + anon_sym_and, + ACTIONS(7858), 1, + anon_sym_bitor, + ACTIONS(7860), 1, + anon_sym_bitand, + ACTIONS(7862), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7732), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6422), 19, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7840), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 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(6424), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(6712), 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_GT2, - [74915] = 5, + [74777] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6937), 1, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - STATE(3403), 1, - sym_new_declarator, - ACTIONS(6346), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7826), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 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(6348), 30, + ACTIONS(6483), 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_LBRACE, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364205,6 +365691,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, @@ -364215,17 +365702,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [74853] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [74979] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7832), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6464), 20, + ACTIONS(6481), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -364239,23 +365735,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(6466), 31, + ACTIONS(6483), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364274,186 +365766,70 @@ 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, - [75041] = 30, + [74927] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7836), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7838), 1, + anon_sym_PIPE, + ACTIONS(7842), 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(7429), 1, - anon_sym_requires, - ACTIONS(7799), 1, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7856), 1, + anon_sym_and, + ACTIONS(7858), 1, + anon_sym_bitor, + ACTIONS(7860), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6481), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, 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, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7840), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 3, 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(5945), 32, + ACTIONS(6483), 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_LBRACK_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364468,60 +365844,68 @@ 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, - [75275] = 10, + [75029] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - STATE(3632), 1, + ACTIONS(7838), 1, + anon_sym_PIPE, + ACTIONS(7842), 1, + anon_sym_AMP, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7858), 1, + anon_sym_bitor, + ACTIONS(7860), 1, + anon_sym_bitand, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7732), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6510), 19, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(7840), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(7850), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6481), 3, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - ACTIONS(6512), 24, + ACTIONS(7832), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364529,52 +365913,72 @@ 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_GT2, - [75349] = 3, + [75127] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7842), 1, + anon_sym_AMP, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7860), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7840), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(6481), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4927), 32, + ACTIONS(6483), 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_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364589,49 +365993,65 @@ 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, + [75221] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7842), 1, + anon_sym_AMP, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7860), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75409] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6678), 20, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(6481), 6, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6680), 32, + ACTIONS(6483), 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_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364646,50 +366066,62 @@ 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, + [75313] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75469] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4993), 20, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(6481), 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, - anon_sym_DOT, - ACTIONS(4986), 30, + ACTIONS(6483), 21, 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364697,56 +366129,68 @@ 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, + [75401] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [75531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5962), 20, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7846), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(6481), 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, - anon_sym_DASH_GT, - ACTIONS(5964), 32, + ACTIONS(6483), 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_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364761,112 +366205,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, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75591] = 7, + [75487] = 14, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5850), 1, 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(7834), 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, + ACTIONS(6426), 1, 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, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 10, 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_LT, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6428), 32, + ACTIONS(6483), 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_LBRACK, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -364881,23 +366273,36 @@ 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, + [75569] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6646), 20, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -364906,24 +366311,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(6648), 32, + ACTIONS(6483), 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, @@ -364942,41 +366342,47 @@ 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, - [75783] = 6, + [75647] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6011), 1, - anon_sym_LBRACK, - ACTIONS(6008), 2, - anon_sym_RPAREN, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(4174), 19, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4166), 29, + ACTIONS(6483), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -364984,6 +366390,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -365002,27 +366409,26 @@ 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, - [75849] = 9, + [75727] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6514), 19, + ACTIONS(6422), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365032,23 +366438,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(6516), 26, + ACTIONS(6424), 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, @@ -365056,6 +366462,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, @@ -365066,44 +366473,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_GT2, - [75921] = 3, + [75801] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7009), 1, + anon_sym_EQ, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7836), 1, + anon_sym_AMP_AMP, + ACTIONS(7838), 1, + anon_sym_PIPE, + ACTIONS(7842), 1, + anon_sym_AMP, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7854), 1, + anon_sym_or, + ACTIONS(7856), 1, + anon_sym_and, + ACTIONS(7858), 1, + anon_sym_bitor, + ACTIONS(7860), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7840), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 3, 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(4927), 32, + ACTIONS(7011), 17, 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, @@ -365118,161 +366553,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + [75907] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7836), 1, + anon_sym_AMP_AMP, + ACTIONS(7838), 1, + anon_sym_PIPE, + ACTIONS(7842), 1, + anon_sym_AMP, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, anon_sym_LT_EQ_GT, + ACTIONS(7854), 1, + anon_sym_or, + ACTIONS(7856), 1, + anon_sym_and, + ACTIONS(7858), 1, anon_sym_bitor, + ACTIONS(7860), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(7862), 1, + anon_sym_QMARK, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [75981] = 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(7624), 1, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, - ACTIONS(7626), 1, anon_sym_PLUS, - ACTIONS(7628), 1, + ACTIONS(7840), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, 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, + ACTIONS(7844), 3, anon_sym_EQ_EQ, - ACTIONS(7646), 1, anon_sym_BANG_EQ, - ACTIONS(7648), 1, + anon_sym_not_eq, + ACTIONS(7846), 3, 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, + ACTIONS(7015), 15, + anon_sym_COMMA, + anon_sym_COLON, 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [76017] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7017), 1, + anon_sym_EQ, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7836), 1, + anon_sym_AMP_AMP, + ACTIONS(7838), 1, + anon_sym_PIPE, + ACTIONS(7842), 1, + anon_sym_AMP, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, anon_sym_LT_EQ_GT, - ACTIONS(7686), 1, + ACTIONS(7854), 1, anon_sym_or, - ACTIONS(7688), 1, + ACTIONS(7856), 1, anon_sym_and, - ACTIONS(7690), 1, + ACTIONS(7858), 1, anon_sym_bitor, - ACTIONS(7692), 1, - anon_sym_xor, - ACTIONS(7694), 1, + ACTIONS(7860), 1, anon_sym_bitand, - ACTIONS(7696), 1, - anon_sym_not_eq, - ACTIONS(7844), 1, - anon_sym_RPAREN, - STATE(1285), 1, - sym__binary_fold_operator, - STATE(3433), 1, + STATE(2488), 1, sym_argument_list, - STATE(3434), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(8910), 1, - sym__fold_operator, - ACTIONS(7203), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(6428), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [76137] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7846), 1, - sym_literal_suffix, - ACTIONS(4174), 25, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7840), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(7850), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7844), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7846), 3, 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, - ACTIONS(4166), 26, + ACTIONS(7019), 17, 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, @@ -365284,189 +366712,111 @@ 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_STAR, - [76199] = 30, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [76123] = 28, 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(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, + ACTIONS(5850), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7005), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7021), 1, 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, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(7834), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7836), 1, anon_sym_AMP_AMP, - ACTIONS(7708), 1, + ACTIONS(7838), 1, anon_sym_PIPE, - ACTIONS(7712), 1, + ACTIONS(7842), 1, anon_sym_AMP, - ACTIONS(7720), 1, - anon_sym_LBRACK, - ACTIONS(7722), 1, + ACTIONS(7848), 1, + anon_sym_GT_EQ, + ACTIONS(7852), 1, anon_sym_LT_EQ_GT, - ACTIONS(7726), 1, + ACTIONS(7854), 1, + anon_sym_or, + ACTIONS(7856), 1, anon_sym_and, - ACTIONS(7728), 1, + ACTIONS(7858), 1, anon_sym_bitor, - ACTIONS(7730), 1, + ACTIONS(7860), 1, anon_sym_bitand, - ACTIONS(7734), 1, - anon_sym_DOT, - STATE(3632), 1, + ACTIONS(7862), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7700), 2, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7830), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7710), 2, + ACTIONS(7840), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(7718), 2, + ACTIONS(7850), 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(6518), 3, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - ACTIONS(7702), 3, + ACTIONS(7832), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7714), 3, + ACTIONS(7844), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7716), 4, + ACTIONS(7846), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(7023), 15, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - 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_GT2, - [76413] = 9, + [76233] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_DOT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6428), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6433), 17, + ACTIONS(6466), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365484,39 +366834,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(6435), 28, + ACTIONS(6468), 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, + [76307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 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(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_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, - [76485] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [76367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 16, + ACTIONS(5480), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365533,7 +366938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5707), 35, + ACTIONS(5482), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365543,6 +366948,7 @@ 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, @@ -365569,10 +366975,17 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [76544] = 3, + [76427] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 21, + ACTIONS(5052), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6075), 1, + anon_sym_LBRACK, + ACTIONS(6072), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(4168), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365582,27 +366995,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(3961), 30, + anon_sym_DASH_GT, + ACTIONS(4161), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -365610,6 +367020,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, @@ -365623,12 +367034,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, - [76603] = 3, + anon_sym_DASH_GT_STAR, + [76493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 19, + ACTIONS(5204), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365648,7 +367058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6724), 32, + ACTIONS(5206), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365681,10 +367091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76662] = 3, + [76552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 21, + ACTIONS(4924), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365694,27 +367104,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(6504), 30, + anon_sym_DASH_GT, + ACTIONS(4917), 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, @@ -365722,6 +367132,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, @@ -365735,12 +367146,69 @@ 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, + [76611] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3540), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7864), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5807), 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(5809), 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, - anon_sym_GT2, - [76721] = 3, + [76674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 19, + ACTIONS(5158), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365760,7 +367228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4166), 32, + ACTIONS(5160), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -365793,66 +367261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [76780] = 3, + [76733] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7866), 1, anon_sym_PIPE_PIPE, + ACTIONS(7868), 1, 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(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_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, + ACTIONS(7870), 1, anon_sym_or, + ACTIONS(7872), 1, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - [76839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 20, + ACTIONS(6261), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365862,26 +367282,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_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6500), 31, + anon_sym_DASH_GT, + ACTIONS(6263), 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_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -365890,6 +367306,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, @@ -365903,12 +367320,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, - [76898] = 3, + anon_sym_DASH_GT_STAR, + [76800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 21, + ACTIONS(6522), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365930,7 +367346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3945), 30, + ACTIONS(6524), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -365961,10 +367377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [76957] = 3, + [76859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 19, + ACTIONS(5170), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -365984,7 +367400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4166), 32, + ACTIONS(5172), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366017,69 +367433,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77016] = 6, + [76918] = 22, 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, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, + ACTIONS(5891), 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_literal_suffix, - ACTIONS(5917), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7876), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7878), 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, + ACTIONS(7880), 1, + anon_sym_AMP, + ACTIONS(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 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, - [77081] = 3, + STATE(2899), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6143), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7884), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3418), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4221), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5889), 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(7072), 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, + [77015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 16, + ACTIONS(5617), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -366096,7 +367528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(5472), 35, + ACTIONS(5619), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366132,57 +367564,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [77140] = 22, + [77074] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5871), 1, + ACTIONS(5868), 1, anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, + ACTIONS(7876), 1, anon_sym_STAR, - ACTIONS(7852), 1, + ACTIONS(7878), 1, anon_sym_AMP_AMP, - ACTIONS(7854), 1, + ACTIONS(7880), 1, anon_sym_AMP, - ACTIONS(7856), 1, + ACTIONS(7882), 1, sym_ms_restrict_modifier, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - STATE(2908), 1, + STATE(2899), 1, sym_parameter_list, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6134), 1, + STATE(6148), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7858), 2, + ACTIONS(7884), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7860), 2, + ACTIONS(7886), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3410), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4174), 2, + STATE(4226), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5863), 11, + ACTIONS(5860), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -366194,7 +367626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -366207,10 +367639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [77237] = 3, + [77171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 19, + ACTIONS(6620), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366230,7 +367662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6566), 32, + ACTIONS(6622), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366263,85 +367695,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [77296] = 22, + [77230] = 3, 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, + ACTIONS(1936), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(7852), 1, - anon_sym_AMP_AMP, - ACTIONS(7854), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(7856), 1, - sym_ms_restrict_modifier, - ACTIONS(7862), 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, + 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, - 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [77289] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7890), 1, + sym_identifier, + STATE(3579), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5082), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5084), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5421), 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(5419), 19, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, + 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, + [77356] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7892), 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_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_LBRACK_LBRACK, + 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(5929), 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_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, + 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, + [77419] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 19, + ACTIONS(2619), 1, + anon_sym_LBRACE, + ACTIONS(7135), 1, + anon_sym_LPAREN2, + STATE(3956), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6275), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366356,16 +367894,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(6574), 32, + ACTIONS(6277), 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, @@ -366383,41 +367917,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, anon_sym_DASH_GT_STAR, - [77452] = 10, + [77484] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7027), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7864), 1, + ACTIONS(7894), 1, anon_sym_COLON, - STATE(2458), 1, + STATE(2472), 1, sym_attribute_specifier, - STATE(3546), 1, + STATE(3561), 1, sym__enum_base_clause, - STATE(3670), 1, + STATE(3682), 1, sym_enumerator_list, - ACTIONS(6393), 5, + ACTIONS(6346), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6395), 39, + ACTIONS(6348), 39, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -366457,57 +367991,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [77525] = 22, + [77557] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7892), 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_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(5933), 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, + [77620] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5871), 1, + ACTIONS(5891), 1, anon_sym___asm, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7882), 1, sym_ms_restrict_modifier, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7866), 1, + ACTIONS(7896), 1, anon_sym_STAR, - ACTIONS(7868), 1, + ACTIONS(7898), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, + ACTIONS(7900), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3006), 1, + STATE(2945), 1, sym_parameter_list, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6179), 1, + STATE(6216), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7858), 2, + ACTIONS(7884), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7860), 2, + ACTIONS(7886), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3415), 2, + STATE(3428), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4214), 2, + STATE(4174), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5863), 11, + ACTIONS(5889), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -366519,7 +368111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7297), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -366532,30 +368124,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [77622] = 10, + [77717] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7027), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7864), 1, + ACTIONS(7894), 1, anon_sym_COLON, - STATE(2457), 1, + STATE(2569), 1, sym_attribute_specifier, - STATE(3547), 1, + STATE(3562), 1, sym__enum_base_clause, - STATE(3674), 1, + STATE(3686), 1, sym_enumerator_list, - ACTIONS(6316), 5, + ACTIONS(6352), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6318), 39, + ACTIONS(6354), 39, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -366595,57 +368187,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [77695] = 22, + [77790] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5879), 1, + ACTIONS(5868), 1, anon_sym___asm, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7882), 1, sym_ms_restrict_modifier, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7866), 1, + ACTIONS(7896), 1, anon_sym_STAR, - ACTIONS(7868), 1, + ACTIONS(7898), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, + ACTIONS(7900), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3006), 1, + STATE(2945), 1, sym_parameter_list, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6096), 1, + STATE(6106), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7858), 2, + ACTIONS(7884), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7860), 2, + ACTIONS(7886), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4167), 2, + STATE(4177), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5877), 11, + ACTIONS(5860), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -366657,7 +368249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7297), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -366670,17 +368262,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [77792] = 6, + [77887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_LBRACE, - ACTIONS(7289), 1, + ACTIONS(7902), 1, + anon_sym_LT, + STATE(3284), 1, + sym_template_argument_list, + ACTIONS(6474), 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(6476), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - STATE(3893), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6283), 16, + 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, + [77950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5803), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366697,15 +368340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6285), 31, + ACTIONS(5805), 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, @@ -366728,15 +368373,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, - [77857] = 5, + [78009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, - anon_sym_LT, - STATE(3384), 1, - sym_template_argument_list, - ACTIONS(6426), 19, + ACTIONS(6678), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366746,24 +368389,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(6428), 30, + anon_sym_DASH_GT, + ACTIONS(6680), 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, @@ -366772,6 +368417,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, @@ -366785,72 +368431,320 @@ 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, + [78068] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, anon_sym_DASH_GT, - anon_sym_GT2, - [77920] = 7, + ACTIONS(7403), 1, + anon_sym_requires, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5102), 1, + sym__function_attributes_start, + STATE(5329), 1, + sym_ref_qualifier, + STATE(6534), 1, + sym__function_attributes_end, + STATE(6691), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7066), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(4059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4246), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5476), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7143), 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, + [78181] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(3911), 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_DOT, + anon_sym_DASH_GT, + ACTIONS(3907), 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_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, + [78240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4924), 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, - sym_literal_suffix, - ACTIONS(5395), 19, + anon_sym_DASH_GT, + ACTIONS(4917), 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_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, + [78299] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4168), 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(4161), 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_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_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, + [78358] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7902), 1, + anon_sym_LT, + STATE(1943), 1, + sym_template_argument_list, + ACTIONS(6474), 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(6476), 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, - [77987] = 3, + [78421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5907), 21, + ACTIONS(6694), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366860,27 +368754,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(5909), 30, + anon_sym_DASH_GT, + ACTIONS(6696), 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, @@ -366888,6 +368782,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, @@ -366901,12 +368796,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_STAR, + [78480] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 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, - anon_sym_GT2, - [78046] = 3, + ACTIONS(5164), 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_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, + [78539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 19, + ACTIONS(5178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366926,7 +368876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6640), 32, + ACTIONS(5180), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -366959,10 +368909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78105] = 3, + [78598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 19, + ACTIONS(6542), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -366982,7 +368932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5150), 32, + ACTIONS(6544), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367015,17 +368965,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78164] = 6, + [78657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_LBRACE, - ACTIONS(7289), 1, - anon_sym_LPAREN2, - STATE(3912), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6309), 16, + ACTIONS(3963), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367035,79 +368978,27 @@ static const uint16_t ts_small_parse_table[] = { 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(6311), 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, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [78229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6718), 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_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(6720), 32, + ACTIONS(3965), 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, @@ -367115,7 +369006,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, @@ -367129,11 +369019,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, - [78288] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [78716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 19, + ACTIONS(6606), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367153,7 +369044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5190), 32, + ACTIONS(6608), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367186,126 +369077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78347] = 7, - ACTIONS(3), 1, - sym_comment, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6300), 30, - 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_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, - [78414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 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(5479), 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, - [78473] = 3, + [78775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 19, + ACTIONS(6730), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367325,7 +369100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6716), 32, + ACTIONS(6732), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367358,10 +369133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78532] = 3, + [78834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 19, + ACTIONS(6574), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367381,7 +369156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3899), 32, + ACTIONS(6576), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367414,10 +369189,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78591] = 3, + [78893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 19, + ACTIONS(4168), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367437,7 +369212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6672), 32, + ACTIONS(4161), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367470,10 +369245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78650] = 3, + [78952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 19, + ACTIONS(6570), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367493,7 +369268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6004), 32, + ACTIONS(6572), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367526,10 +369301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78709] = 3, + [79011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 19, + ACTIONS(6702), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367549,7 +369324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6660), 32, + ACTIONS(6704), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367582,10 +369357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78768] = 3, + [79070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 19, + ACTIONS(6582), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367605,7 +369380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6632), 32, + ACTIONS(6584), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367638,10 +369413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78827] = 3, + [79129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 19, + ACTIONS(5174), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367661,7 +369436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6566), 32, + ACTIONS(5176), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367694,10 +369469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78886] = 3, + [79188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6626), 19, + ACTIONS(6578), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367717,7 +369492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6628), 32, + ACTIONS(6580), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367750,17 +369525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [78945] = 6, + [79247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_LBRACE, - ACTIONS(7289), 1, - anon_sym_LPAREN2, - STATE(3915), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6224), 16, + ACTIONS(5682), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367777,15 +369545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6226), 31, + ACTIONS(5684), 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, @@ -367808,58 +369578,60 @@ 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, - [79010] = 22, + [79306] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5871), 1, + ACTIONS(5891), 1, anon_sym___asm, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7882), 1, sym_ms_restrict_modifier, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7885), 1, + ACTIONS(7905), 1, anon_sym_STAR, - ACTIONS(7887), 1, + ACTIONS(7907), 1, anon_sym_AMP_AMP, - ACTIONS(7889), 1, + ACTIONS(7909), 1, anon_sym_AMP, - STATE(3010), 1, + STATE(2947), 1, sym_parameter_list, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6142), 1, + STATE(6178), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7858), 2, + ACTIONS(7884), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7860), 2, + ACTIONS(7886), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3437), 2, + STATE(3453), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4190), 2, + STATE(4216), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5863), 11, + ACTIONS(5889), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -367871,7 +369643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -367884,57 +369656,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [79107] = 22, + [79403] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5879), 1, + ACTIONS(5868), 1, anon_sym___asm, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7882), 1, sym_ms_restrict_modifier, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7885), 1, + ACTIONS(7905), 1, anon_sym_STAR, - ACTIONS(7887), 1, + ACTIONS(7907), 1, anon_sym_AMP_AMP, - ACTIONS(7889), 1, + ACTIONS(7909), 1, anon_sym_AMP, - STATE(3010), 1, + STATE(2947), 1, sym_parameter_list, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6169), 1, + STATE(6182), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7858), 2, + ACTIONS(7884), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7860), 2, + ACTIONS(7886), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4197), 2, + STATE(4218), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5877), 11, + ACTIONS(5860), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -367946,7 +369718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -367959,10 +369731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [79204] = 3, + [79500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 19, + ACTIONS(5697), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -367977,12 +369749,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(6562), 32, + ACTIONS(5699), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -367992,6 +369761,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, @@ -368004,77 +369774,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_STAR, - [79263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5192), 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(5194), 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_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, + sym_auto, + anon_sym_decltype, anon_sym_DASH_GT_STAR, - [79322] = 3, + [79559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 19, + ACTIONS(6656), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368094,7 +369810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6652), 32, + ACTIONS(6658), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368127,10 +369843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79381] = 3, + [79618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 16, + ACTIONS(6674), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368145,65 +369861,12 @@ 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(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, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [79440] = 3, - ACTIONS(3), 1, - sym_comment, - 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_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5822), 35, + ACTIONS(6676), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368213,7 +369876,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, @@ -368226,23 +369888,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, - [79499] = 3, + [79677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 16, + ACTIONS(6660), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368257,9 +369917,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(5695), 35, + ACTIONS(6662), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368269,7 +369932,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, @@ -368282,23 +369944,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, - [79558] = 3, + [79736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 21, + ACTIONS(6698), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368308,27 +369968,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(6496), 30, + anon_sym_DASH_GT, + ACTIONS(6700), 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, @@ -368336,6 +369996,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, @@ -368349,12 +370010,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, - [79617] = 3, + anon_sym_DASH_GT_STAR, + [79795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 16, + ACTIONS(5166), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368369,9 +370029,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(5683), 35, + ACTIONS(5168), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368381,7 +370044,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, @@ -368394,23 +370056,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, - [79676] = 3, + [79854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6441), 19, + ACTIONS(5200), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368430,7 +370090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6443), 32, + ACTIONS(5202), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368463,10 +370123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [79735] = 3, + [79913] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 16, + ACTIONS(7868), 1, + anon_sym_AMP_AMP, + ACTIONS(7872), 1, + anon_sym_and, + ACTIONS(6315), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368481,19 +370145,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_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5687), 35, + ACTIONS(6317), 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, @@ -368506,23 +370170,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, - [79794] = 3, + [79976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 19, + ACTIONS(5998), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368532,27 +370194,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(6596), 32, + ACTIONS(6000), 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, @@ -368560,7 +370222,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, @@ -368574,11 +370235,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, - [79853] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [80035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 16, + ACTIONS(5192), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368593,9 +370255,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(5691), 35, + ACTIONS(5194), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368605,7 +370270,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, @@ -368618,81 +370282,82 @@ 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, - [79912] = 3, + [80094] = 8, 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, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5770), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3764), 1, + sym_template_argument_list, + ACTIONS(4919), 2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_LBRACK_LBRACK, + ACTIONS(4922), 4, + anon_sym_TILDE, + anon_sym_STAR, 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_SEMI, + ACTIONS(4915), 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_DASH_GT_STAR, - [79971] = 4, + anon_sym_template, + anon_sym_operator, + [80163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7891), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6464), 21, + ACTIONS(6452), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368702,26 +370367,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(6466), 29, + anon_sym_DASH_GT, + ACTIONS(6454), 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, @@ -368729,6 +370395,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, @@ -368742,12 +370409,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, - [80032] = 3, + anon_sym_DASH_GT_STAR, + [80222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5994), 21, + ACTIONS(6452), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368757,27 +370423,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(5996), 30, + anon_sym_DASH_GT, + ACTIONS(6454), 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, @@ -368785,6 +370451,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, @@ -368798,16 +370465,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, - [80091] = 5, + anon_sym_DASH_GT_STAR, + [80281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7523), 1, - anon_sym_LT, - STATE(1596), 1, - sym_template_argument_list, - ACTIONS(6426), 17, + ACTIONS(6452), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368818,6 +370480,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, @@ -368825,7 +370488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6428), 32, + anon_sym_DASH_GT, + ACTIONS(6454), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368857,33 +370521,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, - [80154] = 3, + anon_sym_DASH_GT_STAR, + [80340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5939), 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_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5941), 30, + ACTIONS(7911), 1, + sym_literal_suffix, + ACTIONS(4161), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -368891,7 +370535,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, @@ -368902,22 +370546,43 @@ 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, - [80213] = 3, + ACTIONS(4168), 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_DOT, + [80401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 16, + ACTIONS(6532), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368932,9 +370597,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(5774), 35, + ACTIONS(6534), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -368944,7 +370612,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, @@ -368957,23 +370624,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, - [80272] = 3, + [80460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 19, + ACTIONS(6586), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -368993,7 +370658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5198), 32, + ACTIONS(6588), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369026,10 +370691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80331] = 3, + [80519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 19, + ACTIONS(6434), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369049,7 +370714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5198), 32, + ACTIONS(6436), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369082,10 +370747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80390] = 3, + [80578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 19, + ACTIONS(5208), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369105,7 +370770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5198), 32, + ACTIONS(5210), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369138,10 +370803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80449] = 3, + [80637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6445), 19, + ACTIONS(5944), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369151,27 +370816,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(6447), 32, + ACTIONS(5946), 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, @@ -369179,7 +370844,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, @@ -369193,11 +370857,16 @@ 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, - [80508] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [80696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 19, + ACTIONS(7585), 1, + anon_sym_LT, + STATE(1608), 1, + sym_template_argument_list, + ACTIONS(6474), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369208,7 +370877,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, @@ -369216,8 +370884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6534), 32, + ACTIONS(6476), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369249,11 +370916,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, - [80567] = 3, + anon_sym_DASH_GT, + [80759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 19, + ACTIONS(5709), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369268,12 +370935,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(5154), 32, + ACTIONS(5711), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369283,6 +370947,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, @@ -369295,21 +370960,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, - [80626] = 3, + [80818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 16, + ACTIONS(5693), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369326,7 +370993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5782), 35, + ACTIONS(5695), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369362,10 +371029,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [80685] = 3, + [80877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 19, + ACTIONS(5835), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369380,12 +371047,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(6538), 32, + ACTIONS(5837), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369395,6 +371059,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, @@ -369407,25 +371072,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, - [80744] = 5, + [80936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 1, - anon_sym_LT, - STATE(1934), 1, - sym_template_argument_list, - ACTIONS(6426), 19, + ACTIONS(6448), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369437,6 +371100,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, @@ -369445,7 +371109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6428), 30, + ACTIONS(6450), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -369453,6 +371117,7 @@ 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, @@ -369476,10 +371141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [80807] = 3, + [80995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 16, + ACTIONS(2619), 1, + anon_sym_LBRACE, + ACTIONS(7135), 1, + anon_sym_LPAREN2, + STATE(3966), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6303), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369496,17 +371168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5794), 35, + ACTIONS(6305), 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, @@ -369529,13 +371199,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, - [80866] = 3, + [81060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 16, + ACTIONS(6628), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369550,9 +371218,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(5786), 35, + ACTIONS(6630), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369562,7 +371233,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, @@ -369575,23 +371245,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, - [80925] = 3, + [81119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 19, + ACTIONS(6632), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369611,7 +371279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5186), 32, + ACTIONS(6634), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369644,10 +371312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [80984] = 3, + [81178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 16, + ACTIONS(5719), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369664,7 +371332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5806), 35, + ACTIONS(5721), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369700,10 +371368,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [81043] = 3, + [81237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 19, + ACTIONS(6644), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369723,7 +371391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6570), 32, + ACTIONS(6646), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369756,10 +371424,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81102] = 3, + [81296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6590), 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(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, + 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, + [81355] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3167), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6042), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6044), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5948), 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(5950), 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, + [81420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 16, + ACTIONS(5723), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369776,7 +371559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5810), 35, + ACTIONS(5725), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -369812,10 +371595,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [81161] = 3, + [81479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 19, + ACTIONS(6002), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369825,27 +371608,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(2729), 32, + ACTIONS(6004), 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, @@ -369853,7 +371636,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, @@ -369867,18 +371649,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_STAR, - [81220] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [81538] = 5, ACTIONS(3), 1, sym_comment, - STATE(3472), 1, + STATE(3488), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7893), 4, + ACTIONS(7913), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5078), 21, + ACTIONS(5089), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -369900,7 +371683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5080), 25, + ACTIONS(5091), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -369926,10 +371709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [81283] = 3, + [81601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 16, + ACTIONS(7916), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6460), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -369939,25 +371724,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, - anon_sym_DASH_GT, - ACTIONS(5647), 35, + ACTIONS(6462), 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, @@ -369965,27 +371751,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, - [81342] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [81662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5812), 16, + ACTIONS(6554), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370000,9 +371784,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(5814), 35, + ACTIONS(6556), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370012,7 +371799,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, @@ -370025,23 +371811,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, - [81401] = 3, + [81721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 16, + ACTIONS(6562), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370056,9 +371840,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(5703), 35, + ACTIONS(6564), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370068,7 +371855,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, @@ -370081,23 +371867,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, - [81460] = 3, + [81780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 19, + ACTIONS(5994), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370107,27 +371891,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(6600), 32, + ACTIONS(5996), 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, @@ -370135,7 +371919,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, @@ -370149,11 +371932,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, - [81519] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [81839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 19, + ACTIONS(6566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370173,7 +371957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6680), 32, + ACTIONS(6568), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370206,187 +371990,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [81578] = 8, + [81898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(5007), 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, + ACTIONS(6330), 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(4172), 25, + ACTIONS(6332), 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_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, - [81647] = 5, + anon_sym_GT2, + [81959] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6518), 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___attribute__, - anon_sym___attribute, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5919), 25, + ACTIONS(6520), 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_LBRACE, - anon_sym_LBRACK, + 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, - [81710] = 5, + anon_sym_GT2, + [82018] = 6, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(2619), 1, + anon_sym_LBRACE, + ACTIONS(7135), 1, + anon_sym_LPAREN2, + STATE(3961), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6307), 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(5929), 25, + anon_sym_DASH_GT, + ACTIONS(6309), 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, + 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_LT_EQ_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, - [81773] = 3, + anon_sym_DASH_GT_STAR, + [82083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 21, + ACTIONS(6624), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370396,27 +372175,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(6508), 30, + anon_sym_DASH_GT, + ACTIONS(6626), 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, @@ -370424,6 +372203,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, @@ -370437,12 +372217,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, - [81832] = 3, + anon_sym_DASH_GT_STAR, + [82142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 19, + ACTIONS(5893), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370452,27 +372231,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(6664), 32, + ACTIONS(5895), 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, @@ -370480,7 +372259,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, @@ -370494,127 +372272,124 @@ 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, - [81891] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [82201] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6722), 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(5966), 25, + anon_sym_DASH_GT, + ACTIONS(6724), 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, - [81954] = 5, + anon_sym_DASH_GT_STAR, + [82260] = 3, 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, + ACTIONS(6682), 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(5972), 25, + anon_sym_DASH_GT, + ACTIONS(6684), 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, - [82017] = 3, + anon_sym_DASH_GT_STAR, + [82319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 19, + ACTIONS(6418), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370624,27 +372399,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(6684), 32, + ACTIONS(6420), 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, @@ -370652,7 +372427,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, @@ -370666,11 +372440,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, - [82076] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [82378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 19, + ACTIONS(4924), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370690,7 +372465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6676), 32, + ACTIONS(4917), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370723,10 +372498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82135] = 3, + [82437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 19, + ACTIONS(5182), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370746,7 +372521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5202), 32, + ACTIONS(5184), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -370779,10 +372554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82194] = 3, + [82496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 19, + ACTIONS(5903), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -370792,27 +372567,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(5142), 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, @@ -370820,7 +372595,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, @@ -370834,359 +372608,348 @@ 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, - [82253] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [82555] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5907), 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___attribute__, - anon_sym___attribute, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5978), 25, + ACTIONS(5909), 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_LBRACE, - anon_sym_LBRACK, + 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, - [82316] = 5, + anon_sym_GT2, + [82614] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5911), 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___attribute__, - anon_sym___attribute, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5986), 25, + ACTIONS(5913), 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_LBRACE, - anon_sym_LBRACK, + 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, - [82379] = 5, + anon_sym_GT2, + [82673] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6538), 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(5933), 25, + anon_sym_DASH_GT, + ACTIONS(6540), 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, - [82442] = 5, + anon_sym_DASH_GT_STAR, + [82732] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6558), 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(5885), 25, + anon_sym_DASH_GT, + ACTIONS(6560), 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, - [82505] = 5, + anon_sym_DASH_GT_STAR, + [82791] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6636), 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(5891), 25, + anon_sym_DASH_GT, + ACTIONS(6638), 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, - [82568] = 5, + anon_sym_DASH_GT_STAR, + [82850] = 3, 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(5776), 21, - aux_sym_preproc_elif_token1, + ACTIONS(6640), 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(5778), 25, + anon_sym_DASH_GT, + ACTIONS(6642), 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, - [82631] = 3, + anon_sym_DASH_GT_STAR, + [82909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 19, + ACTIONS(6652), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371206,7 +372969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6692), 32, + ACTIONS(6654), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -371239,68 +373002,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [82690] = 5, + [82968] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5952), 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___attribute__, - anon_sym___attribute, + 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5911), 25, + ACTIONS(5954), 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_LBRACE, - anon_sym_LBRACK, + 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, - [82753] = 3, + anon_sym_GT2, + [83027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 21, + ACTIONS(5788), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371310,27 +373071,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(5945), 30, + anon_sym_DASH_GT, + ACTIONS(5790), 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, @@ -371338,25 +373097,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, - [82812] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [83086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 21, + ACTIONS(6546), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371366,27 +373127,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(5964), 30, + anon_sym_DASH_GT, + ACTIONS(6548), 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, @@ -371394,6 +373155,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, @@ -371407,70 +373169,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, - [82871] = 5, + anon_sym_DASH_GT_STAR, + [83145] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6550), 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(5951), 25, + anon_sym_DASH_GT, + ACTIONS(6552), 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, - [82934] = 3, + anon_sym_DASH_GT_STAR, + [83204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 21, + ACTIONS(5827), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371480,27 +373239,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(5905), 30, + anon_sym_DASH_GT, + ACTIONS(5829), 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, @@ -371508,25 +373265,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, - [82993] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [83263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 19, + ACTIONS(6594), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371546,7 +373305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6704), 32, + ACTIONS(6596), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -371579,10 +373338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83052] = 3, + [83322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 19, + ACTIONS(6598), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371602,7 +373361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5158), 32, + ACTIONS(6600), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -371635,10 +373394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83111] = 3, + [83381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 19, + ACTIONS(6602), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371658,7 +373417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6636), 32, + ACTIONS(6604), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -371691,10 +373450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83170] = 3, + [83440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 19, + ACTIONS(6610), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371714,7 +373473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6542), 32, + ACTIONS(6612), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -371747,10 +373506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83229] = 3, + [83499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 19, + ACTIONS(6614), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371770,7 +373529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6546), 32, + ACTIONS(6616), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -371803,66 +373562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5958), 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_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5960), 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, - [83347] = 3, + [83558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 16, + ACTIONS(5537), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371879,7 +373582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5806), 35, + ACTIONS(5539), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -371915,10 +373618,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [83406] = 3, + [83617] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 19, + ACTIONS(6157), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(4168), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371938,7 +373645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6550), 32, + ACTIONS(4161), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -371960,9 +373667,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, @@ -371971,10 +373675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [83465] = 3, + [83678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6642), 19, + ACTIONS(5970), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -371984,27 +373688,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(6644), 32, + ACTIONS(5972), 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, @@ -372012,7 +373716,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, @@ -372026,94 +373729,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, - [83524] = 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(7424), 1, anon_sym_DASH_GT, - 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_LBRACE, - 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, + anon_sym_GT2, + [83737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 16, + ACTIONS(5831), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372130,7 +373751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5740), 35, + ACTIONS(5833), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372166,16 +373787,16 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [83696] = 6, + [83796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(7896), 1, + ACTIONS(7918), 1, anon_sym_LT, - STATE(1863), 1, + STATE(1920), 1, sym_template_argument_list, - ACTIONS(5834), 23, + ACTIONS(5839), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -372199,7 +373820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(4192), 25, + ACTIONS(4180), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -372225,16 +373846,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [83761] = 6, + [83861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(7910), 1, + ACTIONS(7920), 1, anon_sym_LT, - STATE(1863), 1, + STATE(1920), 1, sym_template_argument_list, - ACTIONS(4925), 23, + ACTIONS(4915), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -372258,7 +373879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(4932), 25, + ACTIONS(4922), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -372284,133 +373905,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [83826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5180), 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(5182), 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_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, - [83885] = 30, + [83926] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7060), 1, + ACTIONS(7080), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7063), 1, + ACTIONS(7083), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(7915), 1, + ACTIONS(7925), 1, anon_sym_requires, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(5101), 1, + STATE(5114), 1, sym__function_attributes_start, - STATE(5337), 1, + STATE(5326), 1, sym_ref_qualifier, - STATE(6397), 1, + STATE(6446), 1, sym__function_attributes_end, - STATE(6573), 1, + STATE(6576), 1, sym_trailing_return_type, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7046), 2, + ACTIONS(7066), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7085), 2, + ACTIONS(7095), 2, anon_sym_final, anon_sym_override, - STATE(4140), 2, + STATE(4155), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4332), 2, + STATE(4343), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5965), 2, + STATE(5928), 2, sym__function_postfix, sym_requires_clause, - STATE(5457), 3, + STATE(5487), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -372423,10 +373988,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83998] = 3, + [84039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 19, + ACTIONS(5509), 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(5511), 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, + [84098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6714), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372446,7 +374067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6554), 32, + ACTIONS(6716), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372479,10 +374100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84057] = 3, + [84157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 19, + ACTIONS(6485), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372502,7 +374123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6558), 32, + ACTIONS(6487), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372535,12 +374156,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84116] = 4, + [84216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 1, - anon_sym_COLON_COLON, - ACTIONS(6342), 20, + ACTIONS(5768), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372550,25 +374169,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(6344), 30, + anon_sym_DASH_GT, + ACTIONS(5770), 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, @@ -372577,25 +374195,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, - [84177] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [84275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 16, + ACTIONS(5537), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372612,7 +374232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5517), 35, + ACTIONS(5539), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372648,10 +374268,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [84236] = 3, + [84334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 19, + ACTIONS(5815), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372666,12 +374286,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(6466), 32, + ACTIONS(5817), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372681,6 +374298,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, @@ -372693,86 +374311,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_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, + anon_sym_DASH_GT_STAR, + [84393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6196), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(4174), 19, + ACTIONS(5678), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372787,12 +374342,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(4166), 29, + ACTIONS(5680), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372802,6 +374354,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, @@ -372815,17 +374368,22 @@ 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, - [84425] = 3, + [84452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 19, + ACTIONS(1940), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372845,7 +374403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6688), 32, + ACTIONS(1938), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372878,66 +374436,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [84484] = 3, + [84511] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 19, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7918), 1, + anon_sym_LT, + STATE(1920), 1, + sym_template_argument_list, + STATE(3546), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7569), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 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(6408), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(4166), 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, - [84543] = 3, + anon_sym_DASH_GT, + [84580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 16, + ACTIONS(5745), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -372954,7 +374517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5517), 35, + ACTIONS(5747), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -372990,10 +374553,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [84602] = 3, + [84639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 19, + ACTIONS(5749), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373008,12 +374571,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(6408), 32, + ACTIONS(5751), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373023,6 +374583,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, @@ -373035,77 +374596,81 @@ 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, - [84661] = 3, + [84698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 19, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7892), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5986), 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(1938), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5984), 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, - [84720] = 3, + anon_sym_DASH_GT, + [84761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 19, + ACTIONS(5753), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373120,12 +374685,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(6408), 32, + ACTIONS(5755), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373135,6 +374697,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, @@ -373147,21 +374710,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, - [84779] = 3, + [84820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 19, + ACTIONS(5757), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373176,12 +374741,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(6616), 32, + ACTIONS(5759), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373191,6 +374753,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, @@ -373203,28 +374766,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, - [84838] = 6, + [84879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_LBRACE, - ACTIONS(7289), 1, - anon_sym_LPAREN2, - STATE(3874), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6262), 16, + ACTIONS(5701), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373241,15 +374799,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6264), 31, + ACTIONS(5703), 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, @@ -373272,11 +374832,96 @@ 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, - [84903] = 3, + [84938] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5760), 16, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7403), 1, + anon_sym_requires, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5061), 1, + sym__function_attributes_start, + STATE(5325), 1, + sym_ref_qualifier, + STATE(6138), 1, + sym_trailing_return_type, + STATE(6506), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7066), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7400), 2, + anon_sym_final, + anon_sym_override, + STATE(4155), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4343), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5473), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7072), 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, + [85051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5795), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373293,7 +374938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5762), 35, + ACTIONS(5797), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373329,10 +374974,68 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [84962] = 3, + [85110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5788), 16, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7892), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5899), 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(5897), 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, + [85173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3967), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373342,25 +375045,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(5790), 35, + ACTIONS(3969), 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, @@ -373368,27 +375073,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, - [85021] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [85232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 16, + ACTIONS(5657), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373405,7 +375108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5818), 35, + ACTIONS(5659), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373438,13 +375141,73 @@ 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, - [85080] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_DASH_GT_STAR, + [85291] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7932), 1, + sym_identifier, + STATE(3421), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5082), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5084), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5431), 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(5429), 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, + [85358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5660), 16, + ACTIONS(5686), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373461,7 +375224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5662), 35, + ACTIONS(5688), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373497,32 +375260,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [85139] = 3, + [85417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5982), 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_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5984), 30, + ACTIONS(7064), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -373530,7 +375271,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, @@ -373541,22 +375282,13 @@ 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, - [85198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5990), 21, + ACTIONS(7062), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373571,48 +375303,23 @@ 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(5992), 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_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, - [85257] = 3, + anon_sym_DOT, + sym_literal_suffix, + [85476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 19, + ACTIONS(6460), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373632,7 +375339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6439), 32, + ACTIONS(6462), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373665,93 +375372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85316] = 30, - ACTIONS(3), 1, - sym_comment, - 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(7447), 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(5045), 1, - sym__function_attributes_start, - STATE(5331), 1, - sym_ref_qualifier, - STATE(6126), 1, - sym_trailing_return_type, - STATE(6487), 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(7359), 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(5459), 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, - [85429] = 3, + [85535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 21, + ACTIONS(5144), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373761,27 +375385,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(5927), 30, + anon_sym_DASH_GT, + ACTIONS(5146), 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, @@ -373789,6 +375413,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, @@ -373802,12 +375427,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, - [85488] = 3, + anon_sym_DASH_GT_STAR, + [85594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 19, + ACTIONS(5778), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373822,12 +375446,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(6668), 32, + ACTIONS(5780), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373837,6 +375458,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, @@ -373849,77 +375471,79 @@ 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, - [85547] = 3, + [85653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5947), 21, + ACTIONS(5629), 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_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(5949), 30, + sym_literal_suffix, + ACTIONS(5631), 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_LBRACK_LBRACK, + 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_GT2, - [85606] = 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, + [85712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 19, + ACTIONS(5657), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -373934,12 +375558,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(6648), 32, + ACTIONS(5659), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -373949,6 +375570,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, @@ -373961,81 +375583,79 @@ 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, - [85665] = 7, + [85771] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5144), 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(5401), 19, + anon_sym_DASH_GT, + ACTIONS(5146), 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, - [85732] = 3, + anon_sym_DASH_GT_STAR, + [85830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 19, + ACTIONS(5144), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374055,7 +375675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6712), 32, + ACTIONS(5146), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374088,77 +375708,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [85791] = 30, + [85889] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7060), 1, + ACTIONS(7080), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7063), 1, + ACTIONS(7083), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(7924), 1, + ACTIONS(7934), 1, anon_sym_requires, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(5072), 1, + STATE(5060), 1, sym__function_attributes_start, - STATE(5336), 1, + STATE(5366), 1, sym_ref_qualifier, - STATE(6428), 1, + STATE(6437), 1, sym__function_attributes_end, - STATE(6593), 1, + STATE(6623), 1, sym_trailing_return_type, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7046), 2, + ACTIONS(7066), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(4140), 2, + STATE(4155), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4332), 2, + STATE(4343), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5965), 2, + STATE(5928), 2, sym__function_postfix, sym_requires_clause, - STATE(5470), 3, + STATE(5478), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -374171,26 +375791,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [85904] = 8, + [86002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6526), 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(6528), 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_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, + [86061] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7027), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2475), 1, + STATE(2484), 1, sym_attribute_specifier, - STATE(3676), 1, + STATE(3688), 1, sym_enumerator_list, - ACTIONS(6066), 5, + ACTIONS(6046), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6068), 41, + ACTIONS(6048), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -374232,26 +375908,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [85973] = 8, + [86130] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7027), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2565), 1, + STATE(2506), 1, sym_attribute_specifier, - STATE(3680), 1, + STATE(3691), 1, sym_enumerator_list, - ACTIONS(6072), 5, + ACTIONS(6062), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6074), 41, + ACTIONS(6064), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -374293,112 +375969,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [86042] = 3, + [86199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 19, + STATE(3569), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7936), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5919), 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(5146), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5917), 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, - [86101] = 4, + anon_sym_DASH_GT, + [86262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7926), 1, - sym_literal_suffix, - ACTIONS(4166), 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(4174), 26, + STATE(3571), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7938), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5925), 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_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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -374406,149 +376056,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - [86162] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6694), 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(6696), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5923), 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, - [86221] = 30, - ACTIONS(3), 1, - sym_comment, - 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, + [86325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 16, + ACTIONS(5727), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374565,7 +376105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5668), 35, + ACTIONS(5729), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374601,10 +376141,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [86393] = 3, + [86384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 19, + ACTIONS(5819), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374619,12 +376159,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(4927), 32, + ACTIONS(5821), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374634,6 +376171,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, @@ -374646,77 +376184,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_STAR, - [86452] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - 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(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, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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_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, - [86511] = 3, + [86443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 19, + ACTIONS(5727), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374731,12 +376215,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(4927), 32, + ACTIONS(5729), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374746,6 +376227,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, @@ -374758,21 +376240,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, - [86570] = 3, + [86502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 19, + ACTIONS(5460), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -374792,7 +376276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(4927), 32, + ACTIONS(2717), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -374825,178 +376309,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [86629] = 3, + [86561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 19, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7892), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5958), 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(4927), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5956), 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, - [86688] = 3, + anon_sym_DASH_GT, + [86624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 19, + ACTIONS(5502), 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(4927), 32, + sym_literal_suffix, + ACTIONS(5504), 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_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, - [86747] = 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, + [86683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 19, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7892), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 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(5172), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5960), 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, - [86806] = 3, + anon_sym_DASH_GT, + [86746] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 16, + STATE(3422), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7940), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5966), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -375005,6 +376501,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, @@ -375012,11 +376510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5643), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5964), 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, @@ -375028,31 +376531,26 @@ 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, - 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, + [86809] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 16, + STATE(3425), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7942), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5976), 21, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -375061,6 +376559,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, @@ -375068,11 +376568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5603), 35, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5974), 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, @@ -375084,31 +376589,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, - 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, + [86872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 19, + ACTIONS(5727), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375123,12 +376615,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(6700), 32, + ACTIONS(5729), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375138,6 +376627,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, @@ -375150,21 +376640,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, - [86983] = 3, + [86931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 19, + ACTIONS(6710), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375184,7 +376676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6604), 32, + ACTIONS(6712), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375217,66 +376709,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [87042] = 3, + [86990] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 19, + STATE(3488), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7892), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5982), 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(1934), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5980), 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, - [87101] = 3, + anon_sym_DASH_GT, + [87053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 19, + ACTIONS(5940), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375286,27 +376780,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(6608), 32, + ACTIONS(5942), 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, @@ -375314,7 +376808,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, @@ -375328,11 +376821,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, - [87160] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [87112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 19, + ACTIONS(5799), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375347,12 +376841,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(6612), 32, + ACTIONS(5801), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375362,6 +376853,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, @@ -375374,77 +376866,83 @@ 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, - [87219] = 3, + [87171] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 19, + ACTIONS(7944), 1, + sym_identifier, + STATE(3579), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7947), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7950), 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(6656), 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, - [87278] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [87238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5712), 16, + ACTIONS(5731), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375461,7 +376959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5714), 35, + ACTIONS(5733), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375497,70 +376995,66 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [87337] = 7, + [87297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7928), 1, - sym_identifier, - STATE(3569), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7931), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7934), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(5413), 18, + ACTIONS(6056), 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(5411), 19, + anon_sym_DASH_GT, + ACTIONS(6054), 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, - [87404] = 3, + anon_sym_DASH_GT_STAR, + [87356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 16, + ACTIONS(5705), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375577,7 +377071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5755), 35, + ACTIONS(5707), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375613,10 +377107,10 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_DASH_GT_STAR, - [87463] = 3, + [87415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 16, + ACTIONS(6686), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375631,9 +377125,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(5722), 35, + ACTIONS(6688), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375643,7 +377140,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, @@ -375656,23 +377152,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, - [87522] = 3, + [87474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 16, + ACTIONS(5196), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375687,9 +377181,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(5726), 35, + ACTIONS(5198), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375699,7 +377196,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, @@ -375712,23 +377208,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, - [87581] = 3, + [87533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 16, + ACTIONS(6574), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375743,9 +377237,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(5730), 35, + ACTIONS(6576), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375755,7 +377252,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, @@ -375768,27 +377264,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, - [87640] = 5, + [87592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7879), 1, - anon_sym_AMP_AMP, - ACTIONS(7883), 1, - anon_sym_and, - ACTIONS(6248), 18, + ACTIONS(4924), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375804,15 +377294,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(6250), 31, + ACTIONS(4917), 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, @@ -375839,10 +377331,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [87703] = 3, + [87651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 16, + ACTIONS(2619), 1, + anon_sym_LBRACE, + ACTIONS(7135), 1, + anon_sym_LPAREN2, + STATE(3902), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6242), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375859,17 +377358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5722), 35, + ACTIONS(6244), 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, @@ -375892,13 +377389,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, - [87762] = 3, + [87716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 19, + ACTIONS(4924), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375918,7 +377413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6484), 32, + ACTIONS(4917), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375951,10 +377446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [87821] = 3, + [87775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 16, + ACTIONS(4924), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -375969,9 +377464,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(5722), 35, + ACTIONS(4917), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -375981,7 +377479,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, @@ -375994,23 +377491,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, - [87880] = 3, + [87834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 19, + ACTIONS(6690), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376030,7 +377525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6578), 32, + ACTIONS(6692), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376063,10 +377558,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [87939] = 3, + [87893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 19, + ACTIONS(6648), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376086,7 +377581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6592), 32, + ACTIONS(6650), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376119,40 +377614,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [87998] = 3, + [87952] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7083), 1, + anon_sym_LBRACK, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5110), 1, + sym__function_attributes_start, + STATE(5362), 1, + sym_ref_qualifier, + STATE(6154), 1, + sym_trailing_return_type, + STATE(6527), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7066), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(4155), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4343), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6151), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5481), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7072), 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, + [88065] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 19, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + ACTIONS(7716), 1, + anon_sym_LT_EQ_GT, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5162), 32, + ACTIONS(6483), 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, @@ -376164,128 +377756,124 @@ 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, - [88057] = 3, + [88145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 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(5182), 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_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, - anon_sym_GT2, - [88115] = 23, + [88203] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 1, + ACTIONS(6481), 1, anon_sym_EQ, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7684), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7941), 1, + ACTIONS(7959), 1, anon_sym_PIPE, - ACTIONS(7943), 1, + ACTIONS(7961), 1, anon_sym_CARET, - ACTIONS(7945), 1, + ACTIONS(7963), 1, anon_sym_AMP, - ACTIONS(7951), 1, + ACTIONS(7969), 1, anon_sym_GT_EQ, - ACTIONS(7955), 1, + ACTIONS(7971), 1, anon_sym_bitor, - ACTIONS(7957), 1, + ACTIONS(7973), 1, anon_sym_xor, - ACTIONS(7959), 1, + ACTIONS(7975), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7953), 2, + ACTIONS(7957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7939), 3, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7947), 3, + ACTIONS(7965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7949), 3, + ACTIONS(7967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 19, + ACTIONS(6483), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -376305,65 +377893,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_DASH_GT_STAR, - [88213] = 3, + [88301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 18, + ACTIONS(5018), 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_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(4982), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5020), 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_COLON, + 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_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, - [88271] = 3, + [88359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5178), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376384,7 +377972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4927), 30, + ACTIONS(5180), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376415,10 +378003,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88329] = 3, + [88417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 20, + ACTIONS(6648), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376439,7 +378027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6566), 30, + ACTIONS(6650), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376470,10 +378058,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88387] = 3, + [88475] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 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(7977), 1, + sym_identifier, + ACTIONS(7979), 1, + anon_sym_RPAREN, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4568), 1, + sym_type_specifier, + STATE(6738), 1, + sym__scope_resolution, + STATE(7652), 1, + sym_type_descriptor, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1793), 2, + sym_decltype, + sym_template_type, + STATE(3882), 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(1907), 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, + [88581] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6434), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376494,7 +378161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6466), 30, + ACTIONS(6436), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376525,10 +378192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88445] = 3, + [88639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6441), 20, + ACTIONS(4988), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376538,18 +378205,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(6443), 30, + ACTIONS(4990), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376557,6 +378222,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, @@ -376565,6 +378232,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, @@ -376579,11 +378247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [88503] = 3, + [88697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(6554), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376604,7 +378271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4927), 30, + ACTIONS(6556), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376635,65 +378302,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88561] = 3, + [88755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 20, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5613), 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(1938), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5615), 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, - [88619] = 3, + [88815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(5158), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376714,7 +378382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4927), 30, + ACTIONS(5160), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376745,10 +378413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88677] = 3, + [88873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 20, + ACTIONS(5170), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376769,7 +378437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6596), 30, + ACTIONS(5172), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376800,10 +378468,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88735] = 3, + [88931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5617), 19, + 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_literal_suffix, + ACTIONS(5619), 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, + [88989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(6590), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376824,7 +378547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4927), 30, + ACTIONS(6592), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376855,69 +378578,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [88793] = 24, + [89047] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 1, - anon_sym_EQ, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7684), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7941), 1, - anon_sym_PIPE, - ACTIONS(7943), 1, + ACTIONS(7961), 1, anon_sym_CARET, - ACTIONS(7945), 1, + ACTIONS(7963), 1, anon_sym_AMP, - ACTIONS(7951), 1, + ACTIONS(7969), 1, anon_sym_GT_EQ, - ACTIONS(7955), 1, - anon_sym_bitor, - ACTIONS(7957), 1, + ACTIONS(7973), 1, anon_sym_xor, - ACTIONS(7959), 1, + ACTIONS(7975), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7953), 2, + ACTIONS(7957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7961), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7939), 3, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7947), 3, + ACTIONS(7965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7949), 3, + ACTIONS(7967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 17, + ACTIONS(6483), 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, @@ -376930,11 +378648,13 @@ 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_DASH_GT_STAR, - [88893] = 3, + [89141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 20, + ACTIONS(5022), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376944,18 +378664,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(6636), 30, + ACTIONS(5024), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -376963,6 +378681,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, @@ -376971,6 +378691,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, @@ -376985,11 +378706,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [88951] = 3, + [89199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6638), 20, + ACTIONS(6311), 1, + anon_sym_EQ, + ACTIONS(6313), 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(4168), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -376999,18 +378735,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(6640), 30, + ACTIONS(4161), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377018,20 +378751,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, @@ -377040,11 +378763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [89009] = 3, + [89261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(6624), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377065,7 +378787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4927), 30, + ACTIONS(6626), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377096,67 +378818,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89067] = 5, + [89319] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5629), 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___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(4166), 19, + sym_identifier, + sym_literal_suffix, + ACTIONS(5631), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, 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, - [89129] = 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, + [89377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 20, + ACTIONS(4168), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377177,7 +378897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4927), 30, + ACTIONS(4161), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377208,10 +378928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89187] = 3, + [89435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 20, + ACTIONS(6542), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377232,7 +378952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6600), 30, + ACTIONS(6544), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377263,10 +378983,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89245] = 3, + [89493] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 20, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6456), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377276,26 +379009,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(6542), 30, + ACTIONS(6458), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -377303,25 +379030,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_DASH_GT_STAR, + [89563] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7031), 1, + anon_sym_EQ, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, anon_sym_DOT_STAR, + ACTIONS(7716), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7959), 1, + anon_sym_PIPE, + ACTIONS(7961), 1, + anon_sym_CARET, + ACTIONS(7963), 1, + anon_sym_AMP, + ACTIONS(7969), 1, + anon_sym_GT_EQ, + ACTIONS(7971), 1, + anon_sym_bitor, + ACTIONS(7973), 1, + anon_sym_xor, + ACTIONS(7975), 1, + anon_sym_bitand, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - [89303] = 3, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7953), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7985), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7987), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7955), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7965), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7967), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7033), 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, + [89665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 20, + ACTIONS(6694), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377342,7 +379145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6554), 30, + ACTIONS(6696), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377373,10 +379176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89361] = 3, + [89723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 20, + ACTIONS(6478), 1, + anon_sym_LT, + STATE(1954), 1, + sym_template_argument_list, + ACTIONS(6474), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377386,25 +379193,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(1934), 30, + ACTIONS(6476), 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, @@ -377413,6 +379218,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, @@ -377427,66 +379233,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [89419] = 3, + [89785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 20, + ACTIONS(5521), 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(5146), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5523), 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_STAR_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, - [89477] = 3, + [89843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6445), 20, + ACTIONS(6730), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -377507,7 +379312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6447), 30, + ACTIONS(6732), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -377538,80 +379343,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [89535] = 4, + [89901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4993), 20, - aux_sym_preproc_elif_token1, + ACTIONS(6532), 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_COLON, + 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, - ACTIONS(4986), 28, + ACTIONS(6534), 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_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, - [89595] = 9, + anon_sym_GT2, + [89959] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5502), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -377620,6 +379410,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, @@ -377628,15 +379420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6395), 24, + sym_literal_suffix, + ACTIONS(5504), 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, @@ -377648,6 +379435,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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -377655,130 +379443,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [89665] = 21, - ACTIONS(3), 1, - sym_comment, - 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, - 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), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_DASH_GT_STAR, - [89759] = 22, + 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, + [90017] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5871), 1, + ACTIONS(5891), 1, anon_sym___asm, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7882), 1, sym_ms_restrict_modifier, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7967), 1, + ACTIONS(7989), 1, anon_sym_STAR, - ACTIONS(7969), 1, + ACTIONS(7991), 1, anon_sym_AMP_AMP, - ACTIONS(7971), 1, + ACTIONS(7993), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6237), 1, + STATE(6239), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7858), 2, + ACTIONS(7884), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7860), 2, + ACTIONS(7886), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3610), 2, + STATE(3627), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4256), 2, + STATE(4242), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5863), 10, + ACTIONS(5889), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -377789,7 +379514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7297), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -377802,56 +379527,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89855] = 19, + [90113] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7684), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7945), 1, + ACTIONS(7963), 1, anon_sym_AMP, - ACTIONS(7951), 1, + ACTIONS(7969), 1, anon_sym_GT_EQ, - ACTIONS(7959), 1, + ACTIONS(7975), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7953), 2, + ACTIONS(7957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 3, + ACTIONS(6481), 3, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, - ACTIONS(7939), 3, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7947), 3, + ACTIONS(7965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7949), 3, + ACTIONS(7967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 21, + ACTIONS(6483), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -377873,57 +379598,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_DASH_GT_STAR, - [89945] = 22, + [90203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6570), 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(6572), 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, + [90261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6678), 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(6680), 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, + [90319] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5879), 1, + ACTIONS(5868), 1, anon_sym___asm, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7882), 1, sym_ms_restrict_modifier, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7967), 1, + ACTIONS(7989), 1, anon_sym_STAR, - ACTIONS(7969), 1, + ACTIONS(7991), 1, anon_sym_AMP_AMP, - ACTIONS(7971), 1, + ACTIONS(7993), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6241), 1, + STATE(6243), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7858), 2, + ACTIONS(7884), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7860), 2, + ACTIONS(7886), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4261), 2, + STATE(4245), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5877), 10, + ACTIONS(5860), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -377934,7 +379769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7297), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -377947,53 +379782,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90041] = 17, + [90415] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7684), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7951), 1, + ACTIONS(7969), 1, anon_sym_GT_EQ, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7953), 2, + ACTIONS(7957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7939), 3, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7947), 3, + ACTIONS(7965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7949), 3, + ACTIONS(7967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 4, + ACTIONS(6481), 4, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_EQ, - ACTIONS(6520), 22, + ACTIONS(6483), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378016,10 +379851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_DASH_GT_STAR, - [90127] = 3, + [90501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 20, + ACTIONS(5182), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378040,7 +379875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6408), 30, + ACTIONS(5184), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378071,56 +379906,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90185] = 16, + [90559] = 7, ACTIONS(3), 1, sym_comment, - 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(7951), 1, - anon_sym_GT_EQ, - 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, + ACTIONS(7995), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7997), 1, + anon_sym_AMP_AMP, + ACTIONS(7999), 1, + anon_sym_or, + ACTIONS(8001), 1, + anon_sym_and, + ACTIONS(6261), 18, 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(7949), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6518), 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(6520), 25, + anon_sym_GT_GT_EQ, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6263), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_LPAREN2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -378128,21 +379950,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, - [90269] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [90625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 20, + ACTIONS(6538), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378163,7 +379989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6408), 30, + ACTIONS(6540), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378194,10 +380020,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90327] = 3, + [90683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 20, + ACTIONS(5509), 19, + 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_literal_suffix, + ACTIONS(5511), 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, + [90741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6558), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378218,7 +380099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6408), 30, + ACTIONS(6560), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378249,10 +380130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90385] = 3, + [90799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6654), 20, + ACTIONS(5174), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378273,7 +380154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6656), 30, + ACTIONS(5176), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378304,38 +380185,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90443] = 14, + [90857] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7684), 1, - anon_sym_LT_EQ_GT, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7953), 2, + ACTIONS(7957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7939), 3, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6518), 7, + ACTIONS(6481), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -378343,7 +380222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_EQ, - ACTIONS(6520), 26, + ACTIONS(6483), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -378363,6 +380242,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, @@ -378370,10 +380250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [90523] = 3, + [90935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 20, + ACTIONS(6636), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378394,7 +380274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6574), 30, + ACTIONS(6638), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378425,47 +380305,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90581] = 9, + [90993] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6710), 1, + anon_sym_EQ, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7694), 1, + anon_sym_QMARK, + ACTIONS(7716), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7959), 1, + anon_sym_PIPE, + ACTIONS(7961), 1, + anon_sym_CARET, + ACTIONS(7963), 1, + anon_sym_AMP, + ACTIONS(7969), 1, + anon_sym_GT_EQ, + ACTIONS(7971), 1, + anon_sym_bitor, + ACTIONS(7973), 1, + anon_sym_xor, + ACTIONS(7975), 1, + anon_sym_bitand, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6514), 14, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7985), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7987), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7965), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(6516), 29, - anon_sym_DOT_DOT_DOT, + ACTIONS(6712), 13, 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, @@ -378476,20 +380383,15 @@ 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, - [90651] = 3, + [91099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 20, + ACTIONS(8003), 1, + anon_sym_COMMA, + ACTIONS(8005), 1, + anon_sym_RBRACK, + ACTIONS(4168), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378499,25 +380401,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(6724), 30, + ACTIONS(4161), 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, @@ -378526,6 +380426,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, @@ -378540,11 +380441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [90709] = 3, + [91161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 20, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378565,7 +380465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6608), 30, + ACTIONS(4917), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378596,10 +380496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90767] = 3, + [91219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 20, + ACTIONS(6574), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378620,7 +380520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6612), 30, + ACTIONS(6576), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378651,71 +380551,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90825] = 25, + [91277] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7015), 1, - anon_sym_EQ, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7684), 1, + ACTIONS(7716), 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, + ACTIONS(7969), 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, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7953), 2, + ACTIONS(7957), 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, + ACTIONS(7955), 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, + ACTIONS(7967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 15, + ACTIONS(6481), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(6483), 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, @@ -378727,11 +380612,17 @@ static const uint16_t ts_small_parse_table[] = { 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_DASH_GT_STAR, - [90927] = 3, + [91361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 20, + ACTIONS(6690), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378752,7 +380643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5158), 30, + ACTIONS(6692), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378783,14 +380674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [90985] = 5, + [91419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6430), 1, - anon_sym_LT, - STATE(1975), 1, - sym_template_argument_list, - ACTIONS(6426), 17, + ACTIONS(5014), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378801,6 +380688,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, @@ -378808,15 +380696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6428), 31, + ACTIONS(5016), 32, anon_sym_DOT_DOT_DOT, - anon_sym_RPAREN, + 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, @@ -378840,10 +380729,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [91047] = 3, + [91477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6642), 20, + ACTIONS(5007), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5009), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378853,25 +380745,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(6644), 30, + anon_sym_DASH_GT, + ACTIONS(5002), 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, @@ -378880,25 +380770,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, - [91105] = 3, + anon_sym_DASH_GT_STAR, + [91537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 20, + ACTIONS(6578), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378919,7 +380809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5162), 30, + ACTIONS(6580), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -378950,10 +380840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [91163] = 3, + [91595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 20, + ACTIONS(6682), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -378974,7 +380864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6484), 30, + ACTIONS(6684), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379005,10 +380895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [91221] = 3, + [91653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 20, + ACTIONS(6710), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379029,7 +380919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5150), 30, + ACTIONS(6712), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379060,14 +380950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [91279] = 5, + [91711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7975), 1, - anon_sym_COMMA, - ACTIONS(7977), 1, - anon_sym_RBRACK, - ACTIONS(4174), 18, + ACTIONS(6594), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379077,23 +380963,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(4166), 30, + ACTIONS(6596), 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, @@ -379102,7 +380990,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, @@ -379117,10 +381004,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [91341] = 3, + anon_sym_GT2, + [91769] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 20, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6444), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379130,26 +381034,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(5154), 30, + ACTIONS(6446), 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, @@ -379157,25 +381055,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_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, - [91399] = 3, + anon_sym_DASH_GT_STAR, + [91841] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 20, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6470), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379185,26 +381096,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(6566), 30, + ACTIONS(6472), 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, @@ -379212,25 +381117,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, - [91457] = 3, + anon_sym_DASH_GT_STAR, + [91913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 20, + ACTIONS(6610), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379251,7 +381153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6004), 30, + ACTIONS(6612), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379282,10 +381184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [91515] = 3, + [91971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 20, + ACTIONS(6656), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379306,7 +381208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6648), 30, + ACTIONS(6658), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379337,14 +381239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [91573] = 5, + [92029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, - anon_sym_LBRACK, - STATE(3754), 1, - sym_new_declarator, - ACTIONS(6346), 16, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379354,24 +381252,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(6348), 32, + ACTIONS(4917), 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, @@ -379379,25 +381279,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, - [91635] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [92087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 20, + ACTIONS(6722), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379418,7 +381318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4166), 30, + ACTIONS(6724), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -379449,71 +381349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [91693] = 7, - ACTIONS(3), 1, - sym_comment, - 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, - 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, - [91759] = 4, + [92145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, + ACTIONS(5007), 2, anon_sym_COLON_COLON, - ACTIONS(5521), 24, + anon_sym_LBRACE, + ACTIONS(5009), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -379534,13 +381376,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(5523), 25, + ACTIONS(5002), 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, @@ -379556,193 +381395,52 @@ 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_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, - [91819] = 12, + [92205] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(7939), 3, + ACTIONS(7955), 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_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(6520), 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, - [91895] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - ACTIONS(6993), 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(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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [91997] = 13, - 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(7937), 2, + ACTIONS(6481), 11, 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_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6520), 27, + ACTIONS(6483), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379770,26 +381468,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [92075] = 10, + [92279] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6410), 14, + ACTIONS(6481), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -379804,7 +381502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(6412), 27, + ACTIONS(6483), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -379832,130 +381530,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [92147] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 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(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, + [92351] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - ACTIONS(6997), 1, + ACTIONS(6481), 1, anon_sym_EQ, - ACTIONS(7159), 1, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7618), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7662), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7941), 1, + ACTIONS(7959), 1, anon_sym_PIPE, - ACTIONS(7943), 1, + ACTIONS(7961), 1, anon_sym_CARET, - ACTIONS(7945), 1, + ACTIONS(7963), 1, anon_sym_AMP, - ACTIONS(7951), 1, + ACTIONS(7969), 1, anon_sym_GT_EQ, - ACTIONS(7955), 1, + ACTIONS(7971), 1, anon_sym_bitor, - ACTIONS(7957), 1, + ACTIONS(7973), 1, anon_sym_xor, - ACTIONS(7959), 1, + ACTIONS(7975), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7953), 2, + ACTIONS(7957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7961), 2, + ACTIONS(7987), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(7973), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(7939), 3, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7947), 3, + ACTIONS(7965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7949), 3, + ACTIONS(7967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6999), 13, + ACTIONS(6483), 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, @@ -379966,106 +381604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_or, anon_sym_DASH_GT_STAR, - [92313] = 27, - 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(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, + [92451] = 3, 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, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380075,20 +381619,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, - ACTIONS(6424), 27, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4917), 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, @@ -380096,22 +381646,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, - [92491] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [92509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 20, + ACTIONS(5018), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380121,18 +381674,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(6720), 30, + ACTIONS(5020), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380140,6 +381691,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, @@ -380148,6 +381701,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, @@ -380162,67 +381716,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [92549] = 4, + [92567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 24, - aux_sym_preproc_elif_token1, + ACTIONS(4924), 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_COLON, + 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, - anon_sym_final, - anon_sym_override, - ACTIONS(5543), 25, + ACTIONS(4917), 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_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, - [92609] = 3, + anon_sym_GT2, + [92625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 20, + ACTIONS(6452), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380243,7 +381795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6562), 30, + ACTIONS(6454), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380274,65 +381826,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [92667] = 3, + [92683] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 20, + ACTIONS(8008), 1, + anon_sym_COLON, + ACTIONS(8010), 1, + anon_sym_LBRACE, + STATE(3984), 1, + sym__enum_base_clause, + STATE(4038), 1, + sym_enumerator_list, + STATE(4139), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6346), 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_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(5198), 30, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6348), 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_STAR_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, - [92725] = 3, + [92753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 20, + ACTIONS(6660), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380353,7 +381911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6616), 30, + ACTIONS(6662), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380384,10 +381942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [92783] = 3, + [92811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6626), 20, + ACTIONS(6674), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380408,7 +381966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6628), 30, + ACTIONS(6676), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380439,89 +381997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [92841] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6662), 1, - anon_sym_EQ, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - 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(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, + [92869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 20, + ACTIONS(6606), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380542,7 +382021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6696), 30, + ACTIONS(6608), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380573,10 +382052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93005] = 3, + [92927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 20, + ACTIONS(6702), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380597,7 +382076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6668), 30, + ACTIONS(6704), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380628,7 +382107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93063] = 3, + [92985] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6698), 20, @@ -380683,52 +382162,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93121] = 3, + [93043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 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, + ACTIONS(4184), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6534), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(4312), 1, + anon_sym_SEMI, + ACTIONS(5052), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6072), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(6075), 1, anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(4186), 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(4161), 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, @@ -380737,11 +382205,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [93179] = 3, + ACTIONS(4168), 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, + [93113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 20, + ACTIONS(4924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -380762,7 +382247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6538), 30, + ACTIONS(4917), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -380793,68 +382278,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93237] = 25, + [93171] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(7019), 1, + ACTIONS(7035), 1, anon_sym_EQ, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7684), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7941), 1, + ACTIONS(7959), 1, anon_sym_PIPE, - ACTIONS(7943), 1, + ACTIONS(7961), 1, anon_sym_CARET, - ACTIONS(7945), 1, + ACTIONS(7963), 1, anon_sym_AMP, - ACTIONS(7951), 1, + ACTIONS(7969), 1, anon_sym_GT_EQ, - ACTIONS(7955), 1, + ACTIONS(7971), 1, anon_sym_bitor, - ACTIONS(7957), 1, + ACTIONS(7973), 1, anon_sym_xor, - ACTIONS(7959), 1, + ACTIONS(7975), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7953), 2, + ACTIONS(7957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7961), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7973), 2, + ACTIONS(7985), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7939), 3, + ACTIONS(7987), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7947), 3, + ACTIONS(7965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7949), 3, + ACTIONS(7967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 15, + ACTIONS(7037), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -380870,10 +382355,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [93339] = 3, + [93273] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 24, + ACTIONS(8008), 1, + anon_sym_COLON, + ACTIONS(8010), 1, + anon_sym_LBRACE, + STATE(3940), 1, + sym__enum_base_clause, + STATE(4001), 1, + sym_enumerator_list, + STATE(4147), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6352), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -380883,9 +382381,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, @@ -380896,9 +382391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - ACTIONS(5008), 26, + ACTIONS(6354), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -380916,8 +382409,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, @@ -380925,22 +382416,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [93397] = 6, + [93343] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(6440), 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(6442), 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_LT_EQ_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, + [93413] = 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, + [93471] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2533), 1, + STATE(2467), 1, sym_attribute_specifier, - ACTIONS(6157), 5, + ACTIONS(6204), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6159), 42, + ACTIONS(6206), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -380983,123 +382590,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [93461] = 3, + [93535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 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(5012), 26, + ACTIONS(5078), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(5080), 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(4161), 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, - [93519] = 6, - ACTIONS(3), 1, - sym_comment, - 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_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, - [93583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5002), 18, + ACTIONS(4168), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381109,52 +382638,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_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5004), 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_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_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, - [93641] = 3, + [93597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 18, + ACTIONS(5162), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381164,16 +382660,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(4978), 32, + ACTIONS(5164), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381181,8 +382679,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, @@ -381191,7 +382687,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, @@ -381206,10 +382701,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [93699] = 3, + anon_sym_GT2, + [93655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 20, + ACTIONS(6582), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381230,7 +382726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5198), 30, + ACTIONS(6584), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381261,23 +382757,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [93757] = 9, + [93713] = 3, 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), 14, + ACTIONS(5200), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381287,20 +382770,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, - ACTIONS(6435), 29, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5202), 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, @@ -381308,36 +382797,37 @@ 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_DASH_GT_STAR, - [93827] = 6, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [93771] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2455), 1, + STATE(2568), 1, sym_attribute_specifier, - ACTIONS(6206), 5, + ACTIONS(6212), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6208), 42, + ACTIONS(6214), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -381380,77 +382870,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [93891] = 3, + [93835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 24, - aux_sym_preproc_elif_token1, + ACTIONS(1940), 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_COLON, + 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, - anon_sym_final, - anon_sym_override, - ACTIONS(5016), 26, + ACTIONS(1938), 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, - [93949] = 6, + anon_sym_GT2, + [93893] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2466), 1, + STATE(2483), 1, sym_attribute_specifier, - ACTIONS(6210), 5, + ACTIONS(6100), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6212), 42, + ACTIONS(6102), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -381493,10 +382983,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [94013] = 3, + [93957] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 20, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6422), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381506,26 +383012,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(5186), 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, @@ -381533,37 +383033,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, - anon_sym_GT2, - [94071] = 6, + anon_sym_DASH_GT_STAR, + [94029] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2516), 1, + STATE(2526), 1, sym_attribute_specifier, - ACTIONS(6104), 5, + ACTIONS(6127), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6106), 42, + ACTIONS(6129), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -381606,22 +383103,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [94135] = 6, + [94093] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2520), 1, + STATE(2527), 1, sym_attribute_specifier, - ACTIONS(6108), 5, + ACTIONS(6131), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6110), 42, + ACTIONS(6133), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -381664,22 +383161,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [94199] = 6, + [94157] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2501), 1, + STATE(2504), 1, sym_attribute_specifier, - ACTIONS(6149), 5, + ACTIONS(6228), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6151), 42, + ACTIONS(6230), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -381722,10 +383219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [94263] = 3, + [94221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 20, + ACTIONS(6460), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -381746,7 +383243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6592), 30, + ACTIONS(6462), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -381777,22 +383274,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [94321] = 6, + [94279] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2509), 1, + STATE(2525), 1, sym_attribute_specifier, - ACTIONS(6161), 5, + ACTIONS(6181), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6163), 42, + ACTIONS(6183), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -381835,22 +383332,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [94385] = 6, + [94343] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2526), 1, + STATE(2510), 1, sym_attribute_specifier, - ACTIONS(6165), 5, + ACTIONS(6208), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6167), 42, + ACTIONS(6210), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -381893,22 +383390,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [94449] = 6, + [94407] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2527), 1, + STATE(2514), 1, sym_attribute_specifier, - ACTIONS(6169), 5, + ACTIONS(6150), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6171), 42, + ACTIONS(6152), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -381951,77 +383448,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [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, + [94471] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2505), 1, + STATE(2458), 1, sym_attribute_specifier, - ACTIONS(6214), 5, + ACTIONS(6159), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6216), 42, + ACTIONS(6161), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -382064,22 +383506,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [94635] = 6, + [94535] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - STATE(2469), 1, + STATE(2535), 1, sym_attribute_specifier, - ACTIONS(6153), 5, + ACTIONS(6192), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(6155), 42, + ACTIONS(6194), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -382122,230 +383564,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [94699] = 3, + [94599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 24, - aux_sym_preproc_elif_token1, + ACTIONS(4924), 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_COLON, + 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, - anon_sym_final, - anon_sym_override, - ACTIONS(4978), 26, + ACTIONS(4917), 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, - [94757] = 3, + anon_sym_GT2, + [94657] = 27, 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, - 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(6913), 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_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(7021), 1, + anon_sym_EQ, + ACTIONS(7226), 1, anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7694), 1, anon_sym_QMARK, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [94815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5601), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(7959), 1, anon_sym_PIPE, + ACTIONS(7961), 1, + anon_sym_CARET, + ACTIONS(7963), 1, 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, + ACTIONS(7969), 1, + anon_sym_GT_EQ, + ACTIONS(7971), 1, anon_sym_bitor, + ACTIONS(7973), 1, anon_sym_xor, + ACTIONS(7975), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, anon_sym_DOT, - sym_identifier, - 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_GT, + ACTIONS(7730), 2, 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, - [94873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5641), 19, + ACTIONS(7953), 2, 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, + ACTIONS(7957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7985), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(7987), 2, + anon_sym_AMP_AMP, 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), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(7955), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(7965), 3, 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, - [94931] = 3, + anon_sym_not_eq, + ACTIONS(7967), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7023), 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, + [94763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 20, + ACTIONS(6237), 1, + anon_sym_COMMA, + ACTIONS(6239), 1, + anon_sym_RBRACK, + ACTIONS(4168), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382355,25 +383715,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(6570), 30, + ACTIONS(4161), 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, @@ -382382,6 +383740,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, @@ -382396,11 +383755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [94989] = 3, + [94825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 20, + ACTIONS(7137), 1, + anon_sym_LBRACK, + STATE(3753), 1, + sym_new_declarator, + ACTIONS(6375), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382410,26 +383772,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(6546), 30, + anon_sym_DASH_GT, + ACTIONS(6377), 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_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -382437,25 +383797,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, - [95047] = 3, + anon_sym_DASH_GT_STAR, + [94887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 20, + ACTIONS(5208), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382476,7 +383836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6660), 30, + ACTIONS(5210), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382507,10 +383867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95105] = 3, + [94945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 20, + ACTIONS(6620), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382531,7 +383891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6550), 30, + ACTIONS(6622), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382562,10 +383922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95163] = 3, + [95003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 20, + ACTIONS(4992), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382575,18 +383935,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(6558), 30, + ACTIONS(4994), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382594,6 +383952,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, @@ -382602,6 +383962,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, @@ -382616,11 +383977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [95221] = 3, + [95061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 20, + ACTIONS(5144), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382641,7 +384001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6712), 30, + ACTIONS(5146), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382672,65 +384032,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95279] = 3, + [95119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 19, + ACTIONS(6452), 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(5472), 31, + ACTIONS(6454), 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, - [95337] = 3, + anon_sym_GT2, + [95177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 20, + ACTIONS(6452), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382751,7 +384111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6604), 30, + ACTIONS(6454), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382782,65 +384142,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95395] = 3, + [95235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 19, + ACTIONS(5204), 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(5479), 31, + ACTIONS(5206), 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, - [95453] = 3, + anon_sym_GT2, + [95293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 20, + ACTIONS(5144), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382861,7 +384221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5198), 30, + ACTIONS(5146), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382892,10 +384252,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95511] = 3, + [95351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 20, + ACTIONS(5144), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -382916,7 +384276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4166), 30, + ACTIONS(5146), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -382947,70 +384307,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [95569] = 5, + [95409] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7988), 1, - anon_sym_AMP_AMP, - ACTIONS(7990), 1, - anon_sym_and, - ACTIONS(6248), 19, + ACTIONS(8012), 1, + anon_sym_LBRACK, + STATE(3772), 1, + sym_new_declarator, + ACTIONS(6375), 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_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(6250), 29, + sym_identifier, + ACTIONS(6377), 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_LBRACK, + 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_STAR_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, - [95631] = 4, + [95471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4993), 16, + ACTIONS(4996), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383025,18 +384382,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(4986), 32, + ACTIONS(4998), 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, @@ -383049,21 +384408,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_STAR, - [95691] = 3, + anon_sym_DASH_GT, + [95529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 24, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -383088,7 +384449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5547), 26, + ACTIONS(5472), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -383106,7 +384467,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, @@ -383115,14 +384475,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95749] = 5, + [95589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 1, - anon_sym_COMMA, - ACTIONS(6270), 1, - anon_sym_RBRACK, - ACTIONS(4174), 18, + ACTIONS(5166), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383132,23 +384488,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(4166), 30, + ACTIONS(5168), 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, @@ -383157,7 +384515,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, @@ -383172,13 +384529,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95811] = 5, + anon_sym_GT2, + [95647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5070), 2, + ACTIONS(5196), 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, - ACTIONS(5072), 12, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5198), 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, @@ -383191,16 +384576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(4166), 18, - 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_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -383210,7 +384585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - ACTIONS(4174), 18, + [95705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6586), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383225,53 +384603,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [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, + ACTIONS(6588), 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, @@ -383279,22 +384625,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, - [95945] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [95763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 20, + ACTIONS(6686), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383315,7 +384664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6578), 30, + ACTIONS(6688), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -383346,10 +384695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96003] = 3, + [95821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 20, + ACTIONS(6628), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383370,7 +384719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5190), 30, + ACTIONS(6630), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -383401,10 +384750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96061] = 3, + [95879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 20, + ACTIONS(1936), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383425,7 +384774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6692), 30, + ACTIONS(1934), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -383456,50 +384805,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96119] = 11, + [95937] = 3, 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(7939), 3, + ACTIONS(4168), 20, + anon_sym_DASH, + anon_sym_PLUS, 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, 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(6520), 27, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4161), 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, @@ -383507,38 +384845,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_GT_STAR, - [96193] = 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(6518), 14, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [95995] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7997), 1, + anon_sym_AMP_AMP, + ACTIONS(8001), 1, + anon_sym_and, + ACTIONS(6315), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383548,20 +384877,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, - ACTIONS(6520), 27, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6317), 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, anon_sym_SLASH_EQ, @@ -383569,22 +384902,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, - [96265] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [96057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 20, + ACTIONS(6056), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383605,7 +384941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6716), 30, + ACTIONS(6054), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -383636,10 +384972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96323] = 3, + [96115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 20, + ACTIONS(6485), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383660,7 +384996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(2729), 30, + ACTIONS(6487), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -383691,74 +385027,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96381] = 27, + [96173] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - ACTIONS(6989), 1, + ACTIONS(7017), 1, anon_sym_EQ, - ACTIONS(7159), 1, + ACTIONS(7226), 1, anon_sym_LBRACK, - ACTIONS(7491), 1, + ACTIONS(7537), 1, anon_sym_DOT_STAR, - ACTIONS(7618), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7662), 1, - anon_sym_QMARK, - ACTIONS(7684), 1, + ACTIONS(7716), 1, anon_sym_LT_EQ_GT, - ACTIONS(7941), 1, + ACTIONS(7959), 1, anon_sym_PIPE, - ACTIONS(7943), 1, + ACTIONS(7961), 1, anon_sym_CARET, - ACTIONS(7945), 1, + ACTIONS(7963), 1, anon_sym_AMP, - ACTIONS(7951), 1, + ACTIONS(7969), 1, anon_sym_GT_EQ, - ACTIONS(7955), 1, + ACTIONS(7971), 1, anon_sym_bitor, - ACTIONS(7957), 1, + ACTIONS(7973), 1, anon_sym_xor, - ACTIONS(7959), 1, + ACTIONS(7975), 1, anon_sym_bitand, - STATE(3433), 1, + STATE(3444), 1, sym_argument_list, - STATE(3434), 1, + STATE(3448), 1, sym_subscript_argument_list, - ACTIONS(7203), 2, + ACTIONS(7270), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7698), 2, + ACTIONS(7730), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(7937), 2, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(7953), 2, + ACTIONS(7957), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7961), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(7973), 2, + ACTIONS(7985), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(7939), 3, + ACTIONS(7987), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7947), 3, + ACTIONS(7965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(7949), 3, + ACTIONS(7967), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6991), 13, + ACTIONS(7019), 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, @@ -383770,10 +385104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_DASH_GT_STAR, - [96487] = 3, + [96275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6702), 20, + ACTIONS(6632), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383794,7 +385128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6704), 30, + ACTIONS(6634), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -383825,14 +385159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96545] = 5, + [96333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, - anon_sym_LBRACK, - STATE(3751), 1, - sym_new_declarator, - ACTIONS(6346), 19, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -383844,6 +385176,7 @@ 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, @@ -383852,10 +385185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6348), 29, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(5472), 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, @@ -383871,21 +385207,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_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + 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, - [96607] = 3, + [96393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 20, + ACTIONS(6526), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383906,7 +385239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6652), 30, + ACTIONS(6528), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -383937,10 +385270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96665] = 3, + [96451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 20, + ACTIONS(5192), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -383961,7 +385294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3899), 30, + ACTIONS(5194), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -383992,10 +385325,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96723] = 3, + [96509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 20, + ACTIONS(3911), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384016,7 +385349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6664), 30, + ACTIONS(3907), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384047,56 +385380,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [96781] = 7, + [96567] = 7, ACTIONS(3), 1, sym_comment, - 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, - 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, + ACTIONS(6109), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6300), 28, - anon_sym_DOT_DOT_DOT, + ACTIONS(6281), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(6283), 1, + anon_sym_RBRACK, + ACTIONS(6111), 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(4161), 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, @@ -384105,156 +385421,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [96847] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6886), 1, - anon_sym_LPAREN2, - ACTIONS(6947), 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, + ACTIONS(4168), 17, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6949), 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, - [96949] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + [96633] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 18, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(5052), 1, + anon_sym_SEMI, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(7057), 1, + anon_sym_LBRACK, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4037), 1, + sym_template_argument_list, + ACTIONS(4194), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4166), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(4182), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 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, + [96707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4996), 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_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(5008), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(4998), 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_COLON, + 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_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, - [97007] = 9, + [96765] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(4984), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -384264,6 +385570,9 @@ 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, @@ -384274,7 +385583,9 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6318), 24, + anon_sym_final, + anon_sym_override, + ACTIONS(4986), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -384292,6 +385603,8 @@ 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, @@ -384299,39 +385612,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [97077] = 3, + [96823] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 20, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7953), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(7955), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(6481), 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(6439), 30, + ACTIONS(6483), 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, @@ -384339,25 +385664,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, - [97135] = 3, + anon_sym_DASH_GT_STAR, + [96899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 20, + ACTIONS(5460), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384378,7 +385700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6688), 30, + ACTIONS(2717), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384409,10 +385731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97193] = 3, + [96957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 20, + ACTIONS(6714), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384433,7 +385755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6684), 30, + ACTIONS(6716), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384464,10 +385786,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97251] = 3, + [97015] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7009), 1, + anon_sym_EQ, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + ACTIONS(7716), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7959), 1, + anon_sym_PIPE, + ACTIONS(7961), 1, + anon_sym_CARET, + ACTIONS(7963), 1, + anon_sym_AMP, + ACTIONS(7969), 1, + anon_sym_GT_EQ, + ACTIONS(7971), 1, + anon_sym_bitor, + ACTIONS(7973), 1, + anon_sym_xor, + ACTIONS(7975), 1, + anon_sym_bitand, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7953), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7985), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7987), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7955), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7965), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7967), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7011), 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, + [97117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 20, + ACTIONS(4984), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384477,18 +385876,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(6632), 30, + ACTIONS(4986), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384496,43 +385893,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, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [97309] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4200), 1, - anon_sym_EQ, - 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, @@ -384546,14 +385910,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - 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, @@ -384562,28 +385918,10 @@ static const uint16_t ts_small_parse_table[] = { 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, - [97379] = 3, + [97175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 20, + ACTIONS(6562), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384604,7 +385942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5172), 30, + ACTIONS(6564), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384635,10 +385973,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97437] = 3, + [97233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 20, + ACTIONS(6566), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384659,7 +385997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6680), 30, + ACTIONS(6568), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384690,10 +386028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97495] = 3, + [97291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 18, + ACTIONS(6644), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384703,16 +386041,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(5012), 32, + ACTIONS(6646), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384720,8 +386060,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, @@ -384730,7 +386068,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, @@ -384745,12 +386082,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [97553] = 5, + anon_sym_GT2, + [97349] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 1, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(6971), 1, anon_sym_EQ, - ACTIONS(6128), 13, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + ACTIONS(7716), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7959), 1, + anon_sym_PIPE, + ACTIONS(7961), 1, + anon_sym_CARET, + ACTIONS(7963), 1, + anon_sym_AMP, + ACTIONS(7969), 1, + anon_sym_GT_EQ, + ACTIONS(7971), 1, + anon_sym_bitor, + ACTIONS(7973), 1, + anon_sym_xor, + ACTIONS(7975), 1, + anon_sym_bitand, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7953), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7985), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7987), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7955), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7965), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7967), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6973), 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, @@ -384761,81 +386159,130 @@ 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(4174), 17, + anon_sym_DASH_GT_STAR, + [97451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 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, - ACTIONS(4166), 19, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + ACTIONS(4994), 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_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, - [97615] = 3, + [97509] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7226), 1, + anon_sym_LBRACK, + ACTIONS(7537), 1, + anon_sym_DOT_STAR, + ACTIONS(7650), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7694), 1, + anon_sym_QMARK, + ACTIONS(7716), 1, + anon_sym_LT_EQ_GT, + ACTIONS(7959), 1, anon_sym_PIPE, + ACTIONS(7961), 1, anon_sym_CARET, + ACTIONS(7963), 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_or, - anon_sym_and, + ACTIONS(7969), 1, + anon_sym_GT_EQ, + ACTIONS(7971), 1, + anon_sym_bitor, + ACTIONS(7973), 1, anon_sym_xor, + ACTIONS(7975), 1, + anon_sym_bitand, + STATE(3444), 1, + sym_argument_list, + STATE(3448), 1, + sym_subscript_argument_list, + ACTIONS(7270), 2, anon_sym_DOT, - ACTIONS(5000), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_DASH_GT, + ACTIONS(7730), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(7953), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(7957), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7985), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(7987), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(7955), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7965), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(7967), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7015), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -384846,21 +386293,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [97673] = 3, + anon_sym_DASH_GT_STAR, + [97615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 18, + ACTIONS(6640), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384870,16 +386307,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(5016), 32, + ACTIONS(6642), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384887,8 +386326,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, @@ -384897,7 +386334,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, @@ -384912,10 +386348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [97731] = 3, + anon_sym_GT2, + [97673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 20, + ACTIONS(6652), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -384936,7 +386373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5202), 30, + ACTIONS(6654), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -384967,73 +386404,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97789] = 11, + [97731] = 5, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6109), 1, + anon_sym_EQ, + ACTIONS(6111), 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(4168), 17, + anon_sym_DASH, + anon_sym_PLUS, 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_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_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, + 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(4161), 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, + [97793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 20, + ACTIONS(6546), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385054,7 +386485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6672), 30, + ACTIONS(6548), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -385085,10 +386516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97921] = 3, + [97851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 20, + ACTIONS(6550), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385109,7 +386540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6676), 30, + ACTIONS(6552), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -385140,10 +386571,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [97979] = 3, + [97909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 20, + ACTIONS(6598), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385164,7 +386595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5142), 30, + ACTIONS(6600), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -385195,10 +386626,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98037] = 3, + [97967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 20, + 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, + 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, + [98025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -385219,7 +386705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5194), 30, + ACTIONS(6604), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -385250,71 +386736,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [98095] = 25, + [98083] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6614), 20, 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_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6987), 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(6616), 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, @@ -385322,15 +386776,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, - [98197] = 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, + [98141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 24, + ACTIONS(5022), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -385355,7 +386819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_final, anon_sym_override, - ACTIONS(5000), 26, + ACTIONS(5024), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -385382,129 +386846,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [98255] = 6, + [98199] = 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_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4192), 36, - anon_sym_DOT_DOT_DOT, + ACTIONS(7145), 1, + anon_sym___attribute__, + STATE(2577), 1, + sym_attribute_specifier, + ACTIONS(6113), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6115), 42, 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, - [98318] = 26, - ACTIONS(3), 1, - sym_comment, - 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(4310), 1, - sym_type_specifier, - STATE(4975), 1, - sym_qualified_type_identifier, - STATE(4979), 1, - sym_decltype_auto, - STATE(6137), 1, - sym_type_descriptor, - STATE(6731), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3960), 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_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, @@ -385516,7 +386893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98421] = 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_GT2, + anon_sym_try, + anon_sym_requires, + [98263] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -385535,35 +386923,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4936), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8320), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8693), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3871), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -385571,7 +386959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -385593,10 +386981,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98524] = 3, + [98366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 19, + ACTIONS(6558), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -385616,7 +387004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6676), 30, + ACTIONS(6560), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -385647,62 +387035,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [98581] = 26, + [98423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(6448), 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(6450), 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, + [98480] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7820), 1, + anon_sym_LT, + STATE(1920), 1, + sym_template_argument_list, + ACTIONS(5839), 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(4180), 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, + [98543] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5470), 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(5472), 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, + [98600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8016), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8014), 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(1816), 1, anon_sym_class, - ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(1820), 1, anon_sym_union, - ACTIONS(1844), 1, + sym_identifier, sym_auto, - ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + anon_sym_template, + [98657] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3540), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7864), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5537), 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(5539), 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, + [98718] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6456), 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(6458), 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, + [98787] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3549), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5082), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5084), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(5948), 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(5950), 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, + [98850] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3915), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(3927), 1, sym_primitive_type, - STATE(1680), 1, + ACTIONS(3929), 1, + anon_sym_enum, + ACTIONS(3931), 1, + anon_sym_class, + ACTIONS(3933), 1, + anon_sym_struct, + ACTIONS(3935), 1, + anon_sym_union, + ACTIONS(3937), 1, + anon_sym_typename, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(2563), 1, sym_decltype_auto, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(4234), 1, + STATE(2696), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4264), 1, sym_type_specifier, - STATE(5901), 1, + STATE(5947), 1, sym_type_descriptor, - STATE(6727), 1, + STATE(6757), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3979), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(3925), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -385724,11 +387504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98684] = 3, + [98953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5617), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -385746,15 +387525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6712), 30, + sym_literal_suffix, + ACTIONS(5619), 31, 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, @@ -385767,35 +387541,81 @@ 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [98741] = 9, + 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, + [99010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5629), 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(5631), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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_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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6514), 18, - aux_sym_preproc_elif_token1, + 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, + [99067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -385812,15 +387632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - sym_identifier, - ACTIONS(6516), 24, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(5504), 31, 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, @@ -385832,17 +387649,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [98810] = 3, + 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, + [99124] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 23, - aux_sym_preproc_elif_token1, + ACTIONS(5011), 1, + anon_sym_LBRACK, + ACTIONS(5004), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5007), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + ACTIONS(5000), 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, + [99185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5509), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -385860,18 +387743,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, - anon_sym_final, - anon_sym_override, - ACTIONS(5543), 26, + sym_literal_suffix, + ACTIONS(5511), 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, @@ -385883,8 +387758,7 @@ 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_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -385892,23 +387766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [98867] = 9, + 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, + [99242] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6433), 18, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6444), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -385927,7 +387814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6435), 24, + ACTIONS(6446), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -385950,64 +387837,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + [99313] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [98936] = 26, + ACTIONS(6470), 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(6472), 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, + [99384] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3146), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(3148), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(3150), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(3152), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(3176), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(3178), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(3180), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(8020), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(8022), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(8024), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2685), 1, - sym_qualified_type_identifier, - STATE(2733), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(4313), 1, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4378), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6137), 1, - sym_type_descriptor, STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8888), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2621), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3876), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3142), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2747), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386029,7 +387975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99039] = 26, + [99487] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -386048,35 +387994,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8637), 1, + STATE(8903), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -386084,7 +388030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386106,62 +388052,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99142] = 26, + [99590] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(8020), 1, + sym_identifier, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(8026), 1, + sym_primitive_type, + ACTIONS(8028), 1, anon_sym_enum, - ACTIONS(1816), 1, + ACTIONS(8030), 1, anon_sym_class, - ACTIONS(1818), 1, + ACTIONS(8032), 1, anon_sym_struct, - ACTIONS(1820), 1, + ACTIONS(8034), 1, anon_sym_union, - ACTIONS(1844), 1, + ACTIONS(8036), 1, sym_auto, - ACTIONS(1846), 1, + ACTIONS(8038), 1, anon_sym_decltype, - ACTIONS(1848), 1, + ACTIONS(8040), 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, - sym_decltype_auto, - STATE(1916), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4273), 1, + STATE(4233), 1, sym_type_specifier, - STATE(6137), 1, + STATE(4699), 1, + sym_decltype_auto, + STATE(5947), 1, sym_type_descriptor, - STATE(6727), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - STATE(3900), 2, + STATE(3975), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(4702), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386183,71 +388129,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99245] = 3, + [99693] = 6, 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, + ACTIONS(4184), 1, + anon_sym_EQ, + ACTIONS(4312), 1, + anon_sym_SEMI, + ACTIONS(4186), 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(4161), 17, 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, - [99302] = 5, + ACTIONS(4168), 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, + [99756] = 3, 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, + ACTIONS(6448), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -386257,6 +388199,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, @@ -386265,11 +388209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5517), 25, + ACTIONS(6450), 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, @@ -386285,95 +388228,24 @@ 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_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, - [99363] = 26, - 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(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(4033), 1, - sym_type_specifier, - STATE(4672), 1, - sym_decltype_auto, - STATE(5901), 1, - sym_type_descriptor, - STATE(6719), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2439), 2, - sym_decltype, - sym_template_type, - STATE(3901), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - 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, - [99466] = 3, + [99813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6498), 16, + ACTIONS(7762), 1, + sym_literal_suffix, + ACTIONS(4168), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -386388,9 +388260,15 @@ 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_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6500), 33, + ACTIONS(4161), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -386400,7 +388278,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, @@ -386414,72 +388291,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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [99523] = 26, + [99872] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8026), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8028), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8032), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8034), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8036), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8038), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8040), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8042), 1, - sym_auto, - ACTIONS(8044), 1, - anon_sym_decltype, - ACTIONS(8046), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2836), 1, + STATE(1904), 1, + sym_decltype_auto, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4024), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4028), 1, + STATE(5092), 1, sym_type_specifier, - STATE(4672), 1, - sym_decltype_auto, - STATE(5901), 1, - sym_type_descriptor, - STATE(6719), 1, + STATE(5801), 1, + sym__type_definition_type, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2439), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3928), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8030), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4773), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386501,68 +388372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99626] = 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(6518), 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(6520), 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, - [99697] = 26, + [99975] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -386581,35 +388391,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4503), 1, + STATE(4861), 1, sym_type_specifier, - STATE(6137), 1, + STATE(5947), 1, sym_type_descriptor, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3963), 2, + STATE(3905), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -386617,7 +388427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386639,12 +388449,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99800] = 3, + [100078] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8052), 11, + STATE(4041), 1, + sym_alignas_qualifier, + ACTIONS(8063), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3776), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5062), 10, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -386653,23 +388470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8050), 38, - anon_sym_AMP, + anon_sym_DASH_GT, + ACTIONS(8060), 13, 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, @@ -386682,37 +388485,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(5060), 21, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, 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, - [99857] = 10, + [100143] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6460), 18, + ACTIONS(6481), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -386731,7 +388545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(6462), 22, + ACTIONS(6483), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -386754,38 +388568,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [99928] = 3, + [100214] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8056), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5891), 1, + anon_sym___attribute, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8066), 1, anon_sym_STAR, + ACTIONS(8068), 1, 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, + ACTIONS(8070), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - sym_ms_restrict_modifier, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3079), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6359), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7884), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, anon_sym__unaligned, anon_sym___unaligned, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_const, + STATE(3779), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4283), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5889), 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(7143), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -386797,73 +388641,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [100309] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5868), 1, + anon_sym___attribute, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8066), 1, + anon_sym_STAR, + ACTIONS(8068), 1, + anon_sym_AMP_AMP, + ACTIONS(8070), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3079), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6363), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, + ACTIONS(7884), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3286), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4290), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 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_try, + anon_sym_GT2, anon_sym_requires, - [99985] = 26, + ACTIONS(7143), 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, + [100404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7062), 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(7064), 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, + [100461] = 26, 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, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8036), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8038), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8040), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8042), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(8044), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8046), 1, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1680), 1, + ACTIONS(7977), 1, + sym_identifier, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2836), 1, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4024), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4218), 1, + STATE(4568), 1, sym_type_specifier, - STATE(4672), 1, - sym_decltype_auto, - STATE(5901), 1, + STATE(5947), 1, sym_type_descriptor, - STATE(6719), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2439), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3969), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8030), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4773), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386885,7 +388845,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100088] = 26, + [100564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5460), 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(2717), 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, + [100621] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -386904,35 +388918,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4932), 1, + STATE(4295), 1, sym_type_specifier, - STATE(6727), 1, - sym__scope_resolution, - STATE(8355), 1, + STATE(6113), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(6738), 1, + sym__scope_resolution, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3923), 2, + STATE(3930), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -386940,7 +388954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -386962,7 +388976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100191] = 26, + [100724] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -386981,35 +388995,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4936), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(8801), 1, + STATE(8338), 1, sym_type_descriptor, + STATE(8381), 1, + sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3871), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -387017,7 +389031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387039,62 +389053,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100294] = 26, + [100827] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(8072), 1, + sym_identifier, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8078), 1, + sym_primitive_type, + ACTIONS(8080), 1, anon_sym_enum, - ACTIONS(1816), 1, + ACTIONS(8082), 1, anon_sym_class, - ACTIONS(1818), 1, + ACTIONS(8084), 1, anon_sym_struct, - ACTIONS(1820), 1, + ACTIONS(8086), 1, anon_sym_union, - ACTIONS(1844), 1, + ACTIONS(8088), 1, sym_auto, - ACTIONS(1846), 1, + ACTIONS(8090), 1, anon_sym_decltype, - ACTIONS(1848), 1, + ACTIONS(8092), 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, - sym_decltype_auto, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4133), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4899), 1, + STATE(4322), 1, sym_type_specifier, - STATE(5901), 1, + STATE(5002), 1, + sym_qualified_type_identifier, + STATE(5020), 1, + sym_decltype_auto, + STATE(6113), 1, sym_type_descriptor, - STATE(6727), 1, + STATE(6737), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, - sym_decltype, - sym_template_type, - STATE(3860), 2, + STATE(3881), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + STATE(4966), 2, + sym_decltype, + sym_template_type, + ACTIONS(8076), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(5021), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387116,62 +389130,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100397] = 26, + [100930] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(3154), 1, anon_sym_enum, - ACTIONS(1816), 1, + ACTIONS(3156), 1, anon_sym_class, - ACTIONS(1818), 1, + ACTIONS(3158), 1, anon_sym_struct, - ACTIONS(1820), 1, + ACTIONS(3160), 1, anon_sym_union, - ACTIONS(1844), 1, + ACTIONS(3184), 1, sym_auto, - ACTIONS(1846), 1, + ACTIONS(3186), 1, anon_sym_decltype, - ACTIONS(1848), 1, + ACTIONS(3188), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(8094), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(8098), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, - sym_decltype_auto, - STATE(1916), 1, + STATE(2705), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(2711), 1, + sym_decltype_auto, + STATE(4317), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4389), 1, sym_type_specifier, - STATE(6727), 1, - sym__scope_resolution, - STATE(8098), 1, + STATE(6113), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(6758), 1, + sym__scope_resolution, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(2684), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3920), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(3150), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(2712), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387193,7 +389207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100500] = 26, + [101033] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -387212,35 +389226,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4936), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8346), 1, + STATE(8314), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3871), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -387248,7 +389262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387270,7 +389284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100603] = 26, + [101136] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -387289,35 +389303,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4284), 1, sym_type_specifier, - STATE(6727), 1, - sym__scope_resolution, - STATE(8209), 1, + STATE(6113), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(6738), 1, + sym__scope_resolution, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3939), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -387325,7 +389339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387347,71 +389361,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100706] = 26, + [101239] = 3, 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(4040), 1, - sym_type_specifier, - STATE(5901), 1, - sym_type_descriptor, - STATE(6729), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2439), 2, - sym_decltype, - sym_template_type, - STATE(3867), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3917), 4, + ACTIONS(8102), 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(8100), 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, - 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_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -387424,62 +389404,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100809] = 26, + 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, + [101296] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8032), 1, - sym_primitive_type, - ACTIONS(8042), 1, - sym_auto, - ACTIONS(8044), 1, - anon_sym_decltype, - ACTIONS(8072), 1, + ACTIONS(8020), 1, sym_identifier, - ACTIONS(8074), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(8076), 1, + ACTIONS(8026), 1, + sym_primitive_type, + ACTIONS(8028), 1, anon_sym_enum, - ACTIONS(8078), 1, + ACTIONS(8030), 1, anon_sym_class, - ACTIONS(8080), 1, + ACTIONS(8032), 1, anon_sym_struct, - ACTIONS(8082), 1, + ACTIONS(8034), 1, anon_sym_union, - ACTIONS(8084), 1, + ACTIONS(8036), 1, + sym_auto, + ACTIONS(8038), 1, + anon_sym_decltype, + ACTIONS(8040), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4024), 1, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4422), 1, + STATE(4052), 1, sym_type_specifier, - STATE(4672), 1, + STATE(4699), 1, sym_decltype_auto, - STATE(5901), 1, + STATE(5947), 1, sym_type_descriptor, - STATE(6743), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2439), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - STATE(3881), 2, + STATE(3890), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8030), 4, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4773), 7, + STATE(4702), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387501,62 +389492,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [100912] = 26, + [101399] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(7998), 1, + ACTIONS(8020), 1, sym_identifier, - ACTIONS(8000), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(8004), 1, + ACTIONS(8026), 1, sym_primitive_type, - ACTIONS(8006), 1, + ACTIONS(8028), 1, anon_sym_enum, - ACTIONS(8008), 1, + ACTIONS(8030), 1, anon_sym_class, - ACTIONS(8010), 1, + ACTIONS(8032), 1, anon_sym_struct, - ACTIONS(8012), 1, + ACTIONS(8034), 1, anon_sym_union, - ACTIONS(8014), 1, + ACTIONS(8036), 1, sym_auto, - ACTIONS(8016), 1, + ACTIONS(8038), 1, anon_sym_decltype, - ACTIONS(8018), 1, + ACTIONS(8040), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(4150), 1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4223), 1, + STATE(4053), 1, sym_type_specifier, - STATE(4975), 1, - sym_qualified_type_identifier, - STATE(4979), 1, + STATE(4699), 1, sym_decltype_auto, - STATE(6137), 1, + STATE(5947), 1, sym_type_descriptor, - STATE(6731), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 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(4943), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(8002), 4, + STATE(3896), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4980), 7, + STATE(4702), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387578,62 +389569,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101015] = 26, + [101502] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3146), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(3148), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(3150), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(3152), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(3176), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(3178), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(3180), 1, + ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(8020), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(8022), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(8024), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2685), 1, - sym_qualified_type_identifier, - STATE(2733), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(4271), 1, - sym_type_specifier, - STATE(4313), 1, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6137), 1, + STATE(4530), 1, + sym_type_specifier, + STATE(6113), 1, sym_type_descriptor, STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2621), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3897), 2, + STATE(3898), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3142), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2747), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387655,62 +389646,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101118] = 26, + [101605] = 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(8086), 1, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(7983), 1, sym_primitive_type, - 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(4568), 1, sym_type_specifier, - STATE(5767), 1, - sym__type_definition_type, - STATE(6724), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8168), 1, + sym_type_descriptor, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387732,7 +389723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101221] = 26, + [101708] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -387751,35 +389742,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8312), 1, + STATE(8084), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -387787,7 +389778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387809,7 +389800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101324] = 26, + [101811] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -387828,35 +389819,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8595), 1, + STATE(8421), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -387864,7 +389855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -387886,117 +389877,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101427] = 4, + [101914] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7846), 1, - sym_literal_suffix, - ACTIONS(4174), 22, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5615), 1, + anon_sym_SEMI, + ACTIONS(5539), 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_LBRACK_LBRACK, + ACTIONS(5537), 42, 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___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, + [101975] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5615), 1, + anon_sym_SEMI, + ACTIONS(5539), 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_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(5537), 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_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, + 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, + [102034] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(8104), 1, + sym_identifier, + ACTIONS(8106), 1, + anon_sym_COLON_COLON, + ACTIONS(8108), 1, anon_sym_enum, - ACTIONS(1816), 1, + ACTIONS(8110), 1, anon_sym_class, - ACTIONS(1818), 1, + ACTIONS(8112), 1, anon_sym_struct, - ACTIONS(1820), 1, + ACTIONS(8114), 1, anon_sym_union, - ACTIONS(1844), 1, + ACTIONS(8116), 1, + anon_sym_typename, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2563), 1, + sym_decltype_auto, + STATE(2696), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4061), 1, + sym_type_specifier, + STATE(5947), 1, + sym_type_descriptor, + STATE(6736), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2429), 2, + sym_decltype, + sym_template_type, + STATE(3916), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3925), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2452), 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, + [102137] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8026), 1, + sym_primitive_type, + ACTIONS(8036), 1, sym_auto, - ACTIONS(1846), 1, + ACTIONS(8038), 1, anon_sym_decltype, - ACTIONS(1848), 1, - anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(8118), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, - sym_primitive_type, - STATE(1680), 1, + ACTIONS(8122), 1, + anon_sym_enum, + ACTIONS(8124), 1, + anon_sym_class, + ACTIONS(8126), 1, + anon_sym_struct, + ACTIONS(8128), 1, + anon_sym_union, + ACTIONS(8130), 1, + anon_sym_typename, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, - sym_decltype_auto, - STATE(1916), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4404), 1, sym_type_specifier, - STATE(6727), 1, + STATE(4699), 1, + sym_decltype_auto, + STATE(5947), 1, + sym_type_descriptor, + STATE(6721), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8678), 1, - sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3923), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(4702), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388018,29 +390142,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101589] = 7, + [102240] = 26, ACTIONS(3), 1, sym_comment, - STATE(4036), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8072), 1, + sym_identifier, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8078), 1, + sym_primitive_type, + ACTIONS(8080), 1, + anon_sym_enum, + ACTIONS(8082), 1, + anon_sym_class, + ACTIONS(8084), 1, + anon_sym_struct, + ACTIONS(8086), 1, + anon_sym_union, + ACTIONS(8088), 1, + sym_auto, + ACTIONS(8090), 1, + anon_sym_decltype, + ACTIONS(8092), 1, + anon_sym_typename, + STATE(1693), 1, sym_alignas_qualifier, - ACTIONS(8107), 2, + STATE(4133), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4219), 1, + sym_type_specifier, + STATE(5002), 1, + sym_qualified_type_identifier, + STATE(5020), 1, + sym_decltype_auto, + STATE(6113), 1, + sym_type_descriptor, + STATE(6737), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(3924), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5057), 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(8104), 13, + STATE(4966), 2, + sym_decltype, + sym_template_type, + ACTIONS(8076), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5021), 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, @@ -388054,84 +390219,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(5055), 21, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - 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, - [101654] = 26, + [102343] = 26, 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, + ACTIONS(3154), 1, anon_sym_enum, - ACTIONS(3923), 1, + ACTIONS(3156), 1, anon_sym_class, - ACTIONS(3925), 1, + ACTIONS(3158), 1, anon_sym_struct, - ACTIONS(3927), 1, + ACTIONS(3160), 1, anon_sym_union, - ACTIONS(3929), 1, + ACTIONS(3184), 1, + sym_auto, + ACTIONS(3186), 1, + anon_sym_decltype, + ACTIONS(3188), 1, anon_sym_typename, - STATE(1680), 1, + ACTIONS(8094), 1, + sym_identifier, + ACTIONS(8096), 1, + anon_sym_COLON_COLON, + ACTIONS(8098), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2453), 1, - sym_decltype_auto, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2836), 1, + STATE(2705), 1, sym_qualified_type_identifier, - STATE(4099), 1, + STATE(2711), 1, + sym_decltype_auto, + STATE(4292), 1, sym_type_specifier, - STATE(5901), 1, + STATE(4317), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6113), 1, sym_type_descriptor, - STATE(6697), 1, + STATE(6758), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2439), 2, + STATE(2684), 2, sym_decltype, sym_template_type, - STATE(3896), 2, + STATE(3936), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3917), 4, + ACTIONS(3150), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(2712), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388153,16 +390296,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101757] = 6, + [102446] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(8110), 1, - anon_sym_LT, - STATE(1863), 1, - sym_template_argument_list, - ACTIONS(4925), 10, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6422), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -388170,14 +390324,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_DOT, - ACTIONS(4932), 36, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6424), 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, @@ -388189,28 +390353,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + [102517] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -388229,35 +390376,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8094), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8746), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -388265,7 +390412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388287,7 +390434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [101923] = 26, + [102620] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -388306,35 +390453,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8377), 1, + STATE(8297), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -388342,7 +390489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388364,7 +390511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102026] = 26, + [102723] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -388383,35 +390530,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8059), 1, + STATE(7819), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -388419,7 +390566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388441,62 +390588,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102129] = 26, + [102826] = 26, 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, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8064), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8066), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8068), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8070), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1680), 1, + ACTIONS(7977), 1, + sym_identifier, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2453), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4154), 1, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4568), 1, sym_type_specifier, - STATE(5901), 1, - sym_type_descriptor, - STATE(6729), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8763), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2439), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3905), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3917), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388518,7 +390665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102232] = 26, + [102929] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -388537,35 +390684,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4936), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8055), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8754), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3871), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -388573,7 +390720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388595,7 +390742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102335] = 26, + [103032] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -388614,35 +390761,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8100), 1, + STATE(8108), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -388650,7 +390797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388672,7 +390819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102438] = 26, + [103135] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -388691,35 +390838,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8173), 1, + STATE(8266), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -388727,7 +390874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388749,62 +390896,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102541] = 26, + [103238] = 26, 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, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8064), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8066), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8068), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8070), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1680), 1, + ACTIONS(7977), 1, + sym_identifier, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2453), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4368), 1, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4568), 1, sym_type_specifier, - STATE(5901), 1, - sym_type_descriptor, - STATE(6729), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8372), 1, + sym_type_descriptor, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2439), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3908), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3917), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388826,118 +390973,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102644] = 5, + [103341] = 26, 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, + ACTIONS(125), 1, sym_auto, + ACTIONS(127), 1, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [102705] = 26, - ACTIONS(3), 1, - sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(8104), 1, + sym_identifier, + ACTIONS(8106), 1, + anon_sym_COLON_COLON, + ACTIONS(8108), 1, anon_sym_enum, - ACTIONS(1816), 1, + ACTIONS(8110), 1, anon_sym_class, - ACTIONS(1818), 1, + ACTIONS(8112), 1, anon_sym_struct, - ACTIONS(1820), 1, + ACTIONS(8114), 1, anon_sym_union, - ACTIONS(1844), 1, - sym_auto, - ACTIONS(1846), 1, - anon_sym_decltype, - ACTIONS(1848), 1, + ACTIONS(8116), 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(2563), 1, sym_decltype_auto, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(4234), 1, + STATE(2696), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4161), 1, sym_type_specifier, - STATE(6727), 1, - sym__scope_resolution, - STATE(8462), 1, + STATE(5947), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(6736), 1, + sym__scope_resolution, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3942), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(3925), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -388959,62 +391050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102808] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5523), 1, - anon_sym_SEMI, - ACTIONS(5517), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - 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_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, + [103444] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -389033,35 +391069,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8520), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8954), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -389069,7 +391105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -389091,115 +391127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [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, + [103547] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -389218,35 +391146,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8557), 1, + STATE(8120), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -389254,7 +391182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -389276,64 +391204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [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, + [103650] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -389352,35 +391223,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(8746), 1, + STATE(8182), 1, sym_type_descriptor, + STATE(8381), 1, + sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -389388,7 +391259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -389410,62 +391281,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103353] = 26, + [103753] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(8104), 1, + sym_identifier, + ACTIONS(8106), 1, + anon_sym_COLON_COLON, + ACTIONS(8108), 1, anon_sym_enum, - ACTIONS(1816), 1, + ACTIONS(8110), 1, anon_sym_class, - ACTIONS(1818), 1, + ACTIONS(8112), 1, anon_sym_struct, - ACTIONS(1820), 1, + ACTIONS(8114), 1, anon_sym_union, - ACTIONS(1844), 1, - sym_auto, - ACTIONS(1846), 1, - anon_sym_decltype, - ACTIONS(1848), 1, + ACTIONS(8116), 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(2563), 1, sym_decltype_auto, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(4234), 1, + STATE(2696), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4361), 1, sym_type_specifier, - STATE(6727), 1, - sym__scope_resolution, - STATE(8101), 1, + STATE(5947), 1, sym_type_descriptor, - STATE(8569), 1, + STATE(6736), 1, + sym__scope_resolution, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3943), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(3925), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -389487,7 +391358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103456] = 26, + [103856] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -389506,35 +391377,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8226), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8518), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -389542,7 +391413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -389564,7 +391435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103559] = 26, + [103959] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -389583,35 +391454,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8859), 1, + STATE(8587), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -389619,7 +391490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -389641,7 +391512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103662] = 26, + [104062] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -389660,35 +391531,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8257), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8674), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -389696,7 +391567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -389718,10 +391589,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103765] = 3, + [104165] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 18, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6440), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -389738,12 +391623,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(5472), 31, + sym_identifier, + ACTIONS(6442), 24, 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, @@ -389755,79 +391643,68 @@ 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, - [103822] = 26, + [104234] = 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(8086), 1, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(7983), 1, sym_primitive_type, - 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(4568), 1, sym_type_specifier, - STATE(5822), 1, - sym__type_definition_type, - STATE(6724), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8256), 1, + sym_type_descriptor, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -389849,172 +391726,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103925] = 5, - ACTIONS(3), 1, - sym_comment, - 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_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, - 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, - [103986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5477), 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(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_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, - [104043] = 26, + [104337] = 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(8086), 1, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(7983), 1, sym_primitive_type, - 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(4568), 1, sym_type_specifier, - STATE(5840), 1, - sym__type_definition_type, - STATE(6724), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8259), 1, + sym_type_descriptor, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390036,269 +391803,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104146] = 22, - ACTIONS(3), 1, - sym_comment, - 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(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, - 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, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [104241] = 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(6422), 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(6424), 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, - [104312] = 22, - ACTIONS(3), 1, - sym_comment, - 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(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, - 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, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [104407] = 26, + [104440] = 26, 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, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(3923), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(3925), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(3927), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(3929), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1680), 1, + ACTIONS(7977), 1, + sym_identifier, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2453), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4227), 1, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4568), 1, sym_type_specifier, - STATE(5901), 1, - sym_type_descriptor, - STATE(6697), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8677), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2439), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3955), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3917), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390320,61 +391880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104510] = 3, - ACTIONS(3), 1, - sym_comment, - 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_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(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, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [104567] = 26, + [104543] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -390393,35 +391899,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(7738), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8969), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -390429,7 +391935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390451,64 +391957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104670] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(3543), 2, - sym_string_literal, - sym_raw_string_literal, - 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(5915), 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(5917), 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, - [104733] = 26, + [104646] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -390527,35 +391976,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4293), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6137), 1, - sym_type_descriptor, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8166), 1, + sym_type_descriptor, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3889), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -390563,7 +392012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390585,62 +392034,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104836] = 26, + [104749] = 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(8086), 1, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(7983), 1, sym_primitive_type, - ACTIONS(8094), 1, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4568), 1, + sym_type_specifier, + STATE(6738), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(8537), 1, + sym_type_descriptor, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1793), 2, + sym_decltype, + sym_template_type, + STATE(3882), 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(1907), 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, + [104852] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1680), 1, + ACTIONS(7977), 1, + sym_identifier, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(4568), 1, sym_type_specifier, - STATE(5770), 1, - sym__type_definition_type, - STATE(6724), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8600), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390662,7 +392188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [104939] = 26, + [104955] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -390671,53 +392197,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5772), 1, + STATE(5879), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390739,7 +392265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105042] = 26, + [105058] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -390748,53 +392274,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5791), 1, + STATE(5740), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390816,7 +392342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105145] = 26, + [105161] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -390825,53 +392351,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5793), 1, + STATE(5753), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390893,7 +392419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105248] = 26, + [105264] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -390902,53 +392428,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5870), 1, + STATE(5784), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -390970,7 +392496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105351] = 26, + [105367] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -390979,53 +392505,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5802), 1, + STATE(5786), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391047,7 +392573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105454] = 26, + [105470] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -391056,53 +392582,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5808), 1, + STATE(5802), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391124,7 +392650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105557] = 26, + [105573] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -391133,53 +392659,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5809), 1, + STATE(5886), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391201,7 +392727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105660] = 26, + [105676] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -391210,53 +392736,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5815), 1, + STATE(5821), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391278,7 +392804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105763] = 26, + [105779] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -391287,53 +392813,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5817), 1, + STATE(5822), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391355,7 +392881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105866] = 26, + [105882] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -391364,53 +392890,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5820), 1, + STATE(5834), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391432,7 +392958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105969] = 26, + [105985] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -391441,53 +392967,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5821), 1, + STATE(5836), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391509,7 +393035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106072] = 26, + [106088] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -391518,53 +393044,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5823), 1, + STATE(5840), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391586,7 +393112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106175] = 26, + [106191] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -391595,53 +393121,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5824), 1, + STATE(5843), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391663,62 +393189,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106278] = 26, + [106294] = 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, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(8048), 1, sym_primitive_type, - STATE(1680), 1, + ACTIONS(8050), 1, + anon_sym_enum, + ACTIONS(8052), 1, + anon_sym_class, + ACTIONS(8054), 1, + anon_sym_struct, + ACTIONS(8056), 1, + anon_sym_union, + ACTIONS(8058), 1, + anon_sym_typename, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(5092), 1, sym_type_specifier, - STATE(6727), 1, + STATE(5848), 1, + sym__type_definition_type, + STATE(6739), 1, sym__scope_resolution, - STATE(8491), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391740,62 +393266,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106381] = 26, + [106397] = 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, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(8048), 1, sym_primitive_type, - STATE(1680), 1, + ACTIONS(8050), 1, + anon_sym_enum, + ACTIONS(8052), 1, + anon_sym_class, + ACTIONS(8054), 1, + anon_sym_struct, + ACTIONS(8056), 1, + anon_sym_union, + ACTIONS(8058), 1, + anon_sym_typename, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4932), 1, + STATE(5092), 1, sym_type_specifier, - STATE(6727), 1, + STATE(5850), 1, + sym__type_definition_type, + STATE(6739), 1, sym__scope_resolution, - STATE(8519), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3923), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391817,62 +393343,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106484] = 26, + [106500] = 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, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(8048), 1, sym_primitive_type, - STATE(1680), 1, + ACTIONS(8050), 1, + anon_sym_enum, + ACTIONS(8052), 1, + anon_sym_class, + ACTIONS(8054), 1, + anon_sym_struct, + ACTIONS(8056), 1, + anon_sym_union, + ACTIONS(8058), 1, + anon_sym_typename, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(5092), 1, sym_type_specifier, - STATE(6727), 1, + STATE(5853), 1, + sym__type_definition_type, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8945), 1, - sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -391894,122 +393420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106587] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_typename, - 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(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, + [106603] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392018,53 +393429,53 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8086), 1, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8092), 1, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8102), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4916), 1, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5105), 1, + STATE(5092), 1, sym_type_specifier, - STATE(5794), 1, + STATE(5854), 1, sym__type_definition_type, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3931), 2, + STATE(3869), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8090), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392086,10 +393497,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106818] = 3, + [106706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 19, + ACTIONS(6578), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -392109,7 +393520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6570), 30, + ACTIONS(6580), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -392140,7 +393551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [106875] = 26, + [106763] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392159,35 +393570,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4932), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8145), 1, - sym_type_descriptor, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, + STATE(8515), 1, + sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3923), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -392195,7 +393606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392217,7 +393628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106978] = 26, + [106866] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392236,35 +393647,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4936), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8665), 1, + STATE(8543), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3871), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -392272,7 +393683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392294,7 +393705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107081] = 26, + [106969] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392313,35 +393724,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4932), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(8669), 1, + STATE(8371), 1, sym_type_descriptor, + STATE(8381), 1, + sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3923), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -392349,7 +393760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392371,7 +393782,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107184] = 26, + [107072] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8132), 1, + anon_sym_LT, + STATE(1920), 1, + sym_template_argument_list, + ACTIONS(4915), 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(4922), 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, + [107135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6644), 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(6646), 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, + [107192] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392390,35 +393912,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8687), 1, + STATE(8689), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -392426,7 +393948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392448,7 +393970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107287] = 26, + [107295] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392467,35 +393989,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4932), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8691), 1, + STATE(8711), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3923), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -392503,7 +394025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392525,7 +394047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107390] = 26, + [107398] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392544,35 +394066,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4936), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8707), 1, + STATE(8715), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3871), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -392580,7 +394102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392602,7 +394124,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107493] = 26, + [107501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8137), 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(8135), 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, + [107558] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392621,35 +394197,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4932), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8711), 1, + STATE(8731), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3923), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -392657,7 +394233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392679,7 +394255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107596] = 26, + [107661] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392698,35 +394274,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(4936), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8726), 1, + STATE(8735), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3871), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -392734,7 +394310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392756,7 +394332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107699] = 26, + [107764] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -392775,35 +394351,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4932), 1, + STATE(4568), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8730), 1, + STATE(8750), 1, sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - STATE(3923), 2, + STATE(3882), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, ACTIONS(1808), 4, @@ -392811,7 +394387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -392833,282 +394409,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107802] = 3, - ACTIONS(3), 1, - sym_comment, - 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___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(2729), 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, - [107859] = 26, + [107867] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(3915), 1, + sym_identifier, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(3929), 1, anon_sym_enum, - ACTIONS(1816), 1, + ACTIONS(3931), 1, anon_sym_class, - ACTIONS(1818), 1, + ACTIONS(3933), 1, anon_sym_struct, - ACTIONS(1820), 1, + ACTIONS(3935), 1, anon_sym_union, - ACTIONS(1844), 1, - sym_auto, - ACTIONS(1846), 1, - anon_sym_decltype, - ACTIONS(1848), 1, + ACTIONS(3937), 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(2563), 1, sym_decltype_auto, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(4234), 1, + STATE(2696), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4528), 1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4085), 1, sym_type_specifier, - STATE(6727), 1, + STATE(5947), 1, + sym_type_descriptor, + STATE(6757), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(8731), 1, - sym_type_descriptor, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1782), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - STATE(3891), 2, + STATE(3934), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(1808), 4, + ACTIONS(3925), 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_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(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_long, + anon_sym_short, + STATE(2452), 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_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, @@ -393121,183 +394486,63 @@ 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, - [108140] = 3, + [107970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 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_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___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_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, + 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_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(6580), 1, - anon_sym_LT, - ACTIONS(8123), 1, - anon_sym_LBRACK, - STATE(2660), 1, - aux_sym_sized_type_specifier_repeat1, - 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, - 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, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [108322] = 3, + anon_sym_DASH_GT, + [108026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 16, + ACTIONS(5196), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393314,7 +394559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6538), 32, + ACTIONS(5198), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393347,27 +394592,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [108378] = 11, + [108082] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(7992), 1, + ACTIONS(8012), 1, anon_sym_LBRACK, - ACTIONS(8125), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(8127), 1, + ACTIONS(8141), 1, sym_auto, - ACTIONS(8129), 1, + ACTIONS(8143), 1, anon_sym_decltype, - STATE(4043), 1, + STATE(4067), 1, sym_new_declarator, - STATE(4145), 1, + STATE(4132), 1, sym_decltype_auto, - STATE(3939), 2, + STATE(3948), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5853), 17, + ACTIONS(5874), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393385,7 +394630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5855), 22, + ACTIONS(5876), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -393408,10 +394653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [108450] = 3, + [108154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 16, + ACTIONS(3911), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393428,7 +394673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5162), 32, + ACTIONS(3907), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393461,116 +394706,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [108210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 16, + ACTIONS(6542), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393587,7 +394726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5150), 32, + ACTIONS(6544), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393620,10 +394759,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [108674] = 3, + [108266] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 19, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8012), 1, + anon_sym_LBRACK, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8141), 1, + sym_auto, + ACTIONS(8143), 1, + anon_sym_decltype, + STATE(4042), 1, + sym_new_declarator, + STATE(4132), 1, + sym_decltype_auto, + STATE(3955), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5885), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -393633,8 +394789,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, @@ -393643,15 +394797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6592), 29, + ACTIONS(5887), 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, @@ -393662,21 +394814,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, - [108730] = 3, + [108338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 16, + ACTIONS(5174), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -393693,7 +394840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5154), 32, + ACTIONS(5176), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -393726,95 +394873,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [108786] = 25, + [108394] = 11, 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, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8012), 1, + anon_sym_LBRACK, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8141), 1, sym_auto, - ACTIONS(1846), 1, + ACTIONS(8143), 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, + STATE(4046), 1, + sym_new_declarator, + STATE(4132), 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, + STATE(3894), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5881), 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_or, anon_sym_and, anon_sym_bitor, @@ -393823,11 +394911,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5603), 29, + ACTIONS(5883), 22, 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_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -393835,196 +394925,72 @@ 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_LBRACK, + 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, - 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, + [108466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 19, + 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_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(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, + ACTIONS(6638), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [109054] = 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(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, - 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(5883), 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, - [109126] = 3, + anon_sym_DASH_GT_STAR, + [108522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 16, + ACTIONS(1940), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394041,7 +395007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6724), 32, + ACTIONS(1938), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394074,10 +395040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109182] = 3, + [108578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 16, + ACTIONS(1936), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394094,7 +395060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6716), 32, + ACTIONS(1934), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394127,60 +395093,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109238] = 25, + [108634] = 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, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(8042), 1, sym_identifier, - ACTIONS(8060), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(8062), 1, + ACTIONS(8048), 1, + sym_primitive_type, + ACTIONS(8050), 1, anon_sym_enum, - ACTIONS(8064), 1, + ACTIONS(8052), 1, anon_sym_class, - ACTIONS(8066), 1, + ACTIONS(8054), 1, anon_sym_struct, - ACTIONS(8068), 1, + ACTIONS(8056), 1, anon_sym_union, - ACTIONS(8070), 1, + ACTIONS(8058), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2453), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4054), 1, + STATE(4962), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5068), 1, sym_type_specifier, - STATE(6729), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2439), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - ACTIONS(3917), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -394202,67 +395168,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109338] = 10, + [108734] = 7, 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, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6395), 32, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(8148), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(8145), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7642), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_LBRACE, 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_EQ, + anon_sym_GT2, + ACTIONS(7640), 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, + [108798] = 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, - [109408] = 3, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7977), 1, + sym_identifier, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4972), 1, + sym_type_specifier, + STATE(6738), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1793), 2, + sym_decltype, + sym_template_type, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1907), 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, + [108898] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5144), 16, @@ -394315,70 +395353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109464] = 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(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_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - 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_LT_EQ_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, - [109534] = 3, + [108954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 16, + ACTIONS(5144), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394395,7 +395373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6542), 32, + ACTIONS(5146), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394428,71 +395406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109590] = 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(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, + [109010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 16, + ACTIONS(5144), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394509,7 +395426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5182), 32, + ACTIONS(5146), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394542,10 +395459,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109718] = 3, + [109066] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 16, + ACTIONS(8151), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8153), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6261), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394562,13 +395485,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6596), 32, + ACTIONS(6263), 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, @@ -394585,8 +395506,6 @@ 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, @@ -394595,13 +395514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109774] = 4, + [109126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8133), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6248), 16, + ACTIONS(6686), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394618,12 +395534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6250), 30, + ACTIONS(6688), 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, @@ -394641,6 +395558,7 @@ 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, @@ -394649,85 +395567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109832] = 25, - ACTIONS(3), 1, - sym_comment, - 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, + [109182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 16, + ACTIONS(5460), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394744,7 +395587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6664), 32, + ACTIONS(2717), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394777,116 +395620,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109988] = 3, + [109238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 16, + ACTIONS(6542), 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(5186), 32, + sym_identifier, + ACTIONS(6544), 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, - [110044] = 3, + anon_sym_DASH_GT, + [109294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 16, + ACTIONS(6656), 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(6546), 32, + sym_identifier, + ACTIONS(6658), 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, - [110100] = 3, + anon_sym_DASH_GT, + [109350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 16, + ACTIONS(6640), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -394903,7 +395746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6550), 32, + ACTIONS(6642), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -394936,60 +395779,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110156] = 25, + [109406] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8032), 1, - sym_primitive_type, - ACTIONS(8042), 1, - sym_auto, - ACTIONS(8044), 1, - anon_sym_decltype, ACTIONS(8072), 1, sym_identifier, ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(8076), 1, - anon_sym_enum, ACTIONS(8078), 1, - anon_sym_class, + sym_primitive_type, ACTIONS(8080), 1, - anon_sym_struct, + anon_sym_enum, ACTIONS(8082), 1, - anon_sym_union, + anon_sym_class, ACTIONS(8084), 1, + anon_sym_struct, + ACTIONS(8086), 1, + anon_sym_union, + ACTIONS(8088), 1, + sym_auto, + ACTIONS(8090), 1, + anon_sym_decltype, + ACTIONS(8092), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2836), 1, - sym_qualified_type_identifier, - STATE(4024), 1, + STATE(4133), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4423), 1, + STATE(4294), 1, sym_type_specifier, - STATE(4672), 1, + STATE(5002), 1, + sym_qualified_type_identifier, + STATE(5020), 1, sym_decltype_auto, - STATE(6743), 1, + STATE(6737), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2439), 2, + STATE(4966), 2, sym_decltype, sym_template_type, - ACTIONS(8030), 4, + ACTIONS(8076), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4773), 7, + STATE(5021), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -395011,60 +395854,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110256] = 25, + [109506] = 25, ACTIONS(3), 1, sym_comment, 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, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8008), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8010), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8012), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8014), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(8016), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8018), 1, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1680), 1, + ACTIONS(7977), 1, + sym_identifier, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(4150), 1, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4213), 1, + STATE(4652), 1, sym_type_specifier, - STATE(4975), 1, - sym_qualified_type_identifier, - STATE(4979), 1, - sym_decltype_auto, - STATE(6731), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(4943), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - ACTIONS(8002), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4980), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -395086,10 +395929,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [110356] = 3, + [109606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 19, + ACTIONS(6546), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -395109,7 +395952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6574), 29, + ACTIONS(6548), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395139,207 +395982,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [110412] = 22, + [109662] = 3, 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(5871), 1, - anon_sym___attribute, - ACTIONS(8135), 1, - anon_sym_STAR, - ACTIONS(8137), 1, - anon_sym_AMP_AMP, - ACTIONS(8139), 1, + ACTIONS(5617), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8147), 1, - anon_sym_LBRACK, - 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(6416), 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(3885), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4328), 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), 8, + 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(5619), 29, + 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(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, - [110506] = 22, - 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(5879), 1, - anon_sym___attribute, - ACTIONS(8135), 1, anon_sym_STAR, - ACTIONS(8137), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8139), 1, - anon_sym_AMP, - ACTIONS(8147), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - 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_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_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, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [109718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 16, + ACTIONS(6550), 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(4166), 32, + sym_identifier, + ACTIONS(6552), 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, + [109774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6624), 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(6626), 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, - [110656] = 3, + anon_sym_DASH_GT, + [109830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 19, + ACTIONS(6628), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -395359,7 +396164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6688), 29, + ACTIONS(6630), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395389,10 +396194,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [110712] = 3, + [109886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 16, + ACTIONS(6710), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395409,7 +396214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6554), 32, + ACTIONS(6712), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395442,85 +396247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110768] = 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(4298), 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, - [110868] = 3, + [109942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 16, + ACTIONS(6648), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395537,7 +396267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6558), 32, + ACTIONS(6650), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395570,60 +396300,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110924] = 25, + [109998] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(8020), 1, + sym_identifier, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(8026), 1, + sym_primitive_type, + ACTIONS(8028), 1, anon_sym_enum, - ACTIONS(1816), 1, + ACTIONS(8030), 1, anon_sym_class, - ACTIONS(1818), 1, + ACTIONS(8032), 1, anon_sym_struct, - ACTIONS(1820), 1, + ACTIONS(8034), 1, anon_sym_union, - ACTIONS(1844), 1, + ACTIONS(8036), 1, sym_auto, - ACTIONS(1846), 1, + ACTIONS(8038), 1, anon_sym_decltype, - ACTIONS(1848), 1, + ACTIONS(8040), 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, - sym_decltype_auto, - STATE(1916), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4494), 1, + STATE(4060), 1, sym_type_specifier, - STATE(6727), 1, + STATE(4699), 1, + sym_decltype_auto, + STATE(6716), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1782), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(1808), 4, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(4702), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -395645,10 +396375,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [111024] = 3, + [110098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 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(5160), 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, + [110154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 19, + ACTIONS(5629), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -395668,7 +396451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(5472), 29, + ACTIONS(5631), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -395698,10 +396481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [111080] = 3, + [110210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 16, + ACTIONS(5170), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -395718,7 +396501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6652), 32, + ACTIONS(5172), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -395751,20 +396534,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111136] = 3, + [110266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 19, + 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_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, @@ -395773,10 +396557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(5479), 29, + 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, @@ -395785,46 +396573,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, - [111192] = 11, + [110322] = 3, 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(4044), 1, - sym_new_declarator, - STATE(4145), 1, - sym_decltype_auto, - STATE(3927), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5857), 17, + ACTIONS(6674), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -395834,6 +396600,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, @@ -395842,13 +396610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5859), 22, + ACTIONS(6676), 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, @@ -395859,141 +396629,71 @@ 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, - [111264] = 25, + [110378] = 25, 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, + ACTIONS(8020), 1, sym_identifier, - ACTIONS(3915), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(3919), 1, + ACTIONS(8026), 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(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(4101), 1, - sym_type_specifier, - STATE(6697), 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, - [111364] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3146), 1, + ACTIONS(8028), 1, anon_sym_enum, - ACTIONS(3148), 1, + ACTIONS(8030), 1, anon_sym_class, - ACTIONS(3150), 1, + ACTIONS(8032), 1, anon_sym_struct, - ACTIONS(3152), 1, + ACTIONS(8034), 1, anon_sym_union, - ACTIONS(3176), 1, + ACTIONS(8036), 1, sym_auto, - ACTIONS(3178), 1, + ACTIONS(8038), 1, anon_sym_decltype, - ACTIONS(3180), 1, + ACTIONS(8040), 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2685), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(2733), 1, - sym_decltype_auto, - STATE(4313), 1, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4314), 1, + STATE(4057), 1, sym_type_specifier, - STATE(6738), 1, + STATE(4699), 1, + sym_decltype_auto, + STATE(6716), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2621), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(3142), 4, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2747), 7, + STATE(4702), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -396015,113 +396715,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [111464] = 3, + [110478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6652), 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(4166), 29, + anon_sym_DASH_GT, + ACTIONS(6654), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [111520] = 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), 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, - [111576] = 25, + anon_sym_DASH_GT_STAR, + [110534] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -396140,33 +396787,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4272), 1, + STATE(4562), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, ACTIONS(1808), 4, @@ -396174,7 +396821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -396196,156 +396843,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [111676] = 25, + [110634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8026), 1, + ACTIONS(5502), 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, - 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(4029), 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, - [111776] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym_const, - ACTIONS(7848), 1, + sym_literal_suffix, + ACTIONS(5504), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_PERCENT, + anon_sym_PIPE_PIPE, 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(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_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, + 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, + [110690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 16, + ACTIONS(5162), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396362,7 +396916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6600), 32, + ACTIONS(5164), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396395,10 +396949,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111924] = 3, + [110746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 16, + ACTIONS(5178), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396415,7 +396969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6574), 32, + ACTIONS(5180), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396448,85 +397002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [111980] = 25, + [110802] = 3, 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(4158), 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, - [112080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5170), 16, + ACTIONS(6624), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396543,7 +397022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5172), 32, + ACTIONS(6626), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396576,10 +397055,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112136] = 3, + [110858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 16, + ACTIONS(5509), 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(5511), 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, + [110914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396596,7 +397128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6578), 32, + ACTIONS(6732), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396629,60 +397161,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112192] = 25, + [110970] = 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, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8064), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8066), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8068), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8070), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(1848), 1, anon_sym_typename, - STATE(1680), 1, + ACTIONS(7977), 1, + sym_identifier, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2453), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4371), 1, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4890), 1, sym_type_specifier, - STATE(6729), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2439), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - ACTIONS(3917), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -396704,63 +397236,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [112292] = 3, + [111070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 16, + ACTIONS(6598), 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(5158), 32, + 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [112348] = 3, + anon_sym_DASH_GT, + [111126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 16, + ACTIONS(6570), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396777,7 +397309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6700), 32, + ACTIONS(6572), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396810,10 +397342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112404] = 3, + [111182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6590), 16, + ACTIONS(6546), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396830,7 +397362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6592), 32, + ACTIONS(6548), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396863,10 +397395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112460] = 3, + [111238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 16, + ACTIONS(6606), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396883,7 +397415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6720), 32, + ACTIONS(6608), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396916,10 +397448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112516] = 3, + [111294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 16, + ACTIONS(6578), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -396936,7 +397468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6562), 32, + ACTIONS(6580), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -396969,19 +397501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112572] = 7, + [111350] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6602), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -396991,6 +397514,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, @@ -396998,38 +397523,94 @@ 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(6068), 24, + sym_identifier, + ACTIONS(6604), 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, + [111406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6550), 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(6552), 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_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, - [112636] = 3, + anon_sym_DASH_GT_STAR, + [111462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 16, + ACTIONS(6594), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397046,7 +397627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6672), 32, + ACTIONS(6596), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397079,10 +397660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112692] = 3, + [111518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 16, + ACTIONS(6598), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397099,7 +397680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6676), 32, + ACTIONS(6600), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397132,10 +397713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112748] = 3, + [111574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 16, + ACTIONS(6602), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397152,7 +397733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6636), 32, + ACTIONS(6604), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397185,10 +397766,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [112804] = 3, + [111630] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 19, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(8104), 1, + sym_identifier, + ACTIONS(8106), 1, + anon_sym_COLON_COLON, + ACTIONS(8108), 1, + anon_sym_enum, + ACTIONS(8110), 1, + anon_sym_class, + ACTIONS(8112), 1, + anon_sym_struct, + ACTIONS(8114), 1, + anon_sym_union, + ACTIONS(8116), 1, + anon_sym_typename, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2563), 1, + sym_decltype_auto, + STATE(2696), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4062), 1, + sym_type_specifier, + STATE(6736), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2429), 2, + sym_decltype, + sym_template_type, + ACTIONS(3925), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2452), 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, + [111730] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6020), 1, + anon_sym___attribute__, + ACTIONS(6022), 1, + anon_sym___attribute, + ACTIONS(6259), 1, + anon_sym_LBRACE, + ACTIONS(8155), 1, + anon_sym_COLON, + STATE(1909), 1, + sym_attribute_specifier, + STATE(2349), 1, + sym__enum_base_clause, + STATE(2401), 1, + sym_enumerator_list, + ACTIONS(6346), 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(6348), 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_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, + [111800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6690), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397208,7 +397924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6724), 29, + ACTIONS(6692), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397238,48 +397954,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112860] = 3, + [111856] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 16, + ACTIONS(6020), 1, + anon_sym___attribute__, + ACTIONS(6022), 1, + anon_sym___attribute, + ACTIONS(6259), 1, + anon_sym_LBRACE, + ACTIONS(8155), 1, + anon_sym_COLON, + STATE(1922), 1, + sym_attribute_specifier, + STATE(2282), 1, + sym__enum_base_clause, + STATE(2407), 1, + sym_enumerator_list, + ACTIONS(6352), 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(6570), 32, + ACTIONS(6354), 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, @@ -397290,11 +398011,88 @@ 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, - [112916] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + [111926] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3154), 1, + anon_sym_enum, + ACTIONS(3156), 1, + anon_sym_class, + ACTIONS(3158), 1, + anon_sym_struct, + ACTIONS(3160), 1, + anon_sym_union, + ACTIONS(3184), 1, + sym_auto, + ACTIONS(3186), 1, + anon_sym_decltype, + ACTIONS(3188), 1, + anon_sym_typename, + ACTIONS(8094), 1, + sym_identifier, + ACTIONS(8096), 1, + anon_sym_COLON_COLON, + ACTIONS(8098), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2705), 1, + sym_qualified_type_identifier, + STATE(2711), 1, + sym_decltype_auto, + STATE(4317), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4355), 1, + sym_type_specifier, + STATE(6758), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2684), 2, + sym_decltype, + sym_template_type, + ACTIONS(3150), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2712), 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, + [112026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 19, + ACTIONS(6620), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397314,7 +398112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6672), 29, + ACTIONS(6622), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397344,10 +398142,302 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112972] = 3, + [112082] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8157), 1, + anon_sym_STAR, + ACTIONS(8159), 1, + anon_sym_AMP_AMP, + ACTIONS(8161), 1, + anon_sym_AMP, + STATE(2934), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6463), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7884), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3286), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4329), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 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(7072), 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, + [112174] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8026), 1, + sym_primitive_type, + ACTIONS(8036), 1, + sym_auto, + ACTIONS(8038), 1, + anon_sym_decltype, + ACTIONS(8118), 1, + sym_identifier, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(8122), 1, + anon_sym_enum, + ACTIONS(8124), 1, + anon_sym_class, + ACTIONS(8126), 1, + anon_sym_struct, + ACTIONS(8128), 1, + anon_sym_union, + ACTIONS(8130), 1, + anon_sym_typename, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(3986), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4406), 1, + sym_type_specifier, + STATE(4699), 1, + sym_decltype_auto, + STATE(6721), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2429), 2, + sym_decltype, + sym_template_type, + ACTIONS(8024), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4702), 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, + [112274] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8072), 1, + sym_identifier, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8078), 1, + sym_primitive_type, + ACTIONS(8080), 1, + anon_sym_enum, + ACTIONS(8082), 1, + anon_sym_class, + ACTIONS(8084), 1, + anon_sym_struct, + ACTIONS(8086), 1, + anon_sym_union, + ACTIONS(8088), 1, + sym_auto, + ACTIONS(8090), 1, + anon_sym_decltype, + ACTIONS(8092), 1, + anon_sym_typename, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(4133), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4207), 1, + sym_type_specifier, + STATE(5002), 1, + sym_qualified_type_identifier, + STATE(5020), 1, + sym_decltype_auto, + STATE(6737), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4966), 2, + sym_decltype, + sym_template_type, + ACTIONS(8076), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5021), 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, + [112374] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8157), 1, + anon_sym_STAR, + ACTIONS(8159), 1, + anon_sym_AMP_AMP, + ACTIONS(8161), 1, + anon_sym_AMP, + STATE(2934), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6411), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7884), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3922), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4376), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5889), 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(7072), 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, + [112466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 16, + ACTIONS(6610), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397364,7 +398454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6684), 32, + ACTIONS(6612), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397397,10 +398487,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113028] = 3, + [112522] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 19, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5891), 1, + anon_sym___attribute, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3102), 1, + sym_parameter_list, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6447), 1, + sym__abstract_declarator, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3928), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4371), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5889), 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(8169), 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, + [112616] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5868), 1, + anon_sym___attribute, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3102), 1, + sym_parameter_list, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6452), 1, + sym__abstract_declarator, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4373), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 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(8169), 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, + [112710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6710), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397420,7 +398654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6696), 29, + ACTIONS(6712), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397450,7 +398684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113084] = 25, + [112766] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -397469,33 +398703,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1848), 1, anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4234), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4937), 1, + STATE(4306), 1, sym_type_specifier, - STATE(6727), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1782), 2, + STATE(1793), 2, sym_decltype, sym_template_type, ACTIONS(1808), 4, @@ -397503,7 +398737,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(1907), 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, + [112866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6730), 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(6732), 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, + [112922] = 3, + ACTIONS(3), 1, + sym_comment, + 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_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, + [112978] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3154), 1, + anon_sym_enum, + ACTIONS(3156), 1, + anon_sym_class, + ACTIONS(3158), 1, + anon_sym_struct, + ACTIONS(3160), 1, + anon_sym_union, + ACTIONS(3184), 1, + sym_auto, + ACTIONS(3186), 1, + anon_sym_decltype, + ACTIONS(3188), 1, + anon_sym_typename, + ACTIONS(8094), 1, + sym_identifier, + ACTIONS(8096), 1, + anon_sym_COLON_COLON, + ACTIONS(8098), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2705), 1, + sym_qualified_type_identifier, + STATE(2711), 1, + sym_decltype_auto, + STATE(4317), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4785), 1, + sym_type_specifier, + STATE(6758), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2684), 2, + sym_decltype, + sym_template_type, + ACTIONS(3150), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2712), 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, + [113078] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3915), 1, + sym_identifier, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(3929), 1, + anon_sym_enum, + ACTIONS(3931), 1, + anon_sym_class, + ACTIONS(3933), 1, + anon_sym_struct, + ACTIONS(3935), 1, + anon_sym_union, + ACTIONS(3937), 1, + anon_sym_typename, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2563), 1, + sym_decltype_auto, + STATE(2696), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4088), 1, + sym_type_specifier, + STATE(6757), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2429), 2, + sym_decltype, + sym_template_type, + ACTIONS(3925), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -397525,10 +399015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [113184] = 3, + [113178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 16, + ACTIONS(5182), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -397545,7 +399035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5190), 32, + ACTIONS(5184), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397578,10 +399068,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113240] = 3, + [113234] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3154), 1, + anon_sym_enum, + ACTIONS(3156), 1, + anon_sym_class, + ACTIONS(3158), 1, + anon_sym_struct, + ACTIONS(3160), 1, + anon_sym_union, + ACTIONS(3184), 1, + sym_auto, + ACTIONS(3186), 1, + anon_sym_decltype, + ACTIONS(3188), 1, + anon_sym_typename, + ACTIONS(8094), 1, + sym_identifier, + ACTIONS(8096), 1, + anon_sym_COLON_COLON, + ACTIONS(8098), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2705), 1, + sym_qualified_type_identifier, + STATE(2711), 1, + sym_decltype_auto, + STATE(4287), 1, + sym_type_specifier, + STATE(4317), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6758), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2684), 2, + sym_decltype, + sym_template_type, + ACTIONS(3150), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2712), 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, + [113334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 19, + ACTIONS(6660), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397601,7 +399166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6664), 29, + ACTIONS(6662), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397631,10 +399196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113296] = 3, + [113390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 19, + ACTIONS(6610), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397654,7 +399219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6720), 29, + ACTIONS(6612), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397684,10 +399249,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113352] = 3, + [113446] = 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(7977), 1, + sym_identifier, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4327), 1, + sym_type_specifier, + STATE(6738), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(1793), 2, + sym_decltype, + sym_template_type, + ACTIONS(1808), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1907), 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, + [113546] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8010), 1, + anon_sym_LBRACE, + STATE(4025), 1, + sym_enumerator_list, + STATE(4158), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6062), 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(6064), 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, + [113610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 19, + ACTIONS(3911), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397707,7 +399404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6562), 29, + ACTIONS(3907), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397737,60 +399434,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113408] = 25, + [113666] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(8104), 1, + sym_identifier, + ACTIONS(8106), 1, + anon_sym_COLON_COLON, + ACTIONS(8108), 1, + anon_sym_enum, + ACTIONS(8110), 1, + anon_sym_class, + ACTIONS(8112), 1, + anon_sym_struct, + ACTIONS(8114), 1, + anon_sym_union, + ACTIONS(8116), 1, + anon_sym_typename, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2563), 1, + sym_decltype_auto, + STATE(2696), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4166), 1, + sym_type_specifier, + STATE(6736), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(2429), 2, + sym_decltype, + sym_template_type, + ACTIONS(3925), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2452), 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, + [113766] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8026), 1, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(8104), 1, sym_identifier, - ACTIONS(8028), 1, + ACTIONS(8106), 1, anon_sym_COLON_COLON, - ACTIONS(8032), 1, - sym_primitive_type, - ACTIONS(8034), 1, + ACTIONS(8108), 1, anon_sym_enum, - ACTIONS(8036), 1, + ACTIONS(8110), 1, anon_sym_class, - ACTIONS(8038), 1, + ACTIONS(8112), 1, anon_sym_struct, - ACTIONS(8040), 1, + ACTIONS(8114), 1, anon_sym_union, - ACTIONS(8042), 1, - sym_auto, - ACTIONS(8044), 1, - anon_sym_decltype, - ACTIONS(8046), 1, + ACTIONS(8116), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2836), 1, - sym_qualified_type_identifier, - STATE(4024), 1, + STATE(2563), 1, + sym_decltype_auto, + STATE(2696), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4049), 1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4363), 1, sym_type_specifier, - STATE(4672), 1, - sym_decltype_auto, - STATE(6719), 1, + STATE(6736), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2439), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(8030), 4, + ACTIONS(3925), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4773), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -397812,10 +399584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [113508] = 3, + [113866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 19, + ACTIONS(6636), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397835,7 +399607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6700), 29, + ACTIONS(6638), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397865,10 +399637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113564] = 3, + [113922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 19, + ACTIONS(6648), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -397888,7 +399660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6558), 29, + ACTIONS(6650), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -397918,85 +399690,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113620] = 25, - 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(8092), 1, - sym_primitive_type, - 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(1888), 1, - sym_decltype_auto, - STATE(2836), 1, - sym_qualified_type_identifier, - STATE(4916), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5094), 1, - sym_type_specifier, - STATE(6724), 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(8090), 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, - [113720] = 3, + [113978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 16, + ACTIONS(6656), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398013,7 +399710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6712), 32, + ACTIONS(6658), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -398046,10 +399743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113776] = 3, + [114034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 16, + ACTIONS(6674), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398066,7 +399763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3899), 32, + ACTIONS(6676), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -398099,10 +399796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [113832] = 3, + [114090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 19, + ACTIONS(6570), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -398122,7 +399819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6604), 29, + ACTIONS(6572), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -398152,63 +399849,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [113888] = 3, + [114146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 16, + ACTIONS(6614), 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(6632), 32, + sym_identifier, + ACTIONS(6616), 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, - [113944] = 3, + anon_sym_DASH_GT, + [114202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 16, + ACTIONS(5166), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398225,7 +399922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6616), 32, + ACTIONS(5168), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -398258,10 +399955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114000] = 3, + [114258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 16, + ACTIONS(8153), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6315), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398278,13 +399978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5194), 32, + ACTIONS(6317), 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, @@ -398302,7 +400001,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, @@ -398311,16 +400009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114056] = 5, + [114316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8133), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8157), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6298), 16, + ACTIONS(5192), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398337,11 +400029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6300), 28, + ACTIONS(5194), 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, @@ -398358,6 +400052,8 @@ 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, @@ -398366,10 +400062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114116] = 3, + [114372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 19, + ACTIONS(6640), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -398389,7 +400085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6684), 29, + ACTIONS(6642), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -398419,81 +400115,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114172] = 21, + [114428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(6652), 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(6654), 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(7856), 1, - sym_ms_restrict_modifier, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8151), 1, anon_sym_STAR, - ACTIONS(8153), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, 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_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_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, + 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, + [114484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 19, + ACTIONS(6698), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -398513,7 +400191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6608), 29, + ACTIONS(6700), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -398543,10 +400221,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114320] = 3, + [114540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 16, + ACTIONS(6660), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398563,7 +400241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6688), 32, + ACTIONS(6662), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -398596,208 +400274,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114376] = 3, + [114596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 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(6632), 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, - [114432] = 3, + anon_sym_DASH_GT_STAR, + [114652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5200), 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(5202), 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, + [114708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5208), 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(5210), 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, - [114488] = 3, + anon_sym_DASH_GT_STAR, + [114764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5204), 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(5206), 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, + [114820] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6628), 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(6534), 29, + anon_sym_DASH_GT, + ACTIONS(6630), 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, - [114544] = 7, + anon_sym_DASH_GT_STAR, + [114876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - STATE(1623), 1, - sym_template_argument_list, - STATE(2358), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5068), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6058), 12, + ACTIONS(6632), 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(6060), 29, + anon_sym_DASH_GT, + ACTIONS(6634), 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, @@ -398808,67 +400591,117 @@ 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, - [114608] = 3, + anon_sym_DASH_GT_STAR, + [114932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 19, - aux_sym_preproc_elif_token1, + ACTIONS(6702), 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(6704), 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, + [114988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6644), 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(6538), 29, + anon_sym_DASH_GT, + ACTIONS(6646), 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, - [114664] = 3, + anon_sym_DASH_GT_STAR, + [115044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 16, + ACTIONS(6620), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398885,7 +400718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6696), 32, + ACTIONS(6622), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -398918,10 +400751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114720] = 3, + [115100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 16, + ACTIONS(6538), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398938,7 +400771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5198), 32, + ACTIONS(6540), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -398971,10 +400804,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114776] = 3, + [115156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 16, + ACTIONS(6554), 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(6556), 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, + [115212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4168), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -398991,7 +400877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5198), 32, + ACTIONS(4161), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -399024,10 +400910,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114832] = 3, + [115268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 16, + ACTIONS(6558), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399044,7 +400930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5198), 32, + ACTIONS(6560), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -399077,10 +400963,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114888] = 3, + [115324] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(8179), 1, + anon_sym_LBRACK, + STATE(2674), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4315), 1, + sym_template_argument_list, + ACTIONS(4194), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4166), 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(4182), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 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, + [115394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6562), 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(6564), 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, + [115450] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4926), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(4037), 1, + sym_template_argument_list, + ACTIONS(4919), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4922), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_EQ, + ACTIONS(4915), 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, + [115516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 19, + ACTIONS(6566), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -399100,7 +401157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6652), 29, + ACTIONS(6568), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -399130,10 +401187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114944] = 3, + [115572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 16, + ACTIONS(6690), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399150,7 +401207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6660), 32, + ACTIONS(6692), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -399183,60 +401240,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [115000] = 25, + [115628] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3146), 1, + ACTIONS(8020), 1, + sym_identifier, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(8026), 1, + sym_primitive_type, + ACTIONS(8028), 1, anon_sym_enum, - ACTIONS(3148), 1, + ACTIONS(8030), 1, anon_sym_class, - ACTIONS(3150), 1, + ACTIONS(8032), 1, anon_sym_struct, - ACTIONS(3152), 1, + ACTIONS(8034), 1, anon_sym_union, - ACTIONS(3176), 1, + ACTIONS(8036), 1, sym_auto, - ACTIONS(3178), 1, + ACTIONS(8038), 1, anon_sym_decltype, - ACTIONS(3180), 1, + ACTIONS(8040), 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, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2685), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(2733), 1, - sym_decltype_auto, - STATE(4313), 1, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4668), 1, + STATE(4231), 1, sym_type_specifier, - STATE(6738), 1, + STATE(4699), 1, + sym_decltype_auto, + STATE(6716), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2621), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(3142), 4, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2747), 7, + STATE(4702), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -399258,7 +401315,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115100] = 25, + [115728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6538), 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(6540), 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, + [115784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6554), 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(6556), 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, + [115840] = 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, + [115896] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(125), 1, @@ -399267,51 +401483,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3907), 1, - sym_identifier, ACTIONS(3915), 1, + sym_identifier, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(3919), 1, + ACTIONS(3927), 1, sym_primitive_type, - ACTIONS(3921), 1, + ACTIONS(3929), 1, anon_sym_enum, - ACTIONS(3923), 1, + ACTIONS(3931), 1, anon_sym_class, - ACTIONS(3925), 1, + ACTIONS(3933), 1, anon_sym_struct, - ACTIONS(3927), 1, + ACTIONS(3935), 1, anon_sym_union, - ACTIONS(3929), 1, + ACTIONS(3937), 1, anon_sym_typename, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2453), 1, + STATE(2563), 1, sym_decltype_auto, - STATE(2695), 1, + STATE(2696), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4225), 1, + STATE(4272), 1, sym_type_specifier, - STATE(6697), 1, + STATE(6757), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2439), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(3917), 4, + ACTIONS(3925), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -399333,10 +401549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115200] = 3, + [115996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 16, + ACTIONS(6566), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -399353,7 +401569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(2729), 32, + ACTIONS(6568), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -399386,10 +401602,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [115256] = 3, + [116052] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 19, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + STATE(1635), 1, + sym_template_argument_list, + STATE(2402), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5076), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 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(6068), 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, + [116116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4168), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -399409,7 +401682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6596), 29, + ACTIONS(4161), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -399439,10 +401712,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115312] = 3, + [116172] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 19, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8012), 1, + anon_sym_LBRACK, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8141), 1, + sym_auto, + ACTIONS(8143), 1, + anon_sym_decltype, + STATE(4065), 1, + sym_new_declarator, + STATE(4132), 1, + sym_decltype_auto, + STATE(3945), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5846), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -399452,8 +401742,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, @@ -399462,15 +401750,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6600), 29, + ACTIONS(5848), 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, @@ -399481,132 +401767,168 @@ 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, - [115368] = 3, + [116244] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 16, + ACTIONS(8010), 1, + anon_sym_LBRACE, + STATE(4007), 1, + sym_enumerator_list, + STATE(4150), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6046), 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_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(5202), 32, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6048), 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_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [116308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5509), 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(5511), 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_STAR, - [115424] = 25, + 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, + [116363] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(7998), 1, + ACTIONS(8181), 1, sym_identifier, - ACTIONS(8000), 1, - anon_sym_COLON_COLON, - ACTIONS(8004), 1, + ACTIONS(8191), 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, + STATE(4041), 1, sym_alignas_qualifier, - STATE(4150), 1, + STATE(4148), 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, + ACTIONS(8188), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4020), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(4943), 2, - sym_decltype, - sym_template_type, - ACTIONS(8002), 4, + ACTIONS(8186), 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, + ACTIONS(5123), 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(5125), 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(8183), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -399620,94 +401942,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115524] = 3, + [116434] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 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(6604), 32, - 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(3005), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 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, - [115580] = 7, + ACTIONS(7327), 1, + anon_sym_STAR, + ACTIONS(7329), 1, + anon_sym_AMP_AMP, + ACTIONS(7331), 1, + anon_sym_AMP, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6468), 1, + sym__declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [116527] = 22, ACTIONS(3), 1, sym_comment, - 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, + 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(3005), 1, anon_sym_LPAREN2, + ACTIONS(3007), 1, anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, anon_sym_STAR, + ACTIONS(7309), 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(7834), 27, + ACTIONS(7311), 1, anon_sym_AMP, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6560), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -399720,78 +402084,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, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [115644] = 25, + [116620] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym___based, 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, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(1848), 1, - anon_sym_typename, - ACTIONS(7980), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7986), 1, - sym_primitive_type, - STATE(1680), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7327), 1, + anon_sym_STAR, + ACTIONS(7329), 1, + anon_sym_AMP_AMP, + ACTIONS(7331), 1, + anon_sym_AMP, + STATE(4359), 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, + STATE(5965), 1, sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(6420), 1, + sym__declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(1782), 2, + STATE(8381), 3, 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, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -399805,21 +402155,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115744] = 3, + [116713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5617), 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___attribute__, - anon_sym___attribute, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -399827,15 +402176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6542), 29, + sym_literal_suffix, + ACTIONS(5619), 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, @@ -399844,24 +402188,34 @@ 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, - [115800] = 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, + [116768] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 19, + STATE(4152), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6127), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -399871,8 +402225,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, @@ -399881,10 +402233,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6546), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6129), 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, @@ -399900,21 +402253,23 @@ 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, - [115856] = 3, + [116827] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 19, + STATE(4153), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6131), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -399924,8 +402279,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, @@ -399934,10 +402287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6550), 29, + sym_auto, + anon_sym_decltype, + ACTIONS(6133), 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, @@ -399953,59 +402307,205 @@ 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, - [115912] = 3, + [116886] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 16, + 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, + anon_sym_STAR, + ACTIONS(7301), 1, + anon_sym_AMP_AMP, + ACTIONS(7303), 1, + anon_sym_AMP, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6388), 1, + sym__declarator, + STATE(8817), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [116979] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7315), 1, + anon_sym_AMP_AMP, + ACTIONS(7317), 1, + anon_sym_AMP, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5903), 1, + sym__scope_resolution, + STATE(6389), 1, + sym__declarator, + STATE(8363), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [117072] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8012), 1, + anon_sym_LBRACK, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + STATE(1883), 1, + sym_decltype_auto, + STATE(4214), 1, + sym_new_declarator, + STATE(3948), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5874), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6608), 32, + ACTIONS(5876), 28, 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, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + 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_LT_EQ_GT, anon_sym_or, anon_sym_and, @@ -400016,22 +402516,163 @@ 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, - [115968] = 3, + anon_sym_DASH_GT, + [117143] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 19, - aux_sym_preproc_elif_token1, + 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7315), 1, + anon_sym_AMP_AMP, + ACTIONS(7317), 1, + anon_sym_AMP, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5903), 1, + sym__scope_resolution, + STATE(6390), 1, + sym__declarator, + STATE(8363), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [117236] = 22, + 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, + anon_sym_AMP, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5903), 1, + sym__scope_resolution, + STATE(6541), 1, + sym__declarator, + STATE(8850), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [117329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 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___attribute__, - anon_sym___attribute, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -400039,15 +402680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6554), 29, + sym_literal_suffix, + ACTIONS(5631), 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, @@ -400056,82 +402692,83 @@ 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, - [116024] = 25, + 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, + [117384] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(53), 1, + anon_sym___based, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8026), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(8028), 1, + ACTIONS(7305), 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, + ACTIONS(7307), 1, + anon_sym_STAR, + ACTIONS(7309), 1, + anon_sym_AMP_AMP, + ACTIONS(7311), 1, + anon_sym_AMP, + STATE(4359), 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, + STATE(5914), 1, sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - ACTIONS(69), 2, + STATE(6541), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(2439), 2, + STATE(8381), 3, 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, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -400145,125 +402782,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116124] = 3, + [117477] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 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(6612), 32, - 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(3007), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(5872), 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, - [116180] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6028), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_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, + ACTIONS(8199), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8203), 1, 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, - [116236] = 7, + ACTIONS(8205), 1, + anon_sym_AMP, + ACTIONS(8207), 1, + anon_sym_EQ, + STATE(3281), 1, + sym_parameter_list, + STATE(5965), 1, + sym__scope_resolution, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6341), 1, + sym__declarator, + STATE(6674), 1, + sym__abstract_declarator, + STATE(6886), 1, + sym_abstract_reference_declarator, + STATE(7411), 1, + sym_variadic_declarator, + STATE(7412), 1, + sym_variadic_reference_declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8201), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6895), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6117), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(6137), 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, + [117586] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7965), 1, - anon_sym_LBRACE, - STATE(3990), 1, - sym_enumerator_list, - STATE(4110), 1, + STATE(4157), 1, sym_attribute_specifier, - ACTIONS(6033), 2, + ACTIONS(6022), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6072), 19, + ACTIONS(6228), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -400283,7 +402889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6074), 24, + ACTIONS(6230), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -400301,6 +402907,7 @@ 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_QMARK, anon_sym_LT_EQ_GT, @@ -400308,11 +402915,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [116300] = 22, + [117645] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -400321,39 +402926,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(3001), 1, - anon_sym_STAR, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(5481), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - STATE(4325), 1, + ACTIONS(7333), 1, + anon_sym_STAR, + ACTIONS(7335), 1, + anon_sym_AMP_AMP, + ACTIONS(7337), 1, + anon_sym_AMP, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5923), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6630), 1, + STATE(6746), 1, sym__declarator, - STATE(8864), 1, + STATE(8405), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -400365,7 +402972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -400379,7 +402986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116393] = 22, + [117738] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -400390,41 +402997,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, - sym_identifier, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7257), 1, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7259), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7261), 1, + ACTIONS(7303), 1, anon_sym_AMP, - ACTIONS(7263), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5931), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6773), 1, + STATE(6389), 1, sym__declarator, - STATE(8398), 1, + STATE(8817), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -400436,7 +403043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -400450,7 +403057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116486] = 22, + [117831] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -400461,41 +403068,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7287), 1, anon_sym_AMP, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5895), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6320), 1, + STATE(6230), 1, sym__declarator, - STATE(8623), 1, + STATE(8848), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -400507,7 +403114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -400521,53 +403128,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116579] = 11, + [117924] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8165), 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(8175), 1, - sym_primitive_type, - STATE(4036), 1, + ACTIONS(7107), 1, + anon_sym_STAR, + ACTIONS(7109), 1, + anon_sym_AMP_AMP, + ACTIONS(7111), 1, + anon_sym_AMP, + ACTIONS(7113), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(4359), 1, sym_alignas_qualifier, - STATE(4257), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8172), 2, + STATE(5949), 1, + sym__scope_resolution, + STATE(6246), 1, + sym__declarator, + STATE(8245), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8170), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5109), 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(5111), 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(8167), 13, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -400581,7 +403199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116650] = 22, + [118017] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -400592,41 +403210,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, - anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7103), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(5872), 1, anon_sym_LBRACK, - ACTIONS(7257), 1, + ACTIONS(6008), 1, anon_sym_STAR, - ACTIONS(7259), 1, + ACTIONS(8199), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8203), 1, anon_sym_AMP_AMP, - ACTIONS(7261), 1, + ACTIONS(8205), 1, anon_sym_AMP, - ACTIONS(7263), 1, - anon_sym_COLON_COLON, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5931), 1, + ACTIONS(8209), 1, + anon_sym_EQ, + STATE(3343), 1, + sym_parameter_list, + STATE(5965), 1, sym__scope_resolution, - STATE(6786), 1, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6325), 1, sym__declarator, - STATE(8398), 1, + STATE(6655), 1, + sym__abstract_declarator, + STATE(6866), 1, + sym_abstract_reference_declarator, + STATE(7411), 1, + sym_variadic_declarator, + STATE(7412), 1, + sym_variadic_reference_declarator, + STATE(8310), 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, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8201), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6895), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6117), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -400638,41 +403278,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - [116743] = 11, + [118126] = 5, 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(4217), 1, - sym_new_declarator, - STATE(3958), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5841), 10, + STATE(4159), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6181), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -400681,12 +403296,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(5843), 28, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(6183), 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, @@ -400697,80 +403324,74 @@ 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_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, - [116814] = 21, + [118185] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7848), 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(3005), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, - sym_ms_restrict_modifier, - ACTIONS(7862), 1, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(8183), 1, + ACTIONS(7313), 1, anon_sym_STAR, - ACTIONS(8185), 1, + ACTIONS(7315), 1, anon_sym_AMP_AMP, - ACTIONS(8187), 1, + ACTIONS(7317), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(4359), 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, + STATE(5903), 1, + sym__scope_resolution, + STATE(6388), 1, + sym__declarator, + STATE(8363), 1, + sym_ms_based_modifier, + ACTIONS(3353), 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, + STATE(4232), 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, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -400782,7 +403403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116905] = 22, + [118278] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -400793,41 +403414,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7333), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7335), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7337), 1, anon_sym_AMP, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6213), 1, + STATE(6752), 1, sym__declarator, - STATE(8504), 1, + STATE(8405), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -400839,7 +403460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -400853,7 +403474,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116998] = 22, + [118371] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4160), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6208), 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(6210), 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, + [118430] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4162), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6150), 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(6152), 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, + [118489] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -400864,41 +403593,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7287), 1, anon_sym_AMP, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5895), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6552), 1, + STATE(6263), 1, sym__declarator, - STATE(8135), 1, + STATE(8848), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -400910,7 +403639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -400924,7 +403653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117091] = 22, + [118582] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -400935,41 +403664,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7333), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7335), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5895), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6322), 1, + STATE(6740), 1, sym__declarator, - STATE(8623), 1, + STATE(8405), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -400981,7 +403710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -400995,102 +403724,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117184] = 21, + [118675] = 11, 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_LBRACK_LBRACK, + ACTIONS(3631), 1, 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, - [117275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5601), 18, + ACTIONS(8012), 1, + anon_sym_LBRACK, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + STATE(1883), 1, + sym_decltype_auto, + STATE(4181), 1, + sym_new_declarator, + STATE(3945), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5846), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5603), 29, + ACTIONS(5848), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -401098,28 +403766,29 @@ 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_LBRACK, + 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, - 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, + [118746] = 22, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -401128,41 +403797,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7271), 1, + ACTIONS(3009), 1, anon_sym_STAR, - ACTIONS(7273), 1, - anon_sym_AMP_AMP, - ACTIONS(7275), 1, + ACTIONS(3011), 1, anon_sym_AMP, - ACTIONS(7277), 1, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - STATE(4325), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5967), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6228), 1, + STATE(6556), 1, sym__declarator, - STATE(8221), 1, + STATE(8850), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -401174,7 +403841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -401188,135 +403855,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117423] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4143), 1, - sym_attribute_specifier, - ACTIONS(6033), 2, - anon_sym___attribute__, - anon_sym___attribute, - 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, - 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, - 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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [117541] = 11, + [118839] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(7992), 1, + ACTIONS(8012), 1, anon_sym_LBRACK, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(8179), 1, + ACTIONS(8195), 1, sym_auto, - ACTIONS(8181), 1, + ACTIONS(8197), 1, anon_sym_decltype, - STATE(1864), 1, + STATE(1883), 1, sym_decltype_auto, - STATE(4199), 1, + STATE(4222), 1, sym_new_declarator, - STATE(3863), 2, + STATE(3955), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5881), 10, + ACTIONS(5885), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -401327,7 +403886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5883), 28, + ACTIONS(5887), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -401356,7 +403915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117612] = 22, + [118910] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -401367,41 +403926,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, - anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7319), 1, anon_sym_STAR, - ACTIONS(7113), 1, + ACTIONS(7321), 1, anon_sym_AMP_AMP, - ACTIONS(7115), 1, + ACTIONS(7323), 1, anon_sym_AMP, - STATE(4325), 1, + ACTIONS(7325), 1, + anon_sym_COLON_COLON, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5923), 1, + STATE(5953), 1, sym__scope_resolution, - STATE(6320), 1, + STATE(6808), 1, sym__declarator, - STATE(8339), 1, + STATE(8422), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -401413,7 +403972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -401427,61 +403986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [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, - 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, + [119003] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -401492,41 +403997,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7271), 1, + ACTIONS(7319), 1, anon_sym_STAR, - ACTIONS(7273), 1, + ACTIONS(7321), 1, anon_sym_AMP_AMP, - ACTIONS(7275), 1, + ACTIONS(7323), 1, anon_sym_AMP, - ACTIONS(7277), 1, + ACTIONS(7325), 1, anon_sym_COLON_COLON, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5967), 1, + STATE(5953), 1, sym__scope_resolution, - STATE(6255), 1, + STATE(6838), 1, sym__declarator, - STATE(8221), 1, + STATE(8422), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -401538,7 +404043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -401552,7 +404057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117857] = 22, + [119096] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -401563,41 +404068,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7219), 1, + ACTIONS(7319), 1, anon_sym_STAR, - ACTIONS(7221), 1, + ACTIONS(7321), 1, anon_sym_AMP_AMP, - ACTIONS(7223), 1, + ACTIONS(7323), 1, anon_sym_AMP, - STATE(4325), 1, + ACTIONS(7325), 1, + anon_sym_COLON_COLON, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5953), 1, sym__scope_resolution, - STATE(6741), 1, + STATE(6768), 1, sym__declarator, - STATE(8381), 1, + STATE(8422), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -401609,7 +404114,67 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 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, + [119189] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8211), 1, + sym_identifier, + ACTIONS(8221), 1, + sym_primitive_type, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(4280), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8218), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3776), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8216), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5102), 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(5104), 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(8213), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -401623,15 +404188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117950] = 5, + [119260] = 5, ACTIONS(3), 1, sym_comment, - STATE(4114), 1, + STATE(4138), 1, sym_attribute_specifier, - ACTIONS(6033), 2, + ACTIONS(6022), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6210), 19, + ACTIONS(6204), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -401651,7 +404216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6212), 25, + ACTIONS(6206), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -401677,7 +404242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118009] = 22, + [119319] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -401688,41 +404253,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7097), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7327), 1, anon_sym_STAR, - ACTIONS(7099), 1, + ACTIONS(7329), 1, anon_sym_AMP_AMP, - ACTIONS(7101), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6401), 1, + STATE(6433), 1, sym__declarator, - STATE(8286), 1, + STATE(8310), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -401734,7 +404299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -401748,86 +404313,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118102] = 30, + [119412] = 5, 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, + STATE(4141), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6113), 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(2999), 1, - anon_sym_TILDE, - ACTIONS(4310), 1, + ACTIONS(6115), 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(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_PERCENT, + anon_sym_PIPE_PIPE, 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, + 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, + [119471] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -401838,41 +404378,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7103), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7257), 1, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7259), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7261), 1, + ACTIONS(7287), 1, anon_sym_AMP, - ACTIONS(7263), 1, - anon_sym_COLON_COLON, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5931), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6816), 1, + STATE(6265), 1, sym__declarator, - STATE(8398), 1, + STATE(8848), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -401884,8 +404424,170 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 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, + [119564] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4164), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6159), 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(6161), 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, + [119623] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4165), 1, + sym_attribute_specifier, + ACTIONS(6022), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6192), 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(6194), 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, + [119682] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + STATE(2516), 1, + sym_attribute_specifier, + STATE(2932), 1, + sym_field_declaration_list, + STATE(7145), 1, + sym_virtual_specifier, + STATE(7912), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(5601), 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, @@ -401898,7 +404600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118304] = 22, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [119753] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -401909,41 +404617,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(7097), 1, + ACTIONS(7107), 1, anon_sym_STAR, - ACTIONS(7099), 1, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(7101), 1, + ACTIONS(7111), 1, anon_sym_AMP, - ACTIONS(7103), 1, + ACTIONS(7113), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5949), 1, sym__scope_resolution, - STATE(6451), 1, + STATE(6273), 1, sym__declarator, - STATE(8286), 1, + STATE(8245), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -401955,7 +404663,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -401969,64 +404677,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118397] = 6, + [119846] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 1, - anon_sym_SEMI, - ACTIONS(4995), 1, - anon_sym_LBRACK, - 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, + ACTIONS(29), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - ACTIONS(4984), 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, - [118458] = 22, - ACTIONS(3), 1, - sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -402035,41 +404690,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(7097), 1, + ACTIONS(3009), 1, anon_sym_STAR, - ACTIONS(7099), 1, - anon_sym_AMP_AMP, - ACTIONS(7101), 1, + ACTIONS(3011), 1, anon_sym_AMP, - ACTIONS(7103), 1, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6408), 1, + STATE(6560), 1, sym__declarator, - STATE(8286), 1, + STATE(8850), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -402081,7 +404734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -402095,24 +404748,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118551] = 5, + [119939] = 3, ACTIONS(3), 1, sym_comment, - STATE(4109), 1, - sym_attribute_specifier, - ACTIONS(6033), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6153), 19, - aux_sym_preproc_elif_token1, + ACTIONS(5502), 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, @@ -402120,16 +404769,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(6155), 25, + sym_literal_suffix, + ACTIONS(5504), 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, @@ -402138,10 +404781,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, @@ -402149,7 +404789,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [118610] = 22, + 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, + [119994] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -402160,41 +404811,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(7107), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7111), 1, anon_sym_AMP, - ACTIONS(7217), 1, + ACTIONS(7113), 1, anon_sym_COLON_COLON, - STATE(4325), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5895), 1, + STATE(5949), 1, sym__scope_resolution, - STATE(6321), 1, + STATE(6285), 1, sym__declarator, - STATE(8623), 1, + STATE(8245), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -402206,7 +404857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -402220,101 +404871,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118703] = 3, + [120087] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 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(5479), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 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(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 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, - 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, - [118758] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 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), 5, - anon_sym_LPAREN2, + ACTIONS(8223), 1, anon_sym_STAR, + ACTIONS(8225), 1, anon_sym_AMP_AMP, + ACTIONS(8227), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3045), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6514), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7884), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4035), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4464), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5889), 8, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - ACTIONS(5557), 32, - anon_sym_AMP, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7143), 12, 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, @@ -402326,65 +404941,78 @@ 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, - [118829] = 3, + [120178] = 22, 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, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5643), 29, - 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(3005), 1, anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7309), 1, 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, - [118884] = 22, + ACTIONS(7311), 1, + anon_sym_AMP, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6556), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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(3351), 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, + [120271] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -402395,41 +405023,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7303), 1, anon_sym_AMP, - STATE(4325), 1, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5896), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6216), 1, + STATE(6390), 1, sym__declarator, - STATE(8504), 1, + STATE(8817), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -402441,7 +405069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -402455,69 +405083,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118977] = 5, + [120364] = 21, ACTIONS(3), 1, sym_comment, - STATE(4146), 1, - sym_attribute_specifier, - ACTIONS(6033), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6108), 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(6110), 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(67), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8223), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8225), 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(8227), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3045), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6523), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7884), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3286), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4421), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, 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, - [119036] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7143), 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, + [120455] = 5, ACTIONS(3), 1, sym_comment, - STATE(4112), 1, + STATE(4146), 1, sym_attribute_specifier, - ACTIONS(6033), 2, + ACTIONS(6022), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6157), 19, + ACTIONS(6212), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -402537,7 +405181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6159), 25, + ACTIONS(6214), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -402563,65 +405207,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119095] = 22, + [120514] = 6, 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, + ACTIONS(5002), 1, + anon_sym_SEMI, + ACTIONS(5011), 1, + anon_sym_LBRACK, + ACTIONS(5004), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(2999), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5007), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_COLON_COLON, + anon_sym_EQ, + ACTIONS(5000), 35, anon_sym_AMP, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5896), 1, - sym__scope_resolution, - STATE(6276), 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_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, @@ -402634,12 +405255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119188] = 5, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [120575] = 5, ACTIONS(3), 1, sym_comment, - STATE(4155), 1, + STATE(4149), 1, sym_attribute_specifier, - ACTIONS(6033), 2, + ACTIONS(6022), 2, anon_sym___attribute__, anon_sym___attribute, ACTIONS(6100), 19, @@ -402688,27 +405316,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119247] = 11, + [120634] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(7992), 1, + ACTIONS(8012), 1, anon_sym_LBRACK, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(8179), 1, + ACTIONS(8195), 1, sym_auto, - ACTIONS(8181), 1, + ACTIONS(8197), 1, anon_sym_decltype, - STATE(1864), 1, + STATE(1883), 1, sym_decltype_auto, - STATE(4191), 1, + STATE(4182), 1, sym_new_declarator, - STATE(3927), 2, + STATE(3894), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5857), 10, + ACTIONS(5881), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -402719,7 +405347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5859), 28, + ACTIONS(5883), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -402748,15 +405376,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [119318] = 5, + [120705] = 21, ACTIONS(3), 1, sym_comment, - STATE(4128), 1, - sym_attribute_specifier, - ACTIONS(6033), 2, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8229), 1, + anon_sym_STAR, + ACTIONS(8231), 1, + anon_sym_AMP_AMP, + ACTIONS(8233), 1, + anon_sym_AMP, + STATE(3058), 1, + sym_parameter_list, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6610), 1, + sym__abstract_declarator, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4481), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8169), 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, + [120795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2562), 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(2572), 36, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(6161), 19, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [120849] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + STATE(3886), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6242), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -402774,16 +405524,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(6163), 25, + ACTIONS(6244), 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, @@ -402794,144 +405541,39 @@ 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, - [119377] = 22, + [120909] = 3, 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, + ACTIONS(5098), 10, + anon_sym_COMMA, 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_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(5096), 36, 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [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, - 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___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, 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, @@ -402944,137 +405586,80 @@ static const uint16_t ts_small_parse_table[] = { 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(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(4325), 1, - sym_alignas_qualifier, - STATE(5923), 1, - sym__scope_resolution, - STATE(6635), 1, - sym__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(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, - [119656] = 22, + 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, + [120963] = 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, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 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, + ACTIONS(5868), 1, + anon_sym___attribute, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(7111), 1, + ACTIONS(8235), 1, anon_sym_STAR, - ACTIONS(7113), 1, + ACTIONS(8237), 1, anon_sym_AMP_AMP, - ACTIONS(7115), 1, + ACTIONS(8239), 1, anon_sym_AMP, - STATE(4325), 1, + STATE(3283), 1, + sym_parameter_list, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5923), 1, - sym__scope_resolution, - STATE(6322), 1, - sym__declarator, - STATE(8339), 1, - sym_ms_based_modifier, - ACTIONS(3341), 2, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6542), 1, + sym__abstract_declarator, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4518), 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, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -403086,20 +405671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [119749] = 3, + [121055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5470), 18, + ACTIONS(5811), 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_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, @@ -403107,10 +405693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(5472), 29, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5813), 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, @@ -403119,7 +405711,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, @@ -403127,105 +405722,17 @@ 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, - [119804] = 30, + [121109] = 6, 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, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8139), 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, + STATE(3976), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6303), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403242,16 +405749,63 @@ 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(6208), 25, + sym_identifier, + ACTIONS(6305), 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, + [121169] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8241), 1, + anon_sym_LT, + STATE(2402), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2594), 1, + sym_template_argument_list, + ACTIONS(5076), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 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_GT_GT, + anon_sym_DOT, + ACTIONS(4166), 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_STAR, anon_sym_PERCENT, @@ -403260,26 +405814,28 @@ 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, + 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, - [119972] = 5, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [121233] = 3, ACTIONS(3), 1, sym_comment, - STATE(4142), 1, - sym_attribute_specifier, - ACTIONS(6033), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6165), 19, + ACTIONS(5823), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403289,6 +405845,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, @@ -403299,7 +405857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6167), 25, + ACTIONS(5825), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403325,66 +405883,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120031] = 22, + [121287] = 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, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, - anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(5868), 1, + anon_sym___attribute, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, - sym_identifier, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(8243), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(8245), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(8247), 1, anon_sym_AMP, - STATE(4325), 1, + STATE(3282), 1, + sym_parameter_list, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5895), 1, - sym__scope_resolution, - STATE(6635), 1, - sym__declarator, - STATE(8135), 1, - sym_ms_based_modifier, - ACTIONS(3341), 2, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6595), 1, + sym__abstract_declarator, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4506), 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, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -403396,41 +405953,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120124] = 11, + [121379] = 6, 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(4220), 1, - sym_new_declarator, - STATE(3939), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5853), 10, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8241), 1, + anon_sym_LT, + STATE(2594), 1, + sym_template_argument_list, + ACTIONS(5839), 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_COLON, anon_sym_DOT, - ACTIONS(5855), 28, + ACTIONS(4180), 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, @@ -403438,12 +405986,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_SEMI, anon_sym___attribute__, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -403456,86 +406002,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120195] = 22, - 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, + sym_auto, 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(4325), 1, - sym_alignas_qualifier, - STATE(5923), 1, - sym__scope_resolution, - STATE(6552), 1, - sym__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(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, - [120288] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + [121439] = 3, ACTIONS(3), 1, sym_comment, - STATE(4156), 1, - sym_attribute_specifier, - ACTIONS(6033), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6169), 19, + ACTIONS(5674), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -403545,6 +406020,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, @@ -403555,7 +406032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(6171), 25, + ACTIONS(5676), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -403581,268 +406058,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [120347] = 11, + [121493] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8201), 1, - sym_identifier, - ACTIONS(8211), 1, - sym_primitive_type, - STATE(4036), 1, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7876), 1, + anon_sym_STAR, + ACTIONS(7878), 1, + anon_sym_AMP_AMP, + ACTIONS(7880), 1, + anon_sym_AMP, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8251), 1, + anon_sym___attribute, + ACTIONS(8253), 1, + sym_auto, + ACTIONS(8255), 1, + anon_sym_decltype, + STATE(2899), 1, + sym_parameter_list, + STATE(4041), 1, sym_alignas_qualifier, - STATE(4113), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8208), 2, + STATE(4676), 1, + sym_decltype_auto, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6142), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3976), 2, + STATE(4210), 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, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8249), 11, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym___attribute__, 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(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(4325), 1, - sym_alignas_qualifier, - STATE(5967), 1, - sym__scope_resolution, - STATE(6244), 1, - sym__declarator, - STATE(8221), 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, - [120511] = 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(7219), 1, - anon_sym_STAR, - ACTIONS(7221), 1, - anon_sym_AMP_AMP, - ACTIONS(7223), 1, - anon_sym_AMP, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5896), 1, - sym__scope_resolution, - STATE(6696), 1, - sym__declarator, - STATE(8381), 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, - [120604] = 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(7219), 1, - anon_sym_STAR, - ACTIONS(7221), 1, - anon_sym_AMP_AMP, - ACTIONS(7223), 1, - anon_sym_AMP, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(5896), 1, - sym__scope_resolution, - STATE(6698), 1, - sym__declarator, - STATE(8381), 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, + ACTIONS(7072), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -403854,50 +406126,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120697] = 20, + [121581] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7885), 1, + ACTIONS(7905), 1, anon_sym_STAR, - ACTIONS(7887), 1, + ACTIONS(7907), 1, anon_sym_AMP_AMP, - ACTIONS(7889), 1, + ACTIONS(7909), 1, anon_sym_AMP, - ACTIONS(8215), 1, + ACTIONS(8251), 1, anon_sym___asm, - ACTIONS(8217), 1, + ACTIONS(8253), 1, sym_auto, - ACTIONS(8219), 1, + ACTIONS(8255), 1, anon_sym_decltype, - STATE(3010), 1, + STATE(2947), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(4730), 1, + STATE(4676), 1, sym_decltype_auto, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6124), 1, + STATE(6176), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4187), 2, + STATE(4215), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8213), 11, + ACTIONS(8249), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -403909,7 +406181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -403922,99 +406194,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120785] = 20, + [121669] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8257), 1, anon_sym_STAR, - ACTIONS(7852), 1, + ACTIONS(8259), 1, anon_sym_AMP_AMP, - ACTIONS(7854), 1, + ACTIONS(8261), 1, anon_sym_AMP, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8217), 1, - sym_auto, - ACTIONS(8219), 1, - anon_sym_decltype, - ACTIONS(8223), 1, - anon_sym___attribute, - STATE(2908), 1, + STATE(3073), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, sym_alignas_qualifier, - STATE(4730), 1, - sym_decltype_auto, - STATE(5953), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6140), 1, + STATE(6565), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4206), 2, + STATE(4058), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4497), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8221), 11, - anon_sym_COMMA, + ACTIONS(5889), 7, 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, - [120873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5090), 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(5088), 36, - anon_sym_AMP, + ACTIONS(8169), 12, 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, @@ -404026,31 +406263,16 @@ 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_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, - [120927] = 6, + [121759] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(8225), 1, + ACTIONS(8263), 1, anon_sym_LT, - STATE(2578), 1, + STATE(2594), 1, sym_template_argument_list, - ACTIONS(5834), 12, + ACTIONS(4915), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -404063,7 +406285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_COLON, anon_sym_DOT, - ACTIONS(4192), 31, + ACTIONS(4922), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -404095,31 +406317,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - [120987] = 6, + [121819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(8227), 1, - anon_sym_LT, - STATE(2578), 1, - sym_template_argument_list, - ACTIONS(4925), 12, + ACTIONS(5807), 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_GT_EQ, anon_sym_LT_EQ, - anon_sym_GT_GT, + 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, - ACTIONS(4932), 31, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5809), 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, @@ -404128,83 +406357,73 @@ 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___attribute__, + anon_sym_GT_GT, 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, - [121047] = 20, + [121873] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7905), 1, anon_sym_STAR, - ACTIONS(7852), 1, + ACTIONS(7907), 1, anon_sym_AMP_AMP, - ACTIONS(7854), 1, + ACTIONS(7909), 1, anon_sym_AMP, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8215), 1, - anon_sym___attribute, - ACTIONS(8217), 1, + ACTIONS(8253), 1, sym_auto, - ACTIONS(8219), 1, + ACTIONS(8255), 1, anon_sym_decltype, - STATE(2908), 1, + ACTIONS(8268), 1, + anon_sym___asm, + STATE(2947), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(4730), 1, + STATE(4676), 1, sym_decltype_auto, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6130), 1, + STATE(6181), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4195), 2, + STATE(4217), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8213), 11, + ACTIONS(8266), 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(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -404217,63 +406436,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121135] = 21, + [121961] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3347), 1, sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8257), 1, anon_sym_STAR, - ACTIONS(8232), 1, + ACTIONS(8259), 1, anon_sym_AMP_AMP, - ACTIONS(8234), 1, + ACTIONS(8261), 1, anon_sym_AMP, - STATE(3086), 1, + STATE(3073), 1, sym_parameter_list, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6536), 1, + STATE(6581), 1, sym__abstract_declarator, - ACTIONS(8143), 2, + ACTIONS(8171), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8145), 2, + ACTIONS(8173), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4046), 2, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4492), 2, + STATE(4499), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 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, + ACTIONS(5860), 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, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -404286,64 +406505,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121225] = 22, + [122051] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(5871), 1, - anon_sym___attribute, - 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, - STATE(3378), 1, - sym_parameter_list, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6610), 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, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4039), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4513), 2, + STATE(4274), 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_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8141), 12, + STATE(4325), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5564), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8272), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -404356,217 +406542,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2559), 10, + ACTIONS(8270), 20, + 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_COLON, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - 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, - anon_sym___restrict__, - anon_sym__Atomic, - 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_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [121371] = 3, + [122119] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 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(5778), 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(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7876), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7878), 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, - [121425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5800), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7880), 1, 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(7888), 1, + anon_sym_LBRACK, + ACTIONS(8253), 1, sym_auto, + ACTIONS(8255), 1, anon_sym_decltype, - ACTIONS(5802), 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, - [121479] = 22, - 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(5879), 1, + ACTIONS(8268), 1, anon_sym___attribute, - 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, - STATE(3378), 1, + STATE(2899), 1, sym_parameter_list, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(4676), 1, + sym_decltype_auto, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6612), 1, + STATE(6146), 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, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4532), 2, + STATE(4223), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5877), 6, + ACTIONS(8266), 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(8141), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -404579,50 +406631,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121571] = 20, + [122207] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7866), 1, + ACTIONS(7896), 1, anon_sym_STAR, - ACTIONS(7868), 1, + ACTIONS(7898), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, + ACTIONS(7900), 1, anon_sym_AMP, - ACTIONS(8215), 1, + ACTIONS(8251), 1, anon_sym___asm, - ACTIONS(8242), 1, + ACTIONS(8274), 1, sym_auto, - ACTIONS(8244), 1, + ACTIONS(8276), 1, anon_sym_decltype, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2483), 1, + STATE(2549), 1, sym_decltype_auto, - STATE(3006), 1, + STATE(2945), 1, sym_parameter_list, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6120), 1, + STATE(6205), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4209), 2, + STATE(4201), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8213), 11, + ACTIONS(8249), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -404634,7 +406686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7297), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -404647,31 +406699,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [121659] = 10, + [122295] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - STATE(1680), 1, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7896), 1, + anon_sym_STAR, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, + anon_sym_AMP, + ACTIONS(8268), 1, + anon_sym___asm, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + STATE(1693), 1, sym_alignas_qualifier, - ACTIONS(7304), 2, + STATE(2549), 1, + sym_decltype_auto, + STATE(2945), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6165), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4226), 2, + STATE(4176), 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___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7297), 12, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8266), 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(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -404684,294 +406767,133 @@ static const uint16_t ts_small_parse_table[] = { 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, - [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, + [122383] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_LBRACE, - ACTIONS(8125), 1, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 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, + ACTIONS(8175), 1, 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(3623), 1, - anon_sym_LBRACE, - ACTIONS(8125), 1, - anon_sym_LPAREN2, - STATE(3920), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6224), 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(6226), 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(8229), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8231), 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_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, - [121901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5764), 21, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(8233), 1, 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(5766), 25, - anon_sym_DOT_DOT_DOT, + STATE(3058), 1, + sym_parameter_list, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6597), 1, + sym__abstract_declarator, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4040), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4651), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5889), 7, 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_RPAREN, + 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, - [121955] = 21, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8169), 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, + [122473] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3347), 1, sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(5891), 1, + anon_sym___attribute, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8235), 1, anon_sym_STAR, - ACTIONS(8232), 1, + ACTIONS(8237), 1, anon_sym_AMP_AMP, - ACTIONS(8234), 1, + ACTIONS(8239), 1, anon_sym_AMP, - STATE(3086), 1, + STATE(3283), 1, sym_parameter_list, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6546), 1, + STATE(6599), 1, sym__abstract_declarator, - ACTIONS(8143), 2, + ACTIONS(8171), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8145), 2, + ACTIONS(8173), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(4044), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4502), 2, + STATE(4515), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5877), 7, + ACTIONS(5889), 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, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -404984,10 +406906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122045] = 3, + [122565] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5716), 21, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + STATE(3937), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6275), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -404997,8 +406926,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, @@ -405007,16 +406934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5718), 25, + ACTIONS(6277), 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, @@ -405027,18 +406951,19 @@ 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, - [122099] = 3, + [122625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5742), 21, + ACTIONS(5713), 21, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405060,7 +406985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5744), 25, + ACTIONS(5715), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405086,85 +407011,17 @@ static const uint16_t ts_small_parse_table[] = { 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(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(8217), 1, - sym_auto, - ACTIONS(8219), 1, - anon_sym_decltype, - ACTIONS(8223), 1, - anon_sym___asm, - 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(6150), 1, - sym__abstract_declarator, - ACTIONS(7067), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4196), 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), 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, - [122241] = 6, + [122679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(8125), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - STATE(3952), 2, + STATE(3887), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6283), 17, + ACTIONS(6307), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405182,7 +407039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6285), 25, + ACTIONS(6309), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -405208,106 +407065,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [122301] = 22, - 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(5871), 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(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6597), 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(4053), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4618), 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_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, - [122393] = 8, + [122739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(8225), 1, - anon_sym_LT, - STATE(2358), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2578), 1, - sym_template_argument_list, - ACTIONS(5068), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(4164), 10, + ACTIONS(5653), 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_GT_EQ, anon_sym_LT_EQ, - anon_sym_GT_GT, + 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(4172), 28, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5655), 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, @@ -405316,185 +407105,40 @@ 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, - 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, - [122457] = 22, - 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(5879), 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(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6601), 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(4620), 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), 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, - [122549] = 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(7866), 1, - anon_sym_STAR, - ACTIONS(7868), 1, - anon_sym_AMP_AMP, - ACTIONS(7870), 1, - anon_sym_AMP, - ACTIONS(8223), 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(3006), 1, - sym_parameter_list, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6194), 1, - sym__abstract_declarator, - ACTIONS(7304), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4172), 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), 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, - [122637] = 8, + [122793] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(7483), 1, + ACTIONS(7488), 1, anon_sym_LT, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - STATE(3104), 1, + STATE(3114), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7001), 4, + ACTIONS(6961), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4164), 5, + ACTIONS(4159), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(4172), 33, + ACTIONS(4166), 33, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -405528,63 +407172,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [122701] = 21, + [122857] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3347), 1, sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(5891), 1, + anon_sym___attribute, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8256), 1, + ACTIONS(8243), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(8245), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(8247), 1, anon_sym_AMP, - STATE(3095), 1, + STATE(3282), 1, sym_parameter_list, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, STATE(6583), 1, sym__abstract_declarator, - ACTIONS(8143), 2, + ACTIONS(8171), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8145), 2, + ACTIONS(8173), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4058), 2, + STATE(4049), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4557), 2, + STATE(4504), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 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_EQ, + ACTIONS(5889), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -405597,17 +407242,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122791] = 6, + [122949] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_LBRACE, - ACTIONS(8125), 1, + 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(7145), 1, + anon_sym___attribute__, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + ACTIONS(8278), 1, + anon_sym_virtual, + ACTIONS(8282), 1, + anon_sym___declspec, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2549), 1, + sym_decltype_auto, + ACTIONS(6497), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6499), 3, anon_sym_LPAREN2, - STATE(3926), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6309), 17, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(4253), 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(8280), 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(7143), 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, + [123032] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8141), 1, + sym_auto, + ACTIONS(8143), 1, + anon_sym_decltype, + STATE(4132), 1, + sym_decltype_auto, + ACTIONS(5637), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -405625,13 +407334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6311), 25, + ACTIONS(5639), 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, @@ -405642,73 +407352,43 @@ 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_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, - [122851] = 21, + [123091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - sym_ms_restrict_modifier, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(8102), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8256), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8258), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8100), 32, 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(6588), 1, - sym__abstract_declarator, - ACTIONS(8143), 2, + 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(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(4579), 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_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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -405720,62 +407400,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [122941] = 21, + 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, + [123144] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, + ACTIONS(7882), 1, sym_ms_restrict_modifier, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8262), 1, + ACTIONS(8284), 1, anon_sym_STAR, - ACTIONS(8264), 1, + ACTIONS(8286), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8288), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3255), 1, + STATE(3359), 1, sym_parameter_list, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6682), 1, + STATE(6677), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7858), 2, + ACTIONS(7884), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(7860), 2, + ACTIONS(7886), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4091), 2, + STATE(4082), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4732), 2, + STATE(4801), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5863), 6, + ACTIONS(5889), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7297), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -405788,55 +407478,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123030] = 21, + [123233] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8290), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8292), 1, anon_sym_LPAREN2, - ACTIONS(8272), 1, + ACTIONS(8294), 1, anon_sym_STAR, - ACTIONS(8274), 1, + ACTIONS(8296), 1, anon_sym_AMP_AMP, - ACTIONS(8276), 1, + ACTIONS(8298), 1, anon_sym_AMP, - ACTIONS(8282), 1, + ACTIONS(8304), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, - sym_pointer_type_declarator, - STATE(2243), 1, + STATE(2960), 1, sym__type_declarator, - STATE(3758), 1, + STATE(3290), 1, + sym_pointer_type_declarator, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8550), 1, + STATE(8864), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(4101), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4783), 2, + STATE(4732), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8302), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(3288), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -405856,63 +407546,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123119] = 21, + [123322] = 18, 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, + 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(7145), 1, + anon_sym___attribute__, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + ACTIONS(8282), 1, + anon_sym___declspec, + ACTIONS(8306), 1, + anon_sym_virtual, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3758), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6021), 1, - sym__type_declarator, - STATE(6122), 1, - sym_pointer_type_declarator, - STATE(8097), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, + STATE(2549), 1, + sym_decltype_auto, + ACTIONS(6491), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(4095), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4800), 2, + ACTIONS(6493), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(4248), 7, + sym__declaration_modifiers, + sym_attribute_specifier, + sym_attribute_declaration, + sym_ms_declspec_modifier, + sym_storage_class_specifier, sym_type_qualifier, - aux_sym__type_definition_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, + aux_sym__declaration_specifiers_repeat1, + ACTIONS(8280), 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(7143), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -405924,55 +407611,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123208] = 21, + [123405] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8298), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8300), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8302), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8304), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8306), 1, + ACTIONS(8316), 1, anon_sym_AMP, - ACTIONS(8310), 1, + ACTIONS(8320), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2945), 1, - sym__type_declarator, - STATE(3374), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8189), 1, + STATE(6076), 1, + sym__type_declarator, + STATE(8501), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(4081), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4657), 2, + STATE(4707), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8308), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3318), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -405992,111 +407679,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123297] = 9, + [123494] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5480), 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___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, + 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_template, - anon_sym_operator, - [123362] = 21, + ACTIONS(5482), 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, + [123547] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8322), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8324), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8312), 1, + ACTIONS(8326), 1, anon_sym_STAR, - ACTIONS(8314), 1, + ACTIONS(8328), 1, anon_sym_AMP_AMP, - ACTIONS(8316), 1, + ACTIONS(8330), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8334), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, - sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(6872), 1, + STATE(6019), 1, sym__type_declarator, - STATE(8660), 1, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(8469), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(4092), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4753), 2, + STATE(4722), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8332), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(6208), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -406116,55 +407797,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123451] = 21, + [123636] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8298), 1, + ACTIONS(8290), 1, sym_identifier, - ACTIONS(8300), 1, + ACTIONS(8292), 1, anon_sym_LPAREN2, - ACTIONS(8302), 1, + ACTIONS(8294), 1, anon_sym_STAR, - ACTIONS(8304), 1, + ACTIONS(8296), 1, anon_sym_AMP_AMP, - ACTIONS(8306), 1, + ACTIONS(8298), 1, anon_sym_AMP, - ACTIONS(8310), 1, + ACTIONS(8304), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2945), 1, + STATE(2992), 1, sym__type_declarator, - STATE(3374), 1, + STATE(3290), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8189), 1, + STATE(8864), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4075), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4657), 2, + STATE(4660), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8308), 4, + ACTIONS(8302), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3318), 5, + STATE(3288), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -406184,55 +407865,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123540] = 21, + [123725] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, ACTIONS(8312), 1, anon_sym_STAR, ACTIONS(8314), 1, anon_sym_AMP_AMP, ACTIONS(8316), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(6872), 1, + STATE(6093), 1, sym__type_declarator, - STATE(8660), 1, + STATE(8501), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4081), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4753), 2, + STATE(4714), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -406252,55 +407933,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123629] = 21, + [123814] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8284), 1, + anon_sym_STAR, + ACTIONS(8286), 1, + anon_sym_AMP_AMP, + ACTIONS(8288), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3359), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6682), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7884), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3286), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4803), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7143), 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, + [123903] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8318), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8320), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8322), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8324), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8326), 1, + ACTIONS(8316), 1, anon_sym_AMP, - ACTIONS(8330), 1, + ACTIONS(8320), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3063), 1, - sym__type_declarator, - STATE(3541), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8597), 1, + STATE(6093), 1, + sym__type_declarator, + STATE(8501), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4097), 2, + STATE(4091), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4679), 2, + STATE(4714), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8328), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3536), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -406320,55 +408069,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123718] = 21, + [123992] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8284), 1, + ACTIONS(8336), 1, sym_identifier, - ACTIONS(8286), 1, + ACTIONS(8338), 1, anon_sym_LPAREN2, - ACTIONS(8288), 1, + ACTIONS(8340), 1, anon_sym_STAR, - ACTIONS(8290), 1, + ACTIONS(8342), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8344), 1, anon_sym_AMP, - ACTIONS(8296), 1, + ACTIONS(8348), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3758), 1, - sym_ms_unaligned_ptr_modifier, - STATE(5968), 1, + STATE(3156), 1, sym__type_declarator, - STATE(6122), 1, + STATE(3498), 1, sym_pointer_type_declarator, - STATE(8097), 1, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8509), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4093), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4725), 2, + STATE(4767), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8294), 4, + ACTIONS(8346), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6136), 5, + STATE(3473), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -406388,35 +408137,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123807] = 3, + [124081] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8052), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7989), 1, anon_sym_STAR, + ACTIONS(7991), 1, anon_sym_AMP_AMP, + ACTIONS(7993), 1, + anon_sym_AMP, + ACTIONS(8251), 1, + anon_sym___asm, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2549), 1, + sym_decltype_auto, + STATE(3164), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6238), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4239), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8249), 10, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8050), 32, - anon_sym_AMP, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7143), 12, 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, @@ -406428,65 +408204,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, - [123860] = 21, + [124168] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8284), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8286), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8296), 1, + ACTIONS(8320), 1, sym_primitive_type, - ACTIONS(8332), 1, + ACTIONS(8350), 1, anon_sym_STAR, - ACTIONS(8334), 1, + ACTIONS(8352), 1, anon_sym_AMP_AMP, - ACTIONS(8336), 1, + ACTIONS(8354), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3758), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6122), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6357), 1, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6891), 1, sym__type_declarator, - STATE(8378), 1, + STATE(8684), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4841), 2, + STATE(4752), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8294), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6136), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -406506,55 +408272,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [123949] = 21, + [124257] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8284), 1, + ACTIONS(8336), 1, sym_identifier, - ACTIONS(8286), 1, + ACTIONS(8338), 1, anon_sym_LPAREN2, - ACTIONS(8296), 1, - sym_primitive_type, - ACTIONS(8332), 1, + ACTIONS(8340), 1, anon_sym_STAR, - ACTIONS(8334), 1, + ACTIONS(8342), 1, anon_sym_AMP_AMP, - ACTIONS(8336), 1, + ACTIONS(8344), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8348), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3758), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6122), 1, - sym_pointer_type_declarator, - STATE(6357), 1, + STATE(3077), 1, sym__type_declarator, - STATE(8378), 1, + STATE(3498), 1, + sym_pointer_type_declarator, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8509), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4073), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4841), 2, + STATE(4703), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8294), 4, + ACTIONS(8346), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6136), 5, + STATE(3473), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -406574,63 +408340,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124038] = 21, + [124346] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8268), 1, - sym_identifier, - ACTIONS(8270), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7989), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(7991), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(7993), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8268), 1, + anon_sym___asm, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, - sym_pointer_type_declarator, - STATE(3758), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6074), 1, - sym__type_declarator, - STATE(8477), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, + STATE(2549), 1, + sym_decltype_auto, + STATE(3164), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6242), 1, + sym__abstract_declarator, + ACTIONS(7150), 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(4794), 2, + STATE(4244), 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(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, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8266), 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(7143), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -406642,63 +408407,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124127] = 21, + [124433] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8284), 1, - sym_identifier, - ACTIONS(8286), 1, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8296), 1, - sym_primitive_type, - ACTIONS(8332), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8356), 1, anon_sym_STAR, - ACTIONS(8334), 1, + ACTIONS(8358), 1, anon_sym_AMP_AMP, - ACTIONS(8336), 1, + ACTIONS(8360), 1, anon_sym_AMP, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3758), 1, + STATE(3165), 1, + sym_parameter_list, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(6122), 1, - sym_pointer_type_declarator, - STATE(6358), 1, - sym__type_declarator, - STATE(8378), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8278), 2, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6673), 1, + sym__abstract_declarator, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4643), 2, + STATE(4736), 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, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -406710,105 +408475,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5525), 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(5527), 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, - [124269] = 21, + [124522] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8298), 1, + ACTIONS(8336), 1, sym_identifier, - ACTIONS(8300), 1, + ACTIONS(8338), 1, anon_sym_LPAREN2, - ACTIONS(8302), 1, + ACTIONS(8340), 1, anon_sym_STAR, - ACTIONS(8304), 1, + ACTIONS(8342), 1, anon_sym_AMP_AMP, - ACTIONS(8306), 1, + ACTIONS(8344), 1, anon_sym_AMP, - ACTIONS(8310), 1, + ACTIONS(8348), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2909), 1, + STATE(3161), 1, sym__type_declarator, - STATE(3374), 1, + STATE(3498), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8189), 1, + STATE(8509), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(4087), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4768), 2, + STATE(4705), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8308), 4, + ACTIONS(8346), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3318), 5, + STATE(3473), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -406828,55 +408543,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124358] = 21, + [124611] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(6074), 1, + STATE(6094), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4090), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4794), 2, + STATE(4715), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -406896,170 +408611,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124447] = 8, + [124700] = 21, 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(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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8322), 1, + sym_identifier, + ACTIONS(8324), 1, anon_sym_LPAREN2, + ACTIONS(8326), 1, anon_sym_STAR, + ACTIONS(8328), 1, 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, - 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(8330), 1, + anon_sym_AMP, + ACTIONS(8334), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6048), 1, + sym__type_declarator, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(8469), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, 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, + ACTIONS(8300), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3286), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4685), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7882), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8332), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4164), 6, - anon_sym_AMP, - anon_sym___attribute, - 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, + STATE(6208), 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [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, @@ -407071,55 +408679,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124656] = 21, + [124789] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8272), 1, + ACTIONS(8320), 1, + sym_primitive_type, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(8274), 1, + ACTIONS(8364), 1, anon_sym_AMP_AMP, - ACTIONS(8276), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8282), 1, - sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(2243), 1, + STATE(2242), 1, sym__type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8550), 1, + STATE(8609), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4088), 2, + STATE(4102), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4783), 2, + STATE(4737), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -407139,55 +408747,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124745] = 21, + [124878] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8322), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8324), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8312), 1, + ACTIONS(8326), 1, anon_sym_STAR, - ACTIONS(8314), 1, + ACTIONS(8328), 1, anon_sym_AMP_AMP, - ACTIONS(8316), 1, + ACTIONS(8330), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8334), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, - sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(6842), 1, + STATE(5997), 1, sym__type_declarator, - STATE(8660), 1, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(8469), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4756), 2, + STATE(4754), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8332), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(6208), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -407207,55 +408815,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124834] = 21, + [124967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + ACTIONS(4915), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(4922), 36, + 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_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_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, + [125026] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, + ACTIONS(8320), 1, sym_primitive_type, - ACTIONS(8312), 1, + ACTIONS(8350), 1, anon_sym_STAR, - ACTIONS(8314), 1, + ACTIONS(8352), 1, anon_sym_AMP_AMP, - ACTIONS(8316), 1, + ACTIONS(8354), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(6838), 1, + STATE(6903), 1, sym__type_declarator, - STATE(8660), 1, + STATE(8684), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4064), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4748), 2, + STATE(4751), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -407275,62 +408936,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [124923] = 21, + [125115] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4917), 1, + anon_sym_SEMI, + ACTIONS(4926), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(4037), 1, + sym_template_argument_list, + ACTIONS(4919), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(4922), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(4915), 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, + [125180] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3347), 1, sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8352), 1, + ACTIONS(8356), 1, anon_sym_STAR, - ACTIONS(8354), 1, + ACTIONS(8358), 1, anon_sym_AMP_AMP, - ACTIONS(8356), 1, + ACTIONS(8360), 1, anon_sym_AMP, - STATE(3198), 1, + STATE(3165), 1, sym_parameter_list, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6678), 1, + STATE(6660), 1, sym__abstract_declarator, - ACTIONS(8143), 2, + ACTIONS(8171), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8145), 2, + ACTIONS(8173), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, + STATE(4089), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4697), 2, + STATE(4734), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5877), 6, + ACTIONS(5889), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -407343,168 +409060,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125012] = 10, + [125269] = 4, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5537), 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_DOT, - ACTIONS(6395), 27, - 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_DOT, + sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [125079] = 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(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, - ACTIONS(8189), 1, - anon_sym_DOT_DOT_DOT, - 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(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, - 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(6359), 1, - anon_sym___attribute__, - ACTIONS(6361), 1, - anon_sym___attribute, - ACTIONS(6740), 1, - anon_sym_LBRACE, - ACTIONS(8358), 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), 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(6318), 27, + ACTIONS(5539), 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, @@ -407513,72 +409100,66 @@ 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, - 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, - [125245] = 21, + [125324] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, + ACTIONS(8320), 1, sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8350), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8352), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8354), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(6051), 1, + STATE(6892), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8684), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4072), 2, + STATE(4096), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4778), 2, + STATE(4750), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -407598,55 +409179,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125334] = 21, + [125413] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8290), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8292), 1, anon_sym_LPAREN2, - ACTIONS(8272), 1, + ACTIONS(8294), 1, anon_sym_STAR, - ACTIONS(8274), 1, + ACTIONS(8296), 1, anon_sym_AMP_AMP, - ACTIONS(8276), 1, + ACTIONS(8298), 1, anon_sym_AMP, - ACTIONS(8282), 1, + ACTIONS(8304), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, - sym_pointer_type_declarator, - STATE(2218), 1, + STATE(2977), 1, sym__type_declarator, - STATE(3758), 1, + STATE(3290), 1, + sym_pointer_type_declarator, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8550), 1, + STATE(8864), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4749), 2, + STATE(4794), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8302), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(3288), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -407666,108 +409247,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125423] = 6, - ACTIONS(3), 1, - sym_comment, - 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_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_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, - [125482] = 21, + [125502] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, + ACTIONS(8320), 1, sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8364), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8366), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6062), 1, + STATE(2255), 1, sym__type_declarator, - STATE(8477), 1, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8609), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4816), 2, + STATE(4795), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -407787,63 +409315,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125571] = 21, + [125591] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8290), 1, + sym_identifier, + ACTIONS(8292), 1, anon_sym_LPAREN2, - ACTIONS(7856), 1, - sym_ms_restrict_modifier, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8262), 1, + ACTIONS(8294), 1, anon_sym_STAR, - ACTIONS(8264), 1, + ACTIONS(8296), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8298), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8304), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3255), 1, - sym_parameter_list, - STATE(3758), 1, + STATE(2977), 1, + sym__type_declarator, + STATE(3290), 1, + sym_pointer_type_declarator, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6686), 1, - sym__abstract_declarator, - ACTIONS(7304), 2, + STATE(8864), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7858), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(7860), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(4080), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4738), 2, + STATE(4794), 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), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7297), 12, + ACTIONS(7882), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8302), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3288), 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, @@ -407855,62 +409383,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125660] = 21, + [125680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8284), 1, - sym_identifier, - ACTIONS(8286), 1, + ACTIONS(8137), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8296), 1, - sym_primitive_type, - ACTIONS(8332), 1, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8334), 1, anon_sym_AMP_AMP, - ACTIONS(8336), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8135), 32, anon_sym_AMP, - STATE(1680), 1, - sym_alignas_qualifier, - 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, - 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, + 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(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__unaligned, + anon_sym___unaligned, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -407923,55 +409423,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125749] = 21, + 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, + [125733] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8284), 1, + ACTIONS(8322), 1, sym_identifier, - ACTIONS(8286), 1, + ACTIONS(8324), 1, anon_sym_LPAREN2, - ACTIONS(8288), 1, + ACTIONS(8334), 1, + sym_primitive_type, + ACTIONS(8368), 1, anon_sym_STAR, - ACTIONS(8290), 1, + ACTIONS(8370), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8372), 1, anon_sym_AMP, - ACTIONS(8296), 1, - sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(6034), 1, - sym__type_declarator, - STATE(6122), 1, + STATE(6210), 1, sym_pointer_type_declarator, - STATE(8097), 1, + STATE(6368), 1, + sym__type_declarator, + STATE(8632), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4814), 2, + STATE(4719), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8294), 4, + ACTIONS(8332), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6136), 5, + STATE(6208), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -407991,120 +409501,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [125838] = 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(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_AMP_AMP, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [125921] = 21, + [125822] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8284), 1, + ACTIONS(8322), 1, sym_identifier, - ACTIONS(8286), 1, + ACTIONS(8324), 1, anon_sym_LPAREN2, - ACTIONS(8288), 1, + ACTIONS(8334), 1, + sym_primitive_type, + ACTIONS(8368), 1, anon_sym_STAR, - ACTIONS(8290), 1, + ACTIONS(8370), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(8372), 1, anon_sym_AMP, - ACTIONS(8296), 1, - sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(5968), 1, - sym__type_declarator, - STATE(6122), 1, + STATE(6210), 1, sym_pointer_type_declarator, - STATE(8097), 1, + STATE(6368), 1, + sym__type_declarator, + STATE(8632), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(4107), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4725), 2, + STATE(4719), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8294), 4, + ACTIONS(8332), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6136), 5, + STATE(6208), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -408124,55 +409569,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126010] = 21, + [125911] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8322), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8324), 1, anon_sym_LPAREN2, - ACTIONS(8272), 1, + ACTIONS(8334), 1, + sym_primitive_type, + ACTIONS(8368), 1, anon_sym_STAR, - ACTIONS(8274), 1, + ACTIONS(8370), 1, anon_sym_AMP_AMP, - ACTIONS(8276), 1, + ACTIONS(8372), 1, anon_sym_AMP, - ACTIONS(8282), 1, - sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6210), 1, sym_pointer_type_declarator, - STATE(2212), 1, + STATE(6370), 1, sym__type_declarator, - STATE(3758), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8550), 1, + STATE(8632), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4060), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4675), 2, + STATE(4720), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8280), 4, + ACTIONS(8332), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(6208), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -408192,55 +409637,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126099] = 21, + [126000] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8318), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8320), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8322), 1, + ACTIONS(8320), 1, + sym_primitive_type, + ACTIONS(8350), 1, anon_sym_STAR, - ACTIONS(8324), 1, + ACTIONS(8352), 1, anon_sym_AMP_AMP, - ACTIONS(8326), 1, + ACTIONS(8354), 1, anon_sym_AMP, - ACTIONS(8330), 1, - sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3099), 1, - sym__type_declarator, - STATE(3541), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8597), 1, + STATE(6903), 1, + sym__type_declarator, + STATE(8684), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(4086), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4834), 2, + STATE(4751), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8328), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3536), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -408260,28 +409705,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126188] = 6, + [126089] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + ACTIONS(6761), 1, + anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_COLON, + STATE(2618), 1, + sym__enum_base_clause, + STATE(2648), 1, + sym_enumerator_list, + STATE(2723), 1, + sym_attribute_specifier, + ACTIONS(6346), 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(6348), 27, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [126156] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(6406), 1, + anon_sym___attribute__, + ACTIONS(6408), 1, + anon_sym___attribute, + ACTIONS(6761), 1, + anon_sym_LBRACE, + ACTIONS(8374), 1, + anon_sym_COLON, + STATE(2604), 1, + sym__enum_base_clause, + STATE(2660), 1, + sym_enumerator_list, + STATE(2732), 1, + sym_attribute_specifier, + ACTIONS(6352), 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(6354), 27, + 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, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [126223] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(7483), 1, + ACTIONS(7488), 1, anon_sym_LT, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - ACTIONS(4925), 6, + STATE(4262), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8376), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(4932), 36, + ACTIONS(4166), 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__, @@ -408302,141 +409866,144 @@ 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__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [126247] = 20, + [126286] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7848), 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(3007), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(7967), 1, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5862), 1, anon_sym_STAR, - ACTIONS(7969), 1, + ACTIONS(5864), 1, anon_sym_AMP_AMP, - ACTIONS(7971), 1, + ACTIONS(5866), 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, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(5872), 1, + anon_sym_LBRACK, + ACTIONS(8199), 1, + anon_sym_DOT_DOT_DOT, + STATE(3100), 1, sym_parameter_list, - STATE(5953), 1, + STATE(5965), 1, + sym__scope_resolution, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6236), 1, + STATE(6413), 1, + sym__declarator, + STATE(6662), 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, + STATE(7393), 1, + sym_variadic_declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(8380), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8378), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6117), 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, - 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, + STATE(6137), 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, + [126385] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - sym_ms_restrict_modifier, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8322), 1, + sym_identifier, + ACTIONS(8324), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8352), 1, + ACTIONS(8334), 1, + sym_primitive_type, + ACTIONS(8368), 1, anon_sym_STAR, - ACTIONS(8354), 1, + ACTIONS(8370), 1, anon_sym_AMP_AMP, - ACTIONS(8356), 1, + ACTIONS(8372), 1, anon_sym_AMP, - STATE(3198), 1, - sym_parameter_list, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(1693), 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, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(6347), 1, + sym__type_declarator, + STATE(8632), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4083), 2, + ACTIONS(8300), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4105), 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, + STATE(4717), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7882), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6208), 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, @@ -408448,62 +410015,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126423] = 20, + [126474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + ACTIONS(5839), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(7848), 1, + anon_sym___asm, + ACTIONS(4180), 36, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(7967), 1, anon_sym_STAR, - ACTIONS(7969), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7971), 1, - anon_sym_AMP, - ACTIONS(8223), 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(6240), 1, - sym__abstract_declarator, - ACTIONS(7304), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4260), 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), 10, - anon_sym_COMMA, anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, 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_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -408515,106 +410055,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [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_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_DOT, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [126533] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8318), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8320), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8322), 1, + ACTIONS(8320), 1, + sym_primitive_type, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(8324), 1, + ACTIONS(8364), 1, anon_sym_AMP_AMP, - ACTIONS(8326), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8330), 1, - sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3063), 1, - sym__type_declarator, - STATE(3541), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(2242), 1, + sym__type_declarator, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8597), 1, + STATE(8609), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(3386), 2, + STATE(3286), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4679), 2, + STATE(4737), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8328), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3536), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -408634,55 +410136,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126654] = 21, + [126622] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8318), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8320), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8322), 1, + ACTIONS(8320), 1, + sym_primitive_type, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(8324), 1, + ACTIONS(8364), 1, anon_sym_AMP_AMP, - ACTIONS(8326), 1, + ACTIONS(8366), 1, anon_sym_AMP, - ACTIONS(8330), 1, - sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3135), 1, - sym__type_declarator, - STATE(3541), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(3758), 1, + STATE(2251), 1, + sym__type_declarator, + STATE(3853), 1, sym_ms_unaligned_ptr_modifier, - STATE(8597), 1, + STATE(8609), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4103), 2, + STATE(4115), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4706), 2, + STATE(4812), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8328), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3536), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -408702,55 +410204,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126743] = 21, + [126711] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8298), 1, + ACTIONS(8322), 1, sym_identifier, - ACTIONS(8300), 1, + ACTIONS(8324), 1, anon_sym_LPAREN2, - ACTIONS(8302), 1, + ACTIONS(8326), 1, anon_sym_STAR, - ACTIONS(8304), 1, + ACTIONS(8328), 1, anon_sym_AMP_AMP, - ACTIONS(8306), 1, + ACTIONS(8330), 1, anon_sym_AMP, - ACTIONS(8310), 1, + ACTIONS(8334), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2942), 1, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6048), 1, sym__type_declarator, - STATE(3374), 1, + STATE(6210), 1, sym_pointer_type_declarator, - STATE(3758), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8189), 1, + STATE(8469), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(8278), 2, + ACTIONS(8300), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(4062), 2, + STATE(4094), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4695), 2, + STATE(4685), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7856), 3, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8308), 4, + ACTIONS(8332), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3318), 5, + STATE(6208), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -408770,28 +410272,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [126832] = 6, + [126800] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(7483), 1, + ACTIONS(6536), 1, anon_sym_LT, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - ACTIONS(5834), 6, + STATE(4262), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8376), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(4192), 36, + ACTIONS(6068), 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__, @@ -408812,45 +410319,70 @@ 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__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [126891] = 3, + [126863] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8056), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8336), 1, + sym_identifier, + ACTIONS(8338), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(8340), 1, anon_sym_STAR, + ACTIONS(8342), 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(8054), 32, + ACTIONS(8344), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, + ACTIONS(8348), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3077), 1, + sym__type_declarator, + STATE(3498), 1, + sym_pointer_type_declarator, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8509), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8300), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4084), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4703), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7882), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, + ACTIONS(8346), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3473), 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, @@ -408863,20 +410395,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, - [126944] = 3, + [126952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 19, + ACTIONS(5788), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -408896,7 +410418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5517), 25, + ACTIONS(5790), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -408922,11 +410444,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [126996] = 3, + [127004] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 19, - aux_sym_preproc_elif_token1, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8012), 1, + anon_sym_LBRACK, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + STATE(1883), 1, + sym_decltype_auto, + STATE(4046), 1, + sym_new_declarator, + STATE(3894), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5881), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -408935,24 +410473,10 @@ 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5703), 25, + ACTIONS(5883), 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, @@ -408963,84 +410487,41 @@ 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_COLON, + 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, - [127048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5820), 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(5822), 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, - [127100] = 11, + [127072] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(7992), 1, + ACTIONS(8012), 1, anon_sym_LBRACK, - ACTIONS(8125), 1, + ACTIONS(8139), 1, anon_sym_LPAREN2, - ACTIONS(8179), 1, + ACTIONS(8195), 1, sym_auto, - ACTIONS(8181), 1, + ACTIONS(8197), 1, anon_sym_decltype, - STATE(1864), 1, + STATE(1883), 1, sym_decltype_auto, - STATE(4057), 1, + STATE(4042), 1, sym_new_declarator, - STATE(3863), 2, + STATE(3955), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5881), 9, + ACTIONS(5885), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -409050,7 +410531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5883), 26, + ACTIONS(5887), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -409077,10 +410558,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127168] = 3, + [127140] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 19, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(8382), 1, + anon_sym_COLON, + STATE(2569), 1, + sym_attribute_specifier, + STATE(2831), 1, + sym__enum_base_clause, + STATE(3023), 1, + sym_enumerator_list, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6354), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(6352), 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, + [127204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5537), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -409100,7 +410636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5707), 25, + ACTIONS(5539), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -409126,35 +410662,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127220] = 6, + [127256] = 3, ACTIONS(3), 1, sym_comment, - STATE(4160), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5078), 2, + ACTIONS(2753), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2751), 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, - ACTIONS(8366), 4, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [127308] = 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, - ACTIONS(5167), 9, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, + 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, + [127360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 2, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(5164), 28, - anon_sym_AMP, + ACTIONS(2975), 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, @@ -409169,19 +410799,20 @@ 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, - [127278] = 3, + anon_sym_typename, + anon_sym_template, + [127412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 19, + ACTIONS(5745), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -409201,7 +410832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5782), 25, + ACTIONS(5747), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -409227,82 +410858,11 @@ static const uint16_t ts_small_parse_table[] = { 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, + [127464] = 3, 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(4050), 1, - sym_new_declarator, - STATE(3958), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5841), 9, + ACTIONS(5749), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -409311,10 +410871,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(5843), 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5751), 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, @@ -409325,79 +410899,116 @@ 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [127516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5753), 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(5755), 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, - [127462] = 9, + [127568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 1, - anon_sym_LBRACE, - ACTIONS(8369), 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), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(6393), 32, + ACTIONS(5757), 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, - [127526] = 3, + ACTIONS(5759), 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, + [127620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 19, + ACTIONS(5705), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -409417,7 +411028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5647), 25, + ACTIONS(5707), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -409443,62 +411054,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127578] = 21, + [127672] = 11, 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, + ACTIONS(8384), 1, + sym_identifier, + ACTIONS(8394), 1, + sym_primitive_type, + STATE(4297), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4387), 1, sym_alignas_qualifier, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6700), 1, - sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(8391), 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, + STATE(4137), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5863), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(8389), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5125), 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(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, + ACTIONS(5123), 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(8386), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -409510,62 +411111,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127666] = 21, + [127740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(2669), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(2667), 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, - ACTIONS(7848), 1, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [127792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3101), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(3099), 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, + [127844] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4136), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8396), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5091), 9, + anon_sym_COMMA, 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_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + ACTIONS(5089), 30, anon_sym_AMP, - STATE(3515), 1, - sym_parameter_list, - STATE(3758), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4036), 1, + 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, + [127900] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8399), 1, + sym_identifier, + ACTIONS(8409), 1, + sym_primitive_type, + STATE(4387), 1, sym_alignas_qualifier, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6712), 1, - sym__abstract_declarator, - ACTIONS(7067), 2, + STATE(4431), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8406), 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, + STATE(4228), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5877), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(8404), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5104), 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(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, + ACTIONS(5102), 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(8401), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -409577,7 +411317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127754] = 3, + [127968] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5768), 19, @@ -409626,67 +411366,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127806] = 11, + [128020] = 3, 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, + ACTIONS(5795), 19, + 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, + 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, - ACTIONS(5109), 10, + ACTIONS(5797), 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_SEMI, + 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_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, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [128072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 19, + ACTIONS(5727), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -409706,7 +411438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5774), 25, + ACTIONS(5729), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -409732,10 +411464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127926] = 3, + [128124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 19, + ACTIONS(5819), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -409755,7 +411487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5786), 25, + ACTIONS(5821), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -409781,10 +411513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127978] = 3, + [128176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 19, + ACTIONS(5835), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -409804,7 +411536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5740), 25, + ACTIONS(5837), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -409830,13 +411562,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128030] = 3, + [128228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 2, + ACTIONS(3309), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2759), 42, + ACTIONS(3304), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -409879,60 +411611,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_typename, anon_sym_template, - [128082] = 3, + [128280] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2773), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2771), 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, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8012), 1, + anon_sym_LBRACK, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8195), 1, sym_auto, + ACTIONS(8197), 1, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [128134] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5693), 19, - aux_sym_preproc_elif_token1, + STATE(1883), 1, + sym_decltype_auto, + STATE(4067), 1, + sym_new_declarator, + STATE(3948), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5874), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -409941,24 +411640,10 @@ 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5695), 25, + ACTIONS(5876), 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, @@ -409969,67 +411654,24 @@ 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_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, - [128186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2967), 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, - [128238] = 3, + [128348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 19, + ACTIONS(5727), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410049,7 +411691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5722), 25, + ACTIONS(5729), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410075,10 +411717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128290] = 3, + [128400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5760), 19, + ACTIONS(5827), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410098,7 +411740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5762), 25, + ACTIONS(5829), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410124,27 +411766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128342] = 11, + [128452] = 3, 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(4043), 1, - sym_new_declarator, - STATE(3939), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5853), 9, + ACTIONS(5831), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -410153,10 +411779,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(5855), 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5833), 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, @@ -410167,45 +411807,43 @@ 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, - [128410] = 3, + [128504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(3290), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + STATE(4136), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5089), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8396), 4, 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, + ACTIONS(5141), 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(5138), 28, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -410220,37 +411858,20 @@ 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__, + anon_sym___asm, sym_auto, anon_sym_decltype, - anon_sym_typename, - anon_sym_template, - [128462] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [128562] = 3, 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, + ACTIONS(5815), 19, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -410259,10 +411880,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(5859), 26, + sym_identifier, + sym_auto, + anon_sym_decltype, + ACTIONS(5817), 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, @@ -410273,24 +411908,67 @@ 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [128614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5678), 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(5680), 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, - [128530] = 3, + [128666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 19, + ACTIONS(5657), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410310,7 +411988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5730), 25, + ACTIONS(5659), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410336,10 +412014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128582] = 3, + [128718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5788), 19, + ACTIONS(5686), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410359,7 +412037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5790), 25, + ACTIONS(5688), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410385,59 +412063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2705), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - ACTIONS(2703), 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, - [128686] = 3, + [128770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 19, + ACTIONS(5778), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410457,7 +412086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5818), 25, + ACTIONS(5780), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410483,10 +412112,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128738] = 3, + [128822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5660), 19, + ACTIONS(5657), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410506,7 +412135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5662), 25, + ACTIONS(5659), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410532,31 +412161,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128790] = 10, + [128874] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4322), 2, + STATE(4348), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(4446), 2, + STATE(4416), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5835), 2, + STATE(5748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8248), 4, + ACTIONS(8272), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -410569,7 +412198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8246), 18, + ACTIONS(8270), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_AMP_AMP, @@ -410588,10 +412217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [128856] = 3, + [128940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 19, + ACTIONS(5731), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410611,7 +412240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5806), 25, + ACTIONS(5733), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410637,10 +412266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128908] = 3, + [128992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 19, + ACTIONS(5682), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410660,7 +412289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5683), 25, + ACTIONS(5684), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410686,10 +412315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [128960] = 3, + [129044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 19, + ACTIONS(5697), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410709,7 +412338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5810), 25, + ACTIONS(5699), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410735,10 +412364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129012] = 3, + [129096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 19, + ACTIONS(5709), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410758,7 +412387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5755), 25, + ACTIONS(5711), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410784,10 +412413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129064] = 3, + [129148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 19, + ACTIONS(5693), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410807,7 +412436,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5668), 25, + ACTIONS(5695), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410833,10 +412462,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129116] = 3, + [129200] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5812), 19, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8066), 1, + anon_sym_STAR, + ACTIONS(8068), 1, + anon_sym_AMP_AMP, + ACTIONS(8070), 1, + anon_sym_AMP, + ACTIONS(8251), 1, + anon_sym___attribute, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2549), 1, + sym_decltype_auto, + STATE(3079), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6358), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4323), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8249), 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(7143), 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, + [129286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5719), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410856,7 +412551,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5814), 25, + ACTIONS(5721), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410882,10 +412577,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129168] = 3, + [129338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 19, + ACTIONS(5723), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410905,7 +412600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5798), 25, + ACTIONS(5725), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410931,10 +412626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129220] = 3, + [129390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 19, + ACTIONS(5799), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -410954,7 +412649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5722), 25, + ACTIONS(5801), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -410980,10 +412675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129272] = 3, + [129442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5712), 19, + ACTIONS(5803), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -411003,7 +412698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5714), 25, + ACTIONS(5805), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -411029,52 +412724,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129324] = 11, + [129494] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8389), 1, - sym_identifier, - ACTIONS(8399), 1, - sym_primitive_type, - STATE(4290), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4321), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8066), 1, + anon_sym_STAR, + ACTIONS(8068), 1, + anon_sym_AMP_AMP, + ACTIONS(8070), 1, + anon_sym_AMP, + ACTIONS(8268), 1, + anon_sym___attribute, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + STATE(1693), 1, sym_alignas_qualifier, - ACTIONS(8396), 2, + STATE(2549), 1, + sym_decltype_auto, + STATE(3079), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6362), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4122), 2, + STATE(4288), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8394), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5096), 9, - anon_sym_AMP, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8266), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(5094), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7143), 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, + [129580] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8411), 1, anon_sym_STAR, + ACTIONS(8413), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(8391), 13, + ACTIONS(8415), 1, + anon_sym_AMP, + STATE(3528), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6704), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7884), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4168), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4870), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5889), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7072), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -411086,32 +412857,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129392] = 3, + [129668] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2673), 2, - anon_sym_COLON_COLON, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7882), 1, + sym_ms_restrict_modifier, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8411), 1, + anon_sym_STAR, + ACTIONS(8413), 1, + anon_sym_AMP_AMP, + ACTIONS(8415), 1, + anon_sym_AMP, + STATE(3528), 1, + sym_parameter_list, + STATE(3853), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6708), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7884), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(7886), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(3286), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4872), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5860), 5, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(2671), 42, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7072), 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, @@ -411123,25 +412924,13 @@ 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, - [129444] = 3, + [129756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 2, + ACTIONS(2773), 2, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(3091), 42, + ACTIONS(2771), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -411179,131 +412968,32 @@ static const uint16_t ts_small_parse_table[] = { 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(5804), 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(5806), 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, - [129548] = 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(8215), 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(6331), 1, - sym__abstract_declarator, - ACTIONS(7304), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4289), 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), 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, - [129634] = 3, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_typename, + anon_sym_template, + [129808] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 19, - aux_sym_preproc_elif_token1, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8012), 1, + anon_sym_LBRACK, + ACTIONS(8139), 1, + anon_sym_LPAREN2, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + STATE(1883), 1, + sym_decltype_auto, + STATE(4065), 1, + sym_new_declarator, + STATE(3945), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5846), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -411312,24 +413002,10 @@ 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, - sym_identifier, - sym_auto, - anon_sym_decltype, - ACTIONS(5726), 25, + ACTIONS(5848), 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, @@ -411340,67 +413016,79 @@ 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_COLON, + 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, - [129686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5685), 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(5687), 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, - [129738] = 3, + [129876] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(8382), 1, + anon_sym_COLON, + STATE(2472), 1, + sym_attribute_specifier, + STATE(2816), 1, + sym__enum_base_clause, + STATE(2971), 1, + sym_enumerator_list, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6348), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(6346), 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, + [129940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 19, + ACTIONS(5727), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -411420,7 +413108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - ACTIONS(5691), 25, + ACTIONS(5729), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -411446,60 +413134,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [129790] = 20, + [129992] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8421), 1, + anon_sym_STAR, + ACTIONS(8423), 1, + anon_sym_AMP_AMP, + ACTIONS(8425), 1, + anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6266), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8840), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4953), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6525), 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(3351), 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, + [130077] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5868), 1, + anon_sym___asm, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8113), 1, + ACTIONS(7896), 1, anon_sym_STAR, - ACTIONS(8115), 1, + ACTIONS(7898), 1, anon_sym_AMP_AMP, - ACTIONS(8117), 1, + ACTIONS(7900), 1, anon_sym_AMP, - ACTIONS(8223), 1, - anon_sym___attribute, - ACTIONS(8242), 1, - sym_auto, - ACTIONS(8244), 1, - anon_sym_decltype, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(2483), 1, - sym_decltype_auto, - STATE(3112), 1, + STATE(2945), 1, sym_parameter_list, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6335), 1, + STATE(6106), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4291), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8221), 9, + ACTIONS(5860), 11, anon_sym_COMMA, - anon_sym_RPAREN, - 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(7297), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -411512,81 +413261,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5720), 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(5722), 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, - [129928] = 5, + [130156] = 20, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, anon_sym_LPAREN2, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, anon_sym_STAR, + ACTIONS(8431), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - ACTIONS(5078), 30, + ACTIONS(8433), 1, anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6819), 1, + sym__field_declarator, + STATE(6907), 1, + sym_operator_name, + STATE(8258), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4186), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4928), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6525), 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(3351), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -411599,135 +413326,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [130241] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7896), 1, + anon_sym_STAR, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, + anon_sym_AMP, + ACTIONS(8437), 1, + anon_sym___asm, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2945), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6107), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8435), 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___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, - 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, - sym_identifier, - 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, - [130067] = 19, + ACTIONS(7143), 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, + [130320] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(6765), 1, + anon_sym___asm, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8151), 1, + ACTIONS(7896), 1, anon_sym_STAR, - ACTIONS(8153), 1, + ACTIONS(7898), 1, anon_sym_AMP_AMP, - ACTIONS(8155), 1, + ACTIONS(7900), 1, anon_sym_AMP, - ACTIONS(8217), 1, - sym_auto, - ACTIONS(8219), 1, - anon_sym_decltype, - STATE(2963), 1, - sym_parameter_list, - STATE(4036), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(4730), 1, - sym_decltype_auto, - STATE(5953), 1, + STATE(2945), 1, + sym_parameter_list, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6458), 1, + STATE(6108), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4356), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8221), 9, + ACTIONS(6763), 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(7052), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -411740,42 +413450,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130150] = 8, + [130399] = 21, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5028), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(4932), 3, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8439), 1, anon_sym_STAR, + ACTIONS(8441), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(4925), 34, + ACTIONS(8443), 1, anon_sym_AMP, + ACTIONS(8447), 1, + sym_ms_restrict_modifier, + STATE(1719), 1, + sym_alignas_qualifier, + STATE(3544), 1, + sym_parameter_list, + STATE(5334), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6785), 1, + sym__abstract_declarator, + ACTIONS(8449), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8451), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8453), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4179), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4937), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5889), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 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, @@ -411787,66 +413516,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_operator, - [130211] = 20, + [130486] = 21, 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, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8423), 1, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8439), 1, anon_sym_STAR, - ACTIONS(8425), 1, + ACTIONS(8441), 1, anon_sym_AMP_AMP, - ACTIONS(8427), 1, + ACTIONS(8443), 1, anon_sym_AMP, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + ACTIONS(8447), 1, + sym_ms_restrict_modifier, + STATE(1719), 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, + STATE(3544), 1, + sym_parameter_list, + STATE(5334), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6812), 1, + sym__abstract_declarator, + ACTIONS(8449), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8451), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(8453), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4928), 2, + STATE(4947), 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, + STATE(5104), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(5860), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -411858,10 +413582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130296] = 3, + [130573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6714), 17, + ACTIONS(6686), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -411879,7 +413603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(6716), 26, + ACTIONS(6688), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -411906,41 +413630,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [130347] = 11, + [130624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(6805), 1, - sym_auto, - ACTIONS(6807), 1, - anon_sym_decltype, - ACTIONS(8429), 1, + ACTIONS(8193), 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, + STATE(3937), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5841), 11, + ACTIONS(6275), 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(5843), 23, + ACTIONS(6277), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -411948,7 +413662,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, @@ -411961,236 +413681,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [130414] = 17, + [130681] = 6, 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(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(3631), 1, 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, - [130493] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5845), 1, + ACTIONS(8193), 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, + STATE(3976), 2, 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, + sym_initializer_list, + ACTIONS(6303), 10, 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_SLASH, 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(7017), 7, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(6305), 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_QMARK, - [130592] = 29, - 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_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, 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, - ACTIONS(8413), 2, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8437), 2, - anon_sym_PIPE, + 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, - ACTIONS(8441), 2, - anon_sym_AMP, + anon_sym_xor, 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, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [130738] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(3869), 1, anon_sym_LBRACE, - ACTIONS(6805), 1, + ACTIONS(6811), 1, sym_auto, - ACTIONS(6807), 1, + ACTIONS(6813), 1, anon_sym_decltype, - ACTIONS(8429), 1, + ACTIONS(8455), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, + ACTIONS(8457), 1, anon_sym_LBRACK, - STATE(2741), 1, + STATE(2719), 1, sym_decltype_auto, - STATE(4421), 1, + STATE(4472), 1, sym_new_declarator, - STATE(4870), 2, + STATE(4917), 2, sym_argument_list, sym_initializer_list, - ACTIONS(5857), 11, + ACTIONS(5846), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -412202,7 +413764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5859), 23, + ACTIONS(5848), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -412226,105 +413788,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [130762] = 3, + [130805] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 17, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8469), 1, + anon_sym_SLASH, + ACTIONS(8471), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8473), 1, + anon_sym_AMP_AMP, + ACTIONS(8477), 1, + anon_sym_CARET, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8489), 1, + anon_sym_QMARK, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8493), 1, + anon_sym_or, + ACTIONS(8495), 1, + anon_sym_and, + ACTIONS(8497), 1, + anon_sym_xor, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8459), 2, aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8475), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8479), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 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, - ACTIONS(6660), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(8463), 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_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, - [130813] = 17, + [130908] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(7866), 1, + ACTIONS(8421), 1, anon_sym_STAR, - ACTIONS(7868), 1, + ACTIONS(8423), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, + ACTIONS(8425), 1, anon_sym_AMP, - ACTIONS(8455), 1, - anon_sym___asm, - STATE(1680), 1, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 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, + STATE(6223), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8840), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4948), 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, - 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, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6525), 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(3351), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -412336,7 +413927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130892] = 20, + [130993] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -412344,42 +413935,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_operator, ACTIONS(8419), 1, - sym_identifier, - ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(8423), 1, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, anon_sym_STAR, - ACTIONS(8425), 1, + ACTIONS(8431), 1, anon_sym_AMP_AMP, - ACTIONS(8427), 1, + ACTIONS(8433), 1, anon_sym_AMP, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6281), 1, + STATE(6788), 1, sym__field_declarator, - STATE(6445), 1, + STATE(6907), 1, sym_operator_name, - STATE(8851), 1, + STATE(8258), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4164), 2, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4913), 2, + STATE(4970), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6476), 7, + STATE(6525), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -412387,7 +413978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -412401,57 +413992,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [130977] = 17, + [131078] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5879), 1, - anon_sym___attribute, - ACTIONS(7065), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, anon_sym_STAR, - ACTIONS(7852), 1, + ACTIONS(8431), 1, anon_sym_AMP_AMP, - ACTIONS(7854), 1, + ACTIONS(8433), 1, anon_sym_AMP, - ACTIONS(7862), 1, - anon_sym_LBRACK, - STATE(2908), 1, - sym_parameter_list, - STATE(4036), 1, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6147), 1, - sym__abstract_declarator, - ACTIONS(7067), 2, + STATE(6788), 1, + sym__field_declarator, + STATE(6907), 1, + sym_operator_name, + STATE(8258), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(4192), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4970), 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, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6525), 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(3351), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -412463,61 +414057,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131056] = 21, + [131163] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 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(3007), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, anon_sym_LPAREN2, - ACTIONS(5652), 1, - anon_sym_const, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8457), 1, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5862), 1, anon_sym_STAR, - ACTIONS(8459), 1, + ACTIONS(5864), 1, anon_sym_AMP_AMP, - ACTIONS(8461), 1, + ACTIONS(5866), 1, anon_sym_AMP, - ACTIONS(8465), 1, - sym_ms_restrict_modifier, - STATE(1702), 1, - sym_alignas_qualifier, - STATE(3551), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(5872), 1, + anon_sym_LBRACK, + STATE(3100), 1, sym_parameter_list, - STATE(5308), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6109), 1, + STATE(5965), 1, + sym__scope_resolution, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6788), 1, + STATE(6413), 1, + sym__declarator, + STATE(6662), 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(4176), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4922), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5863), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(6099), 5, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(8380), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8378), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8463), 12, + STATE(6137), 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, + [131256] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8421), 1, + anon_sym_STAR, + ACTIONS(8423), 1, + anon_sym_AMP_AMP, + ACTIONS(8425), 1, + anon_sym_AMP, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6266), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8840), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4185), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4953), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6525), 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(3351), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -412529,60 +414191,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131143] = 21, + [131341] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(5652), 1, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8457), 1, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5030), 1, anon_sym_STAR, - ACTIONS(8459), 1, + ACTIONS(5032), 1, anon_sym_AMP_AMP, - ACTIONS(8461), 1, + ACTIONS(5034), 1, anon_sym_AMP, - ACTIONS(8465), 1, - sym_ms_restrict_modifier, - STATE(1702), 1, - sym_alignas_qualifier, - STATE(3551), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3134), 1, sym_parameter_list, - STATE(5308), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(6109), 1, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6790), 1, + STATE(6775), 1, sym__abstract_declarator, - ACTIONS(8467), 2, + ACTIONS(8171), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8469), 2, + ACTIONS(8173), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8471), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4924), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5081), 2, + STATE(3870), 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, + STATE(4975), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5860), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8463), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -412595,118 +414257,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131230] = 14, + [131428] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4924), 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(8401), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8403), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6518), 13, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(6536), 1, 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(6520), 14, - 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_QMARK, - anon_sym_LT_EQ_GT, - [131303] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1850), 1, - anon_sym_operator, - ACTIONS(8421), 1, + STATE(4315), 1, + sym_template_argument_list, + ACTIONS(4919), 2, anon_sym_LPAREN2, - ACTIONS(8473), 1, - sym_identifier, - ACTIONS(8475), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4922), 3, anon_sym_STAR, - ACTIONS(8477), 1, anon_sym_AMP_AMP, - ACTIONS(8479), 1, + anon_sym_SEMI, + ACTIONS(4915), 34, anon_sym_AMP, - 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_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, @@ -412719,7 +414304,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131388] = 20, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_operator, + [131489] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -412727,42 +414318,42 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_operator, ACTIONS(8419), 1, - sym_identifier, - ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(8423), 1, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, anon_sym_STAR, - ACTIONS(8425), 1, + ACTIONS(8431), 1, anon_sym_AMP_AMP, - ACTIONS(8427), 1, + ACTIONS(8433), 1, anon_sym_AMP, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6277), 1, + STATE(6763), 1, sym__field_declarator, - STATE(6445), 1, + STATE(6907), 1, sym_operator_name, - STATE(8851), 1, + STATE(8258), 1, sym_ms_based_modifier, - ACTIONS(3337), 2, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4192), 2, + STATE(3870), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4928), 2, + STATE(4954), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3335), 3, + ACTIONS(3347), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(6476), 7, + STATE(6525), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -412770,7 +414361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -412784,189 +414375,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [131473] = 11, + [131574] = 27, 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, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - STATE(2741), 1, - sym_decltype_auto, - STATE(4425), 1, - sym_new_declarator, - STATE(4893), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(5881), 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(6430), 1, anon_sym_DOT, - ACTIONS(5883), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(8469), 1, + anon_sym_SLASH, + ACTIONS(8471), 1, anon_sym_PIPE_PIPE, + ACTIONS(8473), 1, anon_sym_AMP_AMP, + ACTIONS(8477), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, anon_sym_LT_EQ_GT, + ACTIONS(8493), 1, anon_sym_or, + ACTIONS(8495), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(8497), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8499), 1, 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(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, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(7031), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8413), 2, + ACTIONS(8475), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8479), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8409), 3, + ACTIONS(8483), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 10, - 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, - sym_identifier, - ACTIONS(6520), 12, + ACTIONS(7033), 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_QMARK, - [131619] = 27, + [131673] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8469), 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, + ACTIONS(8471), 1, anon_sym_PIPE_PIPE, - ACTIONS(8435), 1, + ACTIONS(8473), 1, anon_sym_AMP_AMP, - ACTIONS(8439), 1, + ACTIONS(8477), 1, anon_sym_CARET, - ACTIONS(8443), 1, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8493), 1, anon_sym_or, - ACTIONS(8445), 1, + ACTIONS(8495), 1, anon_sym_and, - ACTIONS(8447), 1, + ACTIONS(8497), 1, anon_sym_xor, - STATE(2491), 1, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7019), 2, + ACTIONS(7035), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 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, + ACTIONS(8475), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(8441), 2, + ACTIONS(8479), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(8409), 3, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 7, + ACTIONS(7037), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -412974,679 +414519,338 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_QMARK, - [131718] = 15, + [131772] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8469), 1, anon_sym_SLASH, - ACTIONS(8415), 1, + ACTIONS(8471), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8473), 1, + anon_sym_AMP_AMP, + ACTIONS(8477), 1, + anon_sym_CARET, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + ACTIONS(8493), 1, + anon_sym_or, + ACTIONS(8495), 1, + anon_sym_and, + ACTIONS(8497), 1, + anon_sym_xor, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(6971), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8413), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6518), 13, - aux_sym_preproc_elif_token1, + ACTIONS(8475), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8479), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 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(6520), 13, + ACTIONS(6973), 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_QMARK, - [131793] = 27, + [131871] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8469), 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, + ACTIONS(8471), 1, anon_sym_PIPE_PIPE, - ACTIONS(8435), 1, + ACTIONS(8473), 1, anon_sym_AMP_AMP, - ACTIONS(8439), 1, + ACTIONS(8477), 1, anon_sym_CARET, - ACTIONS(8443), 1, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8489), 1, + anon_sym_QMARK, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8493), 1, anon_sym_or, - ACTIONS(8445), 1, + ACTIONS(8495), 1, anon_sym_and, - ACTIONS(8447), 1, + ACTIONS(8497), 1, anon_sym_xor, - STATE(2491), 1, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6985), 2, + ACTIONS(6710), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 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, + ACTIONS(8475), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(8441), 2, + ACTIONS(8479), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(8409), 3, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6987), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(6712), 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, - [131892] = 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(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(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - 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(8149), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4224), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4912), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [131979] = 11, + [131974] = 12, 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, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(8431), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - STATE(2741), 1, - sym_decltype_auto, - STATE(4426), 1, - sym_new_declarator, - STATE(4888), 2, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8469), 1, + anon_sym_SLASH, + STATE(2488), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(5853), 11, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6481), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5855), 23, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6483), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - 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, 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, - anon_sym_GT2, - [132046] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym_const, - 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(8489), 1, - anon_sym___asm, - STATE(3010), 1, - sym_parameter_list, - STATE(4036), 1, - sym_alignas_qualifier, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6204), 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), 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, - [132125] = 27, + [132043] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8469), 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, + ACTIONS(8473), 1, anon_sym_AMP_AMP, - ACTIONS(8439), 1, + ACTIONS(8477), 1, anon_sym_CARET, - ACTIONS(8443), 1, - anon_sym_or, - ACTIONS(8445), 1, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8495), 1, anon_sym_and, - ACTIONS(8447), 1, + ACTIONS(8497), 1, anon_sym_xor, - STATE(2491), 1, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6947), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 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, + ACTIONS(8475), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(8441), 2, + ACTIONS(8479), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(8409), 3, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6481), 3, + aux_sym_preproc_elif_token1, + anon_sym_or, + sym_identifier, + ACTIONS(8483), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6949), 7, + ACTIONS(6483), 8, 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, - [132224] = 20, - 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(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(6815), 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(4212), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4915), 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, - [132309] = 17, + [132138] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5879), 1, - anon_sym___asm, - ACTIONS(7065), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(6426), 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(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, - 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_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, - [132388] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LBRACE, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - STATE(3920), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6224), 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, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6226), 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, + ACTIONS(8469), 1, + anon_sym_SLASH, + ACTIONS(8477), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(8485), 1, 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, + ACTIONS(8491), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, + ACTIONS(8497), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(8499), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [132445] = 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(6229), 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(4933), 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, - [132530] = 13, - 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6518), 13, - aux_sym_preproc_elif_token1, + ACTIONS(8475), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8479), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6481), 4, + aux_sym_preproc_elif_token1, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, sym_identifier, - ACTIONS(6520), 16, + ACTIONS(6483), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -413655,55 +414859,65 @@ 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_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [132601] = 12, + [132229] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8469), 1, anon_sym_SLASH, - STATE(2491), 1, + ACTIONS(8477), 1, + anon_sym_CARET, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8497), 1, + anon_sym_xor, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 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, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(8467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8479), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(6481), 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(6520), 16, + ACTIONS(6483), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -413712,117 +414926,47 @@ 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_LT_LT, - anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [132670] = 17, - ACTIONS(3), 1, - sym_comment, - 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, - ACTIONS(8489), 1, - anon_sym___attribute, - STATE(2908), 1, - sym_parameter_list, - STATE(4036), 1, - sym_alignas_qualifier, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6139), 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), 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, - [132749] = 17, + [132318] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7885), 1, + ACTIONS(7896), 1, anon_sym_STAR, - ACTIONS(7887), 1, + ACTIONS(7898), 1, anon_sym_AMP_AMP, - ACTIONS(7889), 1, + ACTIONS(7900), 1, anon_sym_AMP, - ACTIONS(8455), 1, + ACTIONS(8503), 1, anon_sym___asm, - STATE(3010), 1, - sym_parameter_list, - STATE(4036), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(2945), 1, + sym_parameter_list, + STATE(5941), 1, sym__function_declarator_seq, STATE(6170), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8453), 11, + ACTIONS(8501), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -413830,8 +414974,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -413844,246 +414989,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [132828] = 17, + [132397] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym___asm, - ACTIONS(7065), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7885), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8469), 1, + anon_sym_SLASH, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8465), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8467), 2, anon_sym_STAR, - ACTIONS(7887), 1, - anon_sym_AMP_AMP, - ACTIONS(7889), 1, + anon_sym_PERCENT, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6481), 9, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, anon_sym_AMP, - STATE(3010), 1, - sym_parameter_list, - STATE(4036), 1, - sym_alignas_qualifier, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6171), 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(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, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [132907] = 20, - 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, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, sym_identifier, - ACTIONS(8475), 1, - anon_sym_STAR, - ACTIONS(8477), 1, + ACTIONS(6483), 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, - ACTIONS(8479), 1, - anon_sym_AMP, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - 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(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(4918), 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, - [132992] = 6, + anon_sym_CARET, + anon_sym_QMARK, + [132480] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_LBRACE, - ACTIONS(8177), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - STATE(3926), 2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8469), 1, + anon_sym_SLASH, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6309), 10, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(6311), 29, + ACTIONS(6481), 10, + 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, + sym_identifier, + ACTIONS(6483), 12, 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, 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, - [133049] = 25, + [132559] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8469), 1, anon_sym_SLASH, - ACTIONS(8411), 1, - anon_sym_GT_EQ, - ACTIONS(8415), 1, + ACTIONS(8491), 1, anon_sym_LT_EQ_GT, - ACTIONS(8417), 1, - anon_sym_not_eq, - ACTIONS(8435), 1, - anon_sym_AMP_AMP, - ACTIONS(8439), 1, - anon_sym_CARET, - ACTIONS(8445), 1, - anon_sym_and, - ACTIONS(8447), 1, - anon_sym_xor, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8413), 2, + ACTIONS(8487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8437), 2, + ACTIONS(6481), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(8441), 2, anon_sym_AMP, - 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6483), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -414091,15 +415169,41 @@ 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_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_QMARK, - [133144] = 3, + [132634] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 17, - aux_sym_preproc_elif_token1, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8469), 1, + anon_sym_SLASH, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(8467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6481), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -414111,18 +415215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, sym_identifier, - ACTIONS(6636), 26, + ACTIONS(6483), 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_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -414131,154 +415231,197 @@ 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, - [133195] = 29, + [132705] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8469), 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8407), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(8413), 2, + ACTIONS(8487), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8437), 2, + ACTIONS(6481), 13, + aux_sym_preproc_elif_token1, 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(6483), 14, + 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, - [133298] = 27, + anon_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, + anon_sym_LT_EQ_GT, + [132778] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8268), 1, + anon_sym___attribute, + ACTIONS(8505), 1, + sym_auto, + ACTIONS(8507), 1, + anon_sym_decltype, + STATE(3102), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(4999), 1, + sym_decltype_auto, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6429), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4328), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8266), 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(8169), 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, + [132863] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8469), 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, + ACTIONS(8471), 1, anon_sym_PIPE_PIPE, - ACTIONS(8435), 1, + ACTIONS(8473), 1, anon_sym_AMP_AMP, - ACTIONS(8439), 1, + ACTIONS(8477), 1, anon_sym_CARET, - ACTIONS(8443), 1, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8493), 1, anon_sym_or, - ACTIONS(8445), 1, + ACTIONS(8495), 1, anon_sym_and, - ACTIONS(8447), 1, + ACTIONS(8497), 1, anon_sym_xor, - STATE(2491), 1, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6993), 2, + ACTIONS(7009), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 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, + ACTIONS(8475), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(8441), 2, + ACTIONS(8479), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(8409), 3, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6995), 7, + ACTIONS(7011), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -414286,170 +415429,118 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_QMARK, - [133397] = 29, + [132962] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8469), 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, + ACTIONS(8471), 1, anon_sym_PIPE_PIPE, - ACTIONS(8435), 1, + ACTIONS(8473), 1, anon_sym_AMP_AMP, - ACTIONS(8439), 1, + ACTIONS(8477), 1, anon_sym_CARET, - ACTIONS(8443), 1, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8489), 1, + anon_sym_QMARK, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8493), 1, anon_sym_or, - ACTIONS(8445), 1, + ACTIONS(8495), 1, anon_sym_and, - ACTIONS(8447), 1, + ACTIONS(8497), 1, anon_sym_xor, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8451), 1, - anon_sym_QMARK, - STATE(2491), 1, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6989), 2, + ACTIONS(7013), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 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, + ACTIONS(8475), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(8441), 2, + ACTIONS(8479), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(8409), 3, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6991), 5, + ACTIONS(7015), 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, - ACTIONS(8498), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4205), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5057), 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(8495), 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(5055), 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, - [133559] = 17, + [133065] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, + ACTIONS(7876), 1, anon_sym_STAR, - ACTIONS(7852), 1, + ACTIONS(7878), 1, anon_sym_AMP_AMP, - ACTIONS(7854), 1, + ACTIONS(7880), 1, anon_sym_AMP, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8455), 1, + ACTIONS(8503), 1, anon_sym___attribute, - STATE(2908), 1, + STATE(2899), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6148), 1, + STATE(6145), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8453), 11, + ACTIONS(8501), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -414461,7 +415552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414474,192 +415565,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133638] = 24, + [133144] = 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, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(5861), 1, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8469), 1, + anon_sym_SLASH, + ACTIONS(8471), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8473), 1, + anon_sym_AMP_AMP, + ACTIONS(8477), 1, + anon_sym_CARET, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8493), 1, + anon_sym_or, + ACTIONS(8495), 1, + anon_sym_and, + ACTIONS(8497), 1, + anon_sym_xor, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7017), 2, + aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(5865), 1, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8465), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8467), 2, anon_sym_STAR, - ACTIONS(5867), 1, - anon_sym_AMP_AMP, - ACTIONS(5869), 1, + anon_sym_PERCENT, + ACTIONS(8475), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(8479), 2, 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_bitand, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7019), 7, + anon_sym_DOT_DOT_DOT, 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, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [133243] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - sym_ms_restrict_modifier, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, anon_sym_LPAREN2, - ACTIONS(5022), 1, + ACTIONS(8421), 1, anon_sym_STAR, - ACTIONS(5024), 1, + ACTIONS(8423), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(8425), 1, anon_sym_AMP, - ACTIONS(8147), 1, - anon_sym_LBRACK, - STATE(3113), 1, - sym_parameter_list, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6792), 1, - sym__abstract_declarator, - ACTIONS(8143), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(8145), 2, + STATE(6284), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8840), 1, + sym_ms_based_modifier, + ACTIONS(3349), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8149), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4211), 2, + STATE(4173), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4935), 2, + STATE(4959), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5863), 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, + ACTIONS(3347), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(6525), 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(3351), 13, 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, - [133818] = 17, - ACTIONS(3), 1, - sym_comment, - 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(8489), 1, - anon_sym___asm, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3006), 1, - sym_parameter_list, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6188), 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), 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, @@ -414671,128 +415702,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [133897] = 23, + [133328] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8405), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8469), 1, anon_sym_SLASH, - ACTIONS(8411), 1, + ACTIONS(8471), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8473), 1, + anon_sym_AMP_AMP, + ACTIONS(8477), 1, + anon_sym_CARET, + ACTIONS(8485), 1, anon_sym_GT_EQ, - ACTIONS(8415), 1, + ACTIONS(8489), 1, + anon_sym_QMARK, + ACTIONS(8491), 1, anon_sym_LT_EQ_GT, - ACTIONS(8417), 1, - anon_sym_not_eq, - ACTIONS(8439), 1, - anon_sym_CARET, - ACTIONS(8447), 1, + ACTIONS(8493), 1, + anon_sym_or, + ACTIONS(8495), 1, + anon_sym_and, + ACTIONS(8497), 1, anon_sym_xor, - STATE(2491), 1, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(7021), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + ACTIONS(8465), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 2, + ACTIONS(8467), 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, + ACTIONS(8475), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(8441), 2, + ACTIONS(8479), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(8409), 3, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 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, + ACTIONS(7023), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + [133431] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(3887), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6307), 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(6309), 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, - [133988] = 21, + anon_sym_LT_EQ_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, + [133488] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(5022), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7905), 1, anon_sym_STAR, - ACTIONS(5024), 1, + ACTIONS(7907), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(7909), 1, anon_sym_AMP, - ACTIONS(8147), 1, - anon_sym_LBRACK, - STATE(3113), 1, + ACTIONS(8503), 1, + anon_sym___asm, + STATE(2947), 1, sym_parameter_list, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6754), 1, + STATE(6180), 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, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4911), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5877), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6099), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8501), 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(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414805,60 +415889,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134075] = 20, + [133567] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1850), 1, - anon_sym_operator, - ACTIONS(8421), 1, + ACTIONS(5868), 1, + anon_sym___asm, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(8473), 1, - sym_identifier, - ACTIONS(8475), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7905), 1, anon_sym_STAR, - ACTIONS(8477), 1, + ACTIONS(7907), 1, anon_sym_AMP_AMP, - ACTIONS(8479), 1, + ACTIONS(7909), 1, anon_sym_AMP, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(2947), 1, + sym_parameter_list, + STATE(4041), 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, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6182), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4917), 2, + STATE(3776), 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, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 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(7072), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -414870,59 +415951,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134160] = 20, + [133646] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(8135), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7905), 1, anon_sym_STAR, - ACTIONS(8137), 1, + ACTIONS(7907), 1, anon_sym_AMP_AMP, - ACTIONS(8139), 1, + ACTIONS(7909), 1, anon_sym_AMP, - 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, + ACTIONS(8437), 1, + anon_sym___asm, + STATE(2947), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(4985), 1, - sym_decltype_auto, - STATE(6109), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6413), 1, + STATE(6183), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4329), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8221), 8, + ACTIONS(8435), 11, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + 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_GT2, anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414935,46 +416013,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134245] = 17, + [133725] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(5879), 1, + ACTIONS(6765), 1, anon_sym___asm, - ACTIONS(7848), 1, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7866), 1, + ACTIONS(7905), 1, anon_sym_STAR, - ACTIONS(7868), 1, + ACTIONS(7907), 1, anon_sym_AMP_AMP, - ACTIONS(7870), 1, + ACTIONS(7909), 1, anon_sym_AMP, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3006), 1, + STATE(2947), 1, sym_parameter_list, - STATE(5953), 1, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6096), 1, + STATE(6185), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5877), 11, + ACTIONS(6763), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -414982,9 +416061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(7297), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -414997,47 +416075,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134324] = 7, + [133804] = 20, ACTIONS(3), 1, sym_comment, - STATE(4325), 1, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8251), 1, + anon_sym___attribute, + ACTIONS(8505), 1, + sym_auto, + ACTIONS(8507), 1, + anon_sym_decltype, + STATE(3102), 1, + sym_parameter_list, + STATE(4359), 1, sym_alignas_qualifier, - ACTIONS(8508), 2, + STATE(4999), 1, + sym_decltype_auto, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6419), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4370), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - 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, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8249), 8, 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___attribute__, anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - ACTIONS(8505), 13, + anon_sym_requires, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -415049,84 +416140,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134383] = 22, + [133889] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(3869), 1, + anon_sym_LBRACE, + ACTIONS(6811), 1, + sym_auto, + ACTIONS(6813), 1, + anon_sym_decltype, + ACTIONS(8455), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8457), 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(8439), 1, - anon_sym_CARET, - ACTIONS(8447), 1, - anon_sym_xor, - STATE(2491), 1, + STATE(2719), 1, + sym_decltype_auto, + STATE(4473), 1, + sym_new_declarator, + STATE(4885), 2, 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, + sym_initializer_list, + ACTIONS(5885), 11, 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(8441), 2, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(8409), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6518), 6, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - sym_identifier, - ACTIONS(6520), 9, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5887), 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_STAR, + 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, - [134472] = 6, + anon_sym_LT_EQ_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, + [133956] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5868), 1, + anon_sym___attribute, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7876), 1, + anon_sym_STAR, + ACTIONS(7878), 1, + anon_sym_AMP_AMP, + ACTIONS(7880), 1, + anon_sym_AMP, + ACTIONS(7888), 1, + anon_sym_LBRACK, + STATE(2899), 1, + sym_parameter_list, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6148), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3776), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 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(7072), 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, + [134035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - STATE(3952), 2, + STATE(3886), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6283), 10, + ACTIONS(6242), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -415137,7 +416279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(6285), 29, + ACTIONS(6244), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -415167,49 +416309,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [134529] = 19, + [134092] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8151), 1, + ACTIONS(7876), 1, anon_sym_STAR, - ACTIONS(8153), 1, + ACTIONS(7878), 1, anon_sym_AMP_AMP, - ACTIONS(8155), 1, + ACTIONS(7880), 1, anon_sym_AMP, - ACTIONS(8217), 1, - sym_auto, - ACTIONS(8219), 1, - anon_sym_decltype, - STATE(2963), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8437), 1, + anon_sym___attribute, + STATE(2899), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(4730), 1, - sym_decltype_auto, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6409), 1, + STATE(6149), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4360), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8213), 9, + ACTIONS(8435), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -415218,7 +416358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415231,82 +416371,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134612] = 20, + [134171] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8175), 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, - ACTIONS(8403), 2, + ACTIONS(8509), 1, 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, - sym_identifier, - 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, + ACTIONS(8511), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [134697] = 6, + ACTIONS(8513), 1, + anon_sym_AMP, + STATE(3116), 1, + sym_parameter_list, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6765), 1, + sym__abstract_declarator, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4932), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5860), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 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, + [134258] = 3, 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, + ACTIONS(6702), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -415315,12 +416450,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(6264), 29, + sym_identifier, + ACTIONS(6704), 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, @@ -415331,60 +416476,53 @@ 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_COLON, 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, - [134754] = 17, + [134309] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, + ACTIONS(6765), 1, anon_sym___attribute, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7850), 1, + ACTIONS(7876), 1, anon_sym_STAR, - ACTIONS(7852), 1, + ACTIONS(7878), 1, anon_sym_AMP_AMP, - ACTIONS(7854), 1, + ACTIONS(7880), 1, anon_sym_AMP, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - STATE(2908), 1, + STATE(2899), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6151), 1, + STATE(6150), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6781), 11, + ACTIONS(6763), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -415396,7 +416534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415409,134 +416547,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [134833] = 29, + [134388] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(3869), 1, + anon_sym_LBRACE, + ACTIONS(6811), 1, + sym_auto, + ACTIONS(6813), 1, + anon_sym_decltype, + ACTIONS(8455), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8457), 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, + STATE(2719), 1, + sym_decltype_auto, + STATE(4445), 1, + sym_new_declarator, + STATE(4887), 2, sym_argument_list, - STATE(2492), 1, - sym_subscript_argument_list, - ACTIONS(6420), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(6997), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8401), 2, + sym_initializer_list, + ACTIONS(5881), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8403), 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(8407), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8441), 2, - anon_sym_AMP, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8409), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - 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, - [134936] = 20, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [134455] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - 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, - 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, + STATE(4387), 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, + ACTIONS(8518), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4327), 2, + STATE(4228), 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, + ACTIONS(5062), 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(8141), 12, + ACTIONS(8515), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -415548,123 +416639,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135021] = 21, + ACTIONS(5060), 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, + [134514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - sym_ms_restrict_modifier, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(6606), 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(6608), 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, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8481), 1, anon_sym_STAR, - ACTIONS(8483), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8485), 1, - anon_sym_AMP, - STATE(3021), 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(6819), 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(4914), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5877), 4, - anon_sym_SEMI, + 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, + [134565] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3869), 1, 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, - [135108] = 19, + ACTIONS(6811), 1, + sym_auto, + ACTIONS(6813), 1, + anon_sym_decltype, + ACTIONS(8455), 1, + anon_sym_LPAREN2, + ACTIONS(8457), 1, + anon_sym_LBRACK, + STATE(2719), 1, + sym_decltype_auto, + STATE(4418), 1, + sym_new_declarator, + STATE(4879), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(5874), 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(5876), 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, + anon_sym_GT2, + [134632] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8183), 1, + ACTIONS(8157), 1, anon_sym_STAR, - ACTIONS(8185), 1, + ACTIONS(8159), 1, anon_sym_AMP_AMP, - ACTIONS(8187), 1, + ACTIONS(8161), 1, anon_sym_AMP, - ACTIONS(8242), 1, + ACTIONS(8253), 1, sym_auto, - ACTIONS(8244), 1, + ACTIONS(8255), 1, anon_sym_decltype, - STATE(1680), 1, + STATE(2934), 1, + sym_parameter_list, + STATE(4041), 1, sym_alignas_qualifier, - STATE(2483), 1, + STATE(4676), 1, sym_decltype_auto, - STATE(3077), 1, - sym_parameter_list, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6513), 1, + STATE(6435), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4385), 2, + STATE(4379), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 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, + ACTIONS(8266), 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(7297), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415677,26 +416823,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135190] = 8, + [134715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - STATE(1680), 1, + STATE(4359), 1, sym_alignas_qualifier, - ACTIONS(7304), 2, + ACTIONS(8524), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8513), 4, + ACTIONS(5060), 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(5062), 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___asm, - ACTIONS(7297), 12, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(8521), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -415708,78 +416875,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8511), 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, - [135250] = 19, + [134774] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8183), 1, + ACTIONS(8157), 1, anon_sym_STAR, - ACTIONS(8185), 1, + ACTIONS(8159), 1, anon_sym_AMP_AMP, - ACTIONS(8187), 1, + ACTIONS(8161), 1, anon_sym_AMP, - ACTIONS(8242), 1, + ACTIONS(8253), 1, sym_auto, - ACTIONS(8244), 1, + ACTIONS(8255), 1, anon_sym_decltype, - STATE(1680), 1, + STATE(2934), 1, + sym_parameter_list, + STATE(4041), 1, sym_alignas_qualifier, - STATE(2483), 1, + STATE(4676), 1, sym_decltype_auto, - STATE(3077), 1, - sym_parameter_list, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6470), 1, + STATE(6425), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4435), 2, + STATE(4339), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 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, + ACTIONS(8249), 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(7297), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415792,30 +416939,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135332] = 3, + [134857] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6496), 37, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8509), 1, + anon_sym_STAR, + ACTIONS(8511), 1, anon_sym_AMP_AMP, + ACTIONS(8513), 1, + anon_sym_AMP, + STATE(3116), 1, + sym_parameter_list, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6827), 1, + sym__abstract_declarator, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4224), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4923), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5889), 4, 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_try, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -415827,71 +417005,60 @@ 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, - [135382] = 21, + [134944] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, + ACTIONS(3347), 1, sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8515), 1, + ACTIONS(5030), 1, anon_sym_STAR, - ACTIONS(8517), 1, + ACTIONS(5032), 1, anon_sym_AMP_AMP, - ACTIONS(8519), 1, + ACTIONS(5034), 1, anon_sym_AMP, - STATE(3195), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3134), 1, sym_parameter_list, - STATE(4069), 1, + STATE(4104), 1, sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6880), 1, + STATE(6810), 1, sym__abstract_declarator, - ACTIONS(8143), 2, + ACTIONS(8171), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(8145), 2, + ACTIONS(8173), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4232), 2, + STATE(4190), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(4976), 2, + STATE(4958), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5863), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(5889), 4, anon_sym_COMMA, - anon_sym_GT2, - STATE(6099), 5, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -415904,112 +417071,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135468] = 31, + [135031] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8469), 1, + anon_sym_SLASH, + ACTIONS(8485), 1, + anon_sym_GT_EQ, + ACTIONS(8491), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8499), 1, + anon_sym_not_eq, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8465), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8467), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8479), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(8481), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8487), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8483), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6481), 7, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + sym_identifier, + ACTIONS(6483), 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, + [135116] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8521), 1, - anon_sym_COMMA, ACTIONS(8527), 1, - anon_sym_SLASH, + anon_sym_COMMA, ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, anon_sym_PIPE, - ACTIONS(8537), 1, - anon_sym_AMP, ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8547), 1, + ACTIONS(8553), 1, anon_sym_SEMI, - ACTIONS(8549), 1, + ACTIONS(8555), 1, anon_sym_QMARK, - ACTIONS(8551), 1, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8559), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(6892), 1, + STATE(6937), 1, aux_sym_field_declaration_repeat1, - STATE(8187), 1, + STATE(8223), 1, sym_attribute_specifier, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8529), 2, + ACTIONS(8535), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [135574] = 10, + [135222] = 5, ACTIONS(3), 1, sym_comment, - 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(2458), 1, - sym_attribute_specifier, - STATE(3546), 1, - sym__enum_base_clause, - STATE(3670), 1, - sym_enumerator_list, - ACTIONS(6393), 4, + STATE(4260), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8563), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5807), 5, anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6395), 31, + ACTIONS(5809), 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, @@ -416030,62 +417258,57 @@ 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, - [135638] = 21, + [135276] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8515), 1, + ACTIONS(7989), 1, anon_sym_STAR, - ACTIONS(8517), 1, + ACTIONS(7991), 1, anon_sym_AMP_AMP, - ACTIONS(8519), 1, + ACTIONS(7993), 1, anon_sym_AMP, - STATE(3195), 1, - sym_parameter_list, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + ACTIONS(8503), 1, + anon_sym___asm, + STATE(1693), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(3164), 1, + sym_parameter_list, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6834), 1, + STATE(6241), 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, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(4977), 2, + STATE(1666), 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, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8501), 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(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -416098,38 +417321,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135724] = 10, + [135354] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(8567), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8565), 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___asm, - ACTIONS(6318), 31, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [135404] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5539), 5, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + ACTIONS(5537), 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, @@ -416143,59 +417411,61 @@ static const uint16_t ts_small_parse_table[] = { 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, - [135788] = 11, + anon_sym_template, + anon_sym_operator, + [135456] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 1, - sym_identifier, - ACTIONS(5736), 1, - sym_primitive_type, - STATE(1702), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5868), 1, + anon_sym___asm, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7989), 1, + anon_sym_STAR, + ACTIONS(7991), 1, + anon_sym_AMP_AMP, + ACTIONS(7993), 1, + anon_sym_AMP, + STATE(1693), 1, sym_alignas_qualifier, - STATE(4384), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8564), 2, + STATE(3164), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6243), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4242), 2, + STATE(1666), 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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5094), 9, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 10, 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_LBRACK, - ACTIONS(8559), 13, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7143), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -416207,108 +417477,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [135854] = 31, + [135534] = 8, 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(8567), 1, - anon_sym_SEMI, - STATE(2491), 1, - sym_argument_list, - STATE(2492), 1, - sym_subscript_argument_list, - STATE(6883), 1, - aux_sym_field_declaration_repeat1, - STATE(8107), 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, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8569), 1, anon_sym_LT, - [135960] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4264), 1, + STATE(4417), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8569), 4, + STATE(4428), 1, + sym_template_argument_list, + ACTIONS(4159), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8571), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5968), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5966), 32, + ACTIONS(4166), 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, @@ -416323,42 +417522,63 @@ 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, - [136014] = 5, + [135594] = 17, ACTIONS(3), 1, sym_comment, - STATE(4248), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8571), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5515), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(67), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(5517), 32, - anon_sym_COMMA, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7989), 1, anon_sym_STAR, + ACTIONS(7991), 1, anon_sym_AMP_AMP, + ACTIONS(7993), 1, + anon_sym_AMP, + ACTIONS(8437), 1, + anon_sym___asm, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3164), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6244), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8435), 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(7143), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -416370,63 +417590,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, - [136068] = 15, + [135672] = 17, 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(6742), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(7304), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(6744), 3, + ACTIONS(6765), 1, + anon_sym___asm, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7989), 1, anon_sym_STAR, + ACTIONS(7991), 1, anon_sym_AMP_AMP, - STATE(4240), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + ACTIONS(7993), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3164), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6245), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, 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, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6763), 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(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -416439,34 +417651,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136142] = 5, + [135750] = 8, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(67), 1, + anon_sym_const, + STATE(1693), 1, + sym_alignas_qualifier, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8272), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, - anon_sym_const, anon_sym___asm, - ACTIONS(5885), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7143), 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, @@ -416478,46 +417682,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(8270), 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__, - 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, - [136196] = 15, + [135810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7742), 1, - anon_sym_const, - ACTIONS(7748), 1, - anon_sym___inline, - ACTIONS(7751), 1, + ACTIONS(7060), 1, + sym_literal_suffix, + ACTIONS(4168), 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(4161), 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, + [135862] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(8580), 1, - anon_sym_virtual, - ACTIONS(8586), 1, - anon_sym___attribute__, - ACTIONS(8589), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8592), 1, + ACTIONS(63), 1, + anon_sym___inline, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8282), 1, anon_sym___declspec, - STATE(1680), 1, + ACTIONS(8573), 1, + anon_sym_virtual, + STATE(1693), 1, sym_alignas_qualifier, - ACTIONS(6749), 2, + ACTIONS(6744), 2, anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(8595), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6751), 3, + ACTIONS(6746), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - STATE(4240), 7, + STATE(4275), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -416525,56 +417788,17 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(8583), 8, + ACTIONS(8280), 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(8577), 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, - [136270] = 5, - ACTIONS(3), 1, - sym_comment, - 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(5972), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + ACTIONS(7143), 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, @@ -416586,39 +417810,29 @@ 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, - [136324] = 11, + [135936] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, + ACTIONS(5772), 1, sym_identifier, - ACTIONS(5674), 1, + ACTIONS(5776), 1, sym_primitive_type, - STATE(1702), 1, + STATE(1719), 1, sym_alignas_qualifier, - STATE(1938), 1, + STATE(1991), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8603), 2, + ACTIONS(8578), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1676), 2, + STATE(1684), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5672), 4, + ACTIONS(5774), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5111), 8, + ACTIONS(5104), 8, anon_sym_AMP, anon_sym___attribute__, anon_sym___attribute, @@ -416627,7 +417841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5109), 9, + ACTIONS(5102), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -416637,7 +417851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(8600), 13, + ACTIONS(8575), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -416651,36 +417865,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136390] = 4, + [136002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8608), 1, + ACTIONS(6418), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6420), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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(8606), 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_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, 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_RBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -416694,38 +417902,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [136442] = 5, + 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, + [136052] = 8, ACTIONS(3), 1, sym_comment, - STATE(4248), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + STATE(4417), 1, aux_sym_sized_type_specifier_repeat1, + ACTIONS(6066), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, ACTIONS(8571), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5776), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5778), 32, + ACTIONS(6068), 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, @@ -416740,42 +417957,110 @@ 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, - [136496] = 5, + [136112] = 5, ACTIONS(3), 1, sym_comment, - 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(5988), 5, + ACTIONS(8581), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8583), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6261), 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_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5986), 32, + anon_sym_DOT, + ACTIONS(6263), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_AMP_AMP, + 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___extension__, 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, + [136166] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(63), 1, + anon_sym___inline, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8282), 1, + anon_sym___declspec, + ACTIONS(8573), 1, + anon_sym_virtual, + STATE(1693), 1, + sym_alignas_qualifier, + ACTIONS(6757), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(6759), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(4275), 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(8280), 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(7143), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -416787,66 +418072,150 @@ 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, - [136550] = 17, + [136240] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(7967), 1, + ACTIONS(8585), 1, anon_sym_STAR, - ACTIONS(7969), 1, + ACTIONS(8587), 1, anon_sym_AMP_AMP, - ACTIONS(7971), 1, + ACTIONS(8589), 1, anon_sym_AMP, - ACTIONS(8489), 1, - anon_sym___asm, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3110), 1, + STATE(3239), 1, sym_parameter_list, - STATE(5953), 1, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6239), 1, + STATE(6852), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4281), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4990), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + ACTIONS(5889), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8487), 10, + ACTIONS(8169), 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, + [136326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6520), 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, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - ACTIONS(7297), 12, + [136376] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8591), 1, + anon_sym_COLON, + STATE(2472), 1, + sym_attribute_specifier, + STATE(3561), 1, + sym__enum_base_clause, + STATE(3682), 1, + sym_enumerator_list, + ACTIONS(6346), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6348), 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_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -416858,33 +418227,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [136628] = 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, + [136440] = 10, ACTIONS(3), 1, sym_comment, - STATE(4255), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8614), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5935), 5, - anon_sym_AMP, + ACTIONS(43), 1, anon_sym___attribute, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8591), 1, + anon_sym_COLON, + STATE(2569), 1, + sym_attribute_specifier, + STATE(3562), 1, + sym__enum_base_clause, + STATE(3686), 1, + sym_enumerator_list, + ACTIONS(6352), 4, + anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5933), 32, + ACTIONS(6354), 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, @@ -416905,25 +418289,26 @@ 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, - [136682] = 5, + [136504] = 5, ACTIONS(3), 1, sym_comment, - STATE(4160), 1, + STATE(4136), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8612), 4, + ACTIONS(8593), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5921), 5, + ACTIONS(5935), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5919), 32, + ACTIONS(5933), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -416956,37 +418341,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [136736] = 8, + [136558] = 5, 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(4388), 1, + STATE(4260), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(6058), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(8616), 4, + ACTIONS(8563), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6060), 31, + ACTIONS(5537), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5539), 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_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -417001,30 +418382,31 @@ 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, - [136796] = 5, + [136612] = 5, ACTIONS(3), 1, sym_comment, - STATE(4160), 1, + STATE(4136), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8612), 4, + ACTIONS(8593), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5931), 5, + ACTIONS(5986), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5929), 32, + ACTIONS(5984), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -417057,60 +418439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [136850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7081), 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(7083), 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, - [136900] = 4, + [136666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8618), 2, + ACTIONS(8583), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6248), 10, + ACTIONS(6315), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -417121,7 +418456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(6250), 30, + ACTIONS(6317), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -417152,119 +418487,23 @@ static const uint16_t ts_small_parse_table[] = { 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___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, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [137056] = 5, + [136718] = 5, ACTIONS(3), 1, sym_comment, - STATE(4160), 1, + STATE(4136), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8612), 4, + ACTIONS(8593), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5913), 5, + ACTIONS(5899), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5911), 32, + ACTIONS(5897), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -417297,55 +418536,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [137110] = 17, + [136772] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, + anon_sym_PIPE, + ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, + anon_sym_GT_EQ, + ACTIONS(8555), 1, + anon_sym_QMARK, + ACTIONS(8557), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8559), 1, + anon_sym_bitor, + ACTIONS(8561), 1, + anon_sym_bitand, + ACTIONS(8595), 1, + anon_sym_SEMI, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(6935), 1, + aux_sym_field_declaration_repeat1, + STATE(8309), 1, + sym_attribute_specifier, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8529), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8531), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8537), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8541), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8547), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [136878] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(5879), 1, - anon_sym___asm, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7967), 1, + ACTIONS(8223), 1, anon_sym_STAR, - ACTIONS(7969), 1, + ACTIONS(8225), 1, anon_sym_AMP_AMP, - ACTIONS(7971), 1, + ACTIONS(8227), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3110), 1, + STATE(2549), 1, + sym_decltype_auto, + STATE(3045), 1, sym_parameter_list, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6241), 1, + STATE(6531), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4438), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 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, + ACTIONS(8249), 8, + anon_sym_RPAREN, 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, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -417358,23 +418674,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137188] = 5, + [136960] = 5, ACTIONS(3), 1, sym_comment, - STATE(4160), 1, + STATE(4136), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8612), 4, + ACTIONS(8593), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5893), 5, + ACTIONS(5931), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5891), 32, + ACTIONS(5929), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -417407,36 +418723,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [137242] = 4, + [137014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5517), 5, + STATE(4276), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8597), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5919), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5917), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - ACTIONS(5515), 36, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, 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, + [137068] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, + anon_sym_PIPE, + ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, + anon_sym_GT_EQ, + ACTIONS(8555), 1, + anon_sym_QMARK, + ACTIONS(8557), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8559), 1, + anon_sym_bitor, + ACTIONS(8561), 1, + anon_sym_bitand, + ACTIONS(8599), 1, + anon_sym_SEMI, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(6942), 1, + aux_sym_field_declaration_repeat1, + STATE(8255), 1, + sym_attribute_specifier, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8529), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8531), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8537), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8541), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8547), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [137174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6522), 5, + anon_sym_AMP, 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___asm, + ACTIONS(6524), 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, @@ -417450,28 +418884,33 @@ 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_template, - anon_sym_operator, - [137294] = 5, + 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, + [137224] = 5, ACTIONS(3), 1, sym_comment, - STATE(4160), 1, + STATE(4277), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8612), 4, + ACTIONS(8601), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5953), 5, + ACTIONS(5925), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5951), 32, + ACTIONS(5923), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -417504,56 +418943,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [137348] = 17, + [137278] = 11, ACTIONS(3), 1, sym_comment, - 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(8455), 1, - anon_sym___asm, - STATE(1680), 1, + ACTIONS(5782), 1, + sym_identifier, + ACTIONS(5786), 1, + sym_primitive_type, + STATE(1719), 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, + STATE(4392), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8608), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4249), 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__, + ACTIONS(8606), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5125), 8, + 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(7297), 12, + ACTIONS(5123), 9, + 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(8603), 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, + [137344] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8613), 1, + anon_sym_LPAREN2, + ACTIONS(8615), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + ACTIONS(8611), 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, @@ -417565,55 +419039,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137426] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [137396] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(67), 1, anon_sym_const, - ACTIONS(6783), 1, - anon_sym___asm, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7967), 1, + ACTIONS(8223), 1, anon_sym_STAR, - ACTIONS(7969), 1, + ACTIONS(8225), 1, anon_sym_AMP_AMP, - ACTIONS(7971), 1, + ACTIONS(8227), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3110), 1, + STATE(2549), 1, + sym_decltype_auto, + STATE(3045), 1, sym_parameter_list, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6243), 1, + STATE(6505), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4411), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 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, + ACTIONS(8266), 8, + anon_sym_RPAREN, 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, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -417626,30 +419109,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137504] = 3, + [137478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6502), 5, + ACTIONS(7062), 18, + 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_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6504), 37, + 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(7064), 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_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, + [137528] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + STATE(1693), 1, + sym_alignas_qualifier, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8619), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7143), 12, 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, @@ -417661,8 +419187,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(8617), 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, @@ -417673,36 +419208,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [137554] = 15, + [137588] = 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, + ACTIONS(7799), 1, anon_sym_const, - ACTIONS(7299), 1, + ACTIONS(7805), 1, + anon_sym___inline, + ACTIONS(7808), 1, + anon_sym___attribute, + ACTIONS(8624), 1, + anon_sym_virtual, + ACTIONS(8630), 1, anon_sym___attribute__, - ACTIONS(8350), 1, + ACTIONS(8633), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8636), 1, anon_sym___declspec, - ACTIONS(8573), 1, - anon_sym_virtual, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - ACTIONS(6734), 2, + ACTIONS(6767), 2, anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(7304), 2, + ACTIONS(8639), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(6736), 3, + ACTIONS(6769), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - STATE(4240), 7, + STATE(4275), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -417710,7 +419245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(8348), 8, + ACTIONS(8627), 8, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -417719,7 +419254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(7297), 12, + ACTIONS(8621), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -417732,23 +419267,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [137628] = 5, + [137662] = 5, ACTIONS(3), 1, sym_comment, - STATE(4160), 1, + STATE(4136), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(8612), 4, + ACTIONS(8593), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5980), 5, + ACTIONS(5958), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5978), 32, + ACTIONS(5956), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -417781,26 +419316,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [137682] = 8, + [137716] = 5, 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(8248), 4, + STATE(4136), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8593), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, + anon_sym_const, anon_sym___asm, - ACTIONS(7297), 12, + ACTIONS(5960), 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, @@ -417812,116 +419355,36 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [137770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6506), 5, + STATE(4265), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8642), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5966), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6508), 37, - anon_sym_DOT_DOT_DOT, + ACTIONS(5964), 32, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, @@ -417929,8 +419392,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, @@ -417947,45 +419408,39 @@ 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, - [137898] = 8, + [137824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(8628), 1, - anon_sym_LT, - STATE(4388), 1, + STATE(4258), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4456), 1, - sym_template_argument_list, - ACTIONS(4164), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(8616), 4, + ACTIONS(8644), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4172), 31, + ACTIONS(5976), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5974), 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_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -418000,96 +419455,41 @@ 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, - [137958] = 4, + [137878] = 5, ACTIONS(3), 1, sym_comment, - 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, + STATE(4136), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8593), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5982), 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, - ACTIONS(4166), 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, - [138010] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(7283), 1, - anon_sym___attribute__, - ACTIONS(7285), 1, anon_sym___attribute, - 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, - ACTIONS(5557), 4, - anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5559), 27, + ACTIONS(5980), 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, @@ -418108,59 +419508,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_try, anon_sym_requires, - [138077] = 20, + [137932] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6805), 1, - sym_auto, - ACTIONS(6807), 1, - anon_sym_decltype, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8215), 1, - anon_sym___attribute, - ACTIONS(8250), 1, + ACTIONS(8585), 1, anon_sym_STAR, - ACTIONS(8252), 1, + ACTIONS(8587), 1, anon_sym_AMP_AMP, - ACTIONS(8254), 1, + ACTIONS(8589), 1, anon_sym_AMP, - STATE(2741), 1, - sym_decltype_auto, - STATE(3371), 1, + STATE(3239), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6562), 1, + STATE(6856), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4609), 2, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(4994), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + ACTIONS(5860), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6117), 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_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -418173,57 +419577,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138160] = 20, + [138018] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(8646), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8648), 1, + anon_sym_AMP_AMP, + ACTIONS(8650), 1, + anon_sym_or, + ACTIONS(8652), 1, + anon_sym_and, + ACTIONS(6261), 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(6263), 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, - ACTIONS(8147), 1, + 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, - ACTIONS(8179), 1, - sym_auto, - ACTIONS(8181), 1, - anon_sym_decltype, - ACTIONS(8223), 1, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [138075] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(5868), 1, anon_sym___attribute, - ACTIONS(8236), 1, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8066), 1, anon_sym_STAR, - ACTIONS(8238), 1, + ACTIONS(8068), 1, anon_sym_AMP_AMP, - ACTIONS(8240), 1, + ACTIONS(8070), 1, anon_sym_AMP, - STATE(1864), 1, - sym_decltype_auto, - STATE(3378), 1, - sym_parameter_list, - STATE(4325), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(3079), 1, + sym_parameter_list, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6586), 1, + STATE(6363), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4515), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8221), 6, + ACTIONS(5860), 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(8141), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -418236,57 +419687,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138243] = 20, + [138152] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8179), 1, + ACTIONS(8195), 1, sym_auto, - ACTIONS(8181), 1, + ACTIONS(8197), 1, anon_sym_decltype, - ACTIONS(8215), 1, - anon_sym___attribute, - ACTIONS(8236), 1, + ACTIONS(8235), 1, anon_sym_STAR, - ACTIONS(8238), 1, + ACTIONS(8237), 1, anon_sym_AMP_AMP, - ACTIONS(8240), 1, + ACTIONS(8239), 1, anon_sym_AMP, - STATE(1864), 1, + ACTIONS(8251), 1, + anon_sym___attribute, + STATE(1883), 1, sym_decltype_auto, - STATE(3378), 1, + STATE(3283), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6582), 1, + STATE(6624), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4636), 2, + STATE(4510), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8213), 6, + ACTIONS(8249), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -418299,10 +419750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138326] = 3, + [138235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 12, + ACTIONS(5162), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -418315,7 +419766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5172), 29, + ACTIONS(5164), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -418345,49 +419796,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [138375] = 11, + [138284] = 21, 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, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8654), 1, anon_sym_STAR, + ACTIONS(8656), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(5111), 8, + ACTIONS(8658), 1, anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, + STATE(3432), 1, + sym_parameter_list, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6940), 1, + sym__abstract_declarator, + ACTIONS(5860), 2, + anon_sym_LBRACE, anon_sym_requires, - ACTIONS(8632), 13, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3870), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5035), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -418399,104 +419860,57 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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(7083), 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, - [138489] = 21, + [138369] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(6811), 1, + sym_auto, + ACTIONS(6813), 1, + anon_sym_decltype, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8638), 1, + ACTIONS(8243), 1, anon_sym_STAR, - ACTIONS(8640), 1, + ACTIONS(8245), 1, anon_sym_AMP_AMP, - ACTIONS(8642), 1, + ACTIONS(8247), 1, anon_sym_AMP, - STATE(3510), 1, + ACTIONS(8268), 1, + anon_sym___attribute, + STATE(2719), 1, + sym_decltype_auto, + STATE(3282), 1, sym_parameter_list, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6924), 1, + STATE(6639), 1, sym__abstract_declarator, - 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, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4278), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5040), 2, + STATE(4505), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8266), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -418509,58 +419923,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138574] = 21, + [138452] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 1, - sym_ms_restrict_modifier, - ACTIONS(3339), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8638), 1, + ACTIONS(8066), 1, anon_sym_STAR, - ACTIONS(8640), 1, + ACTIONS(8068), 1, anon_sym_AMP_AMP, - ACTIONS(8642), 1, + ACTIONS(8070), 1, anon_sym_AMP, - STATE(3510), 1, - sym_parameter_list, - STATE(4069), 1, - sym_ms_unaligned_ptr_modifier, - STATE(4325), 1, + ACTIONS(8437), 1, + anon_sym___attribute, + STATE(1693), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(3079), 1, + sym_parameter_list, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6900), 1, + STATE(6364), 1, sym__abstract_declarator, - ACTIONS(5877), 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, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3962), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5030), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8435), 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(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -418573,58 +419983,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [138659] = 5, + [138529] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8644), 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(3007), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(5872), 1, + anon_sym_LBRACK, + ACTIONS(6008), 1, + anon_sym_STAR, + ACTIONS(6010), 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, + ACTIONS(6012), 1, 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, + STATE(3343), 1, + sym_parameter_list, + STATE(5965), 1, + sym__scope_resolution, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6413), 1, + sym__declarator, + STATE(6770), 1, + sym__abstract_declarator, + STATE(8310), 1, + sym_ms_based_modifier, + ACTIONS(8378), 2, 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, + ACTIONS(8380), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6137), 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, + [138620] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(6765), 1, + anon_sym___attribute, + ACTIONS(7874), 1, 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, + ACTIONS(7888), 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, - [138712] = 3, + ACTIONS(8066), 1, + anon_sym_STAR, + ACTIONS(8068), 1, + anon_sym_AMP_AMP, + ACTIONS(8070), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3079), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6365), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6763), 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(7143), 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, + [138697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 12, + ACTIONS(5144), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -418637,7 +420126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5194), 29, + ACTIONS(5146), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -418667,10 +420156,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [138761] = 3, + [138746] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 12, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(6811), 1, + sym_auto, + ACTIONS(6813), 1, + anon_sym_decltype, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8243), 1, + anon_sym_STAR, + ACTIONS(8245), 1, + anon_sym_AMP_AMP, + ACTIONS(8247), 1, + anon_sym_AMP, + ACTIONS(8251), 1, + anon_sym___attribute, + STATE(2719), 1, + sym_decltype_auto, + STATE(3282), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6629), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4503), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8249), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8169), 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, + [138829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1940), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -418683,7 +420235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5202), 29, + ACTIONS(1938), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -418713,33 +420265,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [138810] = 5, + [138878] = 19, ACTIONS(3), 1, sym_comment, - STATE(4282), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8648), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5080), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8257), 1, anon_sym_STAR, + ACTIONS(8259), 1, anon_sym_AMP_AMP, + ACTIONS(8261), 1, + anon_sym_AMP, + ACTIONS(8505), 1, + sym_auto, + ACTIONS(8507), 1, + anon_sym_decltype, + STATE(3073), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(4999), 1, + sym_decltype_auto, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6604), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4498), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8266), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(5078), 26, - anon_sym_AMP, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -418751,17 +420327,69 @@ 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, + [138959] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, sym_auto, + ACTIONS(8197), 1, anon_sym_decltype, + ACTIONS(8229), 1, + anon_sym_STAR, + ACTIONS(8231), 1, + anon_sym_AMP_AMP, + ACTIONS(8233), 1, + anon_sym_AMP, + STATE(1883), 1, + sym_decltype_auto, + STATE(3058), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6621), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4645), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8249), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [138863] = 24, + ACTIONS(8169), 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, + [139040] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -418772,51 +420400,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(4310), 1, + ACTIONS(4318), 1, anon_sym_LPAREN2, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(5875), 1, + ACTIONS(5872), 1, anon_sym_LBRACK, - ACTIONS(5998), 1, + ACTIONS(6028), 1, anon_sym_STAR, - ACTIONS(6000), 1, + ACTIONS(6030), 1, anon_sym_AMP_AMP, - ACTIONS(6002), 1, + ACTIONS(6032), 1, anon_sym_AMP, - STATE(3357), 1, + STATE(3281), 1, sym_parameter_list, - STATE(5896), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6438), 1, + STATE(6413), 1, sym__declarator, - STATE(6761), 1, + STATE(6820), 1, sym__abstract_declarator, - STATE(8286), 1, + STATE(8310), 1, sym_ms_based_modifier, - ACTIONS(8360), 2, + ACTIONS(8378), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8362), 2, + anon_sym_GT2, + ACTIONS(8380), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -418828,10 +420456,59 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [138954] = 3, + [139131] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4314), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5089), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(8660), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5141), 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(5138), 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, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [139186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 12, + ACTIONS(5208), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -418844,7 +420521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5142), 29, + ACTIONS(5210), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -418874,25 +420551,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [139003] = 3, + [139235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 12, + ACTIONS(7062), 16, 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5182), 29, + sym_literal_suffix, + ACTIONS(7064), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -418901,29 +420583,78 @@ 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___attribute__, + 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, + [139284] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6135), 1, + sym_identifier, + ACTIONS(6139), 1, + sym_primitive_type, + STATE(2343), 1, + sym_alignas_qualifier, + STATE(2365), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8666), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1993), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6137), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5102), 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(5104), 8, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [139052] = 3, + ACTIONS(8663), 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, + [139349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 12, + ACTIONS(5178), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -418936,7 +420667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5146), 29, + ACTIONS(5180), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -418966,10 +420697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [139101] = 3, + [139398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 12, + ACTIONS(5166), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -418982,7 +420713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5186), 29, + ACTIONS(5168), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -419012,146 +420743,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [139150] = 7, + [139447] = 3, 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, + ACTIONS(5204), 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_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - sym_identifier, - ACTIONS(6300), 22, + ACTIONS(5206), 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, + anon_sym_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___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, - [139207] = 17, - 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(8489), 1, - anon_sym___attribute, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3112), 1, - sym_parameter_list, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6334), 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), 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, - [139284] = 6, + [139496] = 12, 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, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(8669), 1, + anon_sym_LBRACE, + STATE(4557), 1, + sym_field_declaration_list, + STATE(4711), 1, + sym_attribute_specifier, + STATE(7109), 1, + sym_virtual_specifier, + STATE(7976), 1, + sym_base_class_clause, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5601), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5603), 27, 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_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -419165,60 +420838,108 @@ 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_try, + anon_sym_requires, + [139563] = 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_try, + anon_sym_GT2, anon_sym_requires, - [139339] = 17, + [139612] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8113), 1, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + ACTIONS(8229), 1, anon_sym_STAR, - ACTIONS(8115), 1, + ACTIONS(8231), 1, anon_sym_AMP_AMP, - ACTIONS(8117), 1, + ACTIONS(8233), 1, anon_sym_AMP, - ACTIONS(8455), 1, - anon_sym___attribute, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3112), 1, + STATE(1883), 1, + sym_decltype_auto, + STATE(3058), 1, sym_parameter_list, - STATE(5953), 1, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6336), 1, + STATE(6553), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4572), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8453), 9, + ACTIONS(8266), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - ACTIONS(7297), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -419231,116 +420952,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139416] = 17, + [139693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(6783), 1, + ACTIONS(1936), 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, - ACTIONS(7848), 1, + anon_sym_DOT, + ACTIONS(1934), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8113), 1, anon_sym_STAR, - ACTIONS(8115), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8117), 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, + anon_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, + [139742] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3112), 1, - sym_parameter_list, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6337), 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), 9, + 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(5176), 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(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, - [139493] = 19, + [139791] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3347), 1, + sym_ms_restrict_modifier, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8179), 1, - sym_auto, - ACTIONS(8181), 1, - anon_sym_decltype, - ACTIONS(8230), 1, + ACTIONS(8654), 1, anon_sym_STAR, - ACTIONS(8232), 1, + ACTIONS(8656), 1, anon_sym_AMP_AMP, - ACTIONS(8234), 1, + ACTIONS(8658), 1, anon_sym_AMP, - STATE(1864), 1, - sym_decltype_auto, - STATE(3086), 1, + STATE(3432), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4104), 1, + sym_ms_unaligned_ptr_modifier, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6626), 1, + STATE(6943), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(5889), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(8171), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8173), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4478), 2, + STATE(4286), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5046), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 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_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -419353,12 +421108,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139574] = 4, + [139876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, + ACTIONS(5144), 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(5146), 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, + [139925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7060), 1, sym_literal_suffix, - ACTIONS(4174), 15, + ACTIONS(4168), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -419374,7 +421175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(4166), 25, + ACTIONS(4161), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -419400,56 +421201,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [139625] = 3, + [139976] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 12, + ACTIONS(8648), 1, + anon_sym_AMP_AMP, + ACTIONS(8652), 1, + anon_sym_and, + ACTIONS(6315), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5198), 29, + sym_identifier, + ACTIONS(6317), 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_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___attribute__, + anon_sym_GT_GT, 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, - [139674] = 3, + [140029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 12, + ACTIONS(5182), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -419462,7 +421265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5198), 29, + ACTIONS(5184), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -419492,20 +421295,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [139723] = 5, + [140078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4993), 1, + STATE(4314), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8660), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5091), 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, - ACTIONS(4988), 2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5089), 26, + 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_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [140131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5009), 1, + anon_sym_LBRACK, + ACTIONS(5004), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(4991), 4, + ACTIONS(5007), 4, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(4984), 34, + ACTIONS(5000), 34, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -419540,57 +421391,98 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_operator, - [139776] = 19, + [140184] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8569), 1, + anon_sym_LT, + STATE(4428), 1, + sym_template_argument_list, + ACTIONS(5839), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(4180), 34, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8147), 1, + 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, - ACTIONS(8179), 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, + anon_sym_or, + anon_sym_and, sym_auto, - ACTIONS(8181), 1, anon_sym_decltype, - ACTIONS(8230), 1, - anon_sym_STAR, - ACTIONS(8232), 1, - anon_sym_AMP_AMP, - ACTIONS(8234), 1, - anon_sym_AMP, - STATE(1864), 1, - sym_decltype_auto, - STATE(3086), 1, - sym_parameter_list, - STATE(4325), 1, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [140239] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6117), 1, + sym_identifier, + ACTIONS(6125), 1, + sym_primitive_type, + STATE(2343), 1, sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6628), 1, - sym__abstract_declarator, - ACTIONS(8149), 2, + STATE(4563), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(8676), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4495), 2, + STATE(4300), 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), 7, + ACTIONS(8674), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5123), 8, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(5125), 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(8141), 12, + ACTIONS(8671), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -419602,10 +421494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [139857] = 3, + [140304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 12, + ACTIONS(5158), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -419618,7 +421510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5158), 29, + ACTIONS(5160), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -419648,10 +421540,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [139906] = 3, + [140353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 12, + ACTIONS(5170), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -419664,7 +421556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5150), 29, + ACTIONS(5172), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -419694,10 +421586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [139955] = 3, + [140402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 12, + ACTIONS(5192), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -419710,7 +421602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(5154), 29, + ACTIONS(5194), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -419740,7 +421632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [140004] = 3, + [140451] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5196), 12, @@ -419786,194 +421678,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [140053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5160), 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(5162), 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, - [140102] = 24, + [140500] = 19, 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, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(5875), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(6014), 1, + ACTIONS(8257), 1, anon_sym_STAR, - ACTIONS(6016), 1, + ACTIONS(8259), 1, anon_sym_AMP_AMP, - ACTIONS(6018), 1, + ACTIONS(8261), 1, anon_sym_AMP, - STATE(3276), 1, + ACTIONS(8505), 1, + sym_auto, + ACTIONS(8507), 1, + anon_sym_decltype, + STATE(3073), 1, sym_parameter_list, - STATE(5896), 1, - sym__scope_resolution, - STATE(6109), 1, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(4999), 1, + sym_decltype_auto, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6438), 1, - sym__declarator, - STATE(6785), 1, + STATE(6587), 1, sym__abstract_declarator, - STATE(8286), 1, - sym_ms_based_modifier, - ACTIONS(8360), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8362), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(6099), 5, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4491), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 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, - [140193] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(8628), 1, - anon_sym_LT, - STATE(4456), 1, - sym_template_argument_list, - ACTIONS(4925), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4932), 34, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(8249), 7, 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, - [140248] = 6, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym___asm, - ACTIONS(8655), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -419985,68 +421740,54 @@ 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, - [140303] = 19, + [140581] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8256), 1, + ACTIONS(8066), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(8068), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(8070), 1, anon_sym_AMP, - ACTIONS(8501), 1, - sym_auto, ACTIONS(8503), 1, - anon_sym_decltype, - STATE(3095), 1, - sym_parameter_list, - STATE(4325), 1, + anon_sym___attribute, + STATE(1693), 1, sym_alignas_qualifier, - STATE(4985), 1, - sym_decltype_auto, - STATE(6109), 1, + STATE(3079), 1, + sym_parameter_list, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6542), 1, + STATE(6361), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4570), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8221), 7, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(8501), 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_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(7143), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -420059,67 +421800,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140384] = 3, + [140658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 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(5190), 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, - [140433] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(8628), 1, + ACTIONS(8569), 1, anon_sym_LT, - STATE(4456), 1, + STATE(4428), 1, sym_template_argument_list, - ACTIONS(5834), 4, + ACTIONS(4915), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(4192), 34, + ACTIONS(4922), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -420154,57 +421849,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [140488] = 19, + [140713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(8683), 1, + anon_sym___attribute__, + ACTIONS(8686), 1, + anon_sym___attribute, + STATE(4325), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(8681), 4, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(5020), 1, + anon_sym___asm, + ACTIONS(8679), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - 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___extension__, + anon_sym_LBRACK_LBRACK, 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, @@ -420216,56 +421886,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 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(1938), 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_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, - [140618] = 3, + [140768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 12, + ACTIONS(5144), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -420278,7 +421914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(1934), 29, + ACTIONS(5146), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -420308,49 +421944,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [140667] = 11, + [140817] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6133), 1, - sym_identifier, - ACTIONS(6141), 1, - sym_primitive_type, - STATE(2313), 1, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_AMP_AMP, + ACTIONS(8239), 1, + anon_sym_AMP, + ACTIONS(8268), 1, + anon_sym___attribute, + STATE(1883), 1, + sym_decltype_auto, + STATE(3283), 1, + sym_parameter_list, + STATE(4359), 1, sym_alignas_qualifier, - STATE(4560), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(8670), 2, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6573), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4275), 2, + STATE(4516), 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, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8266), 6, 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_RPAREN, anon_sym___attribute__, - anon_sym___attribute, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8665), 13, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -420362,57 +422007,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140732] = 20, + [140900] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6805), 1, - sym_auto, - ACTIONS(6807), 1, - anon_sym_decltype, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8223), 1, - anon_sym___attribute, - ACTIONS(8250), 1, + ACTIONS(8163), 1, anon_sym_STAR, - ACTIONS(8252), 1, + ACTIONS(8165), 1, anon_sym_AMP_AMP, - ACTIONS(8254), 1, + ACTIONS(8167), 1, anon_sym_AMP, - STATE(2741), 1, - sym_decltype_auto, - STATE(3371), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8437), 1, + anon_sym___attribute, + STATE(3102), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6568), 1, + STATE(6431), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4619), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8221), 6, + ACTIONS(8435), 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, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -420425,54 +422066,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140815] = 17, + [140976] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(5879), 1, - anon_sym___attribute, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8113), 1, + ACTIONS(8157), 1, anon_sym_STAR, - ACTIONS(8115), 1, + ACTIONS(8159), 1, anon_sym_AMP_AMP, - ACTIONS(8117), 1, + ACTIONS(8161), 1, anon_sym_AMP, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3112), 1, + STATE(2934), 1, sym_parameter_list, - STATE(5953), 1, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6292), 1, + STATE(6455), 1, sym__abstract_declarator, - ACTIONS(7304), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 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__, + ACTIONS(6763), 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(7297), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -420485,347 +422124,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [140892] = 23, + [141050] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(8533), 1, anon_sym_SLASH, - ACTIONS(8681), 1, - anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8543), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, - anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8687), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 8, + ACTIONS(6483), 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, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_or, - [140980] = 24, + anon_sym_and, + anon_sym_bitor, + [141134] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(8533), 1, anon_sym_SLASH, - ACTIONS(8681), 1, - anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8543), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, - anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8531), 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, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6949), 6, + ACTIONS(6483), 12, 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, 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, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [141216] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7019), 1, - anon_sym___attribute, - ACTIONS(8527), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8533), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8537), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8543), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8551), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8529), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 5, + ACTIONS(7011), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_QMARK, - [141224] = 26, + [141306] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(7021), 1, + anon_sym___attribute, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8533), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8539), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8543), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8555), 1, + anon_sym_QMARK, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8559), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8561), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(7023), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8547), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [141402] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8549), 1, + anon_sym_GT_EQ, + ACTIONS(8557), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8529), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8531), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6481), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6999), 4, + ACTIONS(6483), 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, - [141318] = 3, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [141480] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 10, + ACTIONS(5098), 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(2569), 30, + ACTIONS(5096), 27, 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___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -420840,221 +422481,252 @@ 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_template, + anon_sym_operator, 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_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [141424] = 24, + [141528] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6987), 6, + ACTIONS(7037), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, - [141514] = 25, + [141618] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6947), 1, + ACTIONS(6481), 1, anon_sym___attribute, - ACTIONS(8527), 1, - anon_sym_SLASH, ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, anon_sym_PIPE, - ACTIONS(8537), 1, - anon_sym_AMP, ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8551), 1, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8559), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8529), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6949), 5, + ACTIONS(6483), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - [141606] = 3, + anon_sym_or, + [141708] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2559), 13, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8549), 1, + anon_sym_GT_EQ, + ACTIONS(8557), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8529), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8531), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6481), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(8547), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 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___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [141784] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8157), 1, anon_sym_STAR, + ACTIONS(8159), 1, anon_sym_AMP_AMP, + ACTIONS(8161), 1, + anon_sym_AMP, + STATE(2934), 1, + sym_parameter_list, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6426), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3776), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8501), 9, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(2569), 27, - anon_sym_AMP, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7072), 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, @@ -421066,131 +422738,125 @@ 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, - [141654] = 26, + [141858] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6664), 4, + ACTIONS(7023), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, - [141748] = 17, + [141952] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8135), 1, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(5860), 1, + anon_sym_COLON, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8447), 1, + sym_ms_restrict_modifier, + ACTIONS(8721), 1, anon_sym_STAR, - ACTIONS(8137), 1, + ACTIONS(8723), 1, anon_sym_AMP_AMP, - ACTIONS(8139), 1, + ACTIONS(8725), 1, anon_sym_AMP, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8489), 1, - anon_sym___attribute, - STATE(3111), 1, - sym_parameter_list, - STATE(4325), 1, + STATE(1719), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(3592), 1, + sym_parameter_list, + STATE(5334), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6412), 1, + STATE(6987), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8449), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8451), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8453), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(5104), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5121), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 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_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, + ACTIONS(8445), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -421203,53 +422869,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141824] = 17, + [142036] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(5879), 1, - anon_sym___attribute, - ACTIONS(8135), 1, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8557), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8529), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8531), 2, anon_sym_STAR, - ACTIONS(8137), 1, - anon_sym_AMP_AMP, - ACTIONS(8139), 1, + anon_sym_PERCENT, + ACTIONS(8551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6481), 6, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(8147), 1, - anon_sym_LBRACK, - STATE(3111), 1, - sym_parameter_list, - STATE(4325), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(6483), 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, + [142108] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + STATE(4041), 1, sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6419), 1, - sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(3776), 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, + ACTIONS(8272), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -421262,54 +422957,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141900] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(8270), 18, + anon_sym_COMMA, 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, - ACTIONS(8455), 1, - anon_sym___attribute, - STATE(3111), 1, - sym_parameter_list, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6415), 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), 8, - 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_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, - ACTIONS(8141), 12, + [142166] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + STATE(1951), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5054), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6066), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6068), 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, @@ -421321,54 +423019,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [141976] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [142224] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8727), 1, + anon_sym_LT, + STATE(1920), 1, + sym_template_argument_list, + STATE(1951), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4159), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5054), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4166), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6783), 1, - anon_sym___attribute, - ACTIONS(8135), 1, anon_sym_STAR, - ACTIONS(8137), 1, anon_sym_AMP_AMP, - ACTIONS(8139), 1, - anon_sym_AMP, - ACTIONS(8147), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(3111), 1, - sym_parameter_list, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6420), 1, - sym__abstract_declarator, - ACTIONS(8149), 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, - 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), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - ACTIONS(8141), 12, + [142282] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(8729), 1, + anon_sym_COLON, + ACTIONS(8731), 1, + anon_sym_LBRACE, + STATE(4437), 1, + sym__enum_base_clause, + STATE(4632), 1, + sym_enumerator_list, + STATE(4819), 1, + sym_attribute_specifier, + ACTIONS(6352), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6354), 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, @@ -421380,40 +423118,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [142052] = 13, + 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, + [142344] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6518), 5, + ACTIONS(6481), 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), 21, + ACTIONS(6483), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -421435,25 +423182,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [142120] = 8, + [142410] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8248), 4, + ACTIONS(8619), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -421466,7 +423213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(8246), 18, + ACTIONS(8617), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_AMP_AMP, @@ -421485,335 +423232,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [142178] = 27, + [142468] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6662), 1, - anon_sym___attribute, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8533), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8537), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8543), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8549), 1, - anon_sym_QMARK, - ACTIONS(8551), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8529), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6664), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8539), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [142274] = 29, + ACTIONS(6483), 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, + [142556] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8709), 1, + ACTIONS(8733), 1, anon_sym_COMMA, - ACTIONS(8711), 1, + ACTIONS(8735), 1, anon_sym_SEMI, - ACTIONS(8713), 1, + ACTIONS(8737), 1, anon_sym_RBRACE, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7314), 1, + STATE(7695), 1, aux_sym_initializer_list_repeat1, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [142374] = 3, + [142656] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5090), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5850), 1, anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7009), 1, + anon_sym___attribute, + ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, + anon_sym_PIPE, + ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, + anon_sym_GT_EQ, + ACTIONS(8557), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8559), 1, + anon_sym_bitor, + ACTIONS(8561), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8529), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8531), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8537), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8541), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8547), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7011), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - 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, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [142422] = 12, + anon_sym_QMARK, + [142748] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - STATE(2491), 1, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8675), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6518), 7, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 21, + ACTIONS(6483), 10, 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, - [142488] = 14, + [142834] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(6481), 1, + anon_sym_PIPE, + ACTIONS(8693), 1, anon_sym_SLASH, - STATE(2491), 1, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8717), 1, + anon_sym_bitand, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8693), 2, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 19, + ACTIONS(6483), 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_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, - [142558] = 12, + [142918] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8527), 1, + ACTIONS(8533), 1, anon_sym_SLASH, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8525), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6518), 8, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(8531), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6481), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym___attribute, - ACTIONS(6520), 20, + ACTIONS(6483), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -421834,52 +423617,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [142624] = 16, + [142986] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(6811), 1, + sym_auto, + ACTIONS(6813), 1, + anon_sym_decltype, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8151), 1, + ACTIONS(8356), 1, anon_sym_STAR, - ACTIONS(8153), 1, + ACTIONS(8358), 1, anon_sym_AMP_AMP, - ACTIONS(8155), 1, + ACTIONS(8360), 1, anon_sym_AMP, - STATE(2963), 1, + STATE(2719), 1, + sym_decltype_auto, + STATE(3165), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6444), 1, + STATE(6654), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(4735), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6781), 9, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(8266), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -421892,168 +423678,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [142698] = 24, + [143066] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6518), 1, - anon_sym___attribute, - ACTIONS(8527), 1, - anon_sym_SLASH, ACTIONS(8533), 1, + anon_sym_SLASH, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8529), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8531), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8551), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6481), 6, anon_sym_PIPE, - ACTIONS(8537), 1, anon_sym_AMP, - ACTIONS(8543), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(6483), 18, + 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(8551), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [143136] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, + anon_sym_PIPE, + ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, + anon_sym_GT_EQ, ACTIONS(8555), 1, + anon_sym_QMARK, + ACTIONS(8557), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8559), 1, + anon_sym_bitor, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8741), 1, + anon_sym___attribute, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8531), 2, + ACTIONS(8535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(8739), 3, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - [142788] = 23, + [143232] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6518), 1, - anon_sym___attribute, - ACTIONS(8527), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8533), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8537), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8543), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8551), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8535), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(6712), 4, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [142876] = 10, + anon_sym_RBRACE, + [143326] = 3, 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(4427), 1, - sym__enum_base_clause, - STATE(4469), 1, - sym_enumerator_list, - STATE(4817), 1, - sym_attribute_specifier, - ACTIONS(6393), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6395), 29, + ACTIONS(2562), 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___extension__, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT2, + ACTIONS(2572), 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, @@ -422067,441 +423908,498 @@ 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, + sym_identifier, anon_sym_decltype, anon_sym_final, anon_sym_override, + anon_sym_template, + anon_sym_operator, anon_sym_try, anon_sym_requires, - [142938] = 21, + [143374] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8527), 1, + ACTIONS(7013), 1, + anon_sym___attribute, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8533), 1, anon_sym_SLASH, - ACTIONS(8537), 1, - anon_sym_AMP, + ACTIONS(8539), 1, + anon_sym_PIPE, ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8551), 1, - anon_sym_LT_EQ_GT, ACTIONS(8555), 1, + anon_sym_QMARK, + ACTIONS(8557), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8559), 1, + anon_sym_bitor, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6518), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(8535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8537), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(7015), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + [143470] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + ACTIONS(8284), 1, + anon_sym_STAR, + ACTIONS(8286), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [143022] = 25, + ACTIONS(8288), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2549), 1, + sym_decltype_auto, + STATE(3359), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6676), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4796), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8249), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7143), 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, + [143550] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7015), 1, + ACTIONS(6481), 1, anon_sym___attribute, - ACTIONS(8527), 1, - anon_sym_SLASH, ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, anon_sym_PIPE, - ACTIONS(8537), 1, - anon_sym_AMP, ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8551), 1, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8559), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8531), 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, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7017), 5, + ACTIONS(6483), 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, - [143114] = 24, + anon_sym_or, + anon_sym_and, + [143638] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7888), 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, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, + anon_sym_decltype, + ACTIONS(8284), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8286), 1, 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(7017), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - [143204] = 20, + ACTIONS(8288), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2549), 1, + sym_decltype_auto, + STATE(3359), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6681), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4802), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8266), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7143), 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, + [143718] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8527), 1, + ACTIONS(8533), 1, anon_sym_SLASH, - ACTIONS(8537), 1, - anon_sym_AMP, - ACTIONS(8543), 1, - anon_sym_GT_EQ, - ACTIONS(8551), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8555), 1, - anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6518), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - 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, + ACTIONS(6481), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 12, + anon_sym___attribute, + ACTIONS(6483), 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, - [143286] = 18, + anon_sym_bitand, + anon_sym_not_eq, + [143784] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8527), 1, + ACTIONS(6481), 1, + anon_sym_PIPE, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8543), 1, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8551), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + ACTIONS(8717), 1, + anon_sym_bitand, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8545), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym___attribute, - ACTIONS(8539), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 13, + ACTIONS(6483), 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___attribute__, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - [143364] = 17, + [143866] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8527), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8543), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8551), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8545), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym___attribute, - ACTIONS(8541), 3, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 16, + ACTIONS(6483), 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_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_SEMI, - anon_sym___attribute__, + 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, - [143440] = 15, + [143944] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8527), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8551), 1, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8545), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 6, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(6520), 17, + ACTIONS(6483), 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_GT_EQ, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_or, anon_sym_and, @@ -422509,109 +424407,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [143512] = 13, + [144020] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8527), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - STATE(2491), 1, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6518), 6, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6481), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(6520), 20, + ACTIONS(6483), 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_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, - [143580] = 14, + [144092] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8527), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8545), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6518), 6, + ACTIONS(6481), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(6520), 18, + ACTIONS(6483), 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, @@ -422620,57 +424519,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [143650] = 21, + [144160] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(5652), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5863), 1, - anon_sym_COLON, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8465), 1, - sym_ms_restrict_modifier, - ACTIONS(8715), 1, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, anon_sym_STAR, - ACTIONS(8717), 1, + ACTIONS(8165), 1, anon_sym_AMP_AMP, - ACTIONS(8719), 1, + ACTIONS(8167), 1, anon_sym_AMP, - STATE(1702), 1, - sym_alignas_qualifier, - STATE(3538), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8503), 1, + anon_sym___attribute, + STATE(3102), 1, sym_parameter_list, - STATE(5308), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6109), 1, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6990), 1, + STATE(6428), 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, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4376), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5087), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8463), 12, + ACTIONS(8501), 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(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -422683,52 +424578,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143734] = 16, + [144236] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8151), 1, + ACTIONS(5868), 1, + anon_sym___attribute, + ACTIONS(8163), 1, anon_sym_STAR, - ACTIONS(8153), 1, + ACTIONS(8165), 1, anon_sym_AMP_AMP, - ACTIONS(8155), 1, + ACTIONS(8167), 1, anon_sym_AMP, - STATE(2963), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3102), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6394), 1, + STATE(6452), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(6117), 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, + ACTIONS(5860), 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(8169), 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, + [144312] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(8729), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(8731), 1, anon_sym_LBRACE, + STATE(4419), 1, + sym__enum_base_clause, + STATE(4535), 1, + sym_enumerator_list, + STATE(4675), 1, + sym_attribute_specifier, + ACTIONS(6346), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6348), 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, - ACTIONS(7052), 12, + [144374] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(6765), 1, + anon_sym___attribute, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3102), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6457), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6763), 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(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -422741,167 +424748,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [143808] = 21, + [144450] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6518), 1, - anon_sym_PIPE, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8683), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 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, + ACTIONS(6481), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 11, + ACTIONS(6483), 19, 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_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - [143892] = 20, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [144520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_LBRACK, - ACTIONS(6418), 1, - anon_sym_DOT, - ACTIONS(6518), 1, - anon_sym_PIPE, - ACTIONS(8677), 1, - anon_sym_SLASH, - ACTIONS(8685), 1, + ACTIONS(5701), 5, 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(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(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), 13, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5703), 35, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_STAR, 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, + 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, + [144568] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8151), 1, + ACTIONS(8157), 1, anon_sym_STAR, - ACTIONS(8153), 1, + ACTIONS(8159), 1, anon_sym_AMP_AMP, - ACTIONS(8155), 1, + ACTIONS(8161), 1, anon_sym_AMP, - STATE(2963), 1, + STATE(2934), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6434), 1, + STATE(6463), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8453), 9, + ACTIONS(5860), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, @@ -422911,7 +424894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -422924,238 +424907,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [144048] = 25, + [144642] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(5889), 1, + anon_sym_COLON, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, - anon_sym_DOT, - ACTIONS(6985), 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, + ACTIONS(8447), 1, + sym_ms_restrict_modifier, + ACTIONS(8721), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8529), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8723), 1, 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, - ACTIONS(6987), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [144140] = 18, - 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(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, - anon_sym_LT_EQ_GT, - 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(6518), 2, - anon_sym_PIPE, + ACTIONS(8725), 1, anon_sym_AMP, - 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(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), 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, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [144218] = 27, + STATE(1719), 1, + sym_alignas_qualifier, + STATE(3592), 1, + sym_parameter_list, + STATE(5334), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6981), 1, + sym__abstract_declarator, + ACTIONS(8449), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(8451), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(8453), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4341), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5116), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 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, + [144726] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6989), 1, - anon_sym___attribute, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8533), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8537), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8543), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8549), 1, - anon_sym_QMARK, - ACTIONS(8551), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8529), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6991), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8539), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [144314] = 16, + ACTIONS(7019), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + [144816] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(7085), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8151), 1, + ACTIONS(8157), 1, anon_sym_STAR, - ACTIONS(8153), 1, + ACTIONS(8159), 1, anon_sym_AMP_AMP, - ACTIONS(8155), 1, + ACTIONS(8161), 1, anon_sym_AMP, - STATE(2963), 1, + STATE(2934), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4041), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6457), 1, + STATE(6478), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(7087), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + STATE(3776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8487), 9, + ACTIONS(8435), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, @@ -423165,7 +425081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(7052), 12, + ACTIONS(7072), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -423178,955 +425094,503 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [144388] = 17, + [144890] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8533), 1, anon_sym_SLASH, - ACTIONS(8691), 1, + ACTIONS(8539), 1, + anon_sym_PIPE, + ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8555), 1, + anon_sym_QMARK, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + ACTIONS(8559), 1, + anon_sym_bitor, + ACTIONS(8561), 1, + anon_sym_bitand, + ACTIONS(8745), 1, + anon_sym___attribute, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6518), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8693), 2, + ACTIONS(8535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8537), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8541), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8689), 3, + ACTIONS(8545), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(8743), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, 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, - [144464] = 25, + anon_sym___attribute__, + [144986] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6993), 1, + ACTIONS(6971), 1, anon_sym___attribute, - ACTIONS(8527), 1, - anon_sym_SLASH, ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, anon_sym_PIPE, - ACTIONS(8537), 1, - anon_sym_AMP, ACTIONS(8543), 1, + anon_sym_AMP, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8551), 1, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8559), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8529), 2, + ACTIONS(8535), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6995), 5, + ACTIONS(6973), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - [144556] = 15, - 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(8695), 1, - anon_sym_LT_EQ_GT, - 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(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(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_RBRACE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [144628] = 24, + [145078] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(7017), 1, + anon_sym___attribute, + ACTIONS(8533), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8539), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8543), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8559), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 6, + ACTIONS(7019), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, - [144718] = 27, + [145170] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8533), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8537), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8543), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8549), 1, - anon_sym_QMARK, - ACTIONS(8551), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8723), 1, - anon_sym___attribute, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8529), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8721), 3, + ACTIONS(6973), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, - [144814] = 27, + anon_sym_RBRACE, + anon_sym_QMARK, + [145260] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6997), 1, + ACTIONS(7031), 1, anon_sym___attribute, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_SLASH, ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, anon_sym_PIPE, - ACTIONS(8537), 1, - anon_sym_AMP, ACTIONS(8543), 1, - anon_sym_GT_EQ, + anon_sym_AMP, ACTIONS(8549), 1, - anon_sym_QMARK, - ACTIONS(8551), 1, + anon_sym_GT_EQ, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8559), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8529), 2, + ACTIONS(8535), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6999), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(8539), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [144910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5090), 13, + ACTIONS(7033), 5, 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(5088), 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, - [144958] = 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(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_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__, - 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, - 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___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(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___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, - [145282] = 26, + anon_sym_QMARK, + [145352] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6991), 4, + ACTIONS(7015), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, - [145376] = 27, + [145446] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(6710), 1, + anon_sym___attribute, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8527), 1, - anon_sym_SLASH, ACTIONS(8533), 1, + anon_sym_SLASH, + ACTIONS(8539), 1, anon_sym_PIPE, - ACTIONS(8537), 1, - anon_sym_AMP, ACTIONS(8543), 1, - anon_sym_GT_EQ, + anon_sym_AMP, ACTIONS(8549), 1, + anon_sym_GT_EQ, + ACTIONS(8555), 1, anon_sym_QMARK, - ACTIONS(8551), 1, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8553), 1, + ACTIONS(8559), 1, anon_sym_bitor, - ACTIONS(8555), 1, + ACTIONS(8561), 1, anon_sym_bitand, - ACTIONS(8729), 1, - anon_sym___attribute, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8523), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8525), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8529), 2, + ACTIONS(8535), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8531), 2, + ACTIONS(8537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8535), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8545), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8539), 3, + ACTIONS(6712), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8541), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(8727), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [145472] = 19, + [145542] = 3, 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(8352), 1, - anon_sym_STAR, - ACTIONS(8354), 1, - anon_sym_AMP_AMP, - 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, + ACTIONS(2562), 10, anon_sym_COMMA, - 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_RPAREN, 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_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(2572), 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, @@ -424138,121 +425602,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145636] = 24, + 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, + [145590] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(7035), 1, + anon_sym___attribute, + ACTIONS(8533), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8539), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8543), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8549), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8557), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8559), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8561), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8529), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8531), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8535), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8537), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8541), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8551), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8545), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8547), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6995), 6, + ACTIONS(7037), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, - [145726] = 19, + [145682] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6805), 1, + ACTIONS(6811), 1, sym_auto, - ACTIONS(6807), 1, + ACTIONS(6813), 1, anon_sym_decltype, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8352), 1, + ACTIONS(8356), 1, anon_sym_STAR, - ACTIONS(8354), 1, + ACTIONS(8358), 1, anon_sym_AMP_AMP, - ACTIONS(8356), 1, + ACTIONS(8360), 1, anon_sym_AMP, - STATE(2741), 1, + STATE(2719), 1, sym_decltype_auto, - STATE(3198), 1, + STATE(3165), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6669), 1, + STATE(6698), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4693), 2, + STATE(4733), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8213), 6, + ACTIONS(8249), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -424265,100 +425740,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [145806] = 22, + [145762] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8683), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 10, + ACTIONS(7033), 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, - [145892] = 8, + [145852] = 3, 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(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, + ACTIONS(5098), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(5096), 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, @@ -424372,38 +425843,43 @@ 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_GT2, + anon_sym_try, anon_sym_requires, - [145949] = 5, + [145900] = 6, ACTIONS(3), 1, sym_comment, - STATE(4383), 1, + STATE(1702), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5515), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(8731), 4, + ACTIONS(5089), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(5392), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5517), 31, + ACTIONS(5141), 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_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(5138), 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, @@ -424421,101 +425897,95 @@ 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, - [146000] = 28, + [145953] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8711), 1, - anon_sym_SEMI, - ACTIONS(8733), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(8736), 1, - anon_sym_RBRACE, - STATE(2491), 1, + ACTIONS(8749), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + STATE(7625), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [146097] = 5, + [146050] = 3, ACTIONS(3), 1, sym_comment, - STATE(4282), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5921), 3, + ACTIONS(5521), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(8738), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5919), 31, + ACTIONS(5523), 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, @@ -424532,6 +426002,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, @@ -424539,35 +426011,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [146148] = 6, + [146097] = 5, ACTIONS(3), 1, sym_comment, - STATE(1688), 1, + STATE(4314), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5078), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(5384), 4, + ACTIONS(5931), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8751), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5167), 9, + ACTIONS(5929), 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_LBRACE, - anon_sym_LBRACK, - ACTIONS(5164), 23, - anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -424585,53 +426054,44 @@ 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, - [146201] = 16, + [146148] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, + anon_sym___attribute, + ACTIONS(8757), 1, + anon_sym_LBRACE, + STATE(4957), 1, + sym_field_declaration_list, + STATE(4996), 1, + sym_attribute_specifier, + STATE(7154), 1, + sym_virtual_specifier, + STATE(7894), 1, + sym_base_class_clause, + ACTIONS(5601), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 27, + anon_sym_COMMA, + anon_sym_RPAREN, 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_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -424643,86 +426103,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [146274] = 28, + anon_sym_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [146213] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8703), 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, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8778), 1, - anon_sym_GT2, - STATE(3632), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8747), 1, + anon_sym_COMMA, + ACTIONS(8759), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7430), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + STATE(7435), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8707), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [146371] = 4, + [146310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, + ACTIONS(5474), 1, anon_sym_COLON_COLON, - ACTIONS(5541), 4, + ACTIONS(5613), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5543), 34, + ACTIONS(5615), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -424757,481 +426224,554 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [146420] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + [146359] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8703), 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, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8780), 1, - anon_sym_GT2, - STATE(3632), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8761), 1, + anon_sym_COMMA, + ACTIONS(8763), 1, + anon_sym_RBRACE, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7529), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + STATE(7627), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8707), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [146568] = 28, + [146456] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8784), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(8803), 1, + anon_sym_GT2, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7272), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6420), 2, + STATE(7636), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [146665] = 28, + [146553] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8786), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7318), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8805), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [146762] = 28, + [146648] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8788), 1, - anon_sym_COMMA, - ACTIONS(8790), 1, - anon_sym_RBRACE, - STATE(2491), 1, + ACTIONS(8807), 1, + anon_sym_GT2, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7321), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6420), 2, + STATE(7599), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [146859] = 28, + [146745] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8792), 1, - anon_sym_COMMA, - ACTIONS(8794), 1, - anon_sym_RBRACE, - STATE(2491), 1, + ACTIONS(8809), 1, + anon_sym_GT2, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7607), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6420), 2, + STATE(7668), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [146956] = 28, + [146842] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8253), 1, + sym_auto, + ACTIONS(8255), 1, + anon_sym_decltype, + ACTIONS(8411), 1, + anon_sym_STAR, + ACTIONS(8413), 1, + anon_sym_AMP_AMP, + ACTIONS(8415), 1, + anon_sym_AMP, + STATE(3528), 1, + sym_parameter_list, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_decltype_auto, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6761), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4869), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8249), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7072), 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, + [146921] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8764), 1, + ACTIONS(8789), 1, anon_sym_LT_LT, - ACTIONS(8766), 1, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8793), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8796), 1, + ACTIONS(8811), 1, anon_sym_GT2, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7326), 1, + STATE(7691), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [147053] = 5, + [147018] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8253), 1, + sym_auto, + ACTIONS(8255), 1, + anon_sym_decltype, + ACTIONS(8411), 1, + anon_sym_STAR, + ACTIONS(8413), 1, + anon_sym_AMP_AMP, + ACTIONS(8415), 1, + anon_sym_AMP, + STATE(3528), 1, + sym_parameter_list, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_decltype_auto, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6707), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4871), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8266), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7072), 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, + [147097] = 5, ACTIONS(3), 1, sym_comment, - STATE(4405), 1, + STATE(4395), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5968), 3, + ACTIONS(5966), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(8798), 4, + ACTIONS(8813), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5966), 31, + ACTIONS(5964), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -425263,239 +426803,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147104] = 28, + [147148] = 5, 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, + STATE(4314), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5935), 3, 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___attribute, + anon_sym_const, + ACTIONS(8751), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5933), 31, anon_sym_COMMA, - ACTIONS(8800), 1, anon_sym_RPAREN, - STATE(2491), 1, - sym_argument_list, - STATE(2492), 1, - sym_subscript_argument_list, - STATE(7322), 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_LPAREN2, 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, - [147201] = 28, + 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, + [147199] = 4, 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, + STATE(1346), 1, + sym__fold_operator, + ACTIONS(8817), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(8754), 1, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(8758), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(8764), 1, + anon_sym_GT, + anon_sym_LT, 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(8802), 1, - anon_sym_GT2, - STATE(3632), 1, - sym_argument_list, - STATE(3652), 1, - sym_subscript_argument_list, - STATE(7242), 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_EQ, + ACTIONS(8815), 25, + anon_sym_COMMA, 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, - [147298] = 28, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [147248] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8804), 1, + ACTIONS(8819), 1, + anon_sym_COMMA, + ACTIONS(8821), 1, anon_sym_RPAREN, - ACTIONS(8806), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + STATE(7389), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [147395] = 5, + [147345] = 16, ACTIONS(3), 1, sym_comment, - STATE(4406), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5974), 3, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(67), 1, 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, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8223), 1, anon_sym_STAR, + ACTIONS(8225), 1, anon_sym_AMP_AMP, + ACTIONS(8227), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3045), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6524), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8435), 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(7143), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -425507,233 +427020,222 @@ 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, - [147446] = 28, + [147418] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8764), 1, + ACTIONS(8789), 1, anon_sym_LT_LT, - ACTIONS(8766), 1, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8793), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8810), 1, + ACTIONS(8823), 1, anon_sym_GT2, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7633), 1, + STATE(7354), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [147543] = 28, + [147515] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8812), 1, - anon_sym_COMMA, - ACTIONS(8814), 1, - anon_sym_RBRACE, - STATE(2491), 1, + ACTIONS(8825), 1, + anon_sym_GT2, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7337), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6420), 2, + STATE(7269), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [147640] = 28, + [147612] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8764), 1, + ACTIONS(8789), 1, anon_sym_LT_LT, - ACTIONS(8766), 1, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8793), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8816), 1, + ACTIONS(8827), 1, anon_sym_GT2, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7358), 1, + STATE(7466), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [147737] = 4, + [147709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5541), 4, + ACTIONS(4996), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5543), 34, + ACTIONS(4998), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -425743,6 +427245,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, @@ -425768,100 +427271,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147786] = 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(8818), 1, - anon_sym_GT2, - STATE(3632), 1, - sym_argument_list, - STATE(3652), 1, - sym_subscript_argument_list, - STATE(7514), 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, - [147883] = 5, + [147756] = 6, ACTIONS(3), 1, sym_comment, - STATE(4282), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5980), 3, - anon_sym_AMP, + ACTIONS(8829), 1, + anon_sym___attribute__, + ACTIONS(8832), 1, anon_sym___attribute, + STATE(4416), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(8681), 4, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(8738), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5978), 31, + anon_sym___asm, + ACTIONS(8679), 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, @@ -425876,28 +427309,30 @@ 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, - [147934] = 5, + [147809] = 5, ACTIONS(3), 1, sym_comment, - STATE(4282), 1, + STATE(4314), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5988), 3, + ACTIONS(5899), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(8738), 4, + ACTIONS(8751), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5986), 31, + ACTIONS(5897), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -425929,100 +427364,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [147985] = 28, + [147860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(3869), 1, + anon_sym_LBRACE, + ACTIONS(8455), 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, + STATE(4886), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6307), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8691), 1, + anon_sym_GT, 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_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6309), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(8822), 1, - anon_sym_RPAREN, - STATE(2491), 1, - sym_argument_list, - STATE(2492), 1, - sym_subscript_argument_list, - STATE(7349), 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_PIPE_PIPE, 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_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(8689), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [148082] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [147913] = 8, ACTIONS(3), 1, sym_comment, - STATE(4416), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5935), 3, - anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, anon_sym___attribute, + ACTIONS(8731), 1, + anon_sym_LBRACE, + STATE(4644), 1, + sym_enumerator_list, + STATE(4838), 1, + sym_attribute_specifier, + ACTIONS(6046), 4, + anon_sym_AMP, + anon_sym_LBRACK, anon_sym_const, - ACTIONS(8824), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5933), 31, + anon_sym___asm, + ACTIONS(6048), 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, @@ -426037,39 +427452,105 @@ 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__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [147970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7060), 1, + sym_literal_suffix, + ACTIONS(4168), 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(4161), 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, + [148019] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8223), 1, + anon_sym_STAR, + ACTIONS(8225), 1, + anon_sym_AMP_AMP, + ACTIONS(8227), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3045), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6492), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6763), 8, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [148133] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4417), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5887), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - 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_AMP_AMP, - anon_sym_SEMI, + ACTIONS(7143), 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, @@ -426081,99 +427562,90 @@ 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, - [148184] = 28, + [148092] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8820), 1, + ACTIONS(8819), 1, anon_sym_COMMA, - ACTIONS(8828), 1, + ACTIONS(8835), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7245), 1, + STATE(7321), 1, aux_sym_generic_expression_repeat1, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [148281] = 5, + [148189] = 5, ACTIONS(3), 1, sym_comment, - STATE(4282), 1, + STATE(4429), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5893), 3, + ACTIONS(5537), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(8738), 4, + ACTIONS(8837), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5891), 31, + ACTIONS(5539), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -426205,29 +427677,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [148332] = 5, + [148240] = 3, ACTIONS(3), 1, sym_comment, - STATE(4383), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5776), 3, + ACTIONS(4984), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(8731), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5778), 31, + ACTIONS(4986), 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, @@ -426244,6 +427712,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, @@ -426251,211 +427721,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [148383] = 28, + [148287] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8830), 1, - anon_sym_COMMA, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8856), 1, - anon_sym_RBRACK, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8841), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7666), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8839), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [148480] = 3, + [148382] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8843), 1, + anon_sym_COMMA, + ACTIONS(8849), 1, anon_sym_SLASH, + ACTIONS(8855), 1, anon_sym_PIPE, + ACTIONS(8859), 1, 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, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8869), 1, + anon_sym_RBRACK, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8877), 1, 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, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(7619), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8867), 2, 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(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [148479] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, + ACTIONS(8843), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8764), 1, - anon_sym_LT_LT, - ACTIONS(8766), 1, - anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8866), 1, - anon_sym_GT2, - STATE(3632), 1, + ACTIONS(8879), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7556), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + STATE(7524), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8863), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [148624] = 5, + [148576] = 3, ACTIONS(3), 1, sym_comment, - STATE(4282), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5913), 3, + ACTIONS(5000), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(8738), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5911), 31, + ACTIONS(5007), 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, @@ -426472,6 +427962,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, @@ -426479,21 +427971,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [148675] = 5, + [148623] = 5, ACTIONS(3), 1, sym_comment, - STATE(4282), 1, + STATE(4314), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5953), 3, + ACTIONS(5986), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(8738), 4, + ACTIONS(8751), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5951), 31, + ACTIONS(5984), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -426525,121 +428017,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [148726] = 28, + [148674] = 3, 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, + ACTIONS(4992), 4, 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___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(4994), 35, 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_LPAREN2, 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_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, 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, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [148721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, + STATE(4314), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5982), 3, + anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(8751), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5980), 31, + anon_sym_COMMA, + anon_sym_RPAREN, 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_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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -426651,147 +428098,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [148896] = 4, + 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, + [148772] = 28, ACTIONS(3), 1, sym_comment, - STATE(1261), 1, - sym__fold_operator, - ACTIONS(8872), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(8765), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(8779), 1, anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8783), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, + ACTIONS(8789), 1, anon_sym_LT_LT, + ACTIONS(8791), 1, 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, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8797), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8799), 1, 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, + ACTIONS(8881), 1, + anon_sym_GT2, + STATE(3674), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(6224), 11, + STATE(3678), 1, + sym_subscript_argument_list, + STATE(7280), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8769), 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(6226), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8775), 2, 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(8777), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(8781), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [148998] = 19, + ACTIONS(8785), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8787), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [148869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(4988), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(4990), 35, + anon_sym_COMMA, + anon_sym_RPAREN, 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_PIPE_PIPE, 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_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, @@ -426803,55 +428209,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [149077] = 19, + 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, + [148916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(5022), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5024), 35, + anon_sym_COMMA, + anon_sym_RPAREN, 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_PIPE_PIPE, 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_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, @@ -426863,188 +428253,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [149156] = 28, + 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, + [148963] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8782), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(8874), 1, + ACTIONS(8883), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7605), 1, + STATE(7588), 1, aux_sym_argument_list_repeat1, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [149253] = 6, + [149060] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_LBRACE, - ACTIONS(8429), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - STATE(4898), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6309), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, + ACTIONS(8699), 1, anon_sym_PIPE, + ACTIONS(8703), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8709), 1, 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, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8715), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8717), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8885), 1, + anon_sym_COMMA, + ACTIONS(8887), 1, + anon_sym_RBRACE, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(7481), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [149306] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3879), 1, - anon_sym_LBRACE, - ACTIONS(8429), 1, - anon_sym_LPAREN2, - STATE(4848), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(6262), 11, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 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(6264), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 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, - [149359] = 8, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [149157] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(8705), 1, + ACTIONS(8731), 1, anon_sym_LBRACE, - STATE(4580), 1, + STATE(4540), 1, sym_enumerator_list, - STATE(4758), 1, + STATE(4689), 1, sym_attribute_specifier, - ACTIONS(6066), 4, + ACTIONS(6062), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6068), 30, + ACTIONS(6064), 30, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -427075,34 +428451,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [149416] = 8, + [149214] = 16, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(67), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6074), 30, - anon_sym_COMMA, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8223), 1, anon_sym_STAR, + ACTIONS(8225), 1, anon_sym_AMP_AMP, + ACTIONS(8227), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3045), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6490), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8501), 8, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7143), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -427114,497 +428508,408 @@ 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, - [149473] = 28, + [149287] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8764), 1, + ACTIONS(8789), 1, anon_sym_LT_LT, - ACTIONS(8766), 1, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8793), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8876), 1, + ACTIONS(8889), 1, anon_sym_GT2, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7609), 1, + STATE(7289), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [149570] = 27, + [149384] = 5, 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, + STATE(4453), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5919), 3, 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___attribute, + anon_sym_const, + ACTIONS(8891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5917), 31, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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(8878), 2, - anon_sym_RPAREN, anon_sym_SEMI, - 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, - [149665] = 28, + 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, + [149435] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8713), 1, - anon_sym_RBRACE, - ACTIONS(8880), 1, - anon_sym_COMMA, - STATE(2491), 1, + ACTIONS(8893), 1, + anon_sym_GT2, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7314), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6420), 2, + STATE(7431), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [149762] = 28, + [149532] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8882), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(8895), 1, + anon_sym_GT2, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7443), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6420), 2, + STATE(7486), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [149859] = 28, + [149629] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8884), 1, - anon_sym_COMMA, - ACTIONS(8886), 1, - anon_sym_RBRACE, - STATE(2491), 1, + ACTIONS(8897), 1, + anon_sym_GT2, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7445), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(6420), 2, + STATE(7298), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [149956] = 28, + [149726] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8703), 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, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8888), 1, - anon_sym_GT2, - STATE(3632), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8747), 1, + anon_sym_COMMA, + ACTIONS(8899), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7449), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + STATE(7358), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8707), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [150053] = 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(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, + [149823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(3869), 1, anon_sym_LBRACE, - ACTIONS(8429), 1, + ACTIONS(8455), 1, anon_sym_LPAREN2, - STATE(4879), 2, + STATE(4862), 2, sym_argument_list, sym_initializer_list, - ACTIONS(6283), 11, + ACTIONS(6303), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -427616,7 +428921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6285), 24, + ACTIONS(6305), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -427641,84 +428946,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [150179] = 28, + [149876] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8820), 1, + ACTIONS(8901), 1, anon_sym_COMMA, - ACTIONS(8890), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(8903), 1, + anon_sym_RBRACE, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7476), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6420), 2, + STATE(7361), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [150276] = 3, + [149973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 4, + ACTIONS(5018), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5008), 35, + ACTIONS(5020), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -427754,15 +429059,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [150323] = 3, + [150020] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8819), 1, + anon_sym_COMMA, + ACTIONS(8905), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(7390), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150117] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(8765), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, + anon_sym_SLASH, + ACTIONS(8779), 1, + anon_sym_PIPE, + ACTIONS(8783), 1, + anon_sym_AMP, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8797), 1, + anon_sym_bitor, + ACTIONS(8799), 1, + anon_sym_bitand, + ACTIONS(8907), 1, + anon_sym_GT2, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + STATE(7307), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8769), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8771), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8781), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8787), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [150214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 4, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5012), 35, + ACTIONS(5472), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -427772,7 +429217,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, @@ -427798,138 +429242,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [150370] = 3, + [150263] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4998), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5000), 35, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5850), 1, anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8843), 1, + anon_sym_COMMA, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, + anon_sym_AMP, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + ACTIONS(8909), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(7596), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8851), 2, 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, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, + ACTIONS(8853), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [150417] = 28, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150360] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8764), 1, + ACTIONS(8789), 1, anon_sym_LT_LT, - ACTIONS(8766), 1, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8793), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8892), 1, + ACTIONS(8911), 1, anon_sym_GT2, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7629), 1, + STATE(7366), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [150514] = 3, + [150457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 4, + STATE(4314), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5958), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(5016), 35, + ACTIONS(8751), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5956), 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, @@ -427946,8 +429419,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, @@ -427955,15 +429426,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [150561] = 3, + [150508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 4, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5470), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5004), 35, + ACTIONS(5472), 34, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -427973,7 +429446,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, @@ -427999,69 +429471,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [150608] = 3, + [150557] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 4, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4978), 35, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8737), 1, + anon_sym_RBRACE, + ACTIONS(8913), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(7695), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150654] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 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, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8819), 1, + anon_sym_COMMA, + ACTIONS(8915), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(7672), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [150655] = 3, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150751] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 4, + STATE(4470), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5925), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(4982), 35, + ACTIONS(8917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5923), 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, @@ -428078,8 +429648,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, @@ -428087,323 +429655,441 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [150702] = 6, + [150802] = 28, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(8655), 31, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8819), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - 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__, + ACTIONS(8919), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(7512), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6432), 2, + 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, - [150755] = 16, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150899] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(8183), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8747), 1, + anon_sym_COMMA, + ACTIONS(8921), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + STATE(7355), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, anon_sym_STAR, - ACTIONS(8185), 1, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, - ACTIONS(8187), 1, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [150996] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 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, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8735), 1, 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, - [150828] = 28, + ACTIONS(8923), 1, + anon_sym_COMMA, + ACTIONS(8926), 1, + anon_sym_RBRACE, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151093] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8830), 1, - anon_sym_COMMA, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8900), 1, - anon_sym_RBRACK, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8805), 1, + anon_sym_SEMI, + ACTIONS(8928), 1, + anon_sym_COMMA, + ACTIONS(8931), 1, + anon_sym_RBRACE, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7432), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [150925] = 12, + [151190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(8902), 1, + ACTIONS(7062), 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__, - ACTIONS(8904), 1, anon_sym___attribute, - ACTIONS(8906), 1, - anon_sym_LBRACE, - 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_const, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(5559), 27, + 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(7064), 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___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_GT2, - anon_sym_try, - anon_sym_requires, - [150990] = 28, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151237] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8703), 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, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8908), 1, - anon_sym_GT2, - STATE(3632), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8819), 1, + anon_sym_COMMA, + ACTIONS(8933), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7645), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + STATE(7395), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8707), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [151087] = 3, + [151334] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(67), 1, anon_sym_const, - ACTIONS(5547), 35, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8223), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(8225), 1, anon_sym_AMP_AMP, + ACTIONS(8227), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3045), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6523), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 8, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_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(7143), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -428415,288 +430101,354 @@ 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, - [151134] = 28, + [151407] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8782), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(8910), 1, + ACTIONS(8935), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7573), 1, + STATE(7544), 1, aux_sym_argument_list_repeat1, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [151231] = 28, + [151504] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8912), 1, + ACTIONS(8937), 1, anon_sym_COMMA, - ACTIONS(8914), 1, + ACTIONS(8939), 1, anon_sym_RBRACE, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7574), 1, + STATE(7551), 1, aux_sym_initializer_list_repeat1, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [151328] = 28, + [151601] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8703), 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, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8916), 1, - anon_sym_GT2, - STATE(3632), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8941), 1, + anon_sym_COMMA, + ACTIONS(8943), 1, + anon_sym_RBRACE, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7578), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + STATE(7397), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8707), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [151425] = 4, + [151698] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4174), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, + ACTIONS(8699), 1, anon_sym_PIPE, + ACTIONS(8703), 1, 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, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8717), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(4166), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8945), 1, + anon_sym_RPAREN, + ACTIONS(8947), 1, + anon_sym_SEMI, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [151795] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + STATE(2402), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6066), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5076), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(6068), 28, + 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_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, - [151474] = 3, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [151852] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4984), 4, + STATE(4314), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5962), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(4991), 35, + ACTIONS(8751), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5960), 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, @@ -428713,8 +430465,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, @@ -428722,293 +430472,477 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [151521] = 28, + [151903] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8764), 1, + ACTIONS(8789), 1, anon_sym_LT_LT, - ACTIONS(8766), 1, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8793), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8918), 1, + ACTIONS(8949), 1, anon_sym_GT2, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7298), 1, + STATE(7457), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [151618] = 28, + [152000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(3869), 1, + anon_sym_LBRACE, + ACTIONS(8455), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + STATE(4912), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6275), 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(6277), 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, + [152053] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3869), 1, + anon_sym_LBRACE, + ACTIONS(8455), 1, + anon_sym_LPAREN2, + STATE(4898), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(6242), 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(6244), 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, + [152106] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8764), 1, + ACTIONS(8789), 1, anon_sym_LT_LT, - ACTIONS(8766), 1, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8793), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8920), 1, + ACTIONS(8951), 1, anon_sym_GT2, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7647), 1, + STATE(7571), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [151715] = 28, + [152203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + STATE(4408), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5976), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8953), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5974), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6414), 1, + 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, + [152254] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8820), 1, - anon_sym_COMMA, - ACTIONS(8922), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(8955), 1, + anon_sym_GT2, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7596), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6420), 2, + STATE(7502), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [151812] = 28, + [152351] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8820), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(8924), 1, + ACTIONS(8957), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7661), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(6420), 2, + STATE(7480), 1, + aux_sym_argument_list_repeat1, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [151909] = 4, + [152448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5521), 4, + STATE(4429), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5807), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(8837), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5809), 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, + [152499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5014), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5523), 34, + ACTIONS(5016), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -429018,6 +430952,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, @@ -429043,491 +430978,572 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [151958] = 28, + [152546] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, + ACTIONS(8959), 1, anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8764), 1, - anon_sym_LT_LT, - ACTIONS(8766), 1, - anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8985), 1, + anon_sym_COLON, + ACTIONS(8987), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8926), 1, - anon_sym_GT2, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7380), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8979), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [152055] = 27, + [152640] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8229), 1, + anon_sym_STAR, + ACTIONS(8231), 1, + anon_sym_AMP_AMP, + ACTIONS(8233), 1, + anon_sym_AMP, + STATE(3058), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6613), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6763), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8169), 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, + [152712] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8930), 1, + ACTIONS(8995), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8928), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152150] = 28, + [152806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + STATE(4696), 1, + sym_attribute_specifier, + ACTIONS(6208), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6210), 31, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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, + [152858] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, + anon_sym___attribute, + ACTIONS(8997), 1, + anon_sym_COLON, + ACTIONS(8999), 1, + anon_sym_LBRACE, + STATE(4897), 1, + sym__enum_base_clause, + STATE(4933), 1, + sym_enumerator_list, + STATE(5022), 1, + sym_attribute_specifier, + ACTIONS(6352), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6354), 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, + [152918] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8932), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - STATE(7493), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6420), 2, + ACTIONS(6712), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [152247] = 28, + [153010] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8839), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152344] = 28, + [153102] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8830), 1, + ACTIONS(7786), 1, anon_sym_COMMA, - ACTIONS(8836), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8939), 1, - anon_sym_RBRACK, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9001), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7463), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152441] = 28, + [153196] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(8748), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8703), 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, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8941), 1, - anon_sym_GT2, - STATE(3632), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - STATE(7367), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(7736), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8701), 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, - [152538] = 17, - 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(8764), 1, + ACTIONS(8711), 2, 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, - 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, + ACTIONS(9003), 2, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + anon_sym_RBRACE, + ACTIONS(8705), 3, 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(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [153288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - STATE(4733), 1, + STATE(4698), 1, sym_attribute_specifier, - ACTIONS(6210), 4, + ACTIONS(6150), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6212), 31, + ACTIONS(6152), 31, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -429559,545 +431575,485 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [152664] = 26, + [153340] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - STATE(2491), 1, + ACTIONS(9005), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8928), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152756] = 27, + [153434] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8257), 1, + anon_sym_STAR, + ACTIONS(8259), 1, + anon_sym_AMP_AMP, + ACTIONS(8261), 1, + anon_sym_AMP, + STATE(3073), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6603), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8501), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8169), 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, + [153506] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8943), 1, - anon_sym_COMMA, - ACTIONS(8945), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8463), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [152850] = 26, + [153598] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7015), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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(6935), 1, - anon_sym_LPAREN2, - ACTIONS(7720), 1, - anon_sym_LBRACK, - 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, - anon_sym_PERCENT, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 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, - [153018] = 26, + [153690] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9007), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8947), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153110] = 16, + [153784] = 6, 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(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(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(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6518), 6, - anon_sym_PIPE, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + STATE(4669), 1, + sym_attribute_specifier, + ACTIONS(6204), 4, 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, - 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, - anon_sym_GT_GT, - ACTIONS(6424), 19, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + anon_sym___asm, + ACTIONS(6206), 31, 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_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, - [153242] = 26, + 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, + [153836] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8748), 1, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8764), 1, - anon_sym_LT_LT, - ACTIONS(8766), 1, - anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8987), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(3632), 1, + ACTIONS(9009), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8973), 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, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8979), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [153334] = 16, + [153930] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8257), 1, anon_sym_STAR, - ACTIONS(8232), 1, + ACTIONS(8259), 1, anon_sym_AMP_AMP, - ACTIONS(8234), 1, + ACTIONS(8261), 1, anon_sym_AMP, - STATE(3086), 1, + STATE(3073), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6554), 1, + STATE(6581), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8487), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5860), 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, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -430110,27 +432066,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [153406] = 3, + [154002] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5541), 3, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5543), 35, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8257), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(8259), 1, anon_sym_AMP_AMP, + ACTIONS(8261), 1, + anon_sym_AMP, + STATE(3073), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6612), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8435), 7, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(8169), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -430142,444 +432122,744 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [154074] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8257), 1, + anon_sym_STAR, + ACTIONS(8259), 1, + anon_sym_AMP_AMP, + ACTIONS(8261), 1, + anon_sym_AMP, + STATE(3073), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6619), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6763), 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, - [153452] = 27, + ACTIONS(8169), 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, + [154146] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(8951), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9011), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153546] = 27, + [154240] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, - anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8979), 1, - anon_sym_COLON, - ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9013), 1, + anon_sym_COMMA, + ACTIONS(9015), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [153640] = 26, + [154334] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8947), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [154428] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8243), 1, + anon_sym_STAR, + ACTIONS(8245), 1, + anon_sym_AMP_AMP, + ACTIONS(8247), 1, + anon_sym_AMP, + ACTIONS(8503), 1, + anon_sym___attribute, + STATE(3282), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6638), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8501), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8169), 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, + [154502] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5868), 1, + anon_sym___attribute, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8243), 1, + anon_sym_STAR, + ACTIONS(8245), 1, + anon_sym_AMP_AMP, + ACTIONS(8247), 1, + anon_sym_AMP, + STATE(3282), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6595), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8169), 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, + [154576] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8243), 1, + anon_sym_STAR, + ACTIONS(8245), 1, + anon_sym_AMP_AMP, + ACTIONS(8247), 1, + anon_sym_AMP, + ACTIONS(8437), 1, + anon_sym___attribute, + STATE(3282), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6642), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8435), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8169), 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, + [154650] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(6765), 1, + anon_sym___attribute, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8243), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8838), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8245), 1, 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(8989), 2, + ACTIONS(8247), 1, + anon_sym_AMP, + STATE(3282), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6617), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6763), 6, anon_sym_COMMA, - anon_sym_RBRACK, - 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, - [153732] = 26, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8169), 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, + [154724] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8740), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8748), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8764), 1, + ACTIONS(8789), 1, anon_sym_LT_LT, - ACTIONS(8766), 1, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8768), 1, - anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8799), 1, anon_sym_bitand, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6991), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(7019), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [153824] = 27, + [154812] = 3, 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, + ACTIONS(5470), 3, 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___attribute, + anon_sym_const, + ACTIONS(5472), 35, anon_sym_COMMA, - ACTIONS(8993), 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_LPAREN2, 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_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, - 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, - [153918] = 26, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [154858] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8995), 2, + ACTIONS(9017), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8848), 3, + anon_sym_RPAREN, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [154010] = 13, + [154950] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8235), 1, + anon_sym_STAR, + ACTIONS(8237), 1, + anon_sym_AMP_AMP, + ACTIONS(8239), 1, + anon_sym_AMP, + ACTIONS(8503), 1, + anon_sym___attribute, + STATE(3283), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6569), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8501), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8169), 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, + [155024] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8748), 1, - anon_sym_SLASH, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7608), 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(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6518), 7, + ACTIONS(6444), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -430587,9 +432867,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(6520), 17, + ACTIONS(6446), 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, @@ -430605,252 +432887,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [154076] = 26, + [155084] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8773), 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, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8771), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(6481), 9, 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(8997), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8687), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(8689), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154168] = 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_GT_GT, + ACTIONS(6483), 17, 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(8999), 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, - [154262] = 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_LT_LT, anon_sym_QMARK, - ACTIONS(8983), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, - anon_sym_bitor, - ACTIONS(8987), 1, - anon_sym_bitand, - ACTIONS(9001), 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_bitor, 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_bitand, anon_sym_not_eq, - ACTIONS(8973), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [154356] = 15, + anon_sym_GT2, + [155148] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8748), 1, - anon_sym_SLASH, - ACTIONS(8764), 1, - anon_sym_LT_LT, - ACTIONS(8766), 1, - anon_sym_GT_GT, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7608), 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(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6518), 6, + ACTIONS(6481), 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(6520), 16, + anon_sym_GT_GT, + ACTIONS(6483), 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, @@ -430860,117 +432989,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [154426] = 27, + [155208] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9003), 1, - anon_sym_COMMA, - ACTIONS(9005), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9019), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [154520] = 16, + [155302] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(5868), 1, + anon_sym___attribute, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8235), 1, anon_sym_STAR, - ACTIONS(8232), 1, + ACTIONS(8237), 1, anon_sym_AMP_AMP, - ACTIONS(8234), 1, + ACTIONS(8239), 1, anon_sym_AMP, - STATE(3086), 1, + STATE(3283), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6546), 1, + STATE(6542), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5877), 7, + ACTIONS(5860), 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, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -430983,119 +433113,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [154592] = 26, - 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(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, - 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(9007), 2, - anon_sym_COMMA, - anon_sym_GT2, - 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, - [154684] = 19, + [155376] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(5022), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8235), 1, anon_sym_STAR, - ACTIONS(5024), 1, + ACTIONS(8237), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(8239), 1, anon_sym_AMP, - 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, + ACTIONS(8437), 1, + anon_sym___attribute, + STATE(3283), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6810), 1, + STATE(6593), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4938), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8221), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8435), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -431108,50 +433170,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [154762] = 16, + [155450] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9021), 1, + anon_sym_SEMI, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [155544] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(6765), 1, + anon_sym___attribute, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8235), 1, anon_sym_STAR, - ACTIONS(8232), 1, + ACTIONS(8237), 1, anon_sym_AMP_AMP, - ACTIONS(8234), 1, + ACTIONS(8239), 1, anon_sym_AMP, - STATE(3086), 1, + STATE(3283), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6527), 1, + STATE(6543), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8453), 7, + ACTIONS(6763), 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, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -431164,515 +433294,401 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [154834] = 26, + [155618] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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(9009), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8687), 3, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [154926] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7283), 1, - anon_sym___attribute__, - ACTIONS(7285), 1, - anon_sym___attribute, - STATE(4737), 1, - sym_attribute_specifier, - ACTIONS(6214), 4, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6216), 31, + ACTIONS(6483), 6, + 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, - [154978] = 26, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_or, + anon_sym_GT2, + [155704] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8852), 1, - anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8799), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7766), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8771), 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, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155070] = 27, + ACTIONS(6483), 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, + [155788] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, + ACTIONS(7786), 1, anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9011), 1, + ACTIONS(9023), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [155164] = 27, + [155882] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6481), 1, + anon_sym_PIPE, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, - anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, - anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9013), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8701), 2, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8787), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, anon_sym_or, - ACTIONS(8687), 3, + anon_sym_and, + anon_sym_bitor, + anon_sym_GT2, + [155964] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6481), 1, + anon_sym_PIPE, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(8773), 1, + anon_sym_SLASH, + ACTIONS(8783), 1, + anon_sym_AMP, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8799), 1, + anon_sym_bitand, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8769), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8771), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155258] = 27, + ACTIONS(6483), 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, + [156044] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9015), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9025), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [155352] = 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(6550), 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_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, - [155424] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(5652), 1, - anon_sym_const, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8179), 1, - sym_auto, - ACTIONS(8181), 1, - anon_sym_decltype, - 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(1864), 1, - sym_decltype_auto, - STATE(3551), 1, - sym_parameter_list, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6766), 1, - sym__abstract_declarator, - ACTIONS(8471), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4921), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - 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(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, - [155502] = 6, + [156138] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - STATE(4787), 1, + STATE(4817), 1, sym_attribute_specifier, - ACTIONS(6104), 4, + ACTIONS(6212), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6106), 31, + ACTIONS(6214), 31, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -431704,546 +433720,578 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [155554] = 10, + [156190] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - STATE(3632), 1, + ACTIONS(8773), 1, + anon_sym_SLASH, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, + anon_sym_LT_EQ_GT, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6410), 10, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8771), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6412), 19, + ACTIONS(6483), 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_GT2, - [155614] = 9, + [156266] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - STATE(3632), 1, + ACTIONS(8773), 1, + anon_sym_SLASH, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, + anon_sym_LT_EQ_GT, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6514), 10, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8771), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6516), 21, + ACTIONS(6483), 15, 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, - [155672] = 26, + [156340] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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(8937), 2, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9027), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8687), 3, + anon_sym_GT2, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155764] = 26, + [156432] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8773), 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, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 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, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6481), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, 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(9017), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8687), 3, 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(8689), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [155856] = 27, + anon_sym_GT2, + [156504] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + ACTIONS(8439), 1, + anon_sym_STAR, + ACTIONS(8441), 1, + anon_sym_AMP_AMP, + ACTIONS(8443), 1, + anon_sym_AMP, + STATE(1719), 1, + sym_alignas_qualifier, + STATE(1883), 1, + sym_decltype_auto, + STATE(3544), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6807), 1, + sym__abstract_declarator, + ACTIONS(8453), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4976), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8249), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 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, + [156582] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9019), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8781), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9027), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [155950] = 24, + [156674] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8748), 1, + ACTIONS(8773), 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, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6481), 7, + 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(6483), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, - anon_sym_COMMA, + 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, - ACTIONS(8762), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [156038] = 26, + [156740] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9007), 2, + ACTIONS(9027), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [156130] = 26, + [156832] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8748), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8703), 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, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(3632), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6999), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7736), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9027), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8707), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [156222] = 17, + [156924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(5879), 1, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(8147), 1, + STATE(4835), 1, + sym_attribute_specifier, + ACTIONS(6100), 4, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(8236), 1, + anon_sym_const, + anon_sym___asm, + ACTIONS(6102), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8238), 1, anon_sym_AMP_AMP, - 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(6612), 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), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8141), 12, + 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, @@ -432255,142 +434303,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [156296] = 24, + 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, + [156976] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7606), 1, anon_sym_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(8983), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, - anon_sym_bitor, - ACTIONS(8987), 1, - anon_sym_bitand, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(6470), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 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(6472), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, - ACTIONS(7017), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_LT_LT, anon_sym_QMARK, - [156384] = 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(8455), 1, - anon_sym___attribute, - STATE(3378), 1, - sym_parameter_list, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6589), 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_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, - [156458] = 6, + anon_sym_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, + [157036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - STATE(4790), 1, + STATE(4710), 1, sym_attribute_specifier, - ACTIONS(6108), 4, + ACTIONS(6113), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6110), 31, + ACTIONS(6115), 31, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -432422,160 +434409,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [156510] = 27, + [157088] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9021), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(9029), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [156604] = 24, + [157180] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8965), 1, - anon_sym_PIPE, - 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(8987), 1, - anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8771), 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, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6481), 6, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 4, + ACTIONS(6483), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, - [156692] = 6, + anon_sym_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, + [157250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8217), 1, - sym_auto, - ACTIONS(8219), 1, - anon_sym_decltype, - STATE(4730), 1, - sym_decltype_auto, - ACTIONS(5533), 5, - anon_sym_AMP, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, anon_sym___attribute, + STATE(4727), 1, + sym_attribute_specifier, + ACTIONS(6159), 4, + anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5535), 30, + ACTIONS(6161), 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_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, @@ -432595,285 +434570,290 @@ static const uint16_t ts_small_parse_table[] = { 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, - [156744] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4991), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(4993), 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(4986), 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, - [156792] = 27, + [157302] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9023), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [156886] = 24, + ACTIONS(6973), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [157390] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + STATE(4728), 1, + sym_attribute_specifier, + ACTIONS(6192), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6194), 31, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(7720), 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, + [157442] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8748), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8764), 1, - anon_sym_LT_LT, - ACTIONS(8766), 1, - anon_sym_GT_GT, - ACTIONS(8770), 1, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(6712), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(6995), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(8762), 4, + ACTIONS(8979), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [156974] = 27, + [157534] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9025), 1, + ACTIONS(9031), 1, anon_sym_COMMA, - ACTIONS(9027), 1, + ACTIONS(9033), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [157068] = 10, + [157628] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_DOT, - STATE(2491), 1, + ACTIONS(8965), 1, + anon_sym_SLASH, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6518), 8, + ACTIONS(8963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6481), 7, 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(6520), 21, + ACTIONS(6483), 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, @@ -432891,1154 +434871,1056 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [157128] = 27, + [157692] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 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_SLASH, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8969), 1, - anon_sym_AMP, ACTIONS(8975), 1, - anon_sym_GT_EQ, + anon_sym_AMP, ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + anon_sym_GT_EQ, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(9029), 1, - anon_sym_COLON, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [157222] = 10, + ACTIONS(6483), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + [157778] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_DOT, - STATE(2491), 1, + ACTIONS(8965), 1, + anon_sym_SLASH, + ACTIONS(8971), 1, + anon_sym_PIPE, + ACTIONS(8975), 1, + anon_sym_AMP, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8989), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8991), 1, + anon_sym_bitor, + ACTIONS(8993), 1, + anon_sym_bitand, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6460), 8, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6462), 21, + ACTIONS(6483), 8, 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, - [157282] = 26, + [157862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6481), 1, + anon_sym_PIPE, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8740), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8748), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8754), 1, - anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8975), 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, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, - anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8963), 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, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9031), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8760), 3, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8979), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [157374] = 19, - ACTIONS(3), 1, - sym_comment, - 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, - 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(6800), 1, - sym__abstract_declarator, - ACTIONS(8149), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4934), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8213), 4, + ACTIONS(6483), 9, + anon_sym_DOT_DOT_DOT, 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, - [157452] = 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [157944] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6008), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6011), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(4174), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(6481), 1, anon_sym_PIPE, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(8965), 1, + anon_sym_SLASH, + ACTIONS(8975), 1, anon_sym_AMP, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8989), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8993), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8963), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(4166), 26, + ACTIONS(6483), 11, 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_SEMI, - anon_sym_RBRACE, + 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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [157504] = 26, + [158024] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, - anon_sym_PIPE, - ACTIONS(8685), 1, - anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8989), 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8493), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 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, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [157596] = 27, + ACTIONS(6483), 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, + [158100] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, - anon_sym_PIPE, - ACTIONS(8685), 1, - anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8989), 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(9033), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 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, + ACTIONS(8983), 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, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [157690] = 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(8236), 1, - anon_sym_STAR, - ACTIONS(8238), 1, - anon_sym_AMP_AMP, - 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, + ACTIONS(6483), 15, + anon_sym_DOT_DOT_DOT, 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, - [157764] = 24, + 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, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [158174] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8748), 1, + ACTIONS(8965), 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, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, - anon_sym_bitor, - ACTIONS(8774), 1, - anon_sym_bitand, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6481), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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(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, - [157852] = 27, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [158244] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 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(9035), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(6481), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8683), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(8693), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(8687), 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(8689), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [157946] = 11, - ACTIONS(3), 1, - sym_comment, - 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, + [158310] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, - anon_sym_COMMA, ACTIONS(8959), 1, - anon_sym_SLASH, + anon_sym_COMMA, ACTIONS(8965), 1, + anon_sym_SLASH, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8969), 1, - anon_sym_AMP, ACTIONS(8975), 1, - anon_sym_GT_EQ, + anon_sym_AMP, ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8987), 1, anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(9037), 1, + ACTIONS(9035), 1, anon_sym_COLON, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158102] = 27, + [158404] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 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(9039), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 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, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, + ACTIONS(6481), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + anon_sym_AMP_AMP, + anon_sym_CARET, 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, - ACTIONS(8689), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [158196] = 26, + [158472] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8748), 1, + ACTIONS(8805), 1, + anon_sym_COLON, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8764), 1, - anon_sym_LT_LT, - ACTIONS(8766), 1, - anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8987), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6664), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8979), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [158288] = 24, + [158566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + STATE(4813), 1, + sym_attribute_specifier, + ACTIONS(6127), 4, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6129), 31, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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, + [158618] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8959), 1, - anon_sym_SLASH, ACTIONS(8965), 1, + anon_sym_SLASH, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8969), 1, - anon_sym_AMP, ACTIONS(8975), 1, + anon_sym_AMP, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6949), 4, + ACTIONS(7011), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [158376] = 26, + [158706] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7015), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9031), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158468] = 26, + [158798] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8959), 1, - anon_sym_SLASH, ACTIONS(8965), 1, + anon_sym_SLASH, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8969), 1, - anon_sym_AMP, ACTIONS(8975), 1, - anon_sym_GT_EQ, + anon_sym_AMP, ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + anon_sym_GT_EQ, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6664), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158560] = 27, + ACTIONS(7019), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [158886] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9041), 1, - anon_sym_COMMA, - ACTIONS(9043), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7023), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [158654] = 6, + [158978] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, - anon_sym___attribute__, - ACTIONS(7285), 1, - anon_sym___attribute, - STATE(4665), 1, - sym_attribute_specifier, - ACTIONS(6149), 4, - anon_sym_AMP, - anon_sym_LBRACK, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5664), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(6151), 31, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + ACTIONS(8439), 1, + anon_sym_STAR, + ACTIONS(8441), 1, + anon_sym_AMP_AMP, + ACTIONS(8443), 1, + anon_sym_AMP, + STATE(1719), 1, + sym_alignas_qualifier, + STATE(1883), 1, + sym_decltype_auto, + STATE(3544), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6805), 1, + sym__abstract_declarator, + ACTIONS(8453), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4964), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8266), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 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, + [159056] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(2252), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5089), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(6189), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5141), 8, + 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_LBRACK, + anon_sym_GT2, + ACTIONS(5138), 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, @@ -434052,29 +435934,26 @@ 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_try, anon_sym_requires, - [158706] = 6, + [159108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - STATE(4763), 1, + STATE(4823), 1, sym_attribute_specifier, - ACTIONS(6153), 4, + ACTIONS(6131), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6155), 31, + ACTIONS(6133), 31, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -434106,116 +435985,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [158758] = 26, + [159160] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8691), 1, - anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8799), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8769), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8771), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8781), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8785), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(7037), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8787), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [159248] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6440), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 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(6442), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8683), 2, 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, - ACTIONS(8693), 2, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_GT2, + [159306] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + ACTIONS(8765), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8773), 1, + anon_sym_SLASH, + ACTIONS(8779), 1, + anon_sym_PIPE, + ACTIONS(8783), 1, + anon_sym_AMP, + ACTIONS(8789), 1, anon_sym_LT_LT, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8701), 2, + ACTIONS(8793), 1, + anon_sym_QMARK, + ACTIONS(8795), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8797), 1, + anon_sym_bitor, + ACTIONS(8799), 1, + anon_sym_bitand, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8769), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8771), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9031), 2, + ACTIONS(8777), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8781), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9037), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(8687), 3, + anon_sym_GT2, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [158850] = 16, + [159398] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8256), 1, + ACTIONS(5030), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(5032), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(5034), 1, anon_sym_AMP, - STATE(3095), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + STATE(1883), 1, + sym_decltype_auto, + STATE(3134), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6541), 1, + STATE(6814), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4939), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + ACTIONS(8249), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - 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(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -434228,21 +436223,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [158922] = 6, + [159476] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(9045), 1, + ACTIONS(9039), 1, + anon_sym_LT, + STATE(2402), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2594), 1, + sym_template_argument_list, + ACTIONS(4159), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5076), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4166), 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, + [159532] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(9039), 1, anon_sym_LT, - STATE(2578), 1, + STATE(2594), 1, sym_template_argument_list, - ACTIONS(5834), 4, + ACTIONS(4915), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(4192), 31, + ACTIONS(4922), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -434274,41 +436317,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [158974] = 12, + [159584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5052), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6072), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6075), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, - anon_sym_DOT, - ACTIONS(8959), 1, - anon_sym_SLASH, - 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, + ACTIONS(4168), 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, - ACTIONS(6520), 19, + anon_sym_DOT, + ACTIONS(4161), 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, @@ -434317,7 +436349,8 @@ 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_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -434326,1202 +436359,1311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [159038] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [159636] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8229), 1, + anon_sym_STAR, + ACTIONS(8231), 1, + anon_sym_AMP_AMP, + ACTIONS(8233), 1, + anon_sym_AMP, + STATE(3058), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6562), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8435), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8169), 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, + [159708] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9047), 1, - anon_sym_COMMA, - ACTIONS(9049), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9041), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159132] = 23, + [159802] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9043), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8963), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_or, - [159218] = 22, + [159896] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9045), 1, + anon_sym_COMMA, + ACTIONS(9047), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8967), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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, - anon_sym_or, - anon_sym_and, - [159302] = 27, + [159990] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, - anon_sym_COMMA, ACTIONS(8959), 1, - anon_sym_SLASH, + anon_sym_COMMA, ACTIONS(8965), 1, + anon_sym_SLASH, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8969), 1, - anon_sym_AMP, ACTIONS(8975), 1, - anon_sym_GT_EQ, + anon_sym_AMP, ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8987), 1, anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(9051), 1, + ACTIONS(9049), 1, anon_sym_COLON, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8977), 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, - [159396] = 9, - 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(6433), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8979), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(6435), 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, - 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, - [159454] = 27, + [160084] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8711), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(9051), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159548] = 21, + [160176] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6518), 1, - anon_sym_PIPE, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8969), 1, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8987), 1, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(7780), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8967), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8863), 3, anon_sym_GT, 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_COLON, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [159630] = 27, + [160268] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, - anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, ACTIONS(9053), 1, - anon_sym_COLON, - STATE(2491), 1, + anon_sym_COMMA, + ACTIONS(9055), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [159724] = 16, + [160362] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8457), 1, anon_sym_LBRACK, - ACTIONS(8256), 1, + STATE(4810), 1, + sym_new_declarator, + ACTIONS(6375), 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(6377), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8258), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, 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(6588), 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_SEMI, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, 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, - [159796] = 24, + 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, + [160412] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9057), 1, + anon_sym_COMMA, + ACTIONS(9059), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6949), 4, + [160506] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + anon_sym_DOT, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(6456), 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(6458), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_STAR, + 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, - [159884] = 26, + anon_sym_LT_EQ_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, + [160564] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8852), 1, - anon_sym_GT_EQ, - ACTIONS(8858), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8793), 1, anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8799), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7023), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6664), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8787), 4, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [159976] = 6, - ACTIONS(3), 1, - sym_comment, - 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_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_GT2, - 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, - [160028] = 23, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [160656] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8852), 1, - anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8799), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8840), 2, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 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(6520), 6, + ACTIONS(7033), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_or, - [160114] = 22, + anon_sym_GT2, + ACTIONS(8787), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [160744] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9061), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8844), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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, + [160838] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(6518), 1, - anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8846), 1, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8864), 1, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9063), 1, + anon_sym_COMMA, + ACTIONS(9065), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8844), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, 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_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - [160280] = 20, + [160932] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(6518), 1, - anon_sym_PIPE, - ACTIONS(8836), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8846), 1, + ACTIONS(8971), 1, + anon_sym_PIPE, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8864), 1, + ACTIONS(8991), 1, + anon_sym_bitor, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(9067), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8979), 3, anon_sym_GT, 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_RBRACK, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [160360] = 18, + [161026] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8852), 1, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(8735), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6518), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 12, - 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, - [160436] = 17, + [161120] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8852), 1, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9069), 1, + anon_sym_COMMA, + ACTIONS(9071), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6518), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8850), 3, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [161214] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5007), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(5009), 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(6520), 15, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5002), 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_RBRACK, + 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, - [160510] = 15, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [161262] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8860), 1, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9073), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 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(6520), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 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, - [160580] = 13, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [161356] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8836), 1, - anon_sym_SLASH, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(6422), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6518), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 19, + 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_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -435530,676 +437672,771 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [160646] = 14, + anon_sym_GT2, + [161416] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - STATE(2491), 1, + ACTIONS(8971), 1, + anon_sym_PIPE, + ACTIONS(8975), 1, + anon_sym_AMP, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8989), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8991), 1, + anon_sym_bitor, + ACTIONS(8993), 1, + anon_sym_bitand, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8854), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 17, + ACTIONS(7033), 4, 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_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, - [160714] = 16, + [161504] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 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(3007), 1, + anon_sym_TILDE, + ACTIONS(4318), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8256), 1, + ACTIONS(4320), 1, anon_sym_STAR, - ACTIONS(8258), 1, + ACTIONS(4322), 1, anon_sym_AMP_AMP, - ACTIONS(8260), 1, + ACTIONS(4324), 1, anon_sym_AMP, - STATE(3095), 1, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(5872), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(8378), 1, + anon_sym_RPAREN, + STATE(3134), 1, sym_parameter_list, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(6109), 1, + STATE(5903), 1, + sym__scope_resolution, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6547), 1, + STATE(6589), 1, + sym__declarator, + STATE(6836), 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, + STATE(8850), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6117), 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, + STATE(6137), 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, + [161590] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6987), 4, + ACTIONS(7037), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - [160874] = 26, + [161678] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8852), 1, - anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8799), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(3674), 1, sym_argument_list, - STATE(2492), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6991), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8048), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(7011), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8787), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [160966] = 24, + [161766] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(9075), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [161858] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(7826), 1, + anon_sym_DOT, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(6481), 8, + 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(6995), 4, + ACTIONS(6483), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_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, - [161054] = 26, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [161918] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, + ACTIONS(8987), 1, anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(9077), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6999), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161146] = 20, + [162012] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6518), 1, - anon_sym_PIPE, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_DOT, - 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(6422), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, - anon_sym_STAR, - anon_sym_PERCENT, - 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_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 11, + ACTIONS(6424), 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, - [161226] = 24, + anon_sym_bitand, + anon_sym_not_eq, + [162072] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9079), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 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, - [161314] = 24, + [162166] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8860), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(9081), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(7021), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [161402] = 27, + [162258] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6024), 1, + anon_sym_LBRACE, + STATE(1925), 1, + sym_attribute_specifier, + STATE(5159), 1, + sym_field_declaration_list, + STATE(7221), 1, + sym_virtual_specifier, + STATE(7936), 1, + sym_base_class_clause, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(5603), 3, anon_sym_LPAREN2, - ACTIONS(6414), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(5601), 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, + [162320] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, + ACTIONS(7786), 1, anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9055), 1, + ACTIONS(9083), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161496] = 16, + [162414] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(9039), 1, + anon_sym_LT, + STATE(2594), 1, + sym_template_argument_list, + ACTIONS(5839), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(4180), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8256), 1, anon_sym_STAR, - ACTIONS(8258), 1, + anon_sym_PIPE_PIPE, 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(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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -436211,30 +438448,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [161568] = 6, + 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, + [162466] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(8753), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(8755), 1, anon_sym___attribute, - STATE(4719), 1, + ACTIONS(8997), 1, + anon_sym_COLON, + ACTIONS(8999), 1, + anon_sym_LBRACE, + STATE(4916), 1, + sym__enum_base_clause, + STATE(4924), 1, + sym_enumerator_list, + STATE(5011), 1, sym_attribute_specifier, - ACTIONS(6161), 4, + ACTIONS(6346), 2, anon_sym_AMP, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(6163), 31, + ACTIONS(6348), 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, @@ -436249,434 +438501,787 @@ 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, - [161620] = 26, + [162526] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9085), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [162620] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8740), 1, + ACTIONS(8765), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8748), 1, + ACTIONS(8773), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8779), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8783), 1, anon_sym_AMP, - ACTIONS(8764), 1, + ACTIONS(8789), 1, anon_sym_LT_LT, - ACTIONS(8766), 1, + ACTIONS(8791), 1, anon_sym_GT_GT, - ACTIONS(8768), 1, + ACTIONS(8793), 1, anon_sym_QMARK, - ACTIONS(8770), 1, + ACTIONS(8795), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8797), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8799), 1, anon_sym_bitand, - STATE(3632), 1, + STATE(3674), 1, sym_argument_list, - STATE(3652), 1, + STATE(3678), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7608), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8769), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8771), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8775), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8777), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8781), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, + ACTIONS(8801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9031), 2, + ACTIONS(9017), 2, anon_sym_COMMA, anon_sym_GT2, - ACTIONS(8760), 3, + ACTIONS(8785), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8787), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [161712] = 18, + [162712] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(8253), 1, + sym_auto, + ACTIONS(8255), 1, + anon_sym_decltype, + STATE(4676), 1, + sym_decltype_auto, + ACTIONS(5637), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5639), 30, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [162764] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8975), 1, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9087), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6518), 2, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [162858] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, anon_sym_PIPE, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(7616), 2, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6973), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [162946] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, + anon_sym_AMP, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(6712), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8977), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [163038] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8847), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(6481), 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), 12, + ACTIONS(6483), 19, 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_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, - [161788] = 26, + anon_sym_not_eq, + [163102] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8989), 2, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - ACTIONS(8848), 3, + anon_sym_QMARK, + anon_sym_or, + [163188] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, + anon_sym_AMP, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161880] = 27, + ACTIONS(6483), 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, + [163272] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 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, + ACTIONS(6481), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, - anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9057), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [161974] = 27, + ACTIONS(6483), 9, + 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, + anon_sym_bitor, + [163354] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 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, + ACTIONS(6481), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, - anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9059), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 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, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162068] = 17, + ACTIONS(6483), 11, + 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, + [163434] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8975), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6518), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8973), 3, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 15, + ACTIONS(6483), 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_COLON, + 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, - [162142] = 15, + [163510] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8983), 1, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(6481), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 5, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 16, + ACTIONS(6483), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -436684,8 +439289,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_RBRACK, anon_sym_QMARK, anon_sym_or, anon_sym_and, @@ -436693,40 +439297,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [162212] = 13, + [163584] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - STATE(2491), 1, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(6518), 5, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6481), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 19, + ACTIONS(6483), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -436735,121 +439344,104 @@ 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_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, - [162278] = 27, + [163654] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, - anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(8849), 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(9061), 1, - anon_sym_COLON, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(6481), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6483), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_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, - ACTIONS(8973), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [162372] = 14, + [163720] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6518), 5, + ACTIONS(6481), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6520), 17, + ACTIONS(6483), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -436858,7 +439450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -436867,827 +439459,610 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [162440] = 6, - ACTIONS(3), 1, - sym_comment, - 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, + [163788] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9063), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162586] = 27, + ACTIONS(7011), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [163876] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8878), 1, - anon_sym_COLON, - ACTIONS(8953), 1, - anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(7015), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162680] = 9, + [163968] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 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(6514), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8849), 1, anon_sym_SLASH, + ACTIONS(8855), 1, anon_sym_PIPE, + ACTIONS(8859), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6516), 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, + ACTIONS(8865), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8875), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8877), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [162738] = 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(4895), 1, - sym__enum_base_clause, - STATE(4959), 1, - sym_enumerator_list, - STATE(4998), 1, - sym_attribute_specifier, - ACTIONS(6316), 2, - anon_sym_AMP, - anon_sym_const, - 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_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, - [162798] = 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6410), 8, + ACTIONS(8845), 2, 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(6412), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8867), 2, 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, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [162858] = 27, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7019), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [164056] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, - anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(9069), 1, - anon_sym_COLON, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(7023), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [162952] = 10, + [164148] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 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(6422), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(8849), 1, anon_sym_SLASH, + ACTIONS(8855), 1, anon_sym_PIPE, + ACTIONS(8859), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(6424), 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, + ACTIONS(8865), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8875), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8877), 1, anon_sym_bitand, - anon_sym_not_eq, - [163012] = 9, - 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, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(6433), 8, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, 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(6435), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8867), 2, 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, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [163070] = 6, - ACTIONS(3), 1, - sym_comment, - 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, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(7033), 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, - [163122] = 24, + anon_sym_RBRACK, + anon_sym_QMARK, + [164236] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8748), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8764), 1, - anon_sym_LT_LT, - ACTIONS(8766), 1, - anon_sym_GT_GT, - ACTIONS(8770), 1, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8750), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8752), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 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(8762), 4, + ACTIONS(8863), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [163210] = 27, + ACTIONS(7037), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [164324] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, + ACTIONS(7786), 1, anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8806), 1, + ACTIONS(9089), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163304] = 27, + [164418] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9071), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9091), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163398] = 27, + [164512] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, + ACTIONS(7786), 1, anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9073), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9093), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [163492] = 6, + [164606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - STATE(4739), 1, + STATE(4687), 1, sym_attribute_specifier, - ACTIONS(6165), 4, + ACTIONS(6228), 4, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(6167), 31, + ACTIONS(6230), 31, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -437719,159 +440094,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [163544] = 24, + [164658] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - 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, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(6456), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6458), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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(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, - [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_LT_LT, + anon_sym_GT_GT, 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, + 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, + [164716] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8748), 1, - anon_sym_SLASH, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8746), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8776), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(6518), 9, + ACTIONS(6444), 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, - ACTIONS(6520), 17, + ACTIONS(6446), 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, @@ -437880,225 +440193,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, 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, + [164776] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_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(8983), 1, - anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, - anon_sym_bitor, - ACTIONS(8987), 1, - anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(6470), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(6472), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, - ACTIONS(6987), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, anon_sym_QMARK, - [163910] = 26, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [164836] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8959), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9095), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6991), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164002] = 10, + [164930] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - STATE(3632), 1, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(6518), 10, + ACTIONS(6440), 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, - ACTIONS(6520), 19, + ACTIONS(6442), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -438108,7 +440345,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_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -438117,376 +440357,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [164062] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [164988] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6953), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7602), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7606), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8773), 1, + anon_sym_SLASH, + ACTIONS(8779), 1, + anon_sym_PIPE, + ACTIONS(8783), 1, + anon_sym_AMP, + ACTIONS(8789), 1, + anon_sym_LT_LT, + ACTIONS(8791), 1, + anon_sym_GT_GT, + ACTIONS(8795), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8797), 1, + anon_sym_bitor, + ACTIONS(8799), 1, + anon_sym_bitand, + STATE(3674), 1, + sym_argument_list, + STATE(3678), 1, + sym_subscript_argument_list, + ACTIONS(7608), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8769), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8771), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8775), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8777), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8781), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8801), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8785), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(6973), 4, anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, anon_sym_COMMA, - ACTIONS(8959), 1, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(8787), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [165076] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(9075), 1, - anon_sym_COLON, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9097), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164156] = 19, + [165170] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(5652), 1, - anon_sym_const, - ACTIONS(8147), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(8179), 1, - sym_auto, - ACTIONS(8181), 1, - anon_sym_decltype, - ACTIONS(8457), 1, - anon_sym_STAR, - ACTIONS(8459), 1, - anon_sym_AMP_AMP, + ACTIONS(6430), 1, + anon_sym_DOT, ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, anon_sym_AMP, - STATE(1702), 1, - sym_alignas_qualifier, - STATE(1864), 1, - sym_decltype_auto, - STATE(3551), 1, - sym_parameter_list, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6747), 1, - sym__abstract_declarator, - ACTIONS(8471), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4923), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(8221), 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, - [164234] = 23, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8926), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [165262] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8748), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8699), 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, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(3632), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8752), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8756), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8931), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8707), 3, 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, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_GT2, - [164320] = 27, + [165354] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9077), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9099), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164414] = 27, + [165448] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, + ACTIONS(7786), 1, anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(9079), 1, - anon_sym_COLON, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9101), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164508] = 17, + [165542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(5879), 1, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(8147), 1, + STATE(4692), 1, + sym_attribute_specifier, + ACTIONS(6181), 4, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(8250), 1, + anon_sym_const, + anon_sym___asm, + ACTIONS(6183), 31, + anon_sym_COMMA, + anon_sym_LPAREN2, 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(6601), 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), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8141), 12, + 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, @@ -438498,108 +440792,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [164582] = 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(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_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_GT2, + 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, - [164656] = 17, + [165594] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6783), 1, - anon_sym___attribute, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8250), 1, + ACTIONS(8229), 1, anon_sym_STAR, - ACTIONS(8252), 1, + ACTIONS(8231), 1, anon_sym_AMP_AMP, - ACTIONS(8254), 1, + ACTIONS(8233), 1, anon_sym_AMP, - STATE(3371), 1, + STATE(3058), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6604), 1, + STATE(6552), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6781), 6, + ACTIONS(8501), 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(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -438612,1244 +440858,966 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [164730] = 22, + [165666] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8748), 1, + ACTIONS(7786), 1, + anon_sym_COMMA, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8754), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8758), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8764), 1, - anon_sym_LT_LT, - ACTIONS(8766), 1, - anon_sym_GT_GT, - ACTIONS(8770), 1, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8772), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8774), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(3632), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9103), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8756), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8707), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - 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, + [165760] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8959), 1, + anon_sym_COMMA, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9081), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9105), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [164908] = 27, + [165854] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9083), 1, - anon_sym_COMMA, - ACTIONS(9085), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(9107), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165002] = 24, + [165946] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8959), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8983), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(9081), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(6995), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [165090] = 27, + [166038] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, - anon_sym_COMMA, ACTIONS(8959), 1, - anon_sym_SLASH, + anon_sym_COMMA, ACTIONS(8965), 1, + anon_sym_SLASH, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8969), 1, - anon_sym_AMP, ACTIONS(8975), 1, - anon_sym_GT_EQ, + anon_sym_AMP, ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8987), 1, anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(9087), 1, + ACTIONS(9109), 1, anon_sym_COLON, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8967), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165184] = 10, + [166132] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6935), 1, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(8175), 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(6460), 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(6462), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8229), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8231), 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, - [165244] = 23, + ACTIONS(8233), 1, + anon_sym_AMP, + STATE(3058), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6610), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8169), 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, + [166204] = 19, 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, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(4312), 1, + ACTIONS(5030), 1, anon_sym_STAR, - ACTIONS(4314), 1, + ACTIONS(5032), 1, anon_sym_AMP_AMP, - ACTIONS(4316), 1, + ACTIONS(5034), 1, anon_sym_AMP, - ACTIONS(5481), 1, - sym_identifier, - ACTIONS(5875), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(6365), 1, - anon_sym_COLON_COLON, - ACTIONS(8360), 1, - anon_sym_RPAREN, - STATE(3113), 1, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + STATE(1883), 1, + sym_decltype_auto, + STATE(3134), 1, sym_parameter_list, - STATE(5923), 1, - sym__scope_resolution, - STATE(6109), 1, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6634), 1, - sym__declarator, - STATE(6796), 1, + STATE(6843), 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, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4945), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8266), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6117), 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, - [165330] = 21, + ACTIONS(8169), 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, + [166282] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 1, - anon_sym_PIPE, - ACTIONS(6935), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8748), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8758), 1, + ACTIONS(8971), 1, + anon_sym_PIPE, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8764), 1, - anon_sym_LT_LT, - ACTIONS(8766), 1, - anon_sym_GT_GT, - ACTIONS(8770), 1, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8774), 1, + ACTIONS(8991), 1, + anon_sym_bitor, + ACTIONS(8993), 1, anon_sym_bitand, - STATE(3632), 1, + ACTIONS(9111), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(3652), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7736), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8744), 2, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8746), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8756), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8776), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(8760), 3, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8762), 4, + ACTIONS(8979), 3, 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, + [166373] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9089), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9113), 1, + anon_sym_COMMA, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165506] = 27, + [166464] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(7778), 1, - anon_sym_COMMA, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9091), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9115), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165600] = 8, - ACTIONS(3), 1, - sym_comment, - 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(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, - 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, - [165656] = 27, + [166555] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(4877), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8953), 1, - anon_sym_COMMA, - ACTIONS(8959), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(9093), 1, - anon_sym_COLON, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8863), 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, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [165802] = 26, + [166646] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8959), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9117), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6999), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [165894] = 6, - ACTIONS(3), 1, - sym_comment, - 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, + [166737] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6518), 1, - anon_sym_PIPE, - ACTIONS(6935), 1, + ACTIONS(4881), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7720), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7734), 1, + ACTIONS(6430), 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(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), 11, + ACTIONS(8461), 1, 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, + ACTIONS(8849), 1, anon_sym_SLASH, + ACTIONS(8855), 1, anon_sym_PIPE, + ACTIONS(8859), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(8865), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - 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, + ACTIONS(8871), 1, anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(8875), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(8877), 1, 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, - [166210] = 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(8836), 1, - anon_sym_SLASH, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8834), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(6518), 7, + ACTIONS(8845), 2, 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, - anon_sym_COMMA, + ACTIONS(8847), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(8867), 2, 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, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [166274] = 26, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [166828] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(9095), 1, - anon_sym_RBRACK, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9119), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166365] = 22, + [166919] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8290), 1, + sym_identifier, + ACTIONS(8292), 1, + anon_sym_LPAREN2, + ACTIONS(8294), 1, + anon_sym_STAR, + ACTIONS(8296), 1, + anon_sym_AMP_AMP, + ACTIONS(8298), 1, + anon_sym_AMP, + ACTIONS(8304), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2996), 1, + sym__type_declarator, + STATE(3290), 1, + sym_pointer_type_declarator, + STATE(8864), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8302), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3288), 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, + [166992] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -439860,45 +441828,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2999), 1, - anon_sym_TILDE, - ACTIONS(4310), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(4312), 1, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(4314), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(4316), 1, + ACTIONS(7287), 1, anon_sym_AMP, - ACTIONS(5481), 1, - sym_identifier, - ACTIONS(5875), 1, - anon_sym_LBRACK, - 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, + STATE(5367), 1, + sym_ms_call_modifier, + STATE(5729), 1, + sym__declarator, + STATE(5965), 1, + sym__scope_resolution, + STATE(7667), 1, + sym_init_declarator, + STATE(8848), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 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, + ACTIONS(1806), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -439910,51 +441877,27 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [166448] = 17, + [167073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8284), 1, - sym_identifier, - ACTIONS(8286), 1, + ACTIONS(5713), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5715), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8296), 1, - sym_primitive_type, - ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(8334), 1, anon_sym_AMP_AMP, - 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_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, @@ -439966,72 +441909,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [166521] = 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, + [167118] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(4835), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9097), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166612] = 21, + [167209] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -440042,33 +441995,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7287), 1, anon_sym_AMP, - STATE(5300), 1, + STATE(5324), 1, sym_ms_call_modifier, - STATE(5896), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6033), 1, + STATE(5990), 1, sym__declarator, - STATE(7416), 1, + STATE(7680), 1, sym_init_declarator, - STATE(8504), 1, + STATE(8848), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -440079,7 +442032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -440091,266 +442044,276 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [166693] = 21, + [167290] = 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, + ACTIONS(5850), 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, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9121), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, anon_sym_STAR, - ACTIONS(7107), 1, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, - 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, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [167381] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9099), 1, + ACTIONS(9123), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166865] = 26, + [167472] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(4781), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9101), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [166956] = 21, + [167563] = 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, + ACTIONS(5850), 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, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9125), 1, + anon_sym_SEMI, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, anon_sym_STAR, - ACTIONS(7107), 1, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, - ACTIONS(7109), 1, - anon_sym_AMP, - 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, - 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, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [167654] = 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, @@ -440383,441 +442346,394 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [167082] = 26, + [167699] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9127), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167173] = 26, + [167790] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4731), 1, + ACTIONS(4899), 1, anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167264] = 26, + [167881] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4895), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9129), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167355] = 26, + [167972] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9103), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9131), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 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, + ACTIONS(8695), 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, - [167446] = 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(9105), 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, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167537] = 26, + [168063] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(9107), 1, - anon_sym_RBRACK, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9133), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167628] = 17, + [168154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8298), 1, - sym_identifier, - ACTIONS(8300), 1, + ACTIONS(5795), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5797), 32, + anon_sym_COMMA, 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(2909), 1, - sym__type_declarator, - STATE(3374), 1, - sym_pointer_type_declarator, - STATE(8189), 1, - sym_ms_based_modifier, - ACTIONS(69), 2, + 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, - 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_asm, + anon_sym___asm__, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168199] = 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, @@ -440829,406 +442745,824 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [167701] = 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, + [168244] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9109), 1, + ACTIONS(9135), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167792] = 26, + [168335] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9111), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9137), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167883] = 26, + [168426] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(4786), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9113), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [167974] = 26, + [168517] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9115), 1, + ACTIONS(9139), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168065] = 26, + [168608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5657), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5659), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [168653] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, + anon_sym_STAR, + ACTIONS(7285), 1, + anon_sym_AMP_AMP, + ACTIONS(7287), 1, + anon_sym_AMP, + STATE(5320), 1, + sym_ms_call_modifier, + STATE(5732), 1, + sym__declarator, + STATE(5965), 1, + sym__scope_resolution, + STATE(7680), 1, + sym_init_declarator, + STATE(8848), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [168734] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5811), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5813), 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, + [168779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5727), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5729), 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, + [168824] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8322), 1, + sym_identifier, + ACTIONS(8324), 1, + anon_sym_LPAREN2, + ACTIONS(8326), 1, + anon_sym_STAR, + ACTIONS(8328), 1, + anon_sym_AMP_AMP, + ACTIONS(8330), 1, + anon_sym_AMP, + ACTIONS(8334), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5997), 1, + sym__type_declarator, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(8469), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6208), 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, + [168897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5676), 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, + [168942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5682), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5684), 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, + [168987] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9141), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168156] = 26, + [169078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4758), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(5697), 5, + anon_sym_AMP, + anon_sym___attribute, 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_const, + anon_sym___asm, + ACTIONS(5699), 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, + [169123] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8727), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + ACTIONS(4180), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(5839), 30, 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___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, + [169174] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8838), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(7285), 1, 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, - [168247] = 3, + ACTIONS(7287), 1, + anon_sym_AMP, + STATE(5347), 1, + sym_ms_call_modifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6020), 1, + sym__declarator, + STATE(7434), 1, + sym_init_declarator, + STATE(8848), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [169255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5742), 5, + ACTIONS(5709), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5744), 32, + ACTIONS(5711), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -441261,16 +443595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [168292] = 3, + [169300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 5, + ACTIONS(5745), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5798), 32, + ACTIONS(5747), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -441303,183 +443637,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [168337] = 26, + [169345] = 3, 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, + ACTIONS(5749), 5, 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(9117), 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(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, - [168428] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, + anon_sym___attribute, 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, - ACTIONS(9119), 1, - anon_sym_RBRACK, - 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, - [168519] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3339), 1, anon_sym_const, - ACTIONS(5020), 1, + anon_sym___asm, + ACTIONS(5751), 32, + anon_sym_COMMA, 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_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, @@ -441491,81 +443669,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168596] = 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, + [169390] = 3, 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, + ACTIONS(5753), 5, 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(9121), 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___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5755), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, 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, - [168687] = 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, + [169435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 5, + ACTIONS(5693), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5822), 32, + ACTIONS(5695), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -441598,81 +443763,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [168732] = 26, + [169480] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4863), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9143), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [168823] = 3, + [169571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 5, + ACTIONS(5719), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5740), 32, + ACTIONS(5721), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -441705,181 +443870,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [168868] = 26, + [169616] = 3, 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, + ACTIONS(5788), 5, 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(9123), 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(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, - [168959] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, + anon_sym___attribute, 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(9125), 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, - [169050] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8268), 1, - sym_identifier, - ACTIONS(8270), 1, + anon_sym_const, + anon_sym___asm, + ACTIONS(5790), 32, + anon_sym_COMMA, 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_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, @@ -441891,146 +443902,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [169123] = 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, + [169661] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8959), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(9127), 1, - anon_sym_COLON, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9145), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169214] = 26, + [169752] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4799), 1, + ACTIONS(4709), 1, anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169305] = 3, + [169843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5788), 5, + ACTIONS(5537), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5790), 32, + ACTIONS(5539), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -442063,43 +444084,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [169350] = 17, + [169888] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8318), 1, + ACTIONS(8336), 1, sym_identifier, - ACTIONS(8320), 1, + ACTIONS(8338), 1, anon_sym_LPAREN2, - ACTIONS(8322), 1, + ACTIONS(8340), 1, anon_sym_STAR, - ACTIONS(8324), 1, + ACTIONS(8342), 1, anon_sym_AMP_AMP, - ACTIONS(8326), 1, + ACTIONS(8344), 1, anon_sym_AMP, - ACTIONS(8330), 1, + ACTIONS(8348), 1, sym_primitive_type, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(3099), 1, + STATE(3156), 1, sym__type_declarator, - STATE(3541), 1, + STATE(3498), 1, sym_pointer_type_declarator, - STATE(8597), 1, + STATE(8509), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8328), 4, + ACTIONS(8346), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3536), 5, + STATE(3473), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -442119,664 +444140,1280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [169423] = 26, + [169961] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4780), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9147), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169514] = 26, + [170052] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8336), 1, + sym_identifier, + ACTIONS(8338), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8340), 1, + anon_sym_STAR, + ACTIONS(8342), 1, + anon_sym_AMP_AMP, + ACTIONS(8344), 1, + anon_sym_AMP, + ACTIONS(8348), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3077), 1, + sym__type_declarator, + STATE(3498), 1, + sym_pointer_type_declarator, + STATE(8509), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8346), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3473), 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, + [170125] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9129), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9149), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169605] = 26, + [170216] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6093), 1, + sym__type_declarator, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 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, + [170289] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5723), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5725), 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, + [170334] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9131), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9151), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169696] = 26, + [170425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5819), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5821), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [170470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5835), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5837), 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, + [170515] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4901), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9133), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169787] = 26, + [170606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(9153), 1, + anon_sym_LBRACK_LBRACK, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6319), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(6414), 1, + 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, + 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, + [170655] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6094), 1, + sym__type_declarator, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 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, + [170728] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6104), 1, + sym__type_declarator, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 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, + [170801] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4907), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9135), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169878] = 26, + [170892] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8322), 1, + sym_identifier, + ACTIONS(8324), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(8334), 1, + sym_primitive_type, + ACTIONS(8368), 1, + anon_sym_STAR, + ACTIONS(8370), 1, + anon_sym_AMP_AMP, + ACTIONS(8372), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(6368), 1, + sym__type_declarator, + STATE(8632), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6208), 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, + [170965] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(9156), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [169969] = 26, + [171056] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8322), 1, + sym_identifier, + ACTIONS(8324), 1, + anon_sym_LPAREN2, + ACTIONS(8334), 1, + sym_primitive_type, + ACTIONS(8368), 1, + anon_sym_STAR, + ACTIONS(8370), 1, + anon_sym_AMP_AMP, + ACTIONS(8372), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(6370), 1, + sym__type_declarator, + STATE(8632), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6208), 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, + [171129] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8322), 1, + sym_identifier, + ACTIONS(8324), 1, + anon_sym_LPAREN2, + ACTIONS(8334), 1, + sym_primitive_type, + ACTIONS(8368), 1, + anon_sym_STAR, + ACTIONS(8370), 1, + anon_sym_AMP_AMP, + ACTIONS(8372), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(6373), 1, + sym__type_declarator, + STATE(8632), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6208), 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, + [171202] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(8930), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9158), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170060] = 26, + [171293] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8322), 1, + sym_identifier, + ACTIONS(8324), 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(9137), 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, + ACTIONS(8326), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8328), 1, 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, - [170151] = 24, + ACTIONS(8330), 1, + anon_sym_AMP, + ACTIONS(8334), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(6048), 1, + sym__type_declarator, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(8469), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6208), 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, + [171366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, - anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(5727), 5, anon_sym_AMP, - ACTIONS(7071), 1, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, 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, + ACTIONS(5729), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(9144), 1, - anon_sym___attribute, - ACTIONS(9147), 1, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, - anon_sym_LBRACK, - 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_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__, - 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [171411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5727), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5729), 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, - [170238] = 26, + anon_sym_requires, + [171456] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9160), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [171547] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7062), 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, - [170329] = 3, + 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(7064), 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, + [171592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 5, + ACTIONS(5799), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5722), 32, + ACTIONS(5801), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -442809,180 +445446,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [170374] = 26, + [171637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5803), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5805), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [171682] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9152), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9162), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170465] = 26, + [171773] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9154), 1, + ACTIONS(9164), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [171864] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9166), 1, + anon_sym_COMMA, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8697), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [170556] = 16, + [171955] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8290), 1, + sym_identifier, + ACTIONS(8292), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8352), 1, + ACTIONS(8294), 1, anon_sym_STAR, - ACTIONS(8354), 1, + ACTIONS(8296), 1, anon_sym_AMP_AMP, - ACTIONS(8356), 1, + ACTIONS(8298), 1, anon_sym_AMP, - STATE(3198), 1, - sym_parameter_list, - STATE(4325), 1, + ACTIONS(8304), 1, + sym_primitive_type, + STATE(1693), 1, sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6671), 1, - sym__abstract_declarator, - ACTIONS(8149), 2, + STATE(2977), 1, + sym__type_declarator, + STATE(3290), 1, + sym_pointer_type_declarator, + STATE(8864), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(1666), 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_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8302), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3288), 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, @@ -442994,49 +445739,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [170627] = 16, + [172028] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8352), 1, + ACTIONS(8356), 1, anon_sym_STAR, - ACTIONS(8354), 1, + ACTIONS(8358), 1, anon_sym_AMP_AMP, - ACTIONS(8356), 1, + ACTIONS(8360), 1, anon_sym_AMP, - STATE(3198), 1, + STATE(3165), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6678), 1, + STATE(6701), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(5877), 6, + ACTIONS(8501), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -443049,51 +445794,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [170698] = 17, + [172099] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8298), 1, - sym_identifier, - ACTIONS(8300), 1, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8302), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8356), 1, anon_sym_STAR, - ACTIONS(8304), 1, + ACTIONS(8358), 1, anon_sym_AMP_AMP, - ACTIONS(8306), 1, + ACTIONS(8360), 1, anon_sym_AMP, - ACTIONS(8310), 1, - sym_primitive_type, - STATE(1680), 1, + STATE(3165), 1, + sym_parameter_list, + STATE(4359), 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, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6673), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(4232), 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, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -443105,49 +445849,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [170771] = 16, + [172170] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8352), 1, + ACTIONS(8356), 1, anon_sym_STAR, - ACTIONS(8354), 1, + ACTIONS(8358), 1, anon_sym_AMP_AMP, - ACTIONS(8356), 1, + ACTIONS(8360), 1, anon_sym_AMP, - STATE(3198), 1, + STATE(3165), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6673), 1, + STATE(6695), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8453), 6, + ACTIONS(8435), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -443160,49 +445904,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [170842] = 16, + [172241] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8352), 1, + ACTIONS(8356), 1, anon_sym_STAR, - ACTIONS(8354), 1, + ACTIONS(8358), 1, anon_sym_AMP_AMP, - ACTIONS(8356), 1, + ACTIONS(8360), 1, anon_sym_AMP, - STATE(3198), 1, + STATE(3165), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6680), 1, + STATE(6657), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6781), 6, + ACTIONS(6763), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -443215,152 +445959,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [170913] = 21, + [172312] = 17, 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, + ACTIONS(8308), 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, + ACTIONS(8310), 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, + ACTIONS(8320), 1, + sym_primitive_type, + ACTIONS(8362), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8838), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8364), 1, 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(5720), 5, + ACTIONS(8366), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5722), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(2255), 1, + sym__type_declarator, + STATE(8609), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 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, @@ -443372,82 +446015,7 @@ 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, - [171130] = 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(9156), 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(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, - [171221] = 21, + [172385] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -443458,33 +446026,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7287), 1, anon_sym_AMP, - STATE(5299), 1, + STATE(5315), 1, sym_ms_call_modifier, - STATE(5896), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6080), 1, + STATE(6070), 1, sym__declarator, - STATE(8033), 1, + STATE(7974), 1, sym_init_declarator, - STATE(8504), 1, + STATE(8848), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -443495,7 +446063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -443507,402 +446075,72 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [171302] = 26, + [172466] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 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(9158), 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(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, - [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, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 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(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, - [171484] = 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(6032), 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, - [171565] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8318), 1, - sym_identifier, - ACTIONS(8320), 1, - anon_sym_LPAREN2, - ACTIONS(8322), 1, - anon_sym_STAR, - ACTIONS(8324), 1, - anon_sym_AMP_AMP, - ACTIONS(8326), 1, - anon_sym_AMP, - ACTIONS(8330), 1, - sym_primitive_type, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3063), 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, - [171638] = 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, + ACTIONS(8719), 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(9162), 1, - anon_sym_COLON, - STATE(2491), 1, + ACTIONS(9168), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 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, - [171729] = 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_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(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, + ACTIONS(8711), 2, 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, - [171774] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6498), 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(6500), 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, + ACTIONS(8705), 3, 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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [171819] = 21, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [172557] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -443913,33 +446151,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7287), 1, anon_sym_AMP, - STATE(5349), 1, + STATE(5337), 1, sym_ms_call_modifier, - STATE(5581), 1, + STATE(5595), 1, sym__declarator, - STATE(5896), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(7416), 1, + STATE(7382), 1, sym_init_declarator, - STATE(8504), 1, + STATE(8848), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -443950,7 +446188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -443962,459 +446200,612 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [171900] = 26, + [172638] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7911), 1, + sym_literal_suffix, + ACTIONS(4168), 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, + 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(4161), 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, + [172685] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9164), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9170), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [171991] = 3, + [172776] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 5, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(9174), 1, + anon_sym___attribute__, + ACTIONS(9177), 1, anon_sym___attribute, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5766), 32, + STATE(4989), 1, + sym_ref_qualifier, + STATE(5679), 1, + sym_trailing_return_type, + STATE(5746), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5343), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 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, - [172036] = 26, + [172863] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9166), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9185), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172127] = 26, + [172954] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9168), 1, + ACTIONS(9187), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172218] = 26, + [173045] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9170), 1, + ACTIONS(9189), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [173136] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, + anon_sym_AMP, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + ACTIONS(9191), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8853), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172309] = 26, + [173227] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9172), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9193), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172400] = 3, + [173318] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5770), 32, - anon_sym_COMMA, + ACTIONS(4861), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, + anon_sym_AMP, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, 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, - [172445] = 16, + anon_sym_and, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [173409] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8262), 1, + ACTIONS(8320), 1, + sym_primitive_type, + ACTIONS(8350), 1, anon_sym_STAR, - ACTIONS(8264), 1, + ACTIONS(8352), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8354), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 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, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6903), 1, + sym__type_declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 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, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 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, @@ -444426,27 +446817,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [172516] = 3, + [173482] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5695), 32, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, anon_sym_LPAREN2, + ACTIONS(8320), 1, + sym_primitive_type, + ACTIONS(8350), 1, anon_sym_STAR, + ACTIONS(8352), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8354), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6891), 1, + sym__type_declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 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, @@ -444458,37 +446873,51 @@ 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, - [172561] = 3, + [173555] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5774), 32, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, anon_sym_LPAREN2, + ACTIONS(8320), 1, + sym_primitive_type, + ACTIONS(8350), 1, anon_sym_STAR, + ACTIONS(8352), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8354), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6875), 1, + sym__type_declarator, + STATE(8684), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 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, @@ -444500,26 +446929,16 @@ 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, - [172606] = 3, + [173628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 5, + ACTIONS(5757), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5818), 32, + ACTIONS(5759), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -444552,27 +446971,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [172651] = 3, + [173673] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5716), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5718), 32, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8322), 1, + sym_identifier, + ACTIONS(8324), 1, anon_sym_LPAREN2, + ACTIONS(8326), 1, anon_sym_STAR, + ACTIONS(8328), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8330), 1, + anon_sym_AMP, + ACTIONS(8334), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(6030), 1, + sym__type_declarator, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(8469), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6208), 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, @@ -444584,622 +447027,642 @@ 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, - [172696] = 26, + [173746] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9174), 1, + ACTIONS(9195), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [173837] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, + anon_sym_STAR, + ACTIONS(7285), 1, + anon_sym_AMP_AMP, + ACTIONS(7287), 1, + anon_sym_AMP, + STATE(5344), 1, + sym_ms_call_modifier, + STATE(5677), 1, + sym__declarator, + STATE(5965), 1, + sym__scope_resolution, + STATE(7434), 1, + sym_init_declarator, + STATE(8848), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [173918] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4833), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, + anon_sym_AMP, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8853), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172787] = 26, + [174009] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9176), 1, + ACTIONS(9197), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [172878] = 17, + [174100] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8284), 1, - sym_identifier, - ACTIONS(8286), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(8288), 1, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(8290), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + ACTIONS(7287), 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, + STATE(5369), 1, + sym_ms_call_modifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6004), 1, + sym__declarator, + STATE(7273), 1, + sym_init_declarator, + STATE(8848), 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, + STATE(8381), 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(6137), 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, + [174181] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9178), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9199), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173042] = 4, + [174272] = 21, ACTIONS(3), 1, sym_comment, - 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, + 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(3005), 1, anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, + anon_sym_STAR, + ACTIONS(7285), 1, 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(7287), 1, + anon_sym_AMP, + STATE(5349), 1, + sym_ms_call_modifier, + STATE(5707), 1, + sym__declarator, + STATE(5965), 1, + sym__scope_resolution, + STATE(7564), 1, + sym_init_declarator, + STATE(8848), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [174353] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9183), 1, + ACTIONS(9201), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173180] = 26, + [174444] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9185), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9203), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5666), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5668), 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, - [173316] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - 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, - [173361] = 16, + [174535] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(4859), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - 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(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(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), 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, - [173432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5780), 5, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5782), 32, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, 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, - [173477] = 21, + anon_sym_and, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [174626] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -445210,33 +447673,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7287), 1, anon_sym_AMP, - STATE(5309), 1, + STATE(5354), 1, sym_ms_call_modifier, - STATE(5896), 1, - sym__scope_resolution, - STATE(6029), 1, + STATE(5582), 1, sym__declarator, - STATE(7390), 1, + STATE(5965), 1, + sym__scope_resolution, + STATE(7423), 1, sym_init_declarator, - STATE(8504), 1, + STATE(8848), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -445247,7 +447710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -445259,244 +447722,116 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [173558] = 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(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(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, + [174707] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9187), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9205), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [173720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5645), 5, - anon_sym_AMP, - 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_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, - [173765] = 16, + [174798] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(67), 1, - anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8336), 1, + sym_identifier, + ACTIONS(8338), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8262), 1, + ACTIONS(8340), 1, anon_sym_STAR, - ACTIONS(8264), 1, + ACTIONS(8342), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8344), 1, anon_sym_AMP, - STATE(1680), 1, + ACTIONS(8348), 1, + sym_primitive_type, + STATE(1693), 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, + STATE(3101), 1, + sym__type_declarator, + STATE(3498), 1, + sym_pointer_type_declarator, + STATE(8509), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 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, + ACTIONS(8346), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3473), 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(5681), 5, - anon_sym_AMP, - 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_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, @@ -445508,156 +447843,81 @@ 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, - [173881] = 26, + [174871] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9189), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9207), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 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, + ACTIONS(8967), 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, - [173972] = 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(9191), 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, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174063] = 3, + [174962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 5, + ACTIONS(5731), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5687), 32, + ACTIONS(5733), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -445690,1511 +447950,1016 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [174108] = 24, + [175007] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7283), 1, + anon_sym_STAR, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7287), 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, - 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_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [174195] = 26, + STATE(5369), 1, + sym_ms_call_modifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(5984), 1, + sym__declarator, + STATE(7273), 1, + sym_init_declarator, + STATE(8848), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [175088] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9209), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174286] = 26, + [175179] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 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(3005), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 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(9199), 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, + ACTIONS(7283), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(7285), 1, 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, - [174377] = 26, + ACTIONS(7287), 1, + anon_sym_AMP, + STATE(5358), 1, + sym_ms_call_modifier, + STATE(5593), 1, + sym__declarator, + STATE(5965), 1, + sym__scope_resolution, + STATE(7293), 1, + sym_init_declarator, + STATE(8848), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [175260] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9201), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9211), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174468] = 3, + [175351] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5660), 5, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9174), 1, + anon_sym___attribute__, + ACTIONS(9177), 1, anon_sym___attribute, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5662), 32, + ACTIONS(9216), 1, + anon_sym_requires, + STATE(4988), 1, + sym_ref_qualifier, + STATE(5635), 1, + sym_trailing_return_type, + STATE(5762), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5360), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 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, - [174513] = 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(8312), 1, - anon_sym_STAR, - ACTIONS(8314), 1, - anon_sym_AMP_AMP, - ACTIONS(8316), 1, - anon_sym_AMP, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174659] = 26, + [175438] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9203), 1, + ACTIONS(9219), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174750] = 26, + [175529] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8959), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(9205), 1, - anon_sym_COLON, - STATE(2491), 1, + ACTIONS(9221), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174841] = 26, + [175620] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9207), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9223), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [174932] = 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(8312), 1, - anon_sym_STAR, - ACTIONS(8314), 1, - anon_sym_AMP_AMP, - ACTIONS(8316), 1, - anon_sym_AMP, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(1971), 1, - sym_pointer_type_declarator, - STATE(6842), 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, - [175005] = 26, + [175711] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4848), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9225), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175096] = 26, + [175802] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9209), 1, + ACTIONS(9227), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175187] = 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(8312), 1, - anon_sym_STAR, - ACTIONS(8314), 1, - anon_sym_AMP_AMP, - ACTIONS(8316), 1, - anon_sym_AMP, - 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(5760), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5762), 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, - [175305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5784), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5786), 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, - [175350] = 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(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, + [175893] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9211), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9229), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175522] = 26, + [175984] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9213), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9231), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175613] = 26, + [176075] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(4720), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(9215), 1, - anon_sym_RBRACK, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5701), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5703), 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, - [175749] = 26, + [176166] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(4722), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9217), 1, - anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175840] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5689), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5691), 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, - [175885] = 26, + [176257] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9219), 1, + ACTIONS(9233), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [175976] = 19, + [176348] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(6805), 1, + ACTIONS(6811), 1, sym_auto, - ACTIONS(6807), 1, + ACTIONS(6813), 1, anon_sym_decltype, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8515), 1, + ACTIONS(8585), 1, anon_sym_STAR, - ACTIONS(8517), 1, + ACTIONS(8587), 1, anon_sym_AMP_AMP, - ACTIONS(8519), 1, + ACTIONS(8589), 1, anon_sym_AMP, - STATE(2741), 1, + STATE(2719), 1, sym_decltype_auto, - STATE(3195), 1, + STATE(3239), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6837), 1, + STATE(6893), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4968), 2, + STATE(5014), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8213), 3, + ACTIONS(8266), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - STATE(6099), 5, + STATE(6117), 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, - [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, + ACTIONS(8169), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447206,286 +448971,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [176126] = 26, + [176425] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9221), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9235), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176217] = 26, + [176516] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4861), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9237), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5800), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - 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, - anon_sym_requires, - [176353] = 26, + [176607] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(9239), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5515), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5517), 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, - [176489] = 21, + [176698] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -447496,44 +449177,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, - anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 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, + ACTIONS(4318), 1, + anon_sym_LPAREN2, + ACTIONS(4320), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(4322), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(4324), 1, anon_sym_AMP, - STATE(5304), 1, - sym_ms_call_modifier, - STATE(5657), 1, - sym__declarator, - STATE(5896), 1, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(5872), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + STATE(3134), 1, + sym_parameter_list, + STATE(5903), 1, sym__scope_resolution, - STATE(7390), 1, - sym_init_declarator, - STATE(8504), 1, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6764), 1, + sym__declarator, + STATE(7013), 1, + sym__abstract_declarator, + STATE(8850), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 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, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -447545,233 +449227,339 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [176570] = 26, + [176781] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9241), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176661] = 21, + [176872] = 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, + ACTIONS(5850), 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, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, + anon_sym_SLASH, + ACTIONS(8699), 1, + anon_sym_PIPE, + ACTIONS(8703), 1, + anon_sym_AMP, + ACTIONS(8709), 1, + anon_sym_GT_EQ, + ACTIONS(8713), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8715), 1, + anon_sym_bitor, + ACTIONS(8717), 1, + anon_sym_bitand, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9243), 1, + anon_sym_SEMI, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8689), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8691), 2, anon_sym_STAR, - ACTIONS(7107), 1, + anon_sym_PERCENT, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, 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, + anon_sym_and, + ACTIONS(8701), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8711), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8705), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8707), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [176963] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9245), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176833] = 17, + [177054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8727), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + ACTIONS(4922), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(4915), 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, + [177105] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8290), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8292), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, + ACTIONS(8294), 1, + anon_sym_STAR, + ACTIONS(8296), 1, + anon_sym_AMP_AMP, + ACTIONS(8298), 1, + anon_sym_AMP, + ACTIONS(8304), 1, sym_primitive_type, - ACTIONS(8338), 1, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(2992), 1, + sym__type_declarator, + STATE(3290), 1, + sym_pointer_type_declarator, + STATE(8864), 1, + sym_ms_based_modifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8302), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3288), 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, + [177178] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8320), 1, + sym_primitive_type, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8364), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8366), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6074), 1, + STATE(2246), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8609), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -447791,92 +449579,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [176906] = 26, + [177251] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8284), 1, + anon_sym_STAR, + ACTIONS(8286), 1, + anon_sym_AMP_AMP, + ACTIONS(8288), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3359), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6680), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8501), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7143), 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, + [177322] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9223), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9247), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [176997] = 3, + [177413] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(3351), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(5722), 32, - anon_sym_COMMA, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(6811), 1, + sym_auto, + ACTIONS(6813), 1, + anon_sym_decltype, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8585), 1, anon_sym_STAR, + ACTIONS(8587), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8589), 1, + anon_sym_AMP, + STATE(2719), 1, + sym_decltype_auto, + STATE(3239), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6900), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5026), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8249), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 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, @@ -447888,37 +449757,175 @@ 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, - [177042] = 3, + [177490] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 5, + ACTIONS(4857), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, anon_sym_AMP, - anon_sym___attribute, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [177581] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, + ACTIONS(7283), 1, + anon_sym_STAR, + ACTIONS(7285), 1, + anon_sym_AMP_AMP, + ACTIONS(7287), 1, + anon_sym_AMP, + STATE(5341), 1, + sym_ms_call_modifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(5994), 1, + sym__declarator, + STATE(7667), 1, + sym_init_declarator, + STATE(8848), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [177662] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(67), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(5699), 32, - anon_sym_COMMA, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8284), 1, anon_sym_STAR, + ACTIONS(8286), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(8288), 1, + anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3359), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6682), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(5860), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7143), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -447930,42 +449937,50 @@ 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, - [177087] = 6, + [177733] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(8725), 1, - anon_sym_LT, - STATE(1623), 1, - sym_template_argument_list, - ACTIONS(4192), 4, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8284), 1, anon_sym_STAR, + ACTIONS(8286), 1, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(5834), 30, + ACTIONS(8288), 1, anon_sym_AMP, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3359), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6683), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8435), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7143), 12, 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, @@ -447977,59 +449992,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_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - [177138] = 17, + [177804] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8268), 1, - sym_identifier, - ACTIONS(8270), 1, + ACTIONS(67), 1, + anon_sym_const, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(8272), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8284), 1, anon_sym_STAR, - ACTIONS(8274), 1, + ACTIONS(8286), 1, anon_sym_AMP_AMP, - ACTIONS(8276), 1, + ACTIONS(8288), 1, anon_sym_AMP, - ACTIONS(8282), 1, - sym_primitive_type, - STATE(1680), 1, + STATE(1693), 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, + STATE(3359), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6685), 1, + sym__abstract_declarator, + ACTIONS(7150), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 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, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6763), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7143), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448041,601 +450047,540 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177211] = 26, + [177875] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9225), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9249), 1, + anon_sym_RBRACE, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177302] = 3, + [177966] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5806), 32, - anon_sym_COMMA, + ACTIONS(4865), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, + anon_sym_AMP, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, 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, - [177347] = 26, + anon_sym_and, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [178057] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(4869), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9227), 1, - anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5808), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5810), 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, - [177483] = 26, + [178148] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(4873), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7614), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8959), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(9229), 1, - anon_sym_COLON, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177574] = 26, + [178239] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9231), 1, - anon_sym_RBRACE, - STATE(2491), 1, + ACTIONS(9251), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5812), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(5814), 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, - [177710] = 26, + [178330] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9233), 1, + ACTIONS(9253), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177801] = 26, + [178421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6448), 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(6450), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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_LT_LT, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(7614), 1, + 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, + [178466] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8959), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8965), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8969), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8975), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8981), 1, - anon_sym_QMARK, - ACTIONS(8983), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8985), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8987), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(9235), 1, - anon_sym_COLON, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9255), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(7616), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8955), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8957), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8961), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8963), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8967), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8977), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8971), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8973), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [177892] = 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(5806), 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, - [177937] = 17, + [178557] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, + ACTIONS(8320), 1, sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8364), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8366), 1, anon_sym_AMP, - STATE(1680), 1, + STATE(1693), 1, sym_alignas_qualifier, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6062), 1, + STATE(2242), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8609), 1, sym_ms_based_modifier, ACTIONS(69), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1669), 2, + STATE(1666), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -448655,151 +450600,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178010] = 26, + [178630] = 3, 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(8842), 1, - anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(5686), 5, 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, - ACTIONS(9237), 1, - anon_sym_RBRACK, - 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___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5688), 32, + anon_sym_COMMA, + anon_sym_LPAREN2, 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, - [178101] = 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, + [178675] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4750), 1, + ACTIONS(4825), 1, anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, + ACTIONS(8871), 1, anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8877), 1, anon_sym_bitand, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8851), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178192] = 3, + [178766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 5, + ACTIONS(9257), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6518), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5707), 32, - anon_sym_COMMA, + ACTIONS(6520), 30, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym___extension__, anon_sym___attribute__, anon_sym_COLON, @@ -448821,98 +450743,34 @@ 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_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [178237] = 21, + [178813] = 3, 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, + ACTIONS(5823), 5, 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(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(8725), 1, - anon_sym_LT, - STATE(1623), 1, - sym_template_argument_list, - ACTIONS(4932), 4, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5825), 32, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(4925), 30, - anon_sym_AMP, + anon_sym_SEMI, 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -448926,57 +450784,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, + anon_sym_asm, + anon_sym___asm__, sym_auto, anon_sym_decltype, anon_sym_final, anon_sym_override, - [178369] = 17, + anon_sym_try, + anon_sym_requires, + [178858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8284), 1, - sym_identifier, - ACTIONS(8286), 1, + ACTIONS(5827), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5829), 32, + anon_sym_COMMA, 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(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_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, @@ -448988,1028 +450824,1062 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178442] = 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, + [178903] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(7826), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8965), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8975), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8981), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8991), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8993), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9239), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9260), 1, + anon_sym_COLON, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(7828), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8961), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8963), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8973), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8983), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8977), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8979), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178533] = 26, + [178994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5831), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5833), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [179039] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9241), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9262), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178624] = 21, + [179130] = 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, + ACTIONS(5850), 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, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(7105), 1, - anon_sym_STAR, - ACTIONS(7107), 1, - anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7826), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8965), 1, + anon_sym_SLASH, + ACTIONS(8971), 1, + anon_sym_PIPE, + ACTIONS(8975), 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(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, + ACTIONS(8981), 1, + anon_sym_GT_EQ, + ACTIONS(8987), 1, + anon_sym_QMARK, + ACTIONS(8989), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8991), 1, + anon_sym_bitor, + ACTIONS(8993), 1, + anon_sym_bitand, + ACTIONS(9264), 1, + anon_sym_COLON, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(7828), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8961), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8963), 2, anon_sym_STAR, - ACTIONS(7273), 1, + anon_sym_PERCENT, + ACTIONS(8967), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8969), 2, anon_sym_AMP_AMP, - ACTIONS(7275), 1, - anon_sym_AMP, - ACTIONS(7277), 1, - anon_sym_COLON_COLON, - STATE(5301), 1, - sym_ms_call_modifier, - STATE(5906), 1, - sym__declarator, - STATE(5967), 1, - sym__scope_resolution, - STATE(7250), 1, - sym_init_declarator, - STATE(8221), 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, - [178786] = 26, + anon_sym_and, + ACTIONS(8973), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8983), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8977), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8979), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [179221] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9243), 1, + ACTIONS(9266), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178877] = 26, + [179312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5778), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5780), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [179357] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9245), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9268), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [178968] = 26, + [179448] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9247), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(9270), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179059] = 26, + [179539] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9249), 1, + ACTIONS(9272), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179150] = 26, + [179630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5807), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5809), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6414), 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [179675] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9251), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9274), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179241] = 26, + [179766] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8836), 1, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(9253), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9255), 1, - anon_sym_RBRACK, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9276), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179332] = 26, + [179857] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8849), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8855), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8859), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8865), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8875), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8877), 1, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9257), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9278), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9280), 1, + anon_sym_RBRACK, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8845), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8847), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8857), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8867), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8861), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8863), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179423] = 26, + [179948] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9259), 1, + ACTIONS(9282), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179514] = 26, + [180039] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(9261), 1, - anon_sym_RBRACK, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9284), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179605] = 17, - 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(6028), 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, - [179678] = 26, + [180130] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9263), 1, + ACTIONS(9286), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [179769] = 17, + [180221] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8268), 1, - sym_identifier, - ACTIONS(8270), 1, + ACTIONS(4817), 1, + anon_sym_RBRACK, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(6426), 1, + anon_sym_LBRACK, + ACTIONS(6430), 1, + anon_sym_DOT, + ACTIONS(8461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(8849), 1, + anon_sym_SLASH, + ACTIONS(8855), 1, + anon_sym_PIPE, + ACTIONS(8859), 1, + anon_sym_AMP, + ACTIONS(8865), 1, + anon_sym_GT_EQ, + ACTIONS(8871), 1, + anon_sym_QMARK, + ACTIONS(8873), 1, + anon_sym_LT_EQ_GT, + ACTIONS(8875), 1, + anon_sym_bitor, + ACTIONS(8877), 1, + anon_sym_bitand, + STATE(2488), 1, + sym_argument_list, + STATE(2493), 1, + sym_subscript_argument_list, + ACTIONS(6432), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(8018), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(8845), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(8847), 2, anon_sym_STAR, - ACTIONS(8340), 1, + anon_sym_PERCENT, + ACTIONS(8851), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8853), 2, 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, + anon_sym_and, + ACTIONS(8857), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(8867), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8861), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(8863), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [180312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5712), 5, + ACTIONS(5815), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5714), 32, + ACTIONS(5817), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -450042,211 +451912,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [179887] = 26, + [180357] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9265), 1, - anon_sym_SEMI, - STATE(2491), 1, + ACTIONS(8841), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 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, + ACTIONS(8695), 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, - [179978] = 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(9267), 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, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180069] = 26, + [180448] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9288), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180160] = 3, + [180539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 5, + ACTIONS(5678), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5755), 32, + ACTIONS(5680), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -450279,375 +452084,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [180205] = 26, + [180584] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9269), 1, - anon_sym_COMMA, - STATE(2491), 1, + ACTIONS(9290), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180296] = 26, + [180675] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9271), 1, + ACTIONS(9292), 1, anon_sym_SEMI, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180387] = 26, + [180766] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(9273), 1, - anon_sym_RBRACK, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9294), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 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, - [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, + ACTIONS(8707), 3, 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, - 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, + [180857] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9275), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9296), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180616] = 26, + [180948] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 1, - anon_sym_RBRACK, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8836), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8842), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8846), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8852), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8858), 1, - anon_sym_QMARK, - ACTIONS(8860), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8862), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8864), 1, + ACTIONS(8717), 1, anon_sym_bitand, - STATE(2491), 1, + ACTIONS(8719), 1, + anon_sym_QMARK, + ACTIONS(9298), 1, + anon_sym_RPAREN, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8832), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8834), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8838), 2, + ACTIONS(8695), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(8840), 2, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8844), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8854), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8848), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8850), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [180707] = 21, + [181039] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -450658,33 +452420,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5858), 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, + anon_sym_STAR, ACTIONS(7109), 1, + anon_sym_AMP_AMP, + ACTIONS(7111), 1, anon_sym_AMP, - STATE(5319), 1, + ACTIONS(7113), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(5369), 1, sym_ms_call_modifier, - STATE(5699), 1, - sym__declarator, - STATE(5896), 1, + STATE(5949), 1, sym__scope_resolution, - STATE(7643), 1, + STATE(5950), 1, + sym__declarator, + STATE(7273), 1, sym_init_declarator, - STATE(8504), 1, + STATE(8245), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -450695,7 +452457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -450707,81 +452469,16 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [180788] = 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(9277), 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, - [180879] = 3, + [181120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 5, + ACTIONS(5653), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(5726), 32, + ACTIONS(5655), 32, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, @@ -450814,95 +452511,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [180924] = 5, + [181165] = 21, 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, + 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(3005), 1, anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5858), 1, + sym_identifier, + ACTIONS(5870), 1, 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, + ACTIONS(7115), 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, - [180973] = 17, + ACTIONS(7283), 1, + anon_sym_STAR, + ACTIONS(7285), 1, + anon_sym_AMP_AMP, + ACTIONS(7287), 1, + anon_sym_AMP, + STATE(5340), 1, + sym_ms_call_modifier, + STATE(5965), 1, + sym__scope_resolution, + STATE(6049), 1, + sym__declarator, + STATE(7382), 1, + sym_init_declarator, + STATE(8848), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [181246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8284), 1, - sym_identifier, - ACTIONS(8286), 1, + ACTIONS(5657), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(5659), 32, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(8296), 1, - sym_primitive_type, - ACTIONS(8332), 1, anon_sym_STAR, - ACTIONS(8334), 1, anon_sym_AMP_AMP, - ACTIONS(8336), 1, - anon_sym_AMP, - STATE(1680), 1, - sym_alignas_qualifier, - 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(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_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, @@ -450914,642 +452603,557 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181046] = 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, + [181291] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9282), 1, + ACTIONS(9300), 1, anon_sym_RPAREN, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181137] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8318), 1, - sym_identifier, - ACTIONS(8320), 1, - anon_sym_LPAREN2, - ACTIONS(8322), 1, - anon_sym_STAR, - ACTIONS(8324), 1, - anon_sym_AMP_AMP, - 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, + [181382] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9284), 1, - anon_sym_COMMA, - STATE(2491), 1, + ACTIONS(9302), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181301] = 26, + [181473] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9286), 1, + ACTIONS(9304), 1, anon_sym_COMMA, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181392] = 26, + [181564] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9288), 1, + ACTIONS(9306), 1, anon_sym_COMMA, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181483] = 26, + [181655] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9290), 1, + ACTIONS(9308), 1, anon_sym_COMMA, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181574] = 26, + [181746] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9292), 1, + ACTIONS(9310), 1, anon_sym_COMMA, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181665] = 26, + [181837] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - ACTIONS(9294), 1, - anon_sym_RPAREN, - STATE(2491), 1, + ACTIONS(9312), 1, + anon_sym_SEMI, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [181756] = 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, - ACTIONS(8336), 1, - anon_sym_AMP, - 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, - 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, + [181928] = 3, 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, + ACTIONS(5460), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(8681), 1, anon_sym_PIPE, - ACTIONS(8685), 1, anon_sym_AMP, - ACTIONS(8691), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(8695), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(2717), 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, - ACTIONS(8697), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(8699), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(8707), 1, - anon_sym_QMARK, - ACTIONS(9296), 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_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [181972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6656), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 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(6658), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + anon_sym_PIPE_PIPE, 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_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(8689), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [181920] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [182016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 11, + ACTIONS(6554), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451561,7 +453165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6632), 25, + ACTIONS(6556), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451587,10 +453191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [181964] = 3, + [182060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 11, + ACTIONS(6730), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451602,7 +453206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6538), 25, + ACTIONS(6732), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451628,68 +453232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182008] = 20, - 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(5314), 1, - sym_ms_call_modifier, - STATE(5923), 1, - sym__scope_resolution, - STATE(6806), 1, - sym__declarator, - STATE(8864), 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, - [182086] = 3, + [182104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 11, + ACTIONS(6562), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451701,7 +453247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6688), 25, + ACTIONS(6564), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451727,31 +453273,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182130] = 5, + [182148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, - anon_sym_SEMI, - ACTIONS(7041), 1, - sym_literal_suffix, - ACTIONS(4174), 15, + ACTIONS(6566), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4166), 19, + ACTIONS(6568), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -451760,20 +453299,82 @@ 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, + 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, - [182178] = 3, + anon_sym_GT2, + [182192] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 11, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + ACTIONS(8654), 1, + anon_sym_STAR, + ACTIONS(8656), 1, + anon_sym_AMP_AMP, + ACTIONS(8658), 1, + anon_sym_AMP, + STATE(1883), 1, + sym_decltype_auto, + STATE(3432), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6925), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8249), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(5043), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 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, + [182268] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6538), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451785,7 +453386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6596), 25, + ACTIONS(6540), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451811,16 +453412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182222] = 5, + [182312] = 3, 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, + ACTIONS(6620), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451832,12 +453427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6300), 21, + ACTIONS(6622), 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, @@ -451845,6 +453442,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -451854,10 +453453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182270] = 3, + [182356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 11, + ACTIONS(6710), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451869,7 +453468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6570), 25, + ACTIONS(6712), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451895,72 +453494,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182314] = 24, + [182400] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7285), 1, - anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9196), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(9305), 1, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, anon_sym___asm, - STATE(5017), 1, + STATE(5041), 1, sym_ref_qualifier, - STATE(5655), 1, + STATE(5565), 1, sym_trailing_return_type, - STATE(5786), 1, + STATE(5755), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9193), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(9317), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5366), 3, + STATE(5372), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 6, + ACTIONS(9172), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [182400] = 3, + anon_sym_try, + [182486] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4312), 1, + anon_sym_SEMI, + ACTIONS(7060), 1, + sym_literal_suffix, + ACTIONS(4168), 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(4161), 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, + [182534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6572), 11, + ACTIONS(6702), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -451972,7 +453614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6574), 25, + ACTIONS(6704), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -451998,10 +453640,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182444] = 3, + [182578] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(6722), 11, + 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, + anon_sym_STAR, + ACTIONS(7309), 1, + anon_sym_AMP_AMP, + ACTIONS(7311), 1, + anon_sym_AMP, + STATE(5339), 1, + sym_ms_call_modifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6570), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [182656] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8411), 1, + anon_sym_STAR, + ACTIONS(8413), 1, + anon_sym_AMP_AMP, + ACTIONS(8415), 1, + anon_sym_AMP, + STATE(3528), 1, + sym_parameter_list, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6706), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3776), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8501), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7072), 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, + [182726] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8411), 1, + anon_sym_STAR, + ACTIONS(8413), 1, + anon_sym_AMP_AMP, + ACTIONS(8415), 1, + anon_sym_AMP, + STATE(3528), 1, + sym_parameter_list, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6708), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3776), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5860), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7072), 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, + [182796] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8411), 1, + anon_sym_STAR, + ACTIONS(8413), 1, + anon_sym_AMP_AMP, + ACTIONS(8415), 1, + anon_sym_AMP, + STATE(3528), 1, + sym_parameter_list, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6709), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3776), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8435), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7072), 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, + [182866] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7085), 1, + anon_sym_const, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8411), 1, + anon_sym_STAR, + ACTIONS(8413), 1, + anon_sym_AMP_AMP, + ACTIONS(8415), 1, + anon_sym_AMP, + STATE(3528), 1, + sym_parameter_list, + STATE(4041), 1, + sym_alignas_qualifier, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6710), 1, + sym__abstract_declarator, + ACTIONS(7087), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3776), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6763), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7072), 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, + [182936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6558), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452013,7 +453929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6724), 25, + ACTIONS(6560), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452039,10 +453955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182488] = 3, + [182980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6710), 11, + ACTIONS(6598), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452054,7 +453970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6712), 25, + ACTIONS(6600), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452080,9 +453996,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182532] = 20, + [183024] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -452091,31 +454009,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 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, + ACTIONS(3009), 1, anon_sym_STAR, - ACTIONS(7267), 1, - anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(3011), 1, anon_sym_AMP, - STATE(5328), 1, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(5322), 1, sym_ms_call_modifier, - STATE(5895), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6566), 1, + STATE(6818), 1, sym__declarator, - STATE(8135), 1, + STATE(8850), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -452126,7 +454042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -452138,10 +454054,10 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [182610] = 3, + [183102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4174), 11, + ACTIONS(6602), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452153,7 +454069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4166), 25, + ACTIONS(6604), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452179,10 +454095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182654] = 3, + [183146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3903), 11, + ACTIONS(6636), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452194,7 +454110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(3899), 25, + ACTIONS(6638), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452220,10 +454136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182698] = 3, + [183190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6602), 11, + ACTIONS(6610), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452235,7 +454151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6604), 25, + ACTIONS(6612), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452261,68 +454177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [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, + [183234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6658), 11, + ACTIONS(6570), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452334,7 +454192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6660), 25, + ACTIONS(6572), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452360,10 +454218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182864] = 3, + [183278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 11, + ACTIONS(6640), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452375,7 +454233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6546), 25, + ACTIONS(6642), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452401,10 +454259,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182908] = 3, + [183322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6598), 11, + ACTIONS(6652), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452416,7 +454274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6600), 25, + ACTIONS(6654), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452442,10 +454300,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182952] = 3, + [183366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 11, + ACTIONS(9323), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6315), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452457,14 +454318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6696), 25, + ACTIONS(6317), 23, 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, @@ -452473,7 +454333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, - anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -452483,10 +454342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [182996] = 3, + [183412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6670), 11, + ACTIONS(6614), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452498,7 +454357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6672), 25, + ACTIONS(6616), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452524,10 +454383,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [183040] = 3, + [183456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 11, + ACTIONS(6546), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452539,7 +454398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6608), 25, + ACTIONS(6548), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452565,10 +454424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [183084] = 3, + [183500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 11, + ACTIONS(6698), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452580,7 +454439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6612), 25, + ACTIONS(6700), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452606,64 +454465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [183128] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym_const, - 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(4036), 1, - sym_alignas_qualifier, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6702), 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, - ACTIONS(8487), 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, - [183198] = 3, + [183544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 11, + ACTIONS(6628), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452675,7 +454480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6700), 25, + ACTIONS(6630), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452701,64 +454506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [183242] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7065), 1, - anon_sym_const, - 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(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, - STATE(3777), 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, - [183312] = 3, + [183588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 11, + ACTIONS(6632), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452770,7 +454521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6562), 25, + ACTIONS(6634), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452796,10 +454547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [183356] = 3, + [183632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6540), 11, + ACTIONS(6550), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452811,7 +454562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6542), 25, + ACTIONS(6552), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -452837,102 +454588,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [183400] = 16, + [183676] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, - anon_sym_const, - ACTIONS(7848), 1, - anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8371), 1, - anon_sym_STAR, - ACTIONS(8373), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(8375), 1, + ACTIONS(7070), 1, anon_sym_AMP, - STATE(3515), 1, - sym_parameter_list, - STATE(4036), 1, - sym_alignas_qualifier, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6716), 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, - ACTIONS(8453), 5, - anon_sym_COLON, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7279), 1, + anon_sym_DASH_GT, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9216), 1, + anon_sym_requires, + ACTIONS(9320), 1, + anon_sym___asm, + STATE(5039), 1, + sym_ref_qualifier, + STATE(5635), 1, + sym_trailing_return_type, + STATE(5798), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(9213), 2, 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, - [183470] = 16, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5380), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + [183762] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7065), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(7848), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8371), 1, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + ACTIONS(8654), 1, anon_sym_STAR, - ACTIONS(8373), 1, + ACTIONS(8656), 1, anon_sym_AMP_AMP, - ACTIONS(8375), 1, + ACTIONS(8658), 1, anon_sym_AMP, - STATE(3515), 1, + STATE(1883), 1, + sym_decltype_auto, + STATE(3432), 1, sym_parameter_list, - STATE(4036), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(5953), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6720), 1, + STATE(6921), 1, sym__abstract_declarator, - ACTIONS(7067), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3777), 2, + ACTIONS(8266), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(5049), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6781), 5, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - STATE(5952), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7052), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -452945,7 +454707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [183540] = 20, + [183838] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -452956,31 +454718,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7311), 1, anon_sym_AMP, - STATE(5306), 1, + STATE(5346), 1, sym_ms_call_modifier, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6633), 1, + STATE(6548), 1, sym__declarator, - STATE(8135), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -452991,7 +454753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -453003,174 +454765,91 @@ static const uint16_t ts_small_parse_table[] = { 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, + [183916] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7285), 1, - anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9196), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, + anon_sym___asm, + ACTIONS(9325), 1, anon_sym_requires, - STATE(5043), 1, + STATE(5055), 1, sym_ref_qualifier, - STATE(5655), 1, + STATE(5526), 1, sym_trailing_return_type, - STATE(6061), 1, + STATE(5770), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5370), 3, + STATE(5375), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 6, + ACTIONS(9172), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [183748] = 8, + [184002] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, - anon_sym___attribute__, - ACTIONS(8904), 1, - anon_sym___attribute, - ACTIONS(9067), 1, - anon_sym_LBRACE, - STATE(4960), 1, - sym_enumerator_list, - STATE(5001), 1, - sym_attribute_specifier, - 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, + ACTIONS(4312), 1, anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(5052), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6072), 1, + anon_sym_LPAREN2, + ACTIONS(6075), 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, - [183802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6590), 11, + ACTIONS(4168), 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(6592), 25, + ACTIONS(4161), 23, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -453178,8 +454857,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_LBRACK, + anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -453192,55 +454872,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [183846] = 3, + [184054] = 20, 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, + 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(3005), 1, anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(7309), 1, 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, - [183890] = 4, + ACTIONS(7311), 1, + anon_sym_AMP, + STATE(5371), 1, + sym_ms_call_modifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(6616), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + STATE(8381), 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(6137), 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, + [184132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9300), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6248), 11, + ACTIONS(6686), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453252,13 +454945,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6250), 23, + ACTIONS(6688), 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, @@ -453267,6 +454961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, + anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, @@ -453276,7 +454971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [183936] = 20, + [184176] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -453287,31 +454982,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7311), 1, anon_sym_AMP, - STATE(5341), 1, + STATE(5350), 1, sym_ms_call_modifier, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6618), 1, + STATE(6555), 1, sym__declarator, - STATE(8135), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -453322,7 +455017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -453334,10 +455029,56 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [184014] = 3, + [184254] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6674), 11, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, + anon_sym___attribute, + ACTIONS(8999), 1, + anon_sym_LBRACE, + STATE(4929), 1, + sym_enumerator_list, + STATE(5025), 1, + sym_attribute_specifier, + ACTIONS(6062), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6064), 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, + [184308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6624), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453349,7 +455090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6676), 25, + ACTIONS(6626), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -453375,24 +455116,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [184058] = 3, + [184352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6552), 11, + ACTIONS(9328), 1, + anon_sym_COMMA, + ACTIONS(9330), 1, + anon_sym_RBRACK, + ACTIONS(4168), 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(6554), 25, + ACTIONS(4161), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -453401,7 +455143,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, @@ -453415,11 +455159,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [184102] = 3, + [184400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 11, + ACTIONS(6690), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453431,7 +455174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6558), 25, + ACTIONS(6692), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -453457,10 +455200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [184146] = 3, + [184444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5450), 11, + ACTIONS(6578), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453472,7 +455215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(2729), 25, + ACTIONS(6580), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -453498,72 +455241,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [184190] = 24, + [184488] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7075), 1, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9305), 1, - anon_sym___asm, - STATE(5024), 1, + ACTIONS(9216), 1, + anon_sym_requires, + STATE(5044), 1, sym_ref_qualifier, - STATE(5671), 1, + STATE(5635), 1, sym_trailing_return_type, - STATE(5779), 1, + STATE(6096), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5372), 3, + STATE(5390), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 6, - anon_sym_COMMA, + ACTIONS(9172), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [184276] = 3, + anon_sym_try, + [184574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 11, + ACTIONS(4168), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453575,7 +455318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6636), 25, + ACTIONS(4161), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -453601,92 +455344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [184320] = 3, + [184618] = 5, 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, + ACTIONS(9323), 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, - 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, + ACTIONS(9333), 2, 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, - [184408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6714), 11, + ACTIONS(6261), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453698,14 +455365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6716), 25, + ACTIONS(6263), 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, @@ -453713,8 +455378,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -453724,7 +455387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [184452] = 20, + [184666] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -453735,31 +455398,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7311), 1, anon_sym_AMP, - STATE(5353), 1, + STATE(5355), 1, sym_ms_call_modifier, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6594), 1, + STATE(6596), 1, sym__declarator, - STATE(8135), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -453770,7 +455433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -453782,72 +455445,10 @@ static const uint16_t ts_small_parse_table[] = { 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, + [184744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 11, + ACTIONS(3911), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453859,7 +455460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6668), 25, + ACTIONS(3907), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -453885,221 +455486,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [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, + [184788] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - ACTIONS(6414), 1, + ACTIONS(6426), 1, anon_sym_LBRACK, - ACTIONS(6418), 1, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(8449), 1, + ACTIONS(8461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(8677), 1, + ACTIONS(8693), 1, anon_sym_SLASH, - ACTIONS(8681), 1, + ACTIONS(8699), 1, anon_sym_PIPE, - ACTIONS(8685), 1, + ACTIONS(8703), 1, anon_sym_AMP, - ACTIONS(8691), 1, + ACTIONS(8709), 1, anon_sym_GT_EQ, - ACTIONS(8695), 1, + ACTIONS(8713), 1, anon_sym_LT_EQ_GT, - ACTIONS(8697), 1, + ACTIONS(8715), 1, anon_sym_bitor, - ACTIONS(8699), 1, + ACTIONS(8717), 1, anon_sym_bitand, - ACTIONS(8707), 1, + ACTIONS(8719), 1, anon_sym_QMARK, - STATE(2491), 1, + STATE(2488), 1, sym_argument_list, - STATE(2492), 1, + STATE(2493), 1, sym_subscript_argument_list, - ACTIONS(6420), 2, + ACTIONS(6432), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(8048), 2, + ACTIONS(8018), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(8673), 2, + ACTIONS(8689), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(8675), 2, + ACTIONS(8691), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(8679), 2, + ACTIONS(8695), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(8697), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(8683), 2, + ACTIONS(8701), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(8693), 2, + ACTIONS(8711), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(8701), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(8687), 3, + ACTIONS(8705), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(8689), 3, + ACTIONS(8707), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [184930] = 3, + [184876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6718), 11, + ACTIONS(6606), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -454111,7 +455564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6720), 25, + ACTIONS(6608), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -454137,129 +455590,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [184974] = 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(6949), 1, - sym__abstract_declarator, - ACTIONS(8149), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8213), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(5036), 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, - [185050] = 24, + [184920] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9305), 1, + ACTIONS(9320), 1, anon_sym___asm, - ACTIONS(9308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9311), 1, - anon_sym_requires, - STATE(5037), 1, + STATE(5033), 1, sym_ref_qualifier, - STATE(5528), 1, + STATE(5679), 1, sym_trailing_return_type, - STATE(5744), 1, + STATE(5792), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(9193), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(9317), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5360), 3, + STATE(5386), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 6, + ACTIONS(9172), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [185136] = 3, + [185006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6542), 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(6544), 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, + [185050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6644), 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(6646), 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, + [185094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6532), 11, + ACTIONS(6660), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -454271,7 +455749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6534), 25, + ACTIONS(6662), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -454297,7 +455775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [185180] = 20, + [185138] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -454308,31 +455786,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7311), 1, anon_sym_AMP, - STATE(5322), 1, + STATE(5363), 1, sym_ms_call_modifier, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6535), 1, + STATE(6635), 1, sym__declarator, - STATE(8135), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -454343,7 +455821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -454355,10 +455833,72 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [185258] = 3, + [185216] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7166), 1, + anon_sym_DASH_GT, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, + anon_sym_LBRACK, + STATE(5030), 1, + sym_ref_qualifier, + STATE(5679), 1, + sym_trailing_return_type, + STATE(6099), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5382), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [185302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 11, + ACTIONS(6674), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -454370,7 +455910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6664), 25, + ACTIONS(6676), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -454396,10 +455936,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [185302] = 3, + [185346] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, + anon_sym___attribute, + ACTIONS(8999), 1, + anon_sym_LBRACE, + STATE(4965), 1, + sym_enumerator_list, + STATE(4998), 1, + sym_attribute_specifier, + ACTIONS(6046), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6048), 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, + [185400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6576), 11, + ACTIONS(6648), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -454411,7 +455997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6578), 25, + ACTIONS(6650), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -454437,87 +456023,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [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, + [185444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_COMMA, - ACTIONS(9316), 1, - anon_sym_RBRACK, - ACTIONS(4174), 9, + ACTIONS(6594), 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(4166), 25, + ACTIONS(6596), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -454526,9 +456049,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, @@ -454542,7 +456063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185480] = 20, + anon_sym_GT2, + [185488] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -454553,31 +456075,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7311), 1, anon_sym_AMP, - STATE(5321), 1, + STATE(5323), 1, sym_ms_call_modifier, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6529), 1, + STATE(6554), 1, sym__declarator, - STATE(8135), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, @@ -454588,7 +456110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -454600,286 +456122,194 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [185558] = 27, + [185566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5028), 1, + ACTIONS(5480), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5482), 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_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_LBRACK, 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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(5567), 2, + sym_auto, + anon_sym_decltype, 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, + anon_sym_try, + anon_sym_requires, + [185609] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + ACTIONS(9335), 1, + anon_sym_COLON, + STATE(1909), 1, + sym_attribute_specifier, + STATE(5037), 1, + sym__enum_base_clause, + STATE(5155), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + ACTIONS(6348), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(6346), 25, 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(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, + 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, + [185664] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7375), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9308), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9311), 1, - anon_sym_requires, - ACTIONS(9333), 1, - anon_sym___attribute__, - ACTIONS(9336), 1, - anon_sym___attribute, - STATE(5066), 1, + STATE(5093), 1, sym_ref_qualifier, - STATE(5528), 1, + STATE(6046), 1, sym_trailing_return_type, - STATE(6001), 1, + STATE(6129), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5409), 3, + STATE(5392), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, - anon_sym_COMMA, + ACTIONS(9172), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [185819] = 16, - ACTIONS(3), 1, - sym_comment, - 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, + anon_sym_try, + [185749] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8481), 1, + ACTIONS(8509), 1, anon_sym_STAR, - ACTIONS(8483), 1, + ACTIONS(8511), 1, anon_sym_AMP_AMP, - ACTIONS(8485), 1, + ACTIONS(8513), 1, anon_sym_AMP, - STATE(3021), 1, + STATE(3116), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6819), 1, + STATE(6765), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(5877), 4, + ACTIONS(5860), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -454892,48 +456322,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [185957] = 16, + [185818] = 6, 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, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, + anon_sym___attribute, + STATE(4995), 1, + sym_attribute_specifier, + ACTIONS(6100), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6102), 30, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -454945,101 +456356,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186026] = 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, + [185867] = 24, 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, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(8485), 1, + ACTIONS(7070), 1, anon_sym_AMP, - STATE(3021), 1, - sym_parameter_list, - STATE(4325), 1, - sym_alignas_qualifier, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7383), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9337), 1, + anon_sym_requires, + STATE(5088), 1, + sym_ref_qualifier, + STATE(6060), 1, + sym_trailing_return_type, 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, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5409), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 5, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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, + [185952] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1850), 1, - anon_sym_operator, - ACTIONS(8421), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + STATE(4262), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4159), 4, + anon_sym_AMP, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_const, + ACTIONS(8376), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4166), 23, 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_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455051,86 +456464,106 @@ static const uint16_t ts_small_parse_table[] = { 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, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [186005] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, 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, + ACTIONS(7070), 1, anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, anon_sym___attribute__, - anon_sym___attribute, - 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(7428), 1, + anon_sym_DASH_GT, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9183), 1, + anon_sym_LBRACK, + STATE(5100), 1, + sym_ref_qualifier, + STATE(6051), 1, + sym_trailing_return_type, + STATE(6253), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5394), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [186090] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(8421), 1, + ACTIONS(8419), 1, anon_sym_LPAREN2, - ACTIONS(8473), 1, + ACTIONS(8427), 1, sym_identifier, - ACTIONS(8475), 1, + ACTIONS(8429), 1, anon_sym_STAR, - ACTIONS(8477), 1, + ACTIONS(8431), 1, anon_sym_AMP_AMP, - ACTIONS(8479), 1, + ACTIONS(8433), 1, anon_sym_AMP, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6774), 1, + STATE(6788), 1, sym__field_declarator, - STATE(6943), 1, + STATE(6907), 1, sym_operator_name, - STATE(8112), 1, + STATE(8258), 1, sym_ms_based_modifier, - ACTIONS(3341), 2, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6476), 7, + STATE(6525), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -455138,7 +456571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3339), 13, + ACTIONS(3351), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -455152,48 +456585,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186292] = 16, + [186159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1850), 1, - anon_sym_operator, - ACTIONS(8421), 1, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, + anon_sym___attribute, + STATE(4991), 1, + sym_attribute_specifier, + ACTIONS(6159), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6161), 30, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455205,21 +456619,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186361] = 6, + 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, + [186208] = 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, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, anon_sym___attribute, - anon_sym_COLON, + STATE(5015), 1, + sym_attribute_specifier, + ACTIONS(6131), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(4192), 28, + ACTIONS(6133), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -455227,9 +456648,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, @@ -455247,36 +456668,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, - [186410] = 9, + [186257] = 6, 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, + ACTIONS(8753), 1, anon_sym___attribute__, + ACTIONS(8755), 1, anon_sym___attribute, - ACTIONS(6395), 3, + STATE(5019), 1, + sym_attribute_specifier, + ACTIONS(6212), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6214), 30, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(6393), 25, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455290,51 +456707,54 @@ 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, - [186465] = 16, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [186306] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(5652), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(8147), 1, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8457), 1, + ACTIONS(8509), 1, anon_sym_STAR, - ACTIONS(8459), 1, + ACTIONS(8511), 1, anon_sym_AMP_AMP, - ACTIONS(8461), 1, + ACTIONS(8513), 1, anon_sym_AMP, - STATE(1702), 1, - sym_alignas_qualifier, - STATE(3551), 1, + STATE(3116), 1, sym_parameter_list, - STATE(6109), 1, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6768), 1, + STATE(6826), 1, sym__abstract_declarator, - ACTIONS(8471), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1676), 2, + STATE(4232), 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, + ACTIONS(6763), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8463), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -455347,48 +456767,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186534] = 16, + [186375] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(5652), 1, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, + anon_sym___attribute, + STATE(5024), 1, + sym_attribute_specifier, + ACTIONS(6228), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8457), 1, + ACTIONS(6230), 30, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, 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_SEMI, anon_sym___extension__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455400,47 +456801,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186603] = 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, + [186424] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7466), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, + anon_sym___asm, + ACTIONS(9337), 1, + anon_sym_requires, + STATE(5075), 1, + sym_ref_qualifier, + STATE(5905), 1, + sym__function_attributes_end, + STATE(6060), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5398), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [186509] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7470), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + ACTIONS(9349), 1, + anon_sym_requires, + STATE(5095), 1, + sym_ref_qualifier, + STATE(6025), 1, + sym_trailing_return_type, + STATE(6066), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5401), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [186594] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(5652), 1, + ACTIONS(5664), 1, anon_sym_const, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8457), 1, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + ACTIONS(8249), 1, + anon_sym_COLON, + ACTIONS(8721), 1, anon_sym_STAR, - ACTIONS(8459), 1, + ACTIONS(8723), 1, anon_sym_AMP_AMP, - ACTIONS(8461), 1, + ACTIONS(8725), 1, anon_sym_AMP, - STATE(1702), 1, + STATE(1719), 1, sym_alignas_qualifier, - STATE(3551), 1, + STATE(1883), 1, + sym_decltype_auto, + STATE(3592), 1, sym_parameter_list, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6772), 1, + STATE(7020), 1, sym__abstract_declarator, - ACTIONS(8471), 2, + ACTIONS(8453), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1676), 2, + STATE(5101), 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, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8463), 12, + ACTIONS(8445), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -455453,47 +456988,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186672] = 16, + [186669] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(5652), 1, + ACTIONS(5664), 1, anon_sym_const, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8457), 1, + ACTIONS(8439), 1, anon_sym_STAR, - ACTIONS(8459), 1, + ACTIONS(8441), 1, anon_sym_AMP_AMP, - ACTIONS(8461), 1, + ACTIONS(8443), 1, anon_sym_AMP, - STATE(1702), 1, + STATE(1719), 1, sym_alignas_qualifier, - STATE(3551), 1, + STATE(3544), 1, sym_parameter_list, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6791), 1, + STATE(6812), 1, sym__abstract_declarator, - ACTIONS(8471), 2, + ACTIONS(8453), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1676), 2, + STATE(1684), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6781), 4, + ACTIONS(5860), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8463), 12, + ACTIONS(8445), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -455506,43 +457041,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186741] = 11, + [186738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9350), 1, - sym_identifier, - ACTIONS(9356), 1, - sym_primitive_type, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(5096), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6388), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(1669), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(5109), 4, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, + anon_sym___attribute, + STATE(5028), 1, + sym_attribute_specifier, + ACTIONS(6208), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6210), 30, + anon_sym_COMMA, + anon_sym_RPAREN, 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_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455554,35 +457075,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186800] = 9, + 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, + [186787] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 1, - anon_sym_LBRACE, - ACTIONS(9348), 1, - anon_sym_COLON, - STATE(1898), 1, - sym_attribute_specifier, - STATE(5035), 1, - sym__enum_base_clause, - STATE(5202), 1, - sym_enumerator_list, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6318), 3, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(5030), 1, anon_sym_STAR, + ACTIONS(5032), 1, anon_sym_AMP_AMP, - ACTIONS(6316), 25, + ACTIONS(5034), 1, anon_sym_AMP, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3134), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6823), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8501), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 12, 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, @@ -455594,115 +457137,90 @@ 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, - [186855] = 24, + [186856] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(7447), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(5048), 1, + STATE(5082), 1, sym_ref_qualifier, - STATE(6123), 1, + STATE(6135), 1, sym_trailing_return_type, - STATE(6207), 1, + STATE(6275), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5384), 3, + STATE(5410), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [186940] = 16, + [186941] = 6, 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, + ACTIONS(8753), 1, + anon_sym___attribute__, + ACTIONS(8755), 1, + anon_sym___attribute, + STATE(5010), 1, + sym_attribute_specifier, + ACTIONS(6204), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6206), 30, + anon_sym_COMMA, + anon_sym_RPAREN, 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(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(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_SEMI, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455714,33 +457232,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [187009] = 7, + 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, + [186990] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9325), 1, + anon_sym_requires, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + STATE(5118), 1, + sym_ref_qualifier, + STATE(5526), 1, + sym_trailing_return_type, + STATE(6040), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5416), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [187075] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(8727), 1, anon_sym_LT, - STATE(1623), 1, + STATE(1920), 1, sym_template_argument_list, - STATE(5098), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6060), 4, + ACTIONS(4915), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(4922), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(6058), 27, - anon_sym_AMP, + anon_sym_SEMI, 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_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455754,16 +457340,17 @@ 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, - [187060] = 4, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [187124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4304), 1, + ACTIONS(4312), 1, anon_sym_SEMI, - ACTIONS(4174), 9, + ACTIONS(4168), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455773,7 +457360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(4166), 25, + ACTIONS(4161), 25, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_STAR, @@ -455799,201 +457386,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [187105] = 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(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, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK_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, - [187158] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(5652), 1, - anon_sym_const, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8179), 1, - sym_auto, - ACTIONS(8181), 1, - anon_sym_decltype, - ACTIONS(8213), 1, - anon_sym_COLON, - 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(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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187233] = 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(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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187302] = 16, + [187169] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(5022), 1, + ACTIONS(5030), 1, anon_sym_STAR, - ACTIONS(5024), 1, + ACTIONS(5032), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(5034), 1, anon_sym_AMP, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - STATE(3113), 1, + STATE(3134), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6756), 1, + STATE(6846), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8487), 4, + ACTIONS(8435), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -456006,48 +457439,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [187371] = 16, + [187238] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(6020), 1, + anon_sym___attribute__, + ACTIONS(6022), 1, + anon_sym___attribute, + ACTIONS(6259), 1, + anon_sym_LBRACE, + ACTIONS(9352), 1, + anon_sym_COLON, + STATE(1909), 1, + sym_attribute_specifier, + STATE(2349), 1, + sym__enum_base_clause, + STATE(2401), 1, + sym_enumerator_list, + ACTIONS(6346), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(6348), 26, + anon_sym_COMMA, + anon_sym_RPAREN, 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(6754), 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_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_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456059,111 +457479,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [187440] = 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(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(5091), 1, - sym_ref_qualifier, - 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_alignas, + anon_sym__Alignas, + sym_auto, + anon_sym_decltype, 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, - 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, - [187525] = 19, + anon_sym_requires, + [187295] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(5652), 1, + ACTIONS(5664), 1, anon_sym_const, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8179), 1, - sym_auto, - ACTIONS(8181), 1, - anon_sym_decltype, - ACTIONS(8221), 1, - anon_sym_COLON, - ACTIONS(8715), 1, + ACTIONS(8439), 1, anon_sym_STAR, - ACTIONS(8717), 1, + ACTIONS(8441), 1, anon_sym_AMP_AMP, - ACTIONS(8719), 1, + ACTIONS(8443), 1, anon_sym_AMP, - STATE(1702), 1, + STATE(1719), 1, sym_alignas_qualifier, - STATE(1864), 1, - sym_decltype_auto, - STATE(3538), 1, + STATE(3544), 1, sym_parameter_list, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(7027), 1, + STATE(6815), 1, sym__abstract_declarator, - ACTIONS(8471), 2, + ACTIONS(8453), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5090), 2, + STATE(1684), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + ACTIONS(6763), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8463), 12, + ACTIONS(8445), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -456176,48 +457539,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [187600] = 16, + [187364] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, anon_sym_LPAREN2, - ACTIONS(5022), 1, + ACTIONS(8421), 1, anon_sym_STAR, - ACTIONS(5024), 1, + ACTIONS(8423), 1, anon_sym_AMP_AMP, - ACTIONS(5026), 1, + ACTIONS(8425), 1, anon_sym_AMP, - ACTIONS(8147), 1, - anon_sym_LBRACK, - STATE(3113), 1, - sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6751), 1, - sym__abstract_declarator, - ACTIONS(8149), 2, + STATE(6249), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8840), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - 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, + STATE(6525), 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(3351), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456229,27 +457592,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [187669] = 10, + [187433] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6031), 1, + ACTIONS(6020), 1, anon_sym___attribute__, - ACTIONS(6033), 1, + ACTIONS(6022), 1, anon_sym___attribute, - ACTIONS(6256), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - ACTIONS(9362), 1, + ACTIONS(9352), 1, anon_sym_COLON, - STATE(1880), 1, + STATE(1922), 1, sym_attribute_specifier, - STATE(2273), 1, + STATE(2282), 1, sym__enum_base_clause, - STATE(2387), 1, + STATE(2407), 1, sym_enumerator_list, - ACTIONS(6393), 2, + ACTIONS(6352), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6395), 26, + ACTIONS(6354), 26, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -456276,199 +457639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [187726] = 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(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(9150), 1, - anon_sym_LBRACK, - 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, - 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(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(7395), 1, - anon_sym_requires, - 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, - STATE(5103), 1, - sym_ref_qualifier, - STATE(5883), 1, - sym__function_attributes_end, - STATE(6042), 1, - sym_trailing_return_type, - 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(5395), 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, - [187896] = 24, + [187490] = 6, 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(7361), 1, - anon_sym_requires, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(8753), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(8755), 1, anon_sym___attribute, - STATE(5080), 1, - sym_ref_qualifier, - STATE(5975), 1, - sym_trailing_return_type, - STATE(6083), 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, + STATE(4992), 1, 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(5403), 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, - [187981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - ACTIONS(5515), 3, + ACTIONS(6192), 2, anon_sym_AMP, - anon_sym___attribute, anon_sym_const, - ACTIONS(5517), 31, + ACTIONS(6194), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -456476,7 +457659,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, @@ -456500,157 +457682,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [188026] = 24, + [187539] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + ACTIONS(9335), 1, + anon_sym_COLON, + STATE(1922), 1, + sym_attribute_specifier, + STATE(5038), 1, + sym__enum_base_clause, + STATE(5165), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7048), 1, + ACTIONS(6354), 3, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(6352), 25, anon_sym_AMP, - 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, - 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, - [188111] = 24, + 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, + [187594] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7445), 1, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9330), 1, - anon_sym_requires, - ACTIONS(9333), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9343), 1, anon_sym___attribute, - STATE(5073), 1, + STATE(5109), 1, sym_ref_qualifier, - STATE(6031), 1, + STATE(5565), 1, sym_trailing_return_type, - STATE(6067), 1, + STATE(6062), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5390), 3, + STATE(5403), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [188196] = 10, + [187679] = 16, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, anon_sym_LPAREN2, + ACTIONS(8421), 1, anon_sym_STAR, + ACTIONS(8423), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8425), 1, + anon_sym_AMP, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6223), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8840), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6525), 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(3351), 13, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456662,33 +457842,48 @@ 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, - [188253] = 3, + [187748] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(5527), 32, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, anon_sym_LPAREN2, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, anon_sym_STAR, + ACTIONS(8431), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8433), 1, + anon_sym_AMP, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6822), 1, + sym__field_declarator, + STATE(6907), 1, + sym_operator_name, + STATE(8258), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6525), 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(3351), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456700,38 +457895,34 @@ 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, - [188296] = 6, + [187817] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, + ACTIONS(6406), 1, anon_sym___attribute__, - ACTIONS(8904), 1, + ACTIONS(6408), 1, anon_sym___attribute, - STATE(4987), 1, + ACTIONS(6761), 1, + anon_sym_LBRACE, + ACTIONS(9354), 1, + anon_sym_COLON, + STATE(2604), 1, + sym__enum_base_clause, + STATE(2660), 1, + sym_enumerator_list, + STATE(2732), 1, sym_attribute_specifier, - ACTIONS(6157), 2, + ACTIONS(6352), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6159), 30, + ACTIONS(6354), 26, + 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, @@ -456750,36 +457941,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [188345] = 10, + [187874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, + ACTIONS(8753), 1, anon_sym___attribute__, - ACTIONS(6361), 1, + ACTIONS(8755), 1, anon_sym___attribute, - ACTIONS(6740), 1, - anon_sym_LBRACE, - ACTIONS(9364), 1, - anon_sym_COLON, - STATE(2579), 1, - sym__enum_base_clause, - STATE(2620), 1, - sym_enumerator_list, - STATE(2690), 1, + STATE(4982), 1, sym_attribute_specifier, - ACTIONS(6393), 2, + ACTIONS(6150), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6395), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(6152), 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, @@ -456798,20 +457983,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [188402] = 6, + [187923] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, + ACTIONS(8753), 1, anon_sym___attribute__, - ACTIONS(8904), 1, + ACTIONS(8755), 1, anon_sym___attribute, - STATE(5016), 1, + STATE(5005), 1, sym_attribute_specifier, - ACTIONS(6100), 2, + ACTIONS(6127), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6102), 30, + ACTIONS(6129), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -456842,31 +458028,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [188451] = 6, + [187972] = 16, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5535), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(5030), 1, anon_sym_STAR, + ACTIONS(5032), 1, anon_sym_AMP_AMP, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3134), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6775), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5860), 4, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456878,79 +458081,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [188041] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8421), 1, + anon_sym_STAR, + ACTIONS(8423), 1, + anon_sym_AMP_AMP, + ACTIONS(8425), 1, + anon_sym_AMP, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6266), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8840), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, anon_sym_alignas, anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6525), 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(3351), 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, + [188110] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(7466), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, + anon_sym___asm, + STATE(5059), 1, + sym_ref_qualifier, + STATE(5900), 1, + sym__function_attributes_end, + STATE(6046), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5413), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_try, - anon_sym_requires, - [188500] = 6, + [188195] = 24, 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(4925), 4, - anon_sym_AMP, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(4932), 28, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 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, + ACTIONS(9356), 1, + anon_sym_requires, + STATE(5066), 1, + sym_ref_qualifier, + STATE(6184), 1, + sym_trailing_return_type, + STATE(6267), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [188549] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8902), 1, - anon_sym___attribute__, - ACTIONS(8904), 1, - anon_sym___attribute, - STATE(4997), 1, + STATE(5472), 2, sym_attribute_specifier, - ACTIONS(6206), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6208), 30, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5420), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [188280] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9359), 1, + sym_identifier, + ACTIONS(9365), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5089), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6364), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4968), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5123), 4, 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, + ACTIONS(9362), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5125), 6, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_auto, + anon_sym_decltype, + ACTIONS(6359), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -456962,36 +458304,27 @@ 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, - [188598] = 10, + [188339] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6359), 1, + ACTIONS(6406), 1, anon_sym___attribute__, - ACTIONS(6361), 1, + ACTIONS(6408), 1, anon_sym___attribute, - ACTIONS(6740), 1, + ACTIONS(6761), 1, anon_sym_LBRACE, - ACTIONS(9364), 1, + ACTIONS(9354), 1, anon_sym_COLON, - STATE(2580), 1, + STATE(2618), 1, sym__enum_base_clause, - STATE(2624), 1, + STATE(2648), 1, sym_enumerator_list, - STATE(2708), 1, + STATE(2723), 1, sym_attribute_specifier, - ACTIONS(6316), 2, + ACTIONS(6346), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6318), 26, + ACTIONS(6348), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -457018,29 +458351,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [188655] = 6, + [188396] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, - anon_sym___attribute__, - ACTIONS(8904), 1, - anon_sym___attribute, - STATE(5000), 1, - sym_attribute_specifier, - ACTIONS(6210), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6212), 30, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8439), 1, anon_sym_STAR, + ACTIONS(8441), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8443), 1, + anon_sym_AMP, + STATE(1719), 1, + sym_alignas_qualifier, + STATE(3544), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6834), 1, + sym__abstract_declarator, + ACTIONS(8453), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1684), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8435), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -457052,28 +458404,19 @@ 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, - [188704] = 6, + [188465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, + ACTIONS(8753), 1, anon_sym___attribute__, - ACTIONS(8904), 1, + ACTIONS(8755), 1, anon_sym___attribute, - STATE(5004), 1, + STATE(4980), 1, sym_attribute_specifier, - ACTIONS(6104), 2, + ACTIONS(6181), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6106), 30, + ACTIONS(6183), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -457104,19 +458447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [188753] = 6, + [188514] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, - anon_sym___attribute__, - ACTIONS(8904), 1, - anon_sym___attribute, - STATE(5005), 1, - sym_attribute_specifier, - ACTIONS(6108), 2, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5537), 3, anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(6110), 30, + ACTIONS(5539), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -457124,6 +458464,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, @@ -457147,90 +458488,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [188802] = 24, + [188559] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(7375), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9343), 1, anon_sym___attribute, - STATE(5093), 1, + STATE(5072), 1, sym_ref_qualifier, - STATE(5526), 1, + STATE(6051), 1, sym_trailing_return_type, - STATE(5995), 1, + STATE(6103), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5392), 3, + STATE(5421), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [188887] = 6, + [188644] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, - anon_sym___attribute__, - ACTIONS(8904), 1, - anon_sym___attribute, - STATE(5009), 1, - sym_attribute_specifier, - ACTIONS(6149), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(6151), 30, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9368), 1, + sym_identifier, + ACTIONS(9374), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5079), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6394), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5102), 4, 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, + ACTIONS(9371), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5104), 6, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + sym_auto, + anon_sym_decltype, + ACTIONS(6389), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -457242,38 +458597,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [188703] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9377), 1, + sym_identifier, + ACTIONS(9379), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9383), 1, + anon_sym_EQ, + STATE(1946), 1, + sym_template_type, + STATE(2537), 1, + sym__class_declaration, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5637), 1, + sym_ms_declspec_modifier, + STATE(6759), 1, + sym__scope_resolution, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - sym_auto, - anon_sym_decltype, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, + ACTIONS(9381), 2, + anon_sym_COMMA, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [188936] = 6, + STATE(2539), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5638), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5287), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [188794] = 16, ACTIONS(3), 1, sym_comment, - 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(6163), 30, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, anon_sym_LPAREN2, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, anon_sym_STAR, + ACTIONS(8431), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8433), 1, + anon_sym_AMP, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6763), 1, + sym__field_declarator, + STATE(6907), 1, + sym_operator_name, + STATE(8258), 1, + sym_ms_based_modifier, + ACTIONS(3353), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6525), 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(3351), 13, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -457285,28 +458714,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_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [188985] = 6, + [188863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, - anon_sym___attribute__, - ACTIONS(8904), 1, - anon_sym___attribute, - STATE(5012), 1, - sym_attribute_specifier, - ACTIONS(6165), 2, + ACTIONS(8505), 1, + sym_auto, + ACTIONS(8507), 1, + anon_sym_decltype, + STATE(4999), 1, + sym_decltype_auto, + ACTIONS(5637), 3, anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(6167), 30, + ACTIONS(5639), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -457314,6 +458735,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, @@ -457330,36 +458752,56 @@ 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, - [189034] = 6, + [188912] = 19, ACTIONS(3), 1, sym_comment, - 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(6171), 30, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8195), 1, + sym_auto, + ACTIONS(8197), 1, + anon_sym_decltype, + ACTIONS(8266), 1, + anon_sym_COLON, + ACTIONS(8721), 1, anon_sym_STAR, + ACTIONS(8723), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8725), 1, + anon_sym_AMP, + STATE(1719), 1, + sym_alignas_qualifier, + STATE(1883), 1, + sym_decltype_auto, + STATE(3592), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(7028), 1, + sym__abstract_declarator, + ACTIONS(8453), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5111), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 12, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -457371,99 +458813,33 @@ 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, - [189083] = 24, + [188987] = 7, 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(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(9150), 1, - anon_sym_LBRACK, - ACTIONS(9308), 1, - anon_sym_LBRACK_LBRACK, - STATE(5113), 1, - sym_ref_qualifier, - STATE(6042), 1, - sym_trailing_return_type, - STATE(6180), 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(5397), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(9139), 5, - anon_sym_RPAREN, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + STATE(5069), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(6068), 4, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - anon_sym_try, - [189168] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8902), 1, + ACTIONS(6066), 27, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(8904), 1, anon_sym___attribute, - STATE(5015), 1, - sym_attribute_specifier, - ACTIONS(6214), 2, - anon_sym_AMP, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_const, - ACTIONS(6216), 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, @@ -457477,26 +458853,23 @@ 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_GT2, - anon_sym_try, - anon_sym_requires, - [189217] = 6, + [189038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, + ACTIONS(8753), 1, anon_sym___attribute__, - ACTIONS(8904), 1, + ACTIONS(8755), 1, anon_sym___attribute, - STATE(4991), 1, + STATE(4983), 1, sym_attribute_specifier, - ACTIONS(6153), 2, + ACTIONS(6113), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(6155), 30, + ACTIONS(6115), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -457527,164 +458900,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [189266] = 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(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9366), 1, - anon_sym_requires, - STATE(5062), 1, - sym_ref_qualifier, - STATE(6182), 1, - sym_trailing_return_type, - STATE(6214), 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(5396), 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, - [189351] = 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(9141), 1, - anon_sym___attribute__, - ACTIONS(9144), 1, - anon_sym___attribute, - 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, - 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_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [189429] = 16, + [189087] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, - anon_sym_LBRACK, - ACTIONS(8515), 1, + ACTIONS(5030), 1, anon_sym_STAR, - ACTIONS(8517), 1, + ACTIONS(5032), 1, anon_sym_AMP_AMP, - ACTIONS(8519), 1, + ACTIONS(5034), 1, anon_sym_AMP, - STATE(3195), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3134), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6853), 1, + STATE(6771), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8487), 3, - anon_sym_DOT_DOT_DOT, + ACTIONS(6763), 4, anon_sym_COMMA, - anon_sym_GT2, - STATE(6099), 5, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -457697,46 +458953,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [189497] = 16, + [189156] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8515), 1, + ACTIONS(8439), 1, anon_sym_STAR, - ACTIONS(8517), 1, + ACTIONS(8441), 1, anon_sym_AMP_AMP, - ACTIONS(8519), 1, + ACTIONS(8443), 1, anon_sym_AMP, - STATE(3195), 1, - sym_parameter_list, - STATE(4325), 1, + STATE(1719), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(3544), 1, + sym_parameter_list, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6875), 1, + STATE(6803), 1, sym__abstract_declarator, - ACTIONS(8149), 2, + ACTIONS(8453), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(1684), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(8453), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(6099), 5, + ACTIONS(8501), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8445), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -457749,308 +459006,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [189565] = 24, + [189225] = 6, 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, + ACTIONS(4178), 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, + ACTIONS(8727), 1, + anon_sym_LT, + STATE(1920), 1, + sym_template_argument_list, + ACTIONS(5839), 4, + anon_sym_AMP, 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_const, + ACTIONS(4180), 28, anon_sym_COMMA, + anon_sym_RPAREN, 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_STAR, 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_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(7538), 1, - anon_sym_requires, - ACTIONS(9150), 1, + anon_sym_LBRACE, 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, - 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, + anon_sym_requires, + [189274] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7536), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9384), 1, + ACTIONS(9349), 1, anon_sym_requires, - STATE(5132), 1, + STATE(5103), 1, sym_ref_qualifier, - STATE(6305), 1, + STATE(6025), 1, sym_trailing_return_type, - STATE(6311), 1, + STATE(6288), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5420), 3, + STATE(5405), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9172), 5, anon_sym_LPAREN2, - anon_sym_GT2, - [189973] = 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [189359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 3, + ACTIONS(5753), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5517), 31, + ACTIONS(5755), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458082,47 +459149,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190015] = 16, + [189401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(5709), 3, + anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5711), 31, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - 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(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_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, @@ -458134,123 +459179,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [190083] = 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, - 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(6851), 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), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, 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, - [190151] = 21, + anon_sym_try, + anon_sym_requires, + [189443] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7073), 1, - anon_sym_DASH_GT, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9373), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(9376), 1, - anon_sym___attribute, - ACTIONS(9379), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9390), 1, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(7594), 1, anon_sym_requires, - STATE(5703), 1, + ACTIONS(9183), 1, + anon_sym_LBRACK, + STATE(5237), 1, + sym_ref_qualifier, + STATE(6330), 1, sym_trailing_return_type, - STATE(5739), 1, + STATE(6400), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9387), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5338), 3, + STATE(5429), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 7, + ACTIONS(9172), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [189527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5719), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(5721), 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, - [190229] = 3, + anon_sym_requires, + [189569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 3, + ACTIONS(5819), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5740), 31, + ACTIONS(5821), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458282,14 +459326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190271] = 3, + [189611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 3, + ACTIONS(5723), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5517), 31, + ACTIONS(5725), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458321,14 +459365,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190313] = 3, + [189653] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9385), 1, + anon_sym_requires, + STATE(5188), 1, + sym_ref_qualifier, + STATE(6326), 1, + sym_trailing_return_type, + STATE(6337), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5431), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [189737] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9174), 1, + anon_sym___attribute__, + ACTIONS(9177), 1, + anon_sym___attribute, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9216), 1, + anon_sym_requires, + STATE(5635), 1, + sym_trailing_return_type, + STATE(5762), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5360), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [189815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5760), 3, + ACTIONS(5811), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5762), 31, + ACTIONS(5813), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458360,14 +459521,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190355] = 3, + [189857] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5788), 3, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9390), 1, + anon_sym___attribute__, + ACTIONS(9393), 1, + anon_sym___attribute, + ACTIONS(9396), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + anon_sym_requires, + STATE(5680), 1, + sym_trailing_return_type, + STATE(5763), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5361), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9388), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [189935] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(9390), 1, + anon_sym___attribute__, + ACTIONS(9393), 1, + anon_sym___attribute, + ACTIONS(9396), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9399), 1, + anon_sym_LBRACK, + STATE(5646), 1, + sym_trailing_return_type, + STATE(5749), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5313), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9388), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [190013] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8585), 1, + anon_sym_STAR, + ACTIONS(8587), 1, + anon_sym_AMP_AMP, + ACTIONS(8589), 1, + anon_sym_AMP, + STATE(3239), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6856), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5860), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 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, + [190081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5799), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5790), 31, + ACTIONS(5801), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458399,14 +459726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190397] = 3, + [190123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 3, + ACTIONS(5803), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5818), 31, + ACTIONS(5805), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458438,14 +459765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190439] = 3, + [190165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5660), 3, + ACTIONS(5807), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5662), 31, + ACTIONS(5809), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458477,14 +459804,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190481] = 3, + [190207] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 3, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8585), 1, + anon_sym_STAR, + ACTIONS(8587), 1, + anon_sym_AMP_AMP, + ACTIONS(8589), 1, + anon_sym_AMP, + STATE(3239), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6858), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6763), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 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, + [190275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5815), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5668), 31, + ACTIONS(5817), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458516,14 +459895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190523] = 3, + [190317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5697), 3, + ACTIONS(5835), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5699), 31, + ACTIONS(5837), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458555,14 +459934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190565] = 3, + [190359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5705), 3, + ACTIONS(5713), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5707), 31, + ACTIONS(5715), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458594,14 +459973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190607] = 3, + [190401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5712), 3, + ACTIONS(5678), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5714), 31, + ACTIONS(5680), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458633,14 +460012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190649] = 3, + [190443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5716), 3, + ACTIONS(5705), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5718), 31, + ACTIONS(5707), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458672,14 +460051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190691] = 3, + [190485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 3, + ACTIONS(5745), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5722), 31, + ACTIONS(5747), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458711,14 +460090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190733] = 3, + [190527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5701), 3, + ACTIONS(5727), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5703), 31, + ACTIONS(5729), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458750,14 +460129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190775] = 3, + [190569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 3, + ACTIONS(5537), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5730), 31, + ACTIONS(5539), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458789,14 +460168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190817] = 3, + [190611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 3, + ACTIONS(5653), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5722), 31, + ACTIONS(5655), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458828,14 +460207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190859] = 3, + [190653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5720), 3, + ACTIONS(5657), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5722), 31, + ACTIONS(5659), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458867,14 +460246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190901] = 3, + [190695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 3, + ACTIONS(5686), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5794), 31, + ACTIONS(5688), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458906,14 +460285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190943] = 3, + [190737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 3, + ACTIONS(5701), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5766), 31, + ACTIONS(5703), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458945,14 +460324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [190985] = 3, + [190779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 3, + ACTIONS(5749), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5770), 31, + ACTIONS(5751), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -458984,14 +460363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191027] = 3, + [190821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5772), 3, + ACTIONS(5823), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5774), 31, + ACTIONS(5825), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459023,14 +460402,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191069] = 3, + [190863] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 3, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(9174), 1, + anon_sym___attribute__, + ACTIONS(9177), 1, + anon_sym___attribute, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, + anon_sym_LBRACK, + STATE(5679), 1, + sym_trailing_return_type, + STATE(5746), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5343), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [190941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5768), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5778), 31, + ACTIONS(5770), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459062,14 +460498,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191111] = 3, + [190983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5780), 3, + ACTIONS(5795), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5782), 31, + ACTIONS(5797), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459101,14 +460537,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191153] = 3, + [191025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5784), 3, + ACTIONS(5727), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5786), 31, + ACTIONS(5729), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459140,14 +460576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191195] = 3, + [191067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 3, + ACTIONS(5727), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5802), 31, + ACTIONS(5729), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459179,25 +460615,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191237] = 3, + [191109] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 3, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5806), 31, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8585), 1, anon_sym_STAR, + ACTIONS(8587), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + ACTIONS(8589), 1, + anon_sym_AMP, + STATE(3239), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6850), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8435), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -459209,23 +460667,14 @@ 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, - [191279] = 3, + [191177] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 3, + ACTIONS(5778), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5810), 31, + ACTIONS(5780), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459257,14 +460706,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191321] = 3, + [191219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5812), 3, + ACTIONS(5757), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5814), 31, + ACTIONS(5759), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459296,14 +460745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191363] = 3, + [191261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 3, + ACTIONS(5657), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5806), 31, + ACTIONS(5659), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459335,14 +460784,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191405] = 3, + [191303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5753), 3, + ACTIONS(5731), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5755), 31, + ACTIONS(5733), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459374,14 +460823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191447] = 3, + [191345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5742), 3, + ACTIONS(5827), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5744), 31, + ACTIONS(5829), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459413,14 +460862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191489] = 3, + [191387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5796), 3, + ACTIONS(5788), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5798), 31, + ACTIONS(5790), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459452,14 +460901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191531] = 3, + [191429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5820), 3, + ACTIONS(5537), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5822), 31, + ACTIONS(5539), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459491,14 +460940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191573] = 3, + [191471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5693), 3, + ACTIONS(5831), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5695), 31, + ACTIONS(5833), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459530,14 +460979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191615] = 3, + [191513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 3, + ACTIONS(5674), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5683), 31, + ACTIONS(5676), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459569,14 +461018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191657] = 3, + [191555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 3, + ACTIONS(5682), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5687), 31, + ACTIONS(5684), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459608,14 +461057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191699] = 3, + [191597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 3, + ACTIONS(5697), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5691), 31, + ACTIONS(5699), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459647,25 +461096,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191741] = 3, + [191639] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 3, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5647), 31, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5028), 1, anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8585), 1, anon_sym_STAR, + ACTIONS(8587), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8589), 1, + anon_sym_AMP, + STATE(3239), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6870), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(8501), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 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, @@ -459677,23 +461148,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + [191707] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, sym_auto, + ACTIONS(127), 1, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + ACTIONS(1268), 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(3027), 1, + sym_primitive_type, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + ACTIONS(9379), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9383), 1, + anon_sym_EQ, + ACTIONS(9407), 1, + sym_identifier, + STATE(2369), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2409), 1, + sym_type_specifier, + STATE(2563), 1, + sym_decltype_auto, + STATE(3067), 1, + sym_qualified_type_identifier, + STATE(6759), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + ACTIONS(9381), 2, + anon_sym_COMMA, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [191783] = 3, + STATE(2429), 2, + sym_decltype, + sym_template_type, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2452), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [191791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5724), 3, + ACTIONS(5693), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(5726), 31, + ACTIONS(5695), 31, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -459725,135 +461247,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [191825] = 21, + [191833] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7636), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(9343), 1, + anon_sym___attribute, + ACTIONS(9385), 1, + anon_sym_requires, + STATE(5302), 1, + sym_ref_qualifier, + STATE(6260), 1, + sym__function_attributes_end, + STATE(6326), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5438), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [191916] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9379), 1, + ACTIONS(9396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9390), 1, - anon_sym_requires, - ACTIONS(9396), 1, - anon_sym___asm, - STATE(5703), 1, + STATE(5646), 1, sym_trailing_return_type, - STATE(5787), 1, + STATE(6069), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(9387), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - STATE(5368), 3, + STATE(5374), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 6, - anon_sym_COMMA, + ACTIONS(9388), 6, 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, + anon_sym_try, + [191993] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(8705), 1, + ACTIONS(8731), 1, anon_sym_LBRACE, - ACTIONS(9399), 1, + ACTIONS(9409), 1, anon_sym_COLON, - STATE(4427), 1, + STATE(4419), 1, sym__enum_base_clause, - STATE(4469), 1, + STATE(4535), 1, sym_enumerator_list, - STATE(4817), 1, + STATE(4675), 1, sym_attribute_specifier, - ACTIONS(6393), 3, + ACTIONS(6346), 3, anon_sym_AMP, anon_sym_LBRACK, anon_sym_const, - ACTIONS(6395), 23, + ACTIONS(6348), 23, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -459877,603 +461407,788 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [192024] = 10, + [192048] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(8705), 1, - anon_sym_LBRACE, - ACTIONS(9399), 1, - anon_sym_COLON, - STATE(4428), 1, - sym__enum_base_clause, - STATE(4543), 1, - sym_enumerator_list, - STATE(4720), 1, - sym_attribute_specifier, - ACTIONS(6316), 3, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym_const, - ACTIONS(6318), 23, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, + ACTIONS(7279), 1, + anon_sym_DASH_GT, + ACTIONS(9180), 1, anon_sym_LBRACK_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, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9216), 1, + anon_sym_requires, + ACTIONS(9320), 1, + anon_sym___asm, + STATE(5635), 1, + sym_trailing_return_type, + STATE(5798), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [192079] = 24, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5380), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + [192125] = 21, 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(7071), 1, - anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7738), 1, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9308), 1, + ACTIONS(9396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9311), 1, - anon_sym_requires, - STATE(5245), 1, - sym_ref_qualifier, - STATE(5528), 1, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9414), 1, + anon_sym___asm, + STATE(5646), 1, sym_trailing_return_type, - STATE(6349), 1, + STATE(5793), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(9411), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5433), 3, + STATE(5385), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [192162] = 24, + ACTIONS(9388), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + [192202] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9343), 1, anon_sym___attribute, - ACTIONS(9366), 1, + ACTIONS(9356), 1, anon_sym_requires, - STATE(5295), 1, + STATE(5304), 1, sym_ref_qualifier, - STATE(6182), 1, + STATE(6184), 1, sym_trailing_return_type, - STATE(6231), 1, + STATE(6232), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9172), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5444), 3, + STATE(5454), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [192245] = 21, + [192285] = 16, 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(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, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8654), 1, + anon_sym_STAR, + ACTIONS(8656), 1, + anon_sym_AMP_AMP, + ACTIONS(8658), 1, + anon_sym_AMP, + STATE(3432), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6959), 1, + sym__abstract_declarator, + ACTIONS(6763), 2, anon_sym_LBRACE, - anon_sym_EQ, - [192322] = 21, + anon_sym_requires, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 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, + [192352] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7079), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(7283), 1, - anon_sym___attribute__, - ACTIONS(7285), 1, - anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9379), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9396), 1, - anon_sym___asm, - STATE(5567), 1, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + STATE(5249), 1, + sym_ref_qualifier, + STATE(6135), 1, sym_trailing_return_type, - STATE(5782), 1, + STATE(6226), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5362), 3, + ACTIONS(9172), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5456), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 6, - anon_sym_COMMA, + [192435] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6259), 1, + anon_sym_LBRACE, + STATE(1875), 1, + sym_attribute_specifier, + STATE(5171), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6048), 3, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6046), 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, + [192484] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6259), 1, anon_sym_LBRACE, - anon_sym_EQ, - [192399] = 21, + STATE(1881), 1, + sym_attribute_specifier, + STATE(5183), 1, + sym_enumerator_list, + ACTIONS(43), 2, + 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, + 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, + [192533] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, + ACTIONS(9396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9196), 1, + ACTIONS(9404), 1, anon_sym_requires, - ACTIONS(9305), 1, + ACTIONS(9414), 1, anon_sym___asm, - STATE(5655), 1, + STATE(5680), 1, sym_trailing_return_type, - STATE(5786), 1, + STATE(5799), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(9193), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(9411), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - STATE(5366), 3, + STATE(5381), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 6, + ACTIONS(9388), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [192476] = 21, + [192610] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9379), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(5567), 1, + ACTIONS(9216), 1, + anon_sym_requires, + STATE(5635), 1, sym_trailing_return_type, - STATE(6053), 1, + STATE(6096), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5373), 3, + STATE(5390), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 6, + ACTIONS(9172), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [192553] = 21, + [192687] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(7314), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9305), 1, + ACTIONS(9414), 1, anon_sym___asm, - ACTIONS(9308), 1, + ACTIONS(9417), 1, anon_sym_LBRACK_LBRACK, - STATE(5526), 1, + STATE(5567), 1, sym_trailing_return_type, - STATE(5729), 1, + STATE(5756), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(9411), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - STATE(5361), 3, + STATE(5383), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 6, + ACTIONS(9388), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [192630] = 21, + [192764] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7075), 1, + ACTIONS(3869), 1, + anon_sym_LBRACE, + ACTIONS(9420), 1, + anon_sym_LPAREN2, + STATE(2390), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3640), 1, + sym_argument_list, + STATE(4900), 1, + sym_initializer_list, + ACTIONS(5537), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(6344), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5539), 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, + [192817] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8654), 1, + anon_sym_STAR, + ACTIONS(8656), 1, + anon_sym_AMP_AMP, + ACTIONS(8658), 1, + anon_sym_AMP, + STATE(3432), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6914), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8501), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 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, + [192884] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(9382), 1, - anon_sym_LBRACK, ACTIONS(9396), 1, - anon_sym___asm, - ACTIONS(9401), 1, anon_sym_LBRACK_LBRACK, - STATE(5529), 1, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + anon_sym_requires, + STATE(5680), 1, sym_trailing_return_type, - STATE(5731), 1, + STATE(6063), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - STATE(5359), 3, + STATE(5376), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 6, - anon_sym_COMMA, + ACTIONS(9388), 6, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [192707] = 24, + [192961] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7799), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, - anon_sym___attribute__, - ACTIONS(9336), 1, - anon_sym___attribute, - STATE(5229), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9325), 1, + anon_sym_requires, + STATE(5297), 1, sym_ref_qualifier, - STATE(6123), 1, + STATE(5526), 1, sym_trailing_return_type, - STATE(6222), 1, + STATE(6353), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9172), 3, anon_sym_LPAREN2, - STATE(5422), 3, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5441), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [192790] = 16, + [193044] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 1, + ACTIONS(3351), 1, anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8638), 1, + ACTIONS(8654), 1, anon_sym_STAR, - ACTIONS(8640), 1, + ACTIONS(8656), 1, anon_sym_AMP_AMP, - ACTIONS(8642), 1, + ACTIONS(8658), 1, anon_sym_AMP, - STATE(3510), 1, + STATE(3432), 1, sym_parameter_list, - STATE(4325), 1, + STATE(4359), 1, sym_alignas_qualifier, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6929), 1, + STATE(6940), 1, sym__abstract_declarator, - ACTIONS(6781), 2, + ACTIONS(5860), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(8149), 2, + ACTIONS(8177), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4215), 2, + STATE(4232), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8141), 12, + ACTIONS(8169), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -460486,90 +462201,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192857] = 21, + [193111] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7075), 1, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9305), 1, - anon_sym___asm, - ACTIONS(9308), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9311), 1, - anon_sym_requires, - STATE(5528), 1, + STATE(5294), 1, + sym_ref_qualifier, + STATE(5565), 1, sym_trailing_return_type, - STATE(5744), 1, + STATE(6349), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9193), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 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, + ACTIONS(9172), 3, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [192934] = 9, + STATE(5460), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [193194] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(8731), 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, + ACTIONS(9409), 1, + anon_sym_COLON, + STATE(4437), 1, + sym__enum_base_clause, + STATE(4632), 1, + sym_enumerator_list, + STATE(4819), 1, + sym_attribute_specifier, + ACTIONS(6352), 3, anon_sym_AMP, + anon_sym_LBRACK, 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, + ACTIONS(6354), 23, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -460585,644 +462302,768 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_auto, anon_sym_decltype, - anon_sym_GT2, - [192987] = 21, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [193249] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3351), 1, + anon_sym_const, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8654), 1, + anon_sym_STAR, + ACTIONS(8656), 1, + anon_sym_AMP_AMP, + ACTIONS(8658), 1, + anon_sym_AMP, + STATE(3432), 1, + sym_parameter_list, + STATE(4359), 1, + sym_alignas_qualifier, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6922), 1, + sym__abstract_declarator, + ACTIONS(8177), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(8435), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(4232), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8169), 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, + [193316] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, + anon_sym___asm, + ACTIONS(9325), 1, + anon_sym_requires, + STATE(5526), 1, + sym_trailing_return_type, + STATE(5770), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5375), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [193393] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7079), 1, + ACTIONS(7105), 1, anon_sym_requires, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(5671), 1, + STATE(5679), 1, sym_trailing_return_type, - STATE(6070), 1, + STATE(6099), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5358), 3, + STATE(5382), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 6, + ACTIONS(9172), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [193064] = 7, + [193470] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6256), 1, - anon_sym_LBRACE, - STATE(1901), 1, - sym_attribute_specifier, - STATE(5204), 1, - sym_enumerator_list, - ACTIONS(43), 2, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, anon_sym___attribute__, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(6068), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6066), 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, - [193113] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6256), 1, - anon_sym_LBRACE, - STATE(1912), 1, + ACTIONS(7279), 1, + anon_sym_DASH_GT, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9320), 1, + anon_sym___asm, + STATE(5679), 1, + sym_trailing_return_type, + STATE(5792), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, sym_attribute_specifier, - STATE(5207), 1, - sym_enumerator_list, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6074), 3, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5386), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 6, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(6072), 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, - [193162] = 16, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + [193547] = 24, 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, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(8642), 1, + ACTIONS(7070), 1, anon_sym_AMP, - STATE(3510), 1, - sym_parameter_list, - STATE(4325), 1, - sym_alignas_qualifier, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6895), 1, - sym__abstract_declarator, - ACTIONS(8149), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(8487), 2, - anon_sym_LBRACE, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7594), 1, 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, - [193229] = 21, + ACTIONS(7636), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + STATE(5299), 1, + sym_ref_qualifier, + STATE(6255), 1, + sym__function_attributes_end, + STATE(6330), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5449), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [193630] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9396), 1, - anon_sym___asm, - ACTIONS(9401), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9407), 1, - anon_sym_requires, - STATE(5536), 1, + ACTIONS(9320), 1, + anon_sym___asm, + STATE(5565), 1, sym_trailing_return_type, - STATE(5745), 1, + STATE(5755), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9387), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(9317), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5367), 3, + STATE(5372), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 6, + ACTIONS(9172), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [193306] = 24, + [193707] = 21, 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(7071), 1, - anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(7738), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9308), 1, + ACTIONS(9414), 1, + anon_sym___asm, + ACTIONS(9417), 1, anon_sym_LBRACK_LBRACK, - STATE(5265), 1, - sym_ref_qualifier, - STATE(5526), 1, + ACTIONS(9423), 1, + anon_sym_requires, + STATE(5527), 1, sym_trailing_return_type, - STATE(6345), 1, + STATE(5771), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(9411), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5438), 3, + STATE(5377), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [193389] = 24, + ACTIONS(9388), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [193784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, + STATE(5106), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5809), 4, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + anon_sym_LBRACE, + ACTIONS(5807), 27, anon_sym_AMP, - ACTIONS(7071), 1, + 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, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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, + [193826] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7538), 1, - anon_sym_requires, - ACTIONS(7768), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, - anon_sym___attribute__, - ACTIONS(9336), 1, - anon_sym___attribute, - STATE(5244), 1, - sym_ref_qualifier, - STATE(6252), 1, - sym__function_attributes_end, - STATE(6295), 1, + STATE(6135), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6275), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5424), 3, + STATE(5410), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [193472] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3339), 1, - anon_sym_const, - ACTIONS(5020), 1, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_RPAREN, 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(6900), 1, - sym__abstract_declarator, - ACTIONS(5877), 2, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_requires, - 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(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, - [193539] = 24, + [193902] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7048), 1, - anon_sym_AMP_AMP, - ACTIONS(7050), 1, - anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7768), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, - anon_sym___attribute__, - ACTIONS(9336), 1, - anon_sym___attribute, - ACTIONS(9384), 1, + ACTIONS(9356), 1, anon_sym_requires, - STATE(5269), 1, - sym_ref_qualifier, - STATE(6257), 1, - sym__function_attributes_end, - STATE(6305), 1, + STATE(6184), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6267), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + STATE(5420), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5447), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + [193978] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(7466), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9414), 1, + anon_sym___asm, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + STATE(5901), 1, + sym__function_attributes_end, + STATE(6017), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9411), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5414), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [193622] = 21, + ACTIONS(9388), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [194054] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, + ACTIONS(7934), 1, + anon_sym_requires, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9196), 1, - anon_sym_requires, - STATE(5655), 1, - sym_trailing_return_type, - STATE(6061), 1, + STATE(5368), 1, + sym_ref_qualifier, + STATE(6440), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6625), 1, + sym_trailing_return_type, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5370), 3, + STATE(5466), 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, + [194136] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7287), 1, - anon_sym_DASH_GT, - ACTIONS(9379), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9390), 1, + ACTIONS(9356), 1, anon_sym_requires, - STATE(5703), 1, + STATE(5352), 1, + sym_ref_qualifier, + STATE(6184), 1, sym_trailing_return_type, - STATE(6063), 1, + STATE(6507), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9387), 2, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5371), 3, + STATE(5474), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [193776] = 23, + [194218] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8177), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(7983), 1, + sym_primitive_type, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(9410), 1, + ACTIONS(9426), 1, sym_identifier, - ACTIONS(9412), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9416), 1, - sym_primitive_type, - ACTIONS(9418), 1, + ACTIONS(9432), 1, anon_sym_enum, - ACTIONS(9420), 1, + ACTIONS(9434), 1, anon_sym_class, - ACTIONS(9422), 1, + ACTIONS(9436), 1, anon_sym_struct, - ACTIONS(9424), 1, + ACTIONS(9438), 1, anon_sym_union, - ACTIONS(9426), 1, - sym_auto, - ACTIONS(9428), 1, - anon_sym_decltype, - ACTIONS(9430), 1, + ACTIONS(9440), 1, anon_sym_typename, - STATE(1860), 1, + STATE(1901), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1916), 1, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(3864), 1, + STATE(3995), 1, sym_type_specifier, - STATE(4125), 1, - sym_decltype_auto, - STATE(5232), 1, + STATE(5283), 1, sym_argument_list, - STATE(6732), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(4102), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - ACTIONS(9414), 4, + ACTIONS(9430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4108), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -461230,135 +463071,134 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [193856] = 24, + [194298] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, - anon_sym_AMP_AMP, - ACTIONS(7050), 1, - anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 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, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(5334), 1, - sym_ref_qualifier, - STATE(6123), 1, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + STATE(6051), 1, sym_trailing_return_type, - STATE(6490), 1, + STATE(6103), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - ACTIONS(9139), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5540), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5730), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5461), 3, + STATE(5421), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [193938] = 21, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [194374] = 23, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8193), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [194014] = 5, + ACTIONS(9442), 1, + sym_identifier, + ACTIONS(9444), 1, + anon_sym_COLON_COLON, + ACTIONS(9448), 1, + sym_primitive_type, + ACTIONS(9450), 1, + anon_sym_enum, + ACTIONS(9452), 1, + anon_sym_class, + ACTIONS(9454), 1, + anon_sym_struct, + ACTIONS(9456), 1, + anon_sym_union, + ACTIONS(9458), 1, + sym_auto, + ACTIONS(9460), 1, + anon_sym_decltype, + ACTIONS(9462), 1, + anon_sym_typename, + STATE(1648), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2785), 1, + sym_type_specifier, + STATE(3094), 1, + sym_decltype_auto, + STATE(3113), 1, + sym_qualified_type_identifier, + STATE(5241), 1, + sym_argument_list, + STATE(6703), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(9446), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3096), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [194454] = 5, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + STATE(5112), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5919), 4, + ACTIONS(5964), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9432), 4, + ACTIONS(9464), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5921), 23, + ACTIONS(5966), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -461382,111 +463222,111 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [194058] = 21, + [194498] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(6152), 1, + ACTIONS(9470), 1, + anon_sym_requires, + STATE(6198), 1, sym_trailing_return_type, - STATE(6234), 1, + STATE(6222), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - STATE(5378), 3, + STATE(5391), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [194134] = 23, + [194574] = 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, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(9435), 1, + ACTIONS(9473), 1, sym_identifier, - ACTIONS(9437), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9441), 1, + ACTIONS(9479), 1, + sym_primitive_type, + ACTIONS(9481), 1, anon_sym_enum, - ACTIONS(9443), 1, + ACTIONS(9483), 1, anon_sym_class, - ACTIONS(9445), 1, + ACTIONS(9485), 1, anon_sym_struct, - ACTIONS(9447), 1, + ACTIONS(9487), 1, anon_sym_union, - ACTIONS(9449), 1, + ACTIONS(9489), 1, + sym_auto, + ACTIONS(9491), 1, + anon_sym_decltype, + ACTIONS(9493), 1, anon_sym_typename, - STATE(1887), 1, + STATE(1626), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1888), 1, + STATE(1930), 1, + sym_type_specifier, + STATE(2328), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(2344), 1, sym_qualified_type_identifier, - STATE(3988), 1, - sym_type_specifier, - STATE(5235), 1, + STATE(5252), 1, sym_argument_list, - STATE(6699), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(1782), 2, + STATE(2237), 2, sym_decltype, sym_template_type, - ACTIONS(9439), 4, + ACTIONS(9477), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(2331), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -461494,22 +463334,66 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [194214] = 5, + [194654] = 10, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + ACTIONS(5641), 1, + sym_auto, + ACTIONS(5643), 1, + anon_sym_decltype, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1883), 1, + sym_decltype_auto, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5351), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9497), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(9495), 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [194708] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5911), 4, + ACTIONS(5897), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9451), 4, + ACTIONS(9499), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5913), 23, + ACTIONS(5899), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -461533,22 +463417,79 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [194258] = 5, + [194752] = 23, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + ACTIONS(9502), 1, + sym_identifier, + ACTIONS(9504), 1, + anon_sym_COLON_COLON, + ACTIONS(9508), 1, + sym_primitive_type, + ACTIONS(9510), 1, + anon_sym_enum, + ACTIONS(9512), 1, + anon_sym_class, + ACTIONS(9514), 1, + anon_sym_struct, + ACTIONS(9516), 1, + anon_sym_union, + ACTIONS(9518), 1, + sym_auto, + ACTIONS(9520), 1, + anon_sym_decltype, + ACTIONS(9522), 1, + anon_sym_typename, + STATE(1659), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2862), 1, + sym_type_specifier, + STATE(3192), 1, + sym_qualified_type_identifier, + STATE(3227), 1, + sym_decltype_auto, + STATE(5271), 1, + sym_argument_list, + STATE(6733), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(3106), 2, + sym_decltype, + sym_template_type, + ACTIONS(9506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3228), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [194832] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5951), 4, + ACTIONS(5956), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9454), 4, + ACTIONS(9524), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5953), 23, + ACTIONS(5958), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -461572,111 +463513,335 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [194302] = 21, + [194876] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7375), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9311), 1, + ACTIONS(7474), 1, anon_sym_requires, - ACTIONS(9333), 1, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9527), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9530), 1, anon_sym___attribute, - STATE(5528), 1, + STATE(6023), 1, sym_trailing_return_type, - STATE(6001), 1, + STATE(6083), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - STATE(5409), 3, + STATE(5422), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [194378] = 23, + [194952] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7466), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, + anon_sym___asm, + ACTIONS(9337), 1, + anon_sym_requires, + STATE(5905), 1, + sym__function_attributes_end, + STATE(6060), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5398), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [195028] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9483), 1, + anon_sym_class, + ACTIONS(9485), 1, + anon_sym_struct, + ACTIONS(9487), 1, + anon_sym_union, + ACTIONS(9489), 1, + sym_auto, + ACTIONS(9491), 1, + anon_sym_decltype, + ACTIONS(9533), 1, + sym_identifier, + ACTIONS(9537), 1, + sym_primitive_type, + ACTIONS(9539), 1, + anon_sym_enum, + ACTIONS(9541), 1, + anon_sym_typename, + STATE(1627), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1933), 1, + sym_type_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2344), 1, + sym_qualified_type_identifier, + STATE(5280), 1, + sym_argument_list, + STATE(6762), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(2237), 2, + sym_decltype, + sym_template_type, + ACTIONS(9535), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2331), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195108] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7466), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9414), 1, + anon_sym___asm, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9543), 1, + anon_sym_requires, + STATE(5906), 1, + sym__function_attributes_end, + STATE(5988), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9411), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5399), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9388), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [195184] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(9457), 1, + ACTIONS(9442), 1, sym_identifier, - ACTIONS(9459), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9463), 1, + ACTIONS(9448), 1, sym_primitive_type, - ACTIONS(9465), 1, + ACTIONS(9450), 1, anon_sym_enum, - ACTIONS(9467), 1, + ACTIONS(9452), 1, anon_sym_class, - ACTIONS(9469), 1, + ACTIONS(9454), 1, anon_sym_struct, - ACTIONS(9471), 1, + ACTIONS(9456), 1, anon_sym_union, - ACTIONS(9473), 1, + ACTIONS(9458), 1, sym_auto, + ACTIONS(9460), 1, + anon_sym_decltype, + ACTIONS(9462), 1, + anon_sym_typename, + STATE(1648), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2796), 1, + sym_type_specifier, + STATE(3094), 1, + sym_decltype_auto, + STATE(3113), 1, + sym_qualified_type_identifier, + STATE(5309), 1, + sym_argument_list, + STATE(6703), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(2999), 2, + sym_decltype, + sym_template_type, + ACTIONS(9446), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3096), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195264] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + ACTIONS(9473), 1, + sym_identifier, ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9479), 1, + sym_primitive_type, + ACTIONS(9481), 1, + anon_sym_enum, + ACTIONS(9483), 1, + anon_sym_class, + ACTIONS(9485), 1, + anon_sym_struct, + ACTIONS(9487), 1, + anon_sym_union, + ACTIONS(9489), 1, + sym_auto, + ACTIONS(9491), 1, anon_sym_decltype, - ACTIONS(9477), 1, + ACTIONS(9493), 1, anon_sym_typename, - STATE(1671), 1, + STATE(1626), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2985), 1, + STATE(1933), 1, sym_type_specifier, - STATE(3511), 1, + STATE(2328), 1, sym_decltype_auto, - STATE(3525), 1, + STATE(2344), 1, sym_qualified_type_identifier, - STATE(5237), 1, + STATE(5253), 1, sym_argument_list, - STATE(6708), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(3266), 2, + STATE(2237), 2, sym_decltype, sym_template_type, - ACTIONS(9461), 4, + ACTIONS(9477), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3519), 7, + STATE(2331), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -461684,45 +463849,67 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [194458] = 16, + [195344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5960), 4, 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(8719), 1, + anon_sym_LBRACE, + ACTIONS(9546), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5962), 23, anon_sym_AMP, - 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___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, - 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, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195388] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5980), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(9549), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5982), 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, @@ -461734,190 +463921,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [194524] = 21, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [195432] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(7983), 1, + sym_primitive_type, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + ACTIONS(9426), 1, + sym_identifier, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(9432), 1, + anon_sym_enum, + ACTIONS(9434), 1, + anon_sym_class, + ACTIONS(9436), 1, + anon_sym_struct, + ACTIONS(9438), 1, + anon_sym_union, + ACTIONS(9440), 1, + anon_sym_typename, + STATE(1901), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4144), 1, + sym_type_specifier, + STATE(5289), 1, + sym_argument_list, + STATE(6745), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(1793), 2, + sym_decltype, + sym_template_type, + ACTIONS(9430), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1907), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195512] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + ACTIONS(9552), 1, + sym_identifier, + ACTIONS(9554), 1, + anon_sym_COLON_COLON, + ACTIONS(9558), 1, + sym_primitive_type, + ACTIONS(9560), 1, + anon_sym_enum, + ACTIONS(9562), 1, + anon_sym_class, + ACTIONS(9564), 1, + anon_sym_struct, + ACTIONS(9566), 1, + anon_sym_union, + ACTIONS(9568), 1, + sym_auto, + ACTIONS(9570), 1, + anon_sym_decltype, + ACTIONS(9572), 1, + anon_sym_typename, + STATE(1897), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(3983), 1, + sym_type_specifier, + STATE(4120), 1, + sym_decltype_auto, + STATE(5274), 1, + sym_argument_list, + STATE(6742), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(4099), 2, + sym_decltype, + sym_template_type, + ACTIONS(9556), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4124), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195592] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9330), 1, + ACTIONS(7494), 1, anon_sym_requires, - STATE(6031), 1, + ACTIONS(9399), 1, + anon_sym_LBRACK, + STATE(6219), 1, sym_trailing_return_type, - STATE(6264), 1, + STATE(6235), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - STATE(5380), 3, + STATE(5393), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, + ACTIONS(9388), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [194600] = 21, + [195668] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7075), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9396), 1, - anon_sym___asm, - ACTIONS(9401), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9479), 1, + ACTIONS(7474), 1, anon_sym_requires, - STATE(5888), 1, - sym__function_attributes_end, - STATE(5993), 1, + ACTIONS(9183), 1, + anon_sym_LBRACK, + STATE(6051), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6253), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9387), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5387), 3, + STATE(5394), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, - anon_sym_COMMA, + ACTIONS(9172), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [194676] = 24, + [195744] = 23, 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(7283), 1, - anon_sym___attribute__, - ACTIONS(7285), 1, - anon_sym___attribute, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9366), 1, - anon_sym_requires, - STATE(5343), 1, - sym_ref_qualifier, - 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8193), 1, anon_sym_LPAREN2, - 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, - [194758] = 5, + ACTIONS(9552), 1, + sym_identifier, + ACTIONS(9554), 1, + anon_sym_COLON_COLON, + ACTIONS(9558), 1, + sym_primitive_type, + ACTIONS(9560), 1, + anon_sym_enum, + ACTIONS(9562), 1, + anon_sym_class, + ACTIONS(9564), 1, + anon_sym_struct, + ACTIONS(9566), 1, + anon_sym_union, + ACTIONS(9568), 1, + sym_auto, + ACTIONS(9570), 1, + anon_sym_decltype, + ACTIONS(9572), 1, + anon_sym_typename, + STATE(1897), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(3860), 1, + sym_type_specifier, + STATE(4120), 1, + sym_decltype_auto, + STATE(5275), 1, + sym_argument_list, + STATE(6742), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(4099), 2, + sym_decltype, + sym_template_type, + ACTIONS(9556), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4124), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [195824] = 5, ACTIONS(3), 1, sym_comment, - STATE(5075), 1, + STATE(5071), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5966), 4, + ACTIONS(5917), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9482), 4, + ACTIONS(9574), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5968), 23, + ACTIONS(5919), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -461941,134 +464247,64 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [194802] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - ACTIONS(9457), 1, - sym_identifier, - ACTIONS(9459), 1, - anon_sym_COLON_COLON, - ACTIONS(9463), 1, - sym_primitive_type, - ACTIONS(9465), 1, - anon_sym_enum, - ACTIONS(9467), 1, - anon_sym_class, - ACTIONS(9469), 1, - anon_sym_struct, - ACTIONS(9471), 1, - anon_sym_union, - ACTIONS(9473), 1, - sym_auto, - ACTIONS(9475), 1, - anon_sym_decltype, - ACTIONS(9477), 1, - anon_sym_typename, - STATE(1671), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3002), 1, - sym_type_specifier, - STATE(3511), 1, - sym_decltype_auto, - STATE(3525), 1, - sym_qualified_type_identifier, - STATE(5253), 1, - sym_argument_list, - STATE(6708), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(3266), 2, - sym_decltype, - sym_template_type, - ACTIONS(9461), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3519), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [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, + [195868] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8727), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + STATE(5069), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(4166), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(9577), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(4159), 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, + [195918] = 5, ACTIONS(3), 1, sym_comment, - STATE(5086), 1, + STATE(5078), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5972), 4, + ACTIONS(5923), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9485), 4, + ACTIONS(9579), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5974), 23, + ACTIONS(5925), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -462092,84 +464328,81 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [195002] = 21, + [195962] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9491), 1, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9543), 1, anon_sym_requires, - STATE(6111), 1, + STATE(5988), 1, sym_trailing_return_type, - STATE(6221), 1, + STATE(6136), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - STATE(5379), 3, + STATE(5412), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, - anon_sym_COMMA, + ACTIONS(9388), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [195078] = 8, + anon_sym_try, + [196038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(8725), 1, - anon_sym_LT, - STATE(1623), 1, - sym_template_argument_list, - STATE(5098), 1, + STATE(1968), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(4172), 3, + ACTIONS(5141), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9494), 4, + anon_sym_LBRACE, + ACTIONS(9582), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(4164), 21, + ACTIONS(5138), 23, anon_sym_AMP, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___based, anon_sym_const, anon_sym_constexpr, @@ -462189,196 +464422,132 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [195128] = 23, + [196082] = 5, 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, + STATE(5119), 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, + ACTIONS(5974), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(9586), 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, + ACTIONS(5976), 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, - 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_identifier, 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, + [196126] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7375), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9401), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9407), 1, - anon_sym_requires, - ACTIONS(9518), 1, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9521), 1, + ACTIONS(9343), 1, anon_sym___attribute, - STATE(5536), 1, + ACTIONS(9349), 1, + anon_sym_requires, + STATE(6025), 1, sym_trailing_return_type, - STATE(6002), 1, + STATE(6066), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9387), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5383), 3, + STATE(5401), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [195364] = 5, + [196202] = 10, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5167), 4, + ACTIONS(5641), 1, + sym_auto, + ACTIONS(5643), 1, + anon_sym_decltype, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(1883), 1, + sym_decltype_auto, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5328), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9591), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9524), 4, + ACTIONS(9589), 8, + anon_sym_AMP, + anon_sym___based, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5164), 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, @@ -462391,399 +464560,221 @@ 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, - [195408] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - ACTIONS(9410), 1, - sym_identifier, - ACTIONS(9412), 1, - anon_sym_COLON_COLON, - ACTIONS(9416), 1, - sym_primitive_type, - ACTIONS(9418), 1, - anon_sym_enum, - ACTIONS(9420), 1, - anon_sym_class, - ACTIONS(9422), 1, - anon_sym_struct, - ACTIONS(9424), 1, - anon_sym_union, - ACTIONS(9426), 1, - sym_auto, - ACTIONS(9428), 1, - anon_sym_decltype, - ACTIONS(9430), 1, - anon_sym_typename, - STATE(1860), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(3853), 1, - sym_type_specifier, - STATE(4125), 1, - sym_decltype_auto, - STATE(5230), 1, - sym_argument_list, - STATE(6732), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(4102), 2, - sym_decltype, - sym_template_type, - ACTIONS(9414), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4108), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [195488] = 21, + [196256] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(7447), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(6123), 1, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + STATE(6017), 1, sym_trailing_return_type, - STATE(6207), 1, + STATE(6215), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - STATE(5384), 3, + STATE(5425), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, - anon_sym_COMMA, + ACTIONS(9388), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [195564] = 21, + anon_sym_try, + [196332] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(7375), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 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, + ACTIONS(9349), 1, + anon_sym_requires, + STATE(6025), 1, sym_trailing_return_type, - STATE(5995), 1, + STATE(6288), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5392), 3, + STATE(5405), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9172), 5, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [195640] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - 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(1921), 1, - sym_type_specifier, - STATE(2306), 1, - sym_decltype_auto, - STATE(2335), 1, - sym_qualified_type_identifier, - STATE(5275), 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(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, - [195720] = 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(7283), 1, - anon_sym___attribute__, - ACTIONS(7285), 1, - anon_sym___attribute, - ACTIONS(7913), 1, - anon_sym_DASH_GT, - ACTIONS(7924), 1, - anon_sym_requires, - 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(6598), 1, - sym_trailing_return_type, - 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__, - ACTIONS(9139), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - 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(5451), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [195802] = 21, + anon_sym_try, + [196408] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7445), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9518), 1, + ACTIONS(9527), 1, anon_sym___attribute__, - ACTIONS(9521), 1, + ACTIONS(9530), 1, anon_sym___attribute, - ACTIONS(9550), 1, + ACTIONS(9593), 1, anon_sym_requires, - STATE(5980), 1, + STATE(6061), 1, sym_trailing_return_type, - STATE(6048), 1, + STATE(6067), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - STATE(5391), 3, + STATE(5402), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [195878] = 23, + [196484] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8177), 1, + ACTIONS(3184), 1, + sym_auto, + ACTIONS(3186), 1, + anon_sym_decltype, + ACTIONS(8098), 1, + sym_primitive_type, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(9530), 1, + ACTIONS(9596), 1, + sym_identifier, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9538), 1, + ACTIONS(9602), 1, + anon_sym_enum, + ACTIONS(9604), 1, anon_sym_class, - ACTIONS(9540), 1, + ACTIONS(9606), 1, anon_sym_struct, - ACTIONS(9542), 1, + ACTIONS(9608), 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, + ACTIONS(9610), 1, anon_sym_typename, - STATE(1614), 1, + STATE(2231), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1921), 1, - sym_type_specifier, - STATE(2306), 1, - sym_decltype_auto, - STATE(2335), 1, + STATE(2705), 1, sym_qualified_type_identifier, - STATE(5241), 1, + STATE(2711), 1, + sym_decltype_auto, + STATE(4230), 1, + sym_type_specifier, + STATE(5261), 1, sym_argument_list, - STATE(6695), 1, + STATE(6744), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2242), 2, + STATE(2684), 2, sym_decltype, sym_template_type, - ACTIONS(9555), 4, + ACTIONS(9600), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2310), 7, + STATE(2712), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -462791,27 +464782,39 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [195958] = 5, + [196564] = 11, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + ACTIONS(6864), 1, + sym_identifier, + ACTIONS(6868), 1, + sym_primitive_type, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(3082), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5978), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5102), 3, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(9563), 4, + anon_sym_GT2, + ACTIONS(5104), 4, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + ACTIONS(6866), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5980), 23, - anon_sym_AMP, + ACTIONS(67), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -462824,119 +464827,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_primitive_type, - sym_identifier, - sym_auto, - anon_sym_decltype, - [196002] = 23, + [196620] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - 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(9546), 1, - anon_sym_decltype, - ACTIONS(9553), 1, + ACTIONS(6858), 1, sym_identifier, - ACTIONS(9557), 1, + ACTIONS(6862), 1, sym_primitive_type, - ACTIONS(9559), 1, - anon_sym_enum, - ACTIONS(9561), 1, - anon_sym_typename, - STATE(1614), 1, + STATE(1693), 1, + sym_alignas_qualifier, + STATE(5332), 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, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5097), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(5123), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(5125), 4, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + ACTIONS(9612), 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(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, + [196676] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(9528), 1, + ACTIONS(9614), 1, sym_identifier, - ACTIONS(9530), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(9534), 1, + ACTIONS(9620), 1, sym_primitive_type, - ACTIONS(9536), 1, + ACTIONS(9622), 1, anon_sym_enum, - ACTIONS(9538), 1, + ACTIONS(9624), 1, anon_sym_class, - ACTIONS(9540), 1, + ACTIONS(9626), 1, anon_sym_struct, - ACTIONS(9542), 1, + ACTIONS(9628), 1, anon_sym_union, - ACTIONS(9544), 1, + ACTIONS(9630), 1, sym_auto, - ACTIONS(9546), 1, + ACTIONS(9632), 1, anon_sym_decltype, - ACTIONS(9548), 1, + ACTIONS(9634), 1, anon_sym_typename, - STATE(1612), 1, + STATE(1677), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1929), 1, + STATE(2923), 1, sym_type_specifier, - STATE(2306), 1, + STATE(3513), 1, sym_decltype_auto, - STATE(2335), 1, + STATE(3533), 1, sym_qualified_type_identifier, - STATE(5238), 1, + STATE(5267), 1, sym_argument_list, - STATE(6695), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2242), 2, + STATE(3356), 2, sym_decltype, sym_template_type, - ACTIONS(9532), 4, + ACTIONS(9618), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2310), 7, + STATE(3522), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -462944,44 +464929,99 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [196162] = 16, + [196756] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7428), 1, + anon_sym_DASH_GT, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9399), 1, + anon_sym_LBRACK, + STATE(6023), 1, + sym_trailing_return_type, + STATE(6247), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5408), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9388), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [196832] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(5652), 1, + ACTIONS(5664), 1, anon_sym_const, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8487), 1, + ACTIONS(8501), 1, anon_sym_COLON, - ACTIONS(8715), 1, + ACTIONS(8721), 1, anon_sym_STAR, - ACTIONS(8717), 1, + ACTIONS(8723), 1, anon_sym_AMP_AMP, - ACTIONS(8719), 1, + ACTIONS(8725), 1, anon_sym_AMP, - STATE(1702), 1, + STATE(1719), 1, sym_alignas_qualifier, - STATE(3538), 1, + STATE(3592), 1, sym_parameter_list, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(7007), 1, + STATE(7027), 1, sym__abstract_declarator, - ACTIONS(8471), 2, + ACTIONS(8453), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(1676), 2, + STATE(1684), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8463), 12, + ACTIONS(8445), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -462994,136 +465034,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196228] = 21, + [196898] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7068), 1, + anon_sym_AMP_AMP, + ACTIONS(7070), 1, + anon_sym_AMP, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9550), 1, + ACTIONS(9356), 1, anon_sym_requires, - STATE(5980), 1, - sym_trailing_return_type, - STATE(6270), 1, + STATE(5331), 1, + sym_ref_qualifier, + STATE(6504), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6661), 1, + sym_trailing_return_type, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5399), 3, + STATE(5483), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [196304] = 21, + [196980] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(7445), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - STATE(6016), 1, + ACTIONS(9593), 1, + anon_sym_requires, + STATE(6061), 1, sym_trailing_return_type, - STATE(6084), 1, + STATE(6295), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - STATE(5406), 3, + STATE(5395), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9388), 5, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [196380] = 8, + anon_sym_try, + [197056] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9566), 1, + ACTIONS(9636), 1, sym_ms_restrict_modifier, - STATE(5308), 1, + STATE(5334), 1, sym_ms_unaligned_ptr_modifier, - ACTIONS(7834), 2, + ACTIONS(7640), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(9569), 2, + ACTIONS(9639), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(9572), 2, + ACTIONS(9642), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5081), 2, + STATE(5104), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(7836), 22, + ACTIONS(7642), 22, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -463146,151 +465189,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [196430] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(5047), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5778), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - 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, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - 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, - [196472] = 23, + [197106] = 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, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(9435), 1, + ACTIONS(9502), 1, sym_identifier, - ACTIONS(9437), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9441), 1, + ACTIONS(9508), 1, + sym_primitive_type, + ACTIONS(9510), 1, anon_sym_enum, - ACTIONS(9443), 1, + ACTIONS(9512), 1, anon_sym_class, - ACTIONS(9445), 1, + ACTIONS(9514), 1, anon_sym_struct, - ACTIONS(9447), 1, + ACTIONS(9516), 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, + ACTIONS(9518), 1, sym_auto, - ACTIONS(1846), 1, + ACTIONS(9520), 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, + ACTIONS(9522), 1, anon_sym_typename, - STATE(1887), 1, + STATE(1659), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1888), 1, - sym_decltype_auto, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(4111), 1, + STATE(2886), 1, sym_type_specifier, - STATE(5282), 1, + STATE(3192), 1, + sym_qualified_type_identifier, + STATE(3227), 1, + sym_decltype_auto, + STATE(5272), 1, sym_argument_list, - STATE(6699), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(1782), 2, + STATE(3106), 2, sym_decltype, sym_template_type, - ACTIONS(9439), 4, + ACTIONS(9506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(3228), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -463298,77 +465246,22 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [196632] = 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(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9366), 1, - anon_sym_requires, - STATE(6182), 1, - sym_trailing_return_type, - STATE(6214), 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(5396), 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, - [196708] = 5, + [197186] = 5, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + STATE(1968), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5986), 4, + ACTIONS(5984), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9575), 4, + ACTIONS(9645), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5988), 23, + ACTIONS(5986), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -463392,106 +465285,56 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [196752] = 16, - 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(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(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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [196818] = 23, + [197230] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8177), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(7983), 1, + sym_primitive_type, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(9578), 1, + ACTIONS(9426), 1, sym_identifier, - ACTIONS(9580), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9584), 1, - sym_primitive_type, - ACTIONS(9586), 1, + ACTIONS(9432), 1, anon_sym_enum, - ACTIONS(9588), 1, + ACTIONS(9434), 1, anon_sym_class, - ACTIONS(9590), 1, + ACTIONS(9436), 1, anon_sym_struct, - ACTIONS(9592), 1, + ACTIONS(9438), 1, anon_sym_union, - ACTIONS(9594), 1, - sym_auto, - ACTIONS(9596), 1, - anon_sym_decltype, - ACTIONS(9598), 1, + ACTIONS(9440), 1, anon_sym_typename, - STATE(1635), 1, + STATE(1901), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2798), 1, - sym_type_specifier, - STATE(3046), 1, - sym_qualified_type_identifier, - STATE(3082), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(5257), 1, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4170), 1, + sym_type_specifier, + STATE(5288), 1, sym_argument_list, - STATE(6713), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2951), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - ACTIONS(9582), 4, + ACTIONS(9430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3085), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -463499,375 +465342,240 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [196898] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5050), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5933), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9600), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5935), 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, - [196942] = 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(8453), 1, - anon_sym_COLON, - 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(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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [197008] = 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(7393), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9401), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9479), 1, - anon_sym_requires, - STATE(5993), 1, - sym_trailing_return_type, - STATE(6104), 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, - STATE(5410), 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, - [197084] = 21, + [197310] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7393), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9308), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - STATE(6042), 1, + STATE(6046), 1, sym_trailing_return_type, - STATE(6180), 1, + STATE(6129), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5397), 3, + STATE(5392), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [197160] = 21, + [197386] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7314), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(7375), 1, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9401), 1, + ACTIONS(9417), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9518), 1, + ACTIONS(9527), 1, anon_sym___attribute__, - ACTIONS(9521), 1, + ACTIONS(9530), 1, anon_sym___attribute, - STATE(5529), 1, + STATE(5567), 1, sym_trailing_return_type, - STATE(5996), 1, + STATE(6035), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - STATE(5398), 3, + STATE(5396), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [197236] = 10, + [197462] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - sym_auto, - ACTIONS(5539), 1, - anon_sym_decltype, - 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, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(9603), 8, + ACTIONS(7070), 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, - [197290] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(5975), 1, + STATE(5311), 1, + sym_ref_qualifier, + STATE(6135), 1, sym_trailing_return_type, - STATE(6269), 1, + STATE(6528), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5377), 3, + STATE(5482), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, + [197544] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [197366] = 5, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8435), 1, + anon_sym_COLON, + ACTIONS(8721), 1, + anon_sym_STAR, + ACTIONS(8723), 1, + anon_sym_AMP_AMP, + ACTIONS(8725), 1, + anon_sym_AMP, + STATE(1719), 1, + sym_alignas_qualifier, + STATE(3592), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(7031), 1, + sym__abstract_declarator, + ACTIONS(8453), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1684), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 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, + [197610] = 5, ACTIONS(3), 1, sym_comment, - STATE(1974), 1, + STATE(1968), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(5891), 4, + ACTIONS(5929), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(9607), 4, + ACTIONS(9648), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5893), 23, + ACTIONS(5931), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -463891,56 +465599,56 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, - [197410] = 23, + [197654] = 23, 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(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(9610), 1, + ACTIONS(9614), 1, sym_identifier, - ACTIONS(9612), 1, - anon_sym_COLON_COLON, ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9620), 1, + sym_primitive_type, + ACTIONS(9622), 1, anon_sym_enum, - ACTIONS(9618), 1, + ACTIONS(9624), 1, anon_sym_class, - ACTIONS(9620), 1, + ACTIONS(9626), 1, anon_sym_struct, - ACTIONS(9622), 1, + ACTIONS(9628), 1, anon_sym_union, - ACTIONS(9624), 1, + ACTIONS(9630), 1, + sym_auto, + ACTIONS(9632), 1, + anon_sym_decltype, + ACTIONS(9634), 1, anon_sym_typename, - STATE(2223), 1, + STATE(1677), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2685), 1, - sym_qualified_type_identifier, - STATE(2733), 1, - sym_decltype_auto, - STATE(4186), 1, + STATE(2926), 1, sym_type_specifier, - STATE(5293), 1, + STATE(3513), 1, + sym_decltype_auto, + STATE(3533), 1, + sym_qualified_type_identifier, + STATE(5268), 1, sym_argument_list, - STATE(6694), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2621), 2, + STATE(3356), 2, sym_decltype, sym_template_type, - ACTIONS(9614), 4, + ACTIONS(9618), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2747), 7, + STATE(3522), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -463948,394 +465656,300 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [197490] = 5, - ACTIONS(3), 1, - sym_comment, - 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__, - 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, - [197534] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5051), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5885), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(9629), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5887), 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, - [197578] = 21, - ACTIONS(3), 1, - sym_comment, - 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(7395), 1, - anon_sym_requires, - 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, - STATE(5883), 1, - sym__function_attributes_end, - STATE(6042), 1, - sym_trailing_return_type, - 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(5395), 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, - [197654] = 24, + [197734] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(7068), 1, anon_sym_AMP_AMP, - ACTIONS(7050), 1, + ACTIONS(7070), 1, anon_sym_AMP, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9632), 1, + ACTIONS(9651), 1, anon_sym_requires, - STATE(5340), 1, + STATE(5327), 1, sym_ref_qualifier, - STATE(6398), 1, + STATE(6407), 1, sym__function_attributes_end, - STATE(6575), 1, + STATE(6578), 1, sym_trailing_return_type, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9139), 2, + ACTIONS(9172), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9193), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5462), 3, + STATE(5470), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [197736] = 21, + [197816] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(6016), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9325), 1, + anon_sym_requires, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + STATE(5526), 1, sym_trailing_return_type, - STATE(6280), 1, + STATE(6040), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5400), 3, + STATE(5416), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [197812] = 21, + anon_sym_GT2, + [197892] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7075), 1, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(5860), 1, + anon_sym_COLON, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8721), 1, + anon_sym_STAR, + ACTIONS(8723), 1, + anon_sym_AMP_AMP, + ACTIONS(8725), 1, + anon_sym_AMP, + STATE(1719), 1, + sym_alignas_qualifier, + STATE(3592), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6987), 1, + sym__abstract_declarator, + ACTIONS(8453), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1684), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 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, + [197958] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7395), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(7443), 1, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9396), 1, - anon_sym___asm, - ACTIONS(9401), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - STATE(5884), 1, - sym__function_attributes_end, - STATE(5994), 1, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + STATE(5565), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6062), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5401), 3, + STATE(5403), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, + ACTIONS(9172), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [197888] = 21, + anon_sym_EQ, + anon_sym_GT2, + [198034] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(7445), 1, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9423), 1, + anon_sym_requires, + ACTIONS(9527), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9530), 1, anon_sym___attribute, - STATE(5975), 1, + STATE(5527), 1, sym_trailing_return_type, - STATE(6083), 1, + STATE(6041), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - STATE(5403), 3, + STATE(5417), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [197964] = 10, + [198110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5537), 1, - sym_auto, - ACTIONS(5539), 1, - anon_sym_decltype, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(1864), 1, - sym_decltype_auto, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5347), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9637), 3, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5933), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(9635), 8, - anon_sym_AMP, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(9654), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - sym_primitive_type, - sym_identifier, - ACTIONS(67), 13, + ACTIONS(5935), 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, @@ -464348,212 +465962,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198018] = 23, - 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, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - 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(2685), 1, - sym_qualified_type_identifier, - 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(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(1268), 1, - anon_sym_template, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - 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(2759), 1, - sym_type_specifier, - STATE(3046), 1, - sym_qualified_type_identifier, - 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(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, - [198178] = 24, + [198154] = 21, 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, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(7466), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9366), 1, - anon_sym_requires, - STATE(5352), 1, - sym_ref_qualifier, - STATE(6502), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, + anon_sym___asm, + STATE(5900), 1, sym__function_attributes_end, - STATE(6651), 1, + STATE(6046), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9139), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5455), 2, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5458), 3, + STATE(5413), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [198260] = 11, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [198230] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - sym_identifier, - ACTIONS(6858), 1, - sym_primitive_type, - STATE(1680), 1, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5664), 1, + anon_sym_const, + ACTIONS(6763), 1, + anon_sym_COLON, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8721), 1, + anon_sym_STAR, + ACTIONS(8723), 1, + anon_sym_AMP_AMP, + ACTIONS(8725), 1, + anon_sym_AMP, + STATE(1719), 1, sym_alignas_qualifier, - STATE(5354), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(69), 2, + STATE(3592), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6989), 1, + sym__abstract_declarator, + ACTIONS(8453), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5110), 2, + STATE(1684), 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, - sym_auto, - anon_sym_decltype, - ACTIONS(9639), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(67), 13, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8445), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -464565,107 +466073,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198316] = 11, + [198296] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6860), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9483), 1, + anon_sym_class, + ACTIONS(9485), 1, + anon_sym_struct, + ACTIONS(9487), 1, + anon_sym_union, + ACTIONS(9489), 1, + sym_auto, + ACTIONS(9491), 1, + anon_sym_decltype, + ACTIONS(9533), 1, sym_identifier, - ACTIONS(6864), 1, + ACTIONS(9537), 1, sym_primitive_type, - STATE(1680), 1, - sym_alignas_qualifier, - STATE(3149), 1, + ACTIONS(9539), 1, + anon_sym_enum, + ACTIONS(9541), 1, + anon_sym_typename, + STATE(1627), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(69), 2, - anon_sym_alignas, - anon_sym__Alignas, - 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, - sym_auto, - anon_sym_decltype, - ACTIONS(6862), 4, + STATE(1930), 1, + sym_type_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2344), 1, + sym_qualified_type_identifier, + STATE(5278), 1, + sym_argument_list, + STATE(6762), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(2237), 2, + sym_decltype, + sym_template_type, + ACTIONS(9535), 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, - [198372] = 21, + STATE(2331), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198376] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7393), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9308), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9359), 1, + ACTIONS(9337), 1, anon_sym_requires, - STATE(6044), 1, + STATE(6060), 1, sym_trailing_return_type, - STATE(6157), 1, + STATE(6109), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - STATE(5375), 3, + STATE(5409), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [198448] = 23, + [198452] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -464674,47 +466194,104 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(7986), 1, + ACTIONS(7983), 1, sym_primitive_type, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(9435), 1, + ACTIONS(9426), 1, sym_identifier, - ACTIONS(9437), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9441), 1, + ACTIONS(9432), 1, anon_sym_enum, - ACTIONS(9443), 1, + ACTIONS(9434), 1, anon_sym_class, - ACTIONS(9445), 1, + ACTIONS(9436), 1, anon_sym_struct, - ACTIONS(9447), 1, + ACTIONS(9438), 1, anon_sym_union, - ACTIONS(9449), 1, + ACTIONS(9440), 1, anon_sym_typename, - STATE(1887), 1, + STATE(1901), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1888), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(4021), 1, + STATE(4014), 1, sym_type_specifier, - STATE(5296), 1, + STATE(5305), 1, + sym_argument_list, + STATE(6745), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(1793), 2, + sym_decltype, + sym_template_type, + ACTIONS(9430), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1907), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [198532] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3184), 1, + sym_auto, + ACTIONS(3186), 1, + anon_sym_decltype, + ACTIONS(8098), 1, + sym_primitive_type, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + ACTIONS(9596), 1, + sym_identifier, + ACTIONS(9598), 1, + anon_sym_COLON_COLON, + ACTIONS(9602), 1, + anon_sym_enum, + ACTIONS(9604), 1, + anon_sym_class, + ACTIONS(9606), 1, + anon_sym_struct, + ACTIONS(9608), 1, + anon_sym_union, + ACTIONS(9610), 1, + anon_sym_typename, + STATE(2231), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2705), 1, + sym_qualified_type_identifier, + STATE(2711), 1, + sym_decltype_auto, + STATE(4183), 1, + sym_type_specifier, + STATE(5260), 1, sym_argument_list, - STATE(6699), 1, + STATE(6744), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(1782), 2, + STATE(2684), 2, sym_decltype, sym_template_type, - ACTIONS(9439), 4, + ACTIONS(9600), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(2712), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -464722,1610 +466299,2077 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [198528] = 21, + [198612] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, + sym_identifier, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, + sym_template_type, + STATE(2537), 1, + sym__class_declaration, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5726), 1, + sym_ms_declspec_modifier, + STATE(6741), 1, + sym__scope_resolution, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4027), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5728), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5251), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [198693] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(7512), 1, + anon_sym_LBRACE, + ACTIONS(9554), 1, + anon_sym_COLON_COLON, + ACTIONS(9661), 1, + sym_identifier, + STATE(3603), 1, + sym_template_type, + STATE(4023), 1, + sym_field_declaration_list, + STATE(4129), 1, + sym__class_declaration_item, + STATE(4130), 1, + sym__class_declaration, + STATE(5633), 1, + sym_ms_declspec_modifier, + STATE(6742), 1, + sym__scope_resolution, + STATE(7167), 1, + sym_virtual_specifier, + STATE(7770), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(3166), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5636), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5246), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [198774] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6024), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(9663), 1, + sym_identifier, + STATE(1835), 1, + sym_template_type, + STATE(1894), 1, + sym__class_declaration_item, + STATE(1896), 1, + sym__class_declaration, + STATE(2404), 1, + sym_field_declaration_list, + STATE(5602), 1, + sym_ms_declspec_modifier, + STATE(6738), 1, + sym__scope_resolution, + STATE(7223), 1, + sym_virtual_specifier, + STATE(7948), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2035), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5607), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5281), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [198855] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2537), 1, + sym__class_declaration, + STATE(2538), 1, + sym__class_declaration_item, + STATE(3750), 1, + sym_field_declaration_list, + STATE(5724), 1, + sym_ms_declspec_modifier, + STATE(6721), 1, + sym__scope_resolution, + STATE(7247), 1, + sym_virtual_specifier, + STATE(8003), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(3122), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5725), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5307), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [198936] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2489), 1, + sym__class_declaration, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, + sym_ms_declspec_modifier, + STATE(6713), 1, + sym__scope_resolution, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2879), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5603), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5279), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [199017] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2556), 1, + sym__class_declaration, + STATE(3750), 1, + sym_field_declaration_list, + STATE(5724), 1, + sym_ms_declspec_modifier, + STATE(6721), 1, + sym__scope_resolution, + STATE(7247), 1, + sym_virtual_specifier, + STATE(8003), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(3122), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5725), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5307), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [199098] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(9667), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2537), 1, + sym__class_declaration, + STATE(2538), 1, + sym__class_declaration_item, + STATE(3750), 1, + sym_field_declaration_list, + STATE(5703), 1, + sym_ms_declspec_modifier, + STATE(6716), 1, + sym__scope_resolution, + STATE(7247), 1, + sym_virtual_specifier, + STATE(8003), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(3122), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5705), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5266), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [199179] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2489), 1, + sym__class_declaration, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, + sym_ms_declspec_modifier, + STATE(6713), 1, + sym__scope_resolution, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2872), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5603), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5279), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [199260] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7393), 1, + ACTIONS(7507), 1, anon_sym_DASH_GT, - ACTIONS(7395), 1, - anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9401), 1, - anon_sym_LBRACK_LBRACK, - STATE(5994), 1, + ACTIONS(9385), 1, + anon_sym_requires, + STATE(6326), 1, sym_trailing_return_type, - STATE(6119), 1, + STATE(6337), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5405), 3, + STATE(5431), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9371), 5, - anon_sym_RPAREN, + ACTIONS(9172), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [198604] = 24, + anon_sym_GT2, + [199335] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1898), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6206), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6204), 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, + [199378] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(3750), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5724), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2810), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5725), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5307), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198685] = 24, + [199459] = 24, 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(9643), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9669), 1, sym_identifier, - STATE(1922), 1, + STATE(1966), 1, sym_template_type, - STATE(2461), 1, + STATE(2230), 1, + sym_field_declaration_list, + STATE(2348), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(2351), 1, sym__class_declaration, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5711), 1, + STATE(5693), 1, sym_ms_declspec_modifier, - STATE(6746), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7186), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7866), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5713), 2, + STATE(5694), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5272), 3, + STATE(5262), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198766] = 24, + [199540] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9669), 1, sym_identifier, - STATE(1922), 1, + STATE(1966), 1, sym_template_type, - STATE(2461), 1, + STATE(2230), 1, + sym_field_declaration_list, + STATE(2348), 1, sym__class_declaration_item, - STATE(2480), 1, + STATE(2352), 1, sym__class_declaration, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5611), 1, + STATE(5693), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7186), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7866), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2834), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5694), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5262), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198847] = 24, + [199621] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1918), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6115), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6113), 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, + [199664] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7984), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9645), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1895), 1, - sym__class_declaration, - STATE(1902), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2382), 1, + STATE(2556), 1, + sym__class_declaration, + STATE(3750), 1, sym_field_declaration_list, - STATE(5684), 1, + STATE(5703), 1, sym_ms_declspec_modifier, - STATE(6727), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5689), 2, + STATE(5705), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5270), 3, + STATE(5266), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [198928] = 24, + [199745] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2472), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2810), 2, + STATE(2835), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199009] = 24, + [199826] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2480), 1, + STATE(2556), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2810), 2, + STATE(2835), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199090] = 24, + [199907] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(9671), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(2459), 1, - sym__class_declaration, - STATE(2461), 1, + STATE(1894), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(1896), 1, + sym__class_declaration, + STATE(2404), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5700), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2812), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5702), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5240), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199171] = 24, + [199988] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(9667), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2472), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(3750), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5703), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2812), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5705), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5266), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199252] = 24, + [200069] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2480), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2812), 2, + STATE(2870), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [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, + [200150] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(3663), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5603), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6743), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(2835), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5605), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199489] = 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(9382), 1, - anon_sym_LBRACK, - STATE(6296), 1, - sym_trailing_return_type, - STATE(6301), 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(5415), 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, - [199564] = 24, + [200231] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(2556), 1, sym__class_declaration, - STATE(3663), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5603), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6743), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(2866), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5605), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199645] = 24, + [200312] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(7512), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9661), 1, sym_identifier, - STATE(1922), 1, + STATE(3603), 1, sym_template_type, - STATE(2461), 1, + STATE(4023), 1, + sym_field_declaration_list, + STATE(4129), 1, sym__class_declaration_item, - STATE(2480), 1, + STATE(4131), 1, sym__class_declaration, - STATE(3663), 1, - sym_field_declaration_list, - STATE(5603), 1, + STATE(5633), 1, sym_ms_declspec_modifier, - STATE(6743), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7167), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7770), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(3166), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5605), 2, + STATE(5636), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5279), 3, + STATE(5246), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199726] = 24, + [200393] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8088), 1, - anon_sym_COLON_COLON, - ACTIONS(9649), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1895), 1, + STATE(2489), 1, sym__class_declaration, - STATE(1902), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(5190), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5692), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6724), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7203), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7975), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4535), 2, + STATE(2869), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5698), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5297), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199807] = 24, + [200474] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8088), 1, - anon_sym_COLON_COLON, - ACTIONS(9649), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1902), 1, - sym__class_declaration_item, - STATE(1911), 1, + STATE(2537), 1, sym__class_declaration, - STATE(5190), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5692), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6724), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7203), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7975), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4535), 2, + STATE(2873), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5698), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5297), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [199888] = 24, + [200555] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8088), 1, - anon_sym_COLON_COLON, - ACTIONS(9649), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1861), 1, - sym__class_declaration, - STATE(1902), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(5190), 1, + STATE(2556), 1, + sym__class_declaration, + STATE(2990), 1, sym_field_declaration_list, - STATE(5692), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6724), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7203), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7975), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4535), 2, + STATE(2873), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5698), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5297), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [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, + [200636] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7984), 1, - anon_sym_COLON_COLON, - ACTIONS(9645), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1902), 1, - sym__class_declaration_item, - STATE(1911), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2382), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5684), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6727), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(2873), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5689), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5270), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200200] = 24, + [200717] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1921), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6214), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6212), 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, + [200760] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9437), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1895), 1, + STATE(4537), 1, + sym_field_declaration_list, + STATE(4693), 1, sym__class_declaration, - STATE(1902), 1, + STATE(4694), 1, sym__class_declaration_item, - STATE(2382), 1, - sym_field_declaration_list, - STATE(5712), 1, + STATE(5580), 1, sym_ms_declspec_modifier, - STATE(6699), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5683), 2, + STATE(5581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5239), 3, + STATE(5270), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200281] = 24, + [200841] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1915), 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, + [200884] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6035), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9437), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(9673), 1, sym_identifier, - STATE(1784), 1, + STATE(2611), 1, sym_template_type, - STATE(1902), 1, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2716), 1, sym__class_declaration_item, - STATE(1911), 1, + STATE(2718), 1, sym__class_declaration, - STATE(2382), 1, - sym_field_declaration_list, - STATE(5712), 1, + STATE(5716), 1, sym_ms_declspec_modifier, - STATE(6699), 1, + STATE(6758), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5683), 2, + STATE(5717), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5239), 3, + STATE(5269), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200362] = 24, + [200965] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9437), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1861), 1, - sym__class_declaration, - STATE(1902), 1, - sym__class_declaration_item, - STATE(2382), 1, + STATE(4537), 1, sym_field_declaration_list, - STATE(5712), 1, + STATE(4694), 1, + sym__class_declaration_item, + STATE(4695), 1, + sym__class_declaration, + STATE(5580), 1, sym_ms_declspec_modifier, - STATE(6699), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5683), 2, + STATE(5581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5239), 3, + STATE(5270), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200443] = 24, + [201046] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7984), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9645), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1861), 1, - sym__class_declaration, - STATE(1902), 1, - sym__class_declaration_item, - STATE(2382), 1, + STATE(4537), 1, sym_field_declaration_list, - STATE(5684), 1, + STATE(4694), 1, + sym__class_declaration_item, + STATE(4753), 1, + sym__class_declaration, + STATE(5580), 1, sym_ms_declspec_modifier, - STATE(6727), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5689), 2, + STATE(5581), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, STATE(5270), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200524] = 24, + [201127] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1877), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6129), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6127), 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, + [201170] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1900), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6133), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6131), 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, + [201213] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9598), 1, + anon_sym_COLON_COLON, + ACTIONS(9675), 1, sym_identifier, - STATE(1922), 1, + STATE(2611), 1, sym_template_type, - STATE(2459), 1, - sym__class_declaration, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2962), 1, + STATE(2635), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(2716), 1, + sym__class_declaration_item, + STATE(2718), 1, + sym__class_declaration, + STATE(5587), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6744), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2831), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5588), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5273), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200605] = 24, + [201294] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2472), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2831), 2, + STATE(2870), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200686] = 24, + [201375] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2480), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2831), 2, + STATE(2838), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200767] = 9, + [201456] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(6774), 1, + ACTIONS(6750), 1, anon_sym_LPAREN2, - STATE(1948), 1, + STATE(1992), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2452), 1, + STATE(2520), 1, sym_argument_list, - STATE(3883), 1, + STATE(3918), 1, sym_initializer_list, - ACTIONS(5515), 2, + ACTIONS(5537), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5923), 4, + ACTIONS(5915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5517), 20, + ACTIONS(5539), 20, anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, @@ -466346,2593 +468390,2647 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_auto, anon_sym_decltype, - [200818] = 24, + [201507] = 5, 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(2459), 1, - sym__class_declaration, - STATE(2461), 1, - sym__class_declaration_item, - 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, + STATE(1876), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(6230), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6228), 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, - ACTIONS(5567), 2, - anon_sym_final, - anon_sym_override, - STATE(2835), 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, - [200899] = 24, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [201550] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9444), 1, + anon_sym_COLON_COLON, + ACTIONS(9677), 1, sym_identifier, - STATE(1922), 1, + STATE(2671), 1, sym_template_type, - STATE(2461), 1, + STATE(2881), 1, + sym_field_declaration_list, + STATE(3121), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(3123), 1, sym__class_declaration, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5611), 1, + STATE(5652), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7093), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(8050), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2835), 2, + STATE(2441), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5653), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5256), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [200980] = 24, + [201631] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2480), 1, + STATE(2556), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2835), 2, + STATE(2838), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201061] = 24, + [201712] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2837), 2, + STATE(2858), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201142] = 24, + [201793] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(2556), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2837), 2, + STATE(2858), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201223] = 24, + [201874] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2480), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2837), 2, + STATE(2858), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201304] = 24, + [201955] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1884), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6183), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6181), 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, + [201998] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2838), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201385] = 24, + [202079] = 5, 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(7712), 1, - sym_base_class_clause, - ACTIONS(5489), 2, + STATE(1880), 1, + sym_attribute_specifier, + ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(6210), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6208), 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, - ACTIONS(5567), 2, - anon_sym_final, - anon_sym_override, - STATE(2440), 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_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [202122] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1887), 1, sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [201466] = 24, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6152), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6150), 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, + [202165] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2843), 2, + STATE(2859), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201547] = 24, + [202246] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(2556), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2843), 2, + STATE(2859), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201628] = 24, + [202327] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2480), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2843), 2, + STATE(2859), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201709] = 24, + [202408] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5036), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9679), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5637), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6759), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2844), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5638), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5287), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201790] = 24, + [202489] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(2556), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2844), 2, + STATE(2857), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201871] = 24, + [202570] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2480), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2844), 2, + STATE(2866), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [201952] = 24, + [202651] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9504), 1, + anon_sym_COLON_COLON, + ACTIONS(9681), 1, sym_identifier, - STATE(1922), 1, + STATE(2713), 1, sym_template_type, - STATE(2459), 1, + STATE(2901), 1, + sym_field_declaration_list, + STATE(3229), 1, sym__class_declaration, - STATE(2461), 1, + STATE(3230), 1, sym__class_declaration_item, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5611), 1, + STATE(5610), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7176), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7933), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2848), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5611), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202033] = 24, + [202732] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2472), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2848), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202114] = 24, + [202813] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1911), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6161), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6159), 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, + [202856] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(1912), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(6194), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(6192), 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, + [202899] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2480), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2848), 2, + STATE(2867), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202195] = 24, + [202980] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, - sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2556), 1, + sym__class_declaration, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2849), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202276] = 24, + [203061] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9504), 1, + anon_sym_COLON_COLON, + ACTIONS(9681), 1, sym_identifier, - STATE(1922), 1, + STATE(2713), 1, sym_template_type, - STATE(2461), 1, + STATE(2901), 1, + sym_field_declaration_list, + STATE(3230), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(3231), 1, sym__class_declaration, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5611), 1, + STATE(5610), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7176), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7933), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2849), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5611), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202357] = 24, + [203142] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9683), 1, + anon_sym_requires, + STATE(6327), 1, + sym_trailing_return_type, + STATE(6338), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5432), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9388), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [203217] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5036), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9679), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2480), 1, + STATE(2556), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5637), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6759), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2849), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5638), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5287), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202438] = 24, + [203298] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2480), 1, + STATE(2556), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202519] = 24, + [203379] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5036), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9679), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5637), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6759), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2853), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5638), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5287), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202600] = 24, + [203460] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(2556), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2853), 2, + STATE(2870), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202681] = 24, + [203541] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 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(2480), 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__, - anon_sym___attribute, - ACTIONS(5497), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5567), 2, - anon_sym_final, - anon_sym_override, - STATE(2853), 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, - [202762] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(8074), 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, + ACTIONS(8757), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9686), 1, sym_identifier, - STATE(1922), 1, + STATE(4398), 1, sym_template_type, - STATE(2459), 1, + STATE(4974), 1, + sym_field_declaration_list, + STATE(5000), 1, sym__class_declaration, - STATE(2461), 1, + STATE(5007), 1, sym__class_declaration_item, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5611), 1, + STATE(5620), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6737), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7130), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7760), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2854), 2, + STATE(4396), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5621), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5284), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202843] = 24, + [203622] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9504), 1, + anon_sym_COLON_COLON, + ACTIONS(9681), 1, sym_identifier, - STATE(1922), 1, + STATE(2713), 1, sym_template_type, - STATE(2461), 1, + STATE(2901), 1, + sym_field_declaration_list, + STATE(3230), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(3232), 1, sym__class_declaration, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5611), 1, + STATE(5610), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7176), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7933), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2854), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5611), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5282), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [202924] = 24, + [203703] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8757), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9686), 1, sym_identifier, - STATE(1922), 1, + STATE(4398), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2480), 1, - sym__class_declaration, - STATE(2962), 1, + STATE(4974), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(4979), 1, + sym__class_declaration, + STATE(5007), 1, + sym__class_declaration_item, + STATE(5620), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6737), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7130), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7760), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2854), 2, + STATE(4396), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5621), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5284), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203005] = 24, + [203784] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6526), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9580), 1, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9675), 1, sym_identifier, - STATE(2673), 1, + STATE(2611), 1, sym_template_type, - STATE(2809), 1, + STATE(2635), 1, sym_field_declaration_list, - STATE(3027), 1, + STATE(2715), 1, sym__class_declaration, - STATE(3035), 1, - sym__class_declaration_item, - STATE(5618), 1, - sym_ms_declspec_modifier, - STATE(6713), 1, - sym__scope_resolution, - STATE(7139), 1, - sym_virtual_specifier, - STATE(7762), 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(2437), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5619), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5267), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [203086] = 24, - 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(2461), 1, + STATE(2716), 1, sym__class_declaration_item, - STATE(2480), 1, - sym__class_declaration, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5711), 1, + STATE(5587), 1, sym_ms_declspec_modifier, - STATE(6746), 1, + STATE(6744), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5713), 2, + STATE(5588), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5272), 3, + STATE(5273), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203167] = 24, + [203865] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6526), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9580), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9671), 1, sym_identifier, - STATE(2673), 1, + STATE(1835), 1, sym_template_type, - STATE(2809), 1, - sym_field_declaration_list, - STATE(3035), 1, - sym__class_declaration_item, - STATE(3049), 1, + STATE(1893), 1, sym__class_declaration, - STATE(5618), 1, + STATE(1894), 1, + sym__class_declaration_item, + STATE(2404), 1, + sym_field_declaration_list, + STATE(5700), 1, sym_ms_declspec_modifier, - STATE(6713), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(7139), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7762), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2437), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5619), 2, + STATE(5702), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5267), 3, + STATE(5240), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203248] = 24, + [203946] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2860), 2, + STATE(2866), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203329] = 24, + [204027] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(2556), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2860), 2, + STATE(2867), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203410] = 24, + [204108] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2480), 1, + STATE(2489), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2860), 2, + STATE(2867), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203491] = 24, + [204189] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(8669), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, + STATE(4537), 1, + sym_field_declaration_list, + STATE(4693), 1, sym__class_declaration, - STATE(2461), 1, + STATE(4694), 1, sym__class_declaration_item, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5611), 1, + STATE(5673), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2861), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5674), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5259), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203572] = 24, + [204270] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8096), 1, + anon_sym_COLON_COLON, + ACTIONS(9673), 1, sym_identifier, - STATE(1922), 1, + STATE(2611), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2472), 1, - sym__class_declaration, - STATE(2962), 1, + STATE(2635), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(2715), 1, + sym__class_declaration, + STATE(2716), 1, + sym__class_declaration_item, + STATE(5716), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6758), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2861), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5717), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5269), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203653] = 24, + [204351] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(9671), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(2461), 1, + STATE(1894), 1, sym__class_declaration_item, - STATE(2480), 1, + STATE(1895), 1, sym__class_declaration, - STATE(2962), 1, + STATE(2404), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5700), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2861), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5702), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(5240), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203734] = 24, + [204432] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9530), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(8757), 1, + anon_sym_LBRACE, + ACTIONS(9686), 1, sym_identifier, - STATE(1943), 1, + STATE(4398), 1, sym_template_type, - STATE(2213), 1, + STATE(4974), 1, sym_field_declaration_list, - STATE(2260), 1, + STATE(5007), 1, sym__class_declaration_item, - STATE(2312), 1, + STATE(5016), 1, sym__class_declaration, - STATE(5667), 1, + STATE(5620), 1, sym_ms_declspec_modifier, - STATE(6695), 1, + STATE(6737), 1, sym__scope_resolution, - STATE(7100), 1, + STATE(7130), 1, sym_virtual_specifier, - STATE(7921), 1, + STATE(7760), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(1816), 2, + STATE(4396), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5668), 2, + STATE(5621), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5256), 3, + STATE(5284), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203815] = 24, + [204513] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9530), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9667), 1, sym_identifier, - STATE(1943), 1, + STATE(1946), 1, sym_template_type, - STATE(2213), 1, + STATE(4537), 1, sym_field_declaration_list, - STATE(2260), 1, + STATE(4694), 1, sym__class_declaration_item, - STATE(2292), 1, + STATE(4695), 1, sym__class_declaration, - STATE(5667), 1, + STATE(5673), 1, sym_ms_declspec_modifier, - STATE(6695), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7100), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7921), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(1816), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5668), 2, + STATE(5674), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5256), 3, + STATE(5259), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203896] = 24, + [204594] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(5565), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9530), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(1943), 1, + STATE(2671), 1, sym_template_type, - STATE(2213), 1, + STATE(2881), 1, sym_field_declaration_list, - STATE(2260), 1, + STATE(3121), 1, sym__class_declaration_item, - STATE(2304), 1, + STATE(3124), 1, sym__class_declaration, - STATE(5667), 1, + STATE(5652), 1, sym_ms_declspec_modifier, - STATE(6695), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7100), 1, + STATE(7093), 1, sym_virtual_specifier, - STATE(7921), 1, + STATE(8050), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(1816), 2, + STATE(2441), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5668), 2, + STATE(5653), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, STATE(5256), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [203977] = 24, + [204675] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - ACTIONS(9660), 1, - anon_sym_COLON_COLON, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2459), 1, - sym__class_declaration, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2556), 1, + sym__class_declaration, + STATE(2990), 1, sym_field_declaration_list, - STATE(5705), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6706), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4003), 2, + STATE(2879), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5710), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5228), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204058] = 24, + [204756] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, - sym_identifier, - ACTIONS(9660), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - STATE(1922), 1, + ACTIONS(9675), 1, + sym_identifier, + STATE(2611), 1, sym_template_type, - STATE(2461), 1, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2716), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(2717), 1, sym__class_declaration, - STATE(2962), 1, - sym_field_declaration_list, - STATE(5705), 1, + STATE(5587), 1, sym_ms_declspec_modifier, - STATE(6706), 1, + STATE(6744), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4003), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5710), 2, + STATE(5588), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5228), 3, + STATE(5273), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204139] = 24, + [204837] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, - sym_identifier, - ACTIONS(9660), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - STATE(1922), 1, + ACTIONS(9688), 1, + sym_identifier, + STATE(1835), 1, sym_template_type, - STATE(2461), 1, - sym__class_declaration_item, - STATE(2480), 1, + STATE(1893), 1, sym__class_declaration, - STATE(2962), 1, + STATE(1894), 1, + sym__class_declaration_item, + STATE(5139), 1, sym_field_declaration_list, - STATE(5705), 1, + STATE(5731), 1, sym_ms_declspec_modifier, - STATE(6706), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7220), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4003), 2, + STATE(4603), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5710), 2, + STATE(5592), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5228), 3, + STATE(5245), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204220] = 24, + [204918] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6363), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8022), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(9688), 1, sym_identifier, - STATE(2598), 1, + STATE(1835), 1, sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2709), 1, - sym__class_declaration, - STATE(2718), 1, + STATE(1894), 1, sym__class_declaration_item, - STATE(5700), 1, + STATE(1895), 1, + sym__class_declaration, + STATE(5139), 1, + sym_field_declaration_list, + STATE(5731), 1, sym_ms_declspec_modifier, - STATE(6738), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(7141), 1, + STATE(7220), 1, sym_virtual_specifier, - STATE(7773), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2374), 2, + STATE(4603), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5701), 2, + STATE(5592), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5271), 3, + STATE(5245), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204301] = 24, + [204999] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9667), 1, sym_identifier, - STATE(2598), 1, + STATE(1946), 1, sym_template_type, - STATE(2614), 1, + STATE(4537), 1, sym_field_declaration_list, - STATE(2718), 1, + STATE(4694), 1, sym__class_declaration_item, - STATE(2723), 1, + STATE(4753), 1, sym__class_declaration, - STATE(5700), 1, + STATE(5673), 1, sym_ms_declspec_modifier, - STATE(6738), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7141), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7773), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2374), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5701), 2, + STATE(5674), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5271), 3, + STATE(5259), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204382] = 24, + [205080] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6363), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8022), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(9688), 1, sym_identifier, - STATE(2598), 1, + STATE(1835), 1, sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2683), 1, - sym__class_declaration, - STATE(2718), 1, + STATE(1894), 1, sym__class_declaration_item, - STATE(5700), 1, + STATE(1896), 1, + sym__class_declaration, + STATE(5139), 1, + sym_field_declaration_list, + STATE(5731), 1, sym_ms_declspec_modifier, - STATE(6738), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(7141), 1, + STATE(7220), 1, sym_virtual_specifier, - STATE(7773), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2374), 2, + STATE(4603), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5701), 2, + STATE(5592), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5271), 3, + STATE(5245), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204463] = 9, + [205161] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(2457), 1, anon_sym_LBRACE, - ACTIONS(7451), 1, + ACTIONS(7449), 1, anon_sym_LPAREN2, - STATE(1948), 1, + STATE(1992), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3409), 1, + STATE(3585), 1, sym_argument_list, - STATE(3411), 1, + STATE(3590), 1, sym_initializer_list, - ACTIONS(5515), 2, + ACTIONS(5537), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(5923), 4, + ACTIONS(5915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5517), 20, + ACTIONS(5539), 20, anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, @@ -468953,2265 +471051,1905 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_auto, anon_sym_decltype, - [204514] = 24, + [205212] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9612), 1, - anon_sym_COLON_COLON, - ACTIONS(9664), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, sym_identifier, - STATE(2598), 1, + STATE(1946), 1, sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2709), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2718), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(5640), 1, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6694), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7141), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7773), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2374), 2, + STATE(2879), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5642), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5289), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [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, + [205293] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9612), 1, + ACTIONS(7512), 1, + anon_sym_LBRACE, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9664), 1, + ACTIONS(9661), 1, sym_identifier, - STATE(2598), 1, + STATE(3603), 1, sym_template_type, - STATE(2614), 1, + STATE(4023), 1, sym_field_declaration_list, - STATE(2718), 1, - sym__class_declaration_item, - STATE(2723), 1, + STATE(4128), 1, sym__class_declaration, - STATE(5640), 1, + STATE(4129), 1, + sym__class_declaration_item, + STATE(5633), 1, sym_ms_declspec_modifier, - STATE(6694), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(7141), 1, + STATE(7167), 1, sym_virtual_specifier, - STATE(7773), 1, + STATE(7770), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2374), 2, + STATE(3166), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5642), 2, + STATE(5636), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5289), 3, + STATE(5246), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204762] = 24, + [205374] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9612), 1, - anon_sym_COLON_COLON, - ACTIONS(9664), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, sym_identifier, - STATE(2598), 1, + STATE(1946), 1, sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2683), 1, + STATE(2537), 1, sym__class_declaration, - STATE(2718), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(5640), 1, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6694), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7141), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7773), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2374), 2, + STATE(2863), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5642), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5289), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204843] = 24, + [205455] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6795), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9459), 1, - anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(2856), 1, + STATE(1946), 1, sym_template_type, - STATE(3013), 1, - sym_field_declaration_list, - STATE(3531), 1, - sym__class_declaration, - STATE(3532), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(5587), 1, + STATE(2556), 1, + sym__class_declaration, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6708), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7182), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7894), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2608), 2, + STATE(2863), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5234), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [204924] = 24, + [205536] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6795), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9459), 1, - anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(2856), 1, + STATE(1946), 1, sym_template_type, - STATE(3013), 1, - sym_field_declaration_list, - STATE(3532), 1, - sym__class_declaration_item, - STATE(3533), 1, + STATE(2489), 1, sym__class_declaration, - STATE(5587), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6708), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7182), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7894), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2608), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5234), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [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, + [205617] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6795), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9459), 1, - anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(2856), 1, + STATE(1946), 1, sym_template_type, - STATE(3013), 1, - sym_field_declaration_list, - STATE(3532), 1, - sym__class_declaration_item, - STATE(3534), 1, + STATE(2489), 1, sym__class_declaration, - STATE(5587), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6708), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7182), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7894), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2608), 2, + STATE(2863), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5588), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5234), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [205172] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(1908), 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, - 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, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(6110), 3, - anon_sym_LPAREN2, - 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, + [205698] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6410), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8028), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(8630), 1, - anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(9673), 1, sym_identifier, - STATE(1922), 1, + STATE(2611), 1, sym_template_type, - STATE(4635), 1, + STATE(2635), 1, sym_field_declaration_list, - STATE(4678), 1, + STATE(2716), 1, sym__class_declaration_item, - STATE(4757), 1, + STATE(2717), 1, sym__class_declaration, - STATE(5651), 1, + STATE(5716), 1, sym_ms_declspec_modifier, - STATE(6719), 1, + STATE(6758), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5652), 2, + STATE(5717), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5283), 3, + STATE(5269), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [205339] = 24, + [205779] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4678), 1, - sym__class_declaration_item, - STATE(4721), 1, + STATE(2537), 1, sym__class_declaration, - STATE(5651), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6719), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2864), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5652), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5283), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [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, + [205860] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4678), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(4747), 1, + STATE(2556), 1, sym__class_declaration, - STATE(5651), 1, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6719), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2864), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5652), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5283), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [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, + [205941] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, - anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(2684), 1, + STATE(1946), 1, sym_template_type, - STATE(2885), 1, - sym_field_declaration_list, - STATE(3196), 1, + STATE(2489), 1, sym__class_declaration, - STATE(3197), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(5609), 1, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6728), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7042), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(8040), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2467), 2, + STATE(2864), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5610), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5243), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [205840] = 24, + [206022] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9663), 1, sym_identifier, - STATE(2684), 1, + STATE(1835), 1, sym_template_type, - STATE(2885), 1, - sym_field_declaration_list, - STATE(3197), 1, - sym__class_declaration_item, - STATE(3204), 1, + STATE(1893), 1, sym__class_declaration, - STATE(5609), 1, + STATE(1894), 1, + sym__class_declaration_item, + STATE(2404), 1, + sym_field_declaration_list, + STATE(5602), 1, sym_ms_declspec_modifier, - STATE(6728), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(7042), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(8040), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2467), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5610), 2, + STATE(5607), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5243), 3, + STATE(5281), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [205921] = 24, + [206103] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, - anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(2684), 1, + STATE(1946), 1, sym_template_type, - STATE(2885), 1, - sym_field_declaration_list, - STATE(3197), 1, - sym__class_declaration_item, - STATE(3206), 1, + STATE(2537), 1, sym__class_declaration, - STATE(5609), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6728), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7042), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(8040), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2467), 2, + STATE(2869), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5610), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5243), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206002] = 24, + [206184] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9690), 1, sym_identifier, - STATE(1922), 1, + STATE(2828), 1, sym_template_type, - STATE(2459), 1, + STATE(3031), 1, + sym_field_declaration_list, + STATE(3538), 1, sym__class_declaration, - STATE(2461), 1, + STATE(3539), 1, sym__class_declaration_item, - STATE(3663), 1, - sym_field_declaration_list, - STATE(5685), 1, + STATE(5597), 1, sym_ms_declspec_modifier, - STATE(6719), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7189), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7780), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(2672), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5686), 2, + STATE(5598), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5236), 3, + STATE(5277), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206083] = 24, + [206265] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2472), 1, + STATE(2556), 1, sym__class_declaration, - STATE(3663), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5685), 1, + STATE(5726), 1, sym_ms_declspec_modifier, - STATE(6719), 1, + STATE(6741), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(4027), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5686), 2, + STATE(5728), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5236), 3, + STATE(5251), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206164] = 24, + [206346] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2461), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(2480), 1, + STATE(2556), 1, sym__class_declaration, - STATE(3663), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5685), 1, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6719), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(2869), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5686), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5236), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206245] = 24, + [206427] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8000), 1, - anon_sym_COLON_COLON, - ACTIONS(8906), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9672), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(4461), 1, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, sym_template_type, - STATE(4950), 1, - sym_field_declaration_list, - STATE(4981), 1, + STATE(2489), 1, sym__class_declaration, - STATE(4982), 1, + STATE(2538), 1, sym__class_declaration_item, - STATE(5633), 1, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5726), 1, sym_ms_declspec_modifier, - STATE(6731), 1, + STATE(6741), 1, sym__scope_resolution, - STATE(7051), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7920), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(4027), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5634), 2, + STATE(5728), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5250), 3, + STATE(5251), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206326] = 24, + [206508] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6024), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8000), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(8906), 1, - anon_sym_LBRACE, - ACTIONS(9672), 1, + ACTIONS(9663), 1, sym_identifier, - STATE(4461), 1, + STATE(1835), 1, sym_template_type, - STATE(4950), 1, - sym_field_declaration_list, - STATE(4982), 1, + STATE(1894), 1, sym__class_declaration_item, - STATE(4983), 1, + STATE(1895), 1, sym__class_declaration, - STATE(5633), 1, + STATE(2404), 1, + sym_field_declaration_list, + STATE(5602), 1, sym_ms_declspec_modifier, - STATE(6731), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(7051), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7920), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5634), 2, + STATE(5607), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5250), 3, + STATE(5281), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206407] = 24, + [206589] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8000), 1, - anon_sym_COLON_COLON, - ACTIONS(8906), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9672), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(4461), 1, + STATE(1946), 1, sym_template_type, - STATE(4950), 1, - sym_field_declaration_list, - STATE(4982), 1, - sym__class_declaration_item, - STATE(4984), 1, + STATE(2537), 1, sym__class_declaration, - STATE(5633), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6731), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7051), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7920), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(2872), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5634), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5250), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206488] = 24, + [206670] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9690), 1, sym_identifier, - STATE(3638), 1, + STATE(2828), 1, sym_template_type, - STATE(4009), 1, + STATE(3031), 1, sym_field_declaration_list, - STATE(4131), 1, - sym__class_declaration, - STATE(4136), 1, + STATE(3539), 1, sym__class_declaration_item, - STATE(5681), 1, + STATE(3541), 1, + sym__class_declaration, + STATE(5597), 1, sym_ms_declspec_modifier, - STATE(6732), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(7061), 1, + STATE(7189), 1, sym_virtual_specifier, - STATE(7717), 1, + STATE(7780), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(2672), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5696), 2, + STATE(5598), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5290), 3, + STATE(5277), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206569] = 24, + [206751] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9669), 1, sym_identifier, - STATE(3638), 1, + STATE(1966), 1, sym_template_type, - STATE(4009), 1, + STATE(2230), 1, sym_field_declaration_list, - STATE(4136), 1, - sym__class_declaration_item, - STATE(4138), 1, + STATE(2347), 1, sym__class_declaration, - STATE(5681), 1, + STATE(2348), 1, + sym__class_declaration_item, + STATE(5693), 1, sym_ms_declspec_modifier, - STATE(6732), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(7061), 1, + STATE(7186), 1, sym_virtual_specifier, - STATE(7717), 1, + STATE(7866), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5696), 2, + STATE(5694), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5290), 3, + STATE(5262), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206650] = 24, + [206832] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, - anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(3638), 1, + STATE(1946), 1, sym_template_type, - STATE(4009), 1, - sym_field_declaration_list, - STATE(4136), 1, - sym__class_declaration_item, - STATE(4139), 1, + STATE(2489), 1, sym__class_declaration, - STATE(5681), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6732), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7061), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7717), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(2857), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5696), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5290), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206731] = 24, + [206913] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(7594), 1, + anon_sym_requires, + ACTIONS(9183), 1, + anon_sym_LBRACK, + STATE(6330), 1, + sym_trailing_return_type, + STATE(6400), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5429), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9172), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [206988] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9647), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4678), 1, - sym__class_declaration_item, - STATE(4757), 1, + STATE(2537), 1, sym__class_declaration, - STATE(5647), 1, + STATE(2538), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5710), 1, sym_ms_declspec_modifier, - STATE(6743), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2857), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5582), 2, + STATE(5603), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5277), 3, + STATE(5279), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206812] = 24, + [207069] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(7594), 1, + anon_sym_requires, + ACTIONS(9399), 1, + anon_sym_LBRACK, + STATE(6331), 1, + sym_trailing_return_type, + STATE(6402), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5430), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9388), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [207144] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - ACTIONS(9647), 1, + ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9690), 1, sym_identifier, - STATE(1922), 1, + STATE(2828), 1, sym_template_type, - STATE(4635), 1, + STATE(3031), 1, sym_field_declaration_list, - STATE(4678), 1, + STATE(3539), 1, sym__class_declaration_item, - STATE(4721), 1, + STATE(3542), 1, sym__class_declaration, - STATE(5647), 1, + STATE(5597), 1, sym_ms_declspec_modifier, - STATE(6743), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7189), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7780), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2672), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5582), 2, + STATE(5598), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, STATE(5277), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206893] = 24, + [207225] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6516), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8074), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(8630), 1, - anon_sym_LBRACE, - ACTIONS(9647), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(1922), 1, + STATE(2671), 1, sym_template_type, - STATE(4635), 1, + STATE(2881), 1, sym_field_declaration_list, - STATE(4678), 1, - sym__class_declaration_item, - STATE(4747), 1, + STATE(3119), 1, sym__class_declaration, - STATE(5647), 1, + STATE(3121), 1, + sym__class_declaration_item, + STATE(5652), 1, sym_ms_declspec_modifier, - STATE(6743), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7093), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(8050), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2441), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5582), 2, + STATE(5653), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5277), 3, + STATE(5256), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [206974] = 24, + [207306] = 23, 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(9671), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(2459), 1, - sym__class_declaration, - STATE(2461), 1, + STATE(1923), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2404), 1, sym_field_declaration_list, - STATE(5611), 1, + STATE(5663), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2834), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5268), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207055] = 24, + [207384] = 21, 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, + ACTIONS(9442), 1, sym_identifier, - STATE(1922), 1, + ACTIONS(9444), 1, + anon_sym_COLON_COLON, + ACTIONS(9448), 1, + sym_primitive_type, + ACTIONS(9450), 1, + anon_sym_enum, + ACTIONS(9452), 1, + anon_sym_class, + ACTIONS(9454), 1, + anon_sym_struct, + ACTIONS(9456), 1, + anon_sym_union, + ACTIONS(9458), 1, + sym_auto, + ACTIONS(9460), 1, + anon_sym_decltype, + ACTIONS(9462), 1, + anon_sym_typename, + STATE(1648), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2799), 1, + sym_type_specifier, + STATE(3094), 1, + sym_decltype_auto, + STATE(3113), 1, + sym_qualified_type_identifier, + STATE(6703), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(2999), 2, + sym_decltype, 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, + ACTIONS(9446), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3096), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [207458] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(8104), 1, + sym_identifier, + ACTIONS(8106), 1, + anon_sym_COLON_COLON, + ACTIONS(8110), 1, + anon_sym_class, + ACTIONS(8112), 1, + anon_sym_struct, + ACTIONS(8114), 1, + anon_sym_union, + ACTIONS(9694), 1, + anon_sym_enum, + ACTIONS(9696), 1, + anon_sym_typename, + STATE(2563), 1, + sym_decltype_auto, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(5098), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6736), 1, sym__scope_resolution, - STATE(7126), 1, - sym_virtual_specifier, - STATE(7712), 1, - sym_base_class_clause, - ACTIONS(5489), 2, + STATE(7032), 1, + sym_type_specifier, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(2429), 2, + sym_decltype, + sym_template_type, + ACTIONS(9692), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2452), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [207532] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7638), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9340), 1, anon_sym___attribute__, + ACTIONS(9343), 1, anon_sym___attribute, - ACTIONS(5497), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5567), 2, + STATE(6135), 1, + sym_trailing_return_type, + STATE(6226), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(2834), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5665), 2, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 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, - [207136] = 24, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5456), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [207606] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1978), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 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, + ACTIONS(7983), 1, + sym_primitive_type, + ACTIONS(9426), 1, sym_identifier, - 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, - ACTIONS(5567), 2, - anon_sym_final, - anon_sym_override, - STATE(2440), 2, - sym__class_name, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(9432), 1, + anon_sym_enum, + ACTIONS(9434), 1, + anon_sym_class, + ACTIONS(9436), 1, + anon_sym_struct, + ACTIONS(9438), 1, + anon_sym_union, + ACTIONS(9440), 1, + anon_sym_typename, + STATE(1856), 1, + sym_type_specifier, + STATE(1901), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(5713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, + STATE(6745), 1, + sym__scope_resolution, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(5272), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [207217] = 24, + STATE(1793), 2, + sym_decltype, + sym_template_type, + ACTIONS(9430), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1907), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [207680] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6526), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9580), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9688), 1, sym_identifier, - STATE(2673), 1, + STATE(1835), 1, sym_template_type, - STATE(2809), 1, - sym_field_declaration_list, - STATE(3035), 1, + STATE(1923), 1, sym__class_declaration_item, - STATE(3042), 1, - sym__class_declaration, - STATE(5618), 1, + STATE(5139), 1, + sym_field_declaration_list, + STATE(5622), 1, sym_ms_declspec_modifier, - STATE(6713), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(7139), 1, + STATE(7220), 1, sym_virtual_specifier, - STATE(7762), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2437), 2, + STATE(4603), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5619), 2, + STATE(5615), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5267), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207298] = 23, + [207758] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(7512), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, - sym_identifier, - ACTIONS(9660), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - STATE(1922), 1, + ACTIONS(9661), 1, + sym_identifier, + STATE(3603), 1, sym_template_type, - STATE(2503), 1, - sym__class_declaration_item, - STATE(2962), 1, + STATE(4023), 1, sym_field_declaration_list, - STATE(5599), 1, + STATE(4145), 1, + sym__class_declaration_item, + STATE(5656), 1, sym_ms_declspec_modifier, - STATE(6706), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7167), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7770), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4003), 2, + STATE(3166), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5598), 2, + STATE(5655), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207376] = 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(7447), 1, - anon_sym_requires, - ACTIONS(7799), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - STATE(6152), 1, - sym_trailing_return_type, - STATE(6223), 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, - ACTIONS(9371), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5428), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [207450] = 21, + [207836] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9410), 1, - sym_identifier, - ACTIONS(9412), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9416), 1, - sym_primitive_type, - ACTIONS(9418), 1, - anon_sym_enum, - ACTIONS(9420), 1, + ACTIONS(9483), 1, anon_sym_class, - ACTIONS(9422), 1, + ACTIONS(9485), 1, anon_sym_struct, - ACTIONS(9424), 1, + ACTIONS(9487), 1, anon_sym_union, - ACTIONS(9426), 1, + ACTIONS(9489), 1, sym_auto, - ACTIONS(9428), 1, + ACTIONS(9491), 1, anon_sym_decltype, - ACTIONS(9430), 1, - anon_sym_typename, - STATE(1860), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(3872), 1, - sym_type_specifier, - STATE(4125), 1, - sym_decltype_auto, - STATE(6732), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(4102), 2, - sym_decltype, - sym_template_type, - ACTIONS(9414), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4108), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [207524] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9578), 1, + ACTIONS(9533), 1, sym_identifier, - ACTIONS(9580), 1, - anon_sym_COLON_COLON, - ACTIONS(9584), 1, + ACTIONS(9537), 1, sym_primitive_type, - ACTIONS(9586), 1, + ACTIONS(9539), 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, + ACTIONS(9541), 1, anon_sym_typename, - STATE(1635), 1, + STATE(1627), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2934), 1, + STATE(2259), 1, sym_type_specifier, - STATE(3046), 1, - sym_qualified_type_identifier, - STATE(3082), 1, + STATE(2328), 1, sym_decltype_auto, - STATE(6713), 1, + STATE(2344), 1, + sym_qualified_type_identifier, + STATE(6762), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2951), 2, + STATE(2237), 2, sym_decltype, sym_template_type, - ACTIONS(9582), 4, + ACTIONS(9535), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3085), 7, + STATE(2331), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -471219,52 +472957,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207598] = 21, + [207910] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9410), 1, + ACTIONS(3184), 1, + sym_auto, + ACTIONS(3186), 1, + anon_sym_decltype, + ACTIONS(8098), 1, + sym_primitive_type, + ACTIONS(9596), 1, sym_identifier, - ACTIONS(9412), 1, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9416), 1, - sym_primitive_type, - ACTIONS(9418), 1, + ACTIONS(9602), 1, anon_sym_enum, - ACTIONS(9420), 1, + ACTIONS(9604), 1, anon_sym_class, - ACTIONS(9422), 1, + ACTIONS(9606), 1, anon_sym_struct, - ACTIONS(9424), 1, + ACTIONS(9608), 1, anon_sym_union, - ACTIONS(9426), 1, - sym_auto, - ACTIONS(9428), 1, - anon_sym_decltype, - ACTIONS(9430), 1, + ACTIONS(9610), 1, anon_sym_typename, - STATE(1860), 1, + STATE(2231), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(3895), 1, + STATE(2638), 1, sym_type_specifier, - STATE(4125), 1, + STATE(2705), 1, + sym_qualified_type_identifier, + STATE(2711), 1, sym_decltype_auto, - STATE(6732), 1, + STATE(6744), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(4102), 2, + STATE(2684), 2, sym_decltype, sym_template_type, - ACTIONS(9414), 4, + ACTIONS(9600), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4108), 7, + STATE(2712), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -471272,160 +473010,105 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207672] = 21, + [207984] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7768), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9527), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9530), 1, anon_sym___attribute, - ACTIONS(9384), 1, - anon_sym_requires, - STATE(6257), 1, - sym__function_attributes_end, - STATE(6305), 1, + STATE(6219), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6227), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9388), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5447), 3, + STATE(5461), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [207746] = 23, + [208058] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, anon_sym_decltype, - 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, - 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(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_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(1268), 1, anon_sym_template, - ACTIONS(1844), 1, - sym_auto, - ACTIONS(1846), 1, - anon_sym_decltype, - ACTIONS(7986), 1, + ACTIONS(3027), 1, sym_primitive_type, - ACTIONS(9435), 1, - sym_identifier, - ACTIONS(9437), 1, - anon_sym_COLON_COLON, - ACTIONS(9441), 1, + ACTIONS(3029), 1, anon_sym_enum, - ACTIONS(9443), 1, + ACTIONS(3031), 1, anon_sym_class, - ACTIONS(9445), 1, + ACTIONS(3033), 1, anon_sym_struct, - ACTIONS(9447), 1, + ACTIONS(3035), 1, anon_sym_union, - ACTIONS(9449), 1, + ACTIONS(3037), 1, anon_sym_typename, - STATE(1887), 1, + ACTIONS(5234), 1, + sym_identifier, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + STATE(2369), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1888), 1, + STATE(2409), 1, + sym_type_specifier, + STATE(2563), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(3067), 1, sym_qualified_type_identifier, - STATE(4010), 1, - sym_type_specifier, - STATE(6699), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(1782), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(9439), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -471433,107 +473116,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [207898] = 23, + [208132] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, sym_template_type, - STATE(2503), 1, + STATE(2454), 1, sym__class_declaration_item, - STATE(3663), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5691), 1, + STATE(5618), 1, sym_ms_declspec_modifier, - STATE(6719), 1, + STATE(6741), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(4027), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5690), 2, + STATE(5617), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [207976] = 21, + [208210] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9457), 1, + ACTIONS(9473), 1, sym_identifier, - ACTIONS(9459), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9463), 1, + ACTIONS(9479), 1, sym_primitive_type, - ACTIONS(9465), 1, + ACTIONS(9481), 1, anon_sym_enum, - ACTIONS(9467), 1, + ACTIONS(9483), 1, anon_sym_class, - ACTIONS(9469), 1, + ACTIONS(9485), 1, anon_sym_struct, - ACTIONS(9471), 1, + ACTIONS(9487), 1, anon_sym_union, - ACTIONS(9473), 1, + ACTIONS(9489), 1, sym_auto, - ACTIONS(9475), 1, + ACTIONS(9491), 1, anon_sym_decltype, - ACTIONS(9477), 1, + ACTIONS(9493), 1, anon_sym_typename, - STATE(1671), 1, + STATE(1626), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2981), 1, + STATE(1944), 1, sym_type_specifier, - STATE(3511), 1, + STATE(2328), 1, sym_decltype_auto, - STATE(3525), 1, + STATE(2344), 1, sym_qualified_type_identifier, - STATE(6708), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(3266), 2, + STATE(2237), 2, sym_decltype, sym_template_type, - ACTIONS(9461), 4, + ACTIONS(9477), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3519), 7, + STATE(2331), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -471541,52 +473224,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208050] = 21, + [208284] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9528), 1, + ACTIONS(9473), 1, sym_identifier, - ACTIONS(9530), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9534), 1, + ACTIONS(9479), 1, sym_primitive_type, - ACTIONS(9536), 1, + ACTIONS(9481), 1, anon_sym_enum, - ACTIONS(9538), 1, + ACTIONS(9483), 1, anon_sym_class, - ACTIONS(9540), 1, + ACTIONS(9485), 1, anon_sym_struct, - ACTIONS(9542), 1, + ACTIONS(9487), 1, anon_sym_union, - ACTIONS(9544), 1, + ACTIONS(9489), 1, sym_auto, - ACTIONS(9546), 1, + ACTIONS(9491), 1, anon_sym_decltype, - ACTIONS(9548), 1, + ACTIONS(9493), 1, anon_sym_typename, - STATE(1612), 1, + STATE(1626), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, + STATE(1942), 1, sym_type_specifier, - STATE(2306), 1, + STATE(2328), 1, sym_decltype_auto, - STATE(2335), 1, + STATE(2344), 1, sym_qualified_type_identifier, - STATE(6695), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2242), 2, + STATE(2237), 2, sym_decltype, sym_template_type, - ACTIONS(9532), 4, + ACTIONS(9477), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2310), 7, + STATE(2331), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -471594,160 +473277,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208124] = 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(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(9437), 1, - anon_sym_COLON_COLON, - ACTIONS(9654), 1, - sym_identifier, - STATE(1784), 1, - sym_template_type, - STATE(1886), 1, - sym__class_declaration_item, - STATE(2382), 1, - sym_field_declaration_list, - STATE(5591), 1, - sym_ms_declspec_modifier, - STATE(6699), 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(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, - STATE(6055), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [208202] = 21, + [208358] = 21, ACTIONS(3), 1, sym_comment, 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, + ACTIONS(8026), 1, sym_primitive_type, - STATE(2616), 1, - sym_type_specifier, - STATE(2685), 1, - sym_qualified_type_identifier, - STATE(2733), 1, - sym_decltype_auto, - STATE(4313), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6738), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - 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, - [208276] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9530), 1, - anon_sym_COLON_COLON, - ACTIONS(9538), 1, + ACTIONS(8028), 1, + anon_sym_enum, + ACTIONS(8030), 1, anon_sym_class, - ACTIONS(9540), 1, + ACTIONS(8032), 1, anon_sym_struct, - ACTIONS(9542), 1, + ACTIONS(8034), 1, anon_sym_union, - ACTIONS(9544), 1, + ACTIONS(8036), 1, sym_auto, - ACTIONS(9546), 1, + ACTIONS(8038), 1, anon_sym_decltype, - ACTIONS(9553), 1, - sym_identifier, - ACTIONS(9557), 1, - sym_primitive_type, - ACTIONS(9559), 1, - anon_sym_enum, - ACTIONS(9561), 1, + ACTIONS(8040), 1, anon_sym_typename, - STATE(1614), 1, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1920), 1, + STATE(4609), 1, sym_type_specifier, - STATE(2306), 1, + STATE(4699), 1, sym_decltype_auto, - STATE(2335), 1, - sym_qualified_type_identifier, - STATE(6695), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2242), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(9555), 4, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2310), 7, + STATE(4702), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -471755,52 +473330,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208350] = 21, + [208432] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(125), 1, + sym_auto, + ACTIONS(127), 1, + anon_sym_decltype, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9530), 1, + ACTIONS(3927), 1, + sym_primitive_type, + ACTIONS(8104), 1, + sym_identifier, + ACTIONS(8106), 1, anon_sym_COLON_COLON, - ACTIONS(9538), 1, + ACTIONS(8110), 1, anon_sym_class, - ACTIONS(9540), 1, + ACTIONS(8112), 1, anon_sym_struct, - ACTIONS(9542), 1, + ACTIONS(8114), 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, + ACTIONS(9694), 1, anon_sym_enum, - ACTIONS(9561), 1, + ACTIONS(9696), 1, anon_sym_typename, - STATE(1614), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1924), 1, - sym_type_specifier, - STATE(2306), 1, + STATE(2563), 1, sym_decltype_auto, - STATE(2335), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(6695), 1, + STATE(5098), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6736), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(7037), 1, + sym_type_specifier, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2242), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(9555), 4, + ACTIONS(9692), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2310), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -471808,213 +473383,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208424] = 23, + [208506] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(2684), 1, + STATE(2671), 1, sym_template_type, - STATE(2885), 1, + STATE(2881), 1, sym_field_declaration_list, - STATE(3162), 1, + STATE(3158), 1, sym__class_declaration_item, - STATE(5622), 1, + STATE(5658), 1, sym_ms_declspec_modifier, - STATE(6728), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7042), 1, + STATE(7093), 1, sym_virtual_specifier, - STATE(8040), 1, + STATE(8050), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2467), 2, + STATE(2441), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5621), 2, + STATE(5657), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 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(7075), 1, - anon_sym_noexcept, - ACTIONS(7077), 1, - anon_sym_throw, - ACTIONS(7538), 1, - anon_sym_requires, - ACTIONS(7768), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - STATE(6253), 1, - sym__function_attributes_end, - STATE(6296), 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(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, - ACTIONS(9371), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5439), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [208576] = 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(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, - anon_sym_LBRACE, - anon_sym_EQ, - STATE(5437), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [208650] = 21, + [208584] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9496), 1, + ACTIONS(9502), 1, sym_identifier, - ACTIONS(9498), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9502), 1, + ACTIONS(9508), 1, sym_primitive_type, - ACTIONS(9504), 1, + ACTIONS(9510), 1, anon_sym_enum, - ACTIONS(9506), 1, + ACTIONS(9512), 1, anon_sym_class, - ACTIONS(9508), 1, + ACTIONS(9514), 1, anon_sym_struct, - ACTIONS(9510), 1, + ACTIONS(9516), 1, anon_sym_union, - ACTIONS(9512), 1, + ACTIONS(9518), 1, sym_auto, - ACTIONS(9514), 1, + ACTIONS(9520), 1, anon_sym_decltype, - ACTIONS(9516), 1, + ACTIONS(9522), 1, anon_sym_typename, - STATE(1645), 1, + STATE(1659), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3134), 1, + STATE(3092), 1, sym_type_specifier, - STATE(3157), 1, - sym_decltype_auto, - STATE(3216), 1, + STATE(3192), 1, sym_qualified_type_identifier, - STATE(6728), 1, + STATE(3227), 1, + sym_decltype_auto, + STATE(6733), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(3064), 2, + STATE(3106), 2, sym_decltype, sym_template_type, - ACTIONS(9500), 4, + ACTIONS(9506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3158), 7, + STATE(3228), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472022,52 +473491,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208724] = 21, + [208658] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3176), 1, + ACTIONS(125), 1, sym_auto, - ACTIONS(3178), 1, + ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(8024), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3927), 1, sym_primitive_type, - ACTIONS(9610), 1, + ACTIONS(8104), 1, sym_identifier, - ACTIONS(9612), 1, + ACTIONS(8106), 1, anon_sym_COLON_COLON, - ACTIONS(9616), 1, - anon_sym_enum, - ACTIONS(9618), 1, + ACTIONS(8110), 1, anon_sym_class, - ACTIONS(9620), 1, + ACTIONS(8112), 1, anon_sym_struct, - ACTIONS(9622), 1, + ACTIONS(8114), 1, anon_sym_union, - ACTIONS(9624), 1, + ACTIONS(9694), 1, + anon_sym_enum, + ACTIONS(9696), 1, anon_sym_typename, - STATE(2223), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2685), 1, - sym_qualified_type_identifier, - STATE(2733), 1, - sym_decltype_auto, - STATE(4170), 1, + STATE(2409), 1, sym_type_specifier, - STATE(6694), 1, + STATE(2563), 1, + sym_decltype_auto, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(5098), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6736), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2621), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(9614), 4, + ACTIONS(9692), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2747), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472075,52 +473544,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208798] = 21, + [208732] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1814), 1, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9667), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(4537), 1, + sym_field_declaration_list, + STATE(4724), 1, + sym__class_declaration_item, + STATE(5683), 1, + sym_ms_declspec_modifier, + STATE(6716), 1, + sym__scope_resolution, + STATE(7261), 1, + sym_virtual_specifier, + STATE(8059), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4304), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5682), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6086), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [208810] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3184), 1, + sym_auto, + ACTIONS(3186), 1, + anon_sym_decltype, + ACTIONS(8098), 1, + sym_primitive_type, + ACTIONS(9596), 1, + sym_identifier, + ACTIONS(9598), 1, + anon_sym_COLON_COLON, + ACTIONS(9602), 1, anon_sym_enum, - ACTIONS(1816), 1, + ACTIONS(9604), 1, anon_sym_class, - ACTIONS(1818), 1, + ACTIONS(9606), 1, anon_sym_struct, - ACTIONS(1820), 1, + ACTIONS(9608), 1, anon_sym_union, - ACTIONS(1844), 1, - sym_auto, - ACTIONS(1846), 1, - anon_sym_decltype, - ACTIONS(1848), 1, + ACTIONS(9610), 1, anon_sym_typename, - ACTIONS(7980), 1, - sym_identifier, - ACTIONS(7984), 1, - anon_sym_COLON_COLON, - ACTIONS(7986), 1, - sym_primitive_type, - STATE(1797), 1, - sym_type_specifier, - STATE(1888), 1, - sym_decltype_auto, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(4234), 1, + STATE(2231), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6727), 1, + STATE(2705), 1, + sym_qualified_type_identifier, + STATE(2711), 1, + sym_decltype_auto, + STATE(4220), 1, + sym_type_specifier, + STATE(6744), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(1782), 2, + STATE(2684), 2, sym_decltype, sym_template_type, - ACTIONS(1808), 4, + ACTIONS(9600), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(2712), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472128,52 +473652,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208872] = 21, + [208884] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8026), 1, + ACTIONS(3184), 1, + sym_auto, + ACTIONS(3186), 1, + anon_sym_decltype, + ACTIONS(8098), 1, + sym_primitive_type, + ACTIONS(9596), 1, sym_identifier, - ACTIONS(8028), 1, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(8032), 1, - sym_primitive_type, - ACTIONS(8034), 1, + ACTIONS(9602), 1, anon_sym_enum, - ACTIONS(8036), 1, + ACTIONS(9604), 1, anon_sym_class, - ACTIONS(8038), 1, + ACTIONS(9606), 1, anon_sym_struct, - ACTIONS(8040), 1, + ACTIONS(9608), 1, anon_sym_union, - ACTIONS(8042), 1, - sym_auto, - ACTIONS(8044), 1, - anon_sym_decltype, - ACTIONS(8046), 1, + ACTIONS(9610), 1, anon_sym_typename, - STATE(2836), 1, - sym_qualified_type_identifier, - STATE(4024), 1, + STATE(2231), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4519), 1, - sym_type_specifier, - STATE(4672), 1, + STATE(2705), 1, + sym_qualified_type_identifier, + STATE(2711), 1, sym_decltype_auto, - STATE(6719), 1, + STATE(4227), 1, + sym_type_specifier, + STATE(6744), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2439), 2, + STATE(2684), 2, sym_decltype, sym_template_type, - ACTIONS(8030), 4, + ACTIONS(9600), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4773), 7, + STATE(2712), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472181,160 +473705,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [208946] = 23, + [208958] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(5609), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8000), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(8906), 1, - anon_sym_LBRACE, - ACTIONS(9672), 1, + ACTIONS(9669), 1, sym_identifier, - STATE(4461), 1, + STATE(1966), 1, sym_template_type, - STATE(4950), 1, + STATE(2230), 1, sym_field_declaration_list, - STATE(4994), 1, + STATE(2294), 1, sym__class_declaration_item, - STATE(5636), 1, + STATE(5696), 1, sym_ms_declspec_modifier, - STATE(6731), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(7051), 1, + STATE(7186), 1, sym_virtual_specifier, - STATE(7920), 1, + STATE(7866), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5635), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 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, + [209036] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9457), 1, + ACTIONS(8072), 1, sym_identifier, - ACTIONS(9459), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9463), 1, + ACTIONS(8078), 1, sym_primitive_type, - ACTIONS(9465), 1, + ACTIONS(8080), 1, anon_sym_enum, - ACTIONS(9467), 1, + ACTIONS(8082), 1, anon_sym_class, - ACTIONS(9469), 1, + ACTIONS(8084), 1, anon_sym_struct, - ACTIONS(9471), 1, + ACTIONS(8086), 1, anon_sym_union, - ACTIONS(9473), 1, + ACTIONS(8088), 1, sym_auto, - ACTIONS(9475), 1, + ACTIONS(8090), 1, anon_sym_decltype, - ACTIONS(9477), 1, + ACTIONS(8092), 1, anon_sym_typename, - STATE(1671), 1, + STATE(4133), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3315), 1, + STATE(4971), 1, sym_type_specifier, - STATE(3511), 1, - sym_decltype_auto, - STATE(3525), 1, + STATE(5002), 1, sym_qualified_type_identifier, - STATE(6708), 1, + STATE(5020), 1, + sym_decltype_auto, + STATE(6737), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(3266), 2, + STATE(4966), 2, sym_decltype, sym_template_type, - ACTIONS(9461), 4, + ACTIONS(8076), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3519), 7, + STATE(5021), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472342,52 +473813,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209172] = 21, + [209110] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9457), 1, + ACTIONS(9552), 1, sym_identifier, - ACTIONS(9459), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9463), 1, + ACTIONS(9558), 1, sym_primitive_type, - ACTIONS(9465), 1, + ACTIONS(9560), 1, anon_sym_enum, - ACTIONS(9467), 1, + ACTIONS(9562), 1, anon_sym_class, - ACTIONS(9469), 1, + ACTIONS(9564), 1, anon_sym_struct, - ACTIONS(9471), 1, + ACTIONS(9566), 1, anon_sym_union, - ACTIONS(9473), 1, + ACTIONS(9568), 1, sym_auto, - ACTIONS(9475), 1, + ACTIONS(9570), 1, anon_sym_decltype, - ACTIONS(9477), 1, + ACTIONS(9572), 1, anon_sym_typename, - STATE(1671), 1, + STATE(1897), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2998), 1, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4072), 1, sym_type_specifier, - STATE(3511), 1, + STATE(4120), 1, sym_decltype_auto, - STATE(3525), 1, - sym_qualified_type_identifier, - STATE(6708), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(3266), 2, + STATE(4099), 2, sym_decltype, sym_template_type, - ACTIONS(9461), 4, + ACTIONS(9556), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3519), 7, + STATE(4124), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472395,105 +473866,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209246] = 21, + [209184] = 21, 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(8092), 1, - sym_primitive_type, - ACTIONS(8094), 1, + ACTIONS(1814), 1, anon_sym_enum, - ACTIONS(8096), 1, + ACTIONS(1816), 1, anon_sym_class, - ACTIONS(8098), 1, + ACTIONS(1818), 1, anon_sym_struct, - ACTIONS(8100), 1, + ACTIONS(1820), 1, anon_sym_union, - ACTIONS(8102), 1, - anon_sym_typename, - STATE(1797), 1, - sym_type_specifier, - STATE(1888), 1, - sym_decltype_auto, - STATE(2836), 1, - sym_qualified_type_identifier, - STATE(4916), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6724), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(1782), 2, - sym_decltype, - sym_template_type, - ACTIONS(8090), 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, - [209320] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(125), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(127), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3919), 1, - sym_primitive_type, - ACTIONS(8058), 1, + ACTIONS(1848), 1, + anon_sym_typename, + ACTIONS(7977), 1, sym_identifier, - ACTIONS(8060), 1, + ACTIONS(7981), 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(2453), 1, + ACTIONS(7983), 1, + sym_primitive_type, + STATE(1856), 1, + sym_type_specifier, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(5109), 1, + STATE(4270), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6729), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(6956), 1, - sym_type_specifier, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2439), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - ACTIONS(9676), 4, + ACTIONS(1808), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472501,107 +473919,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209394] = 23, + [209258] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9530), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1943), 1, + STATE(1946), 1, sym_template_type, - STATE(2213), 1, - sym_field_declaration_list, - STATE(2252), 1, + STATE(2454), 1, sym__class_declaration_item, - STATE(5674), 1, + STATE(3750), 1, + sym_field_declaration_list, + STATE(5709), 1, sym_ms_declspec_modifier, - STATE(6695), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7100), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7921), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(1816), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5673), 2, + STATE(5708), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [209472] = 21, + [209336] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9578), 1, + ACTIONS(9614), 1, sym_identifier, - ACTIONS(9580), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(9584), 1, + ACTIONS(9620), 1, sym_primitive_type, - ACTIONS(9586), 1, + ACTIONS(9622), 1, anon_sym_enum, - ACTIONS(9588), 1, + ACTIONS(9624), 1, anon_sym_class, - ACTIONS(9590), 1, + ACTIONS(9626), 1, anon_sym_struct, - ACTIONS(9592), 1, + ACTIONS(9628), 1, anon_sym_union, - ACTIONS(9594), 1, + ACTIONS(9630), 1, sym_auto, - ACTIONS(9596), 1, + ACTIONS(9632), 1, anon_sym_decltype, - ACTIONS(9598), 1, + ACTIONS(9634), 1, anon_sym_typename, - STATE(1635), 1, + STATE(1677), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2769), 1, + STATE(2928), 1, sym_type_specifier, - STATE(3046), 1, - sym_qualified_type_identifier, - STATE(3082), 1, + STATE(3513), 1, sym_decltype_auto, - STATE(6713), 1, + STATE(3533), 1, + sym_qualified_type_identifier, + STATE(6729), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2951), 2, + STATE(3356), 2, sym_decltype, sym_template_type, - ACTIONS(9582), 4, + ACTIONS(9618), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3085), 7, + STATE(3522), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472609,52 +474027,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209546] = 21, + [209410] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, - sym_auto, - ACTIONS(127), 1, - anon_sym_decltype, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3019), 1, + ACTIONS(9614), 1, + sym_identifier, + ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9620), 1, sym_primitive_type, - ACTIONS(3021), 1, + ACTIONS(9622), 1, anon_sym_enum, - ACTIONS(3023), 1, + ACTIONS(9624), 1, anon_sym_class, - ACTIONS(3025), 1, + ACTIONS(9626), 1, anon_sym_struct, - ACTIONS(3027), 1, + ACTIONS(9628), 1, anon_sym_union, - ACTIONS(3029), 1, + ACTIONS(9630), 1, + sym_auto, + ACTIONS(9632), 1, + anon_sym_decltype, + ACTIONS(9634), 1, anon_sym_typename, - ACTIONS(5226), 1, - sym_identifier, - ACTIONS(5228), 1, - anon_sym_COLON_COLON, - STATE(2385), 1, + STATE(1677), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2421), 1, + STATE(2929), 1, sym_type_specifier, - STATE(2453), 1, + STATE(3513), 1, sym_decltype_auto, - STATE(3138), 1, + STATE(3533), 1, sym_qualified_type_identifier, - STATE(6715), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2439), 2, + STATE(3356), 2, sym_decltype, sym_template_type, - ACTIONS(59), 4, + ACTIONS(9618), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(3522), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472662,105 +474080,162 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209620] = 21, + [209484] = 23, ACTIONS(3), 1, sym_comment, 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, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8018), 1, - anon_sym_typename, - STATE(4150), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4951), 1, - sym_type_specifier, - STATE(4975), 1, - sym_qualified_type_identifier, - STATE(4979), 1, - sym_decltype_auto, - STATE(6731), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6410), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8096), 1, + anon_sym_COLON_COLON, + ACTIONS(9673), 1, + sym_identifier, + STATE(2611), 1, + sym_template_type, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2728), 1, + sym__class_declaration_item, + STATE(5721), 1, + sym_ms_declspec_modifier, + STATE(6758), 1, sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(4943), 2, + STATE(7127), 1, + sym_virtual_specifier, + STATE(7735), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2394), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5720), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 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, - [209694] = 21, + sym_dependent_type_identifier, + STATE(6086), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [209562] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1844), 1, - sym_auto, - ACTIONS(1846), 1, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7986), 1, - sym_primitive_type, - ACTIONS(9435), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(4537), 1, + sym_field_declaration_list, + STATE(4724), 1, + sym__class_declaration_item, + STATE(5584), 1, + sym_ms_declspec_modifier, + STATE(6721), 1, + sym__scope_resolution, + STATE(7261), 1, + sym_virtual_specifier, + STATE(8059), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4304), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5583), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6086), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [209640] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9502), 1, sym_identifier, - ACTIONS(9437), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9441), 1, + ACTIONS(9508), 1, + sym_primitive_type, + ACTIONS(9510), 1, anon_sym_enum, - ACTIONS(9443), 1, + ACTIONS(9512), 1, anon_sym_class, - ACTIONS(9445), 1, + ACTIONS(9514), 1, anon_sym_struct, - ACTIONS(9447), 1, + ACTIONS(9516), 1, anon_sym_union, - ACTIONS(9449), 1, + ACTIONS(9518), 1, + sym_auto, + ACTIONS(9520), 1, + anon_sym_decltype, + ACTIONS(9522), 1, anon_sym_typename, - STATE(1797), 1, - sym_type_specifier, - STATE(1887), 1, + STATE(1659), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1888), 1, - sym_decltype_auto, - STATE(1916), 1, + STATE(2824), 1, + sym_type_specifier, + STATE(3192), 1, sym_qualified_type_identifier, - STATE(6699), 1, + STATE(3227), 1, + sym_decltype_auto, + STATE(6733), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(1782), 2, + STATE(3106), 2, sym_decltype, sym_template_type, - ACTIONS(9439), 4, + ACTIONS(9506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(3228), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472768,52 +474243,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209768] = 21, + [209714] = 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, + ACTIONS(9502), 1, sym_identifier, - ACTIONS(8060), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(8062), 1, + ACTIONS(9508), 1, + sym_primitive_type, + ACTIONS(9510), 1, anon_sym_enum, - ACTIONS(8064), 1, + ACTIONS(9512), 1, anon_sym_class, - ACTIONS(8066), 1, + ACTIONS(9514), 1, anon_sym_struct, - ACTIONS(8068), 1, + ACTIONS(9516), 1, anon_sym_union, - ACTIONS(8070), 1, + ACTIONS(9518), 1, + sym_auto, + ACTIONS(9520), 1, + anon_sym_decltype, + ACTIONS(9522), 1, anon_sym_typename, - STATE(2421), 1, - sym_type_specifier, - STATE(2453), 1, - sym_decltype_auto, - STATE(2695), 1, + STATE(1659), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2836), 1, + STATE(2825), 1, + sym_type_specifier, + STATE(3192), 1, sym_qualified_type_identifier, - STATE(6729), 1, + STATE(3227), 1, + sym_decltype_auto, + STATE(6733), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2439), 2, + STATE(3106), 2, sym_decltype, sym_template_type, - ACTIONS(3917), 4, + ACTIONS(9506), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(3228), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472821,105 +474296,160 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209842] = 21, + [209788] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7075), 1, - anon_sym_noexcept, - ACTIONS(7077), 1, - anon_sym_throw, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7799), 1, - anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6410), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9598), 1, + anon_sym_COLON_COLON, + ACTIONS(9675), 1, + sym_identifier, + STATE(2611), 1, + sym_template_type, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2728), 1, + sym__class_declaration_item, + STATE(5590), 1, + sym_ms_declspec_modifier, + STATE(6744), 1, + sym__scope_resolution, + STATE(7127), 1, + sym_virtual_specifier, + STATE(7735), 1, + sym_base_class_clause, + ACTIONS(5492), 2, anon_sym___attribute__, - ACTIONS(9336), 1, anon_sym___attribute, - STATE(6123), 1, - sym_trailing_return_type, - STATE(6222), 1, - sym__function_attributes_end, - STATE(6870), 1, - sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(2394), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5589), 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, - STATE(5422), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [209916] = 21, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(6086), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [209866] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(125), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9552), 1, + sym_identifier, + ACTIONS(9554), 1, + anon_sym_COLON_COLON, + ACTIONS(9558), 1, + sym_primitive_type, + ACTIONS(9560), 1, + anon_sym_enum, + ACTIONS(9562), 1, + anon_sym_class, + ACTIONS(9564), 1, + anon_sym_struct, + ACTIONS(9566), 1, + anon_sym_union, + ACTIONS(9568), 1, sym_auto, - ACTIONS(127), 1, + ACTIONS(9570), 1, anon_sym_decltype, + ACTIONS(9572), 1, + anon_sym_typename, + STATE(1897), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(3863), 1, + sym_type_specifier, + STATE(4120), 1, + sym_decltype_auto, + STATE(6742), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(4099), 2, + sym_decltype, + sym_template_type, + ACTIONS(9556), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4124), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [209940] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1874), 1, + ACTIONS(9552), 1, + sym_identifier, + ACTIONS(9554), 1, + anon_sym_COLON_COLON, + ACTIONS(9558), 1, + sym_primitive_type, + ACTIONS(9560), 1, anon_sym_enum, - ACTIONS(1876), 1, + ACTIONS(9562), 1, anon_sym_class, - ACTIONS(1878), 1, + ACTIONS(9564), 1, anon_sym_struct, - ACTIONS(1880), 1, + ACTIONS(9566), 1, anon_sym_union, - ACTIONS(1882), 1, + ACTIONS(9568), 1, + sym_auto, + ACTIONS(9570), 1, + anon_sym_decltype, + ACTIONS(9572), 1, anon_sym_typename, - ACTIONS(3019), 1, - sym_primitive_type, - ACTIONS(5018), 1, - sym_identifier, - ACTIONS(5028), 1, - anon_sym_COLON_COLON, - STATE(2385), 1, + STATE(1897), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2421), 1, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(3865), 1, sym_type_specifier, - STATE(2453), 1, + STATE(4120), 1, sym_decltype_auto, - STATE(3138), 1, - sym_qualified_type_identifier, - STATE(6746), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2439), 2, + STATE(4099), 2, sym_decltype, sym_template_type, - ACTIONS(59), 4, + ACTIONS(9556), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(4124), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -472927,158 +474457,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [209990] = 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(7538), 1, - anon_sym_requires, - 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, - STATE(6252), 1, - sym__function_attributes_end, - STATE(6295), 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(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(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, - [210138] = 21, + [210014] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9530), 1, - anon_sym_COLON_COLON, - ACTIONS(9538), 1, + ACTIONS(3154), 1, + anon_sym_enum, + ACTIONS(3156), 1, anon_sym_class, - ACTIONS(9540), 1, + ACTIONS(3158), 1, anon_sym_struct, - ACTIONS(9542), 1, + ACTIONS(3160), 1, anon_sym_union, - ACTIONS(9544), 1, + ACTIONS(3184), 1, sym_auto, - ACTIONS(9546), 1, + ACTIONS(3186), 1, anon_sym_decltype, - ACTIONS(9553), 1, + ACTIONS(3188), 1, + anon_sym_typename, + ACTIONS(8094), 1, sym_identifier, - ACTIONS(9557), 1, + ACTIONS(8096), 1, + anon_sym_COLON_COLON, + ACTIONS(8098), 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, + STATE(2638), 1, sym_type_specifier, - STATE(2306), 1, - sym_decltype_auto, - STATE(2335), 1, + STATE(2705), 1, sym_qualified_type_identifier, - STATE(6695), 1, + STATE(2711), 1, + sym_decltype_auto, + STATE(4317), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6758), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2242), 2, + STATE(2684), 2, sym_decltype, sym_template_type, - ACTIONS(9555), 4, + ACTIONS(3150), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2310), 7, + STATE(2712), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473086,380 +474510,378 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [210212] = 23, + [210088] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6526), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9580), 1, + ACTIONS(6836), 1, + anon_sym_LBRACE, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9690), 1, sym_identifier, - STATE(2673), 1, + STATE(2828), 1, sym_template_type, - STATE(2809), 1, + STATE(3031), 1, sym_field_declaration_list, - STATE(3076), 1, + STATE(3574), 1, sym__class_declaration_item, - STATE(5624), 1, + STATE(5600), 1, sym_ms_declspec_modifier, - STATE(6713), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(7139), 1, + STATE(7189), 1, sym_virtual_specifier, - STATE(7762), 1, + STATE(7780), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2437), 2, + STATE(2672), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5623), 2, + STATE(5599), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [210290] = 23, + [210166] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9483), 1, + anon_sym_class, + ACTIONS(9485), 1, + anon_sym_struct, + ACTIONS(9487), 1, + anon_sym_union, + ACTIONS(9489), 1, + sym_auto, + ACTIONS(9491), 1, + anon_sym_decltype, + ACTIONS(9533), 1, + sym_identifier, + ACTIONS(9537), 1, + sym_primitive_type, + ACTIONS(9539), 1, + anon_sym_enum, + ACTIONS(9541), 1, + anon_sym_typename, + STATE(1627), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1944), 1, + sym_type_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2344), 1, + sym_qualified_type_identifier, + STATE(6762), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(2237), 2, + sym_decltype, + sym_template_type, + ACTIONS(9535), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2331), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210240] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2503), 1, + STATE(2454), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(5620), 1, + STATE(5630), 1, sym_ms_declspec_modifier, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5717), 2, + STATE(5606), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [210368] = 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(7768), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - ACTIONS(9651), 1, - anon_sym_requires, - STATE(6258), 1, - sym__function_attributes_end, - STATE(6306), 1, - sym_trailing_return_type, - 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, - ACTIONS(9371), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(5446), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [210442] = 23, + [210318] = 21, 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(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(7984), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9645), 1, + ACTIONS(9483), 1, + anon_sym_class, + ACTIONS(9485), 1, + anon_sym_struct, + ACTIONS(9487), 1, + anon_sym_union, + ACTIONS(9489), 1, + sym_auto, + ACTIONS(9491), 1, + anon_sym_decltype, + ACTIONS(9533), 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(2031), 2, - sym__class_name, + ACTIONS(9537), 1, + sym_primitive_type, + ACTIONS(9539), 1, + anon_sym_enum, + ACTIONS(9541), 1, + anon_sym_typename, + STATE(1627), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1942), 1, + sym_type_specifier, + STATE(2328), 1, + sym_decltype_auto, + STATE(2344), 1, sym_qualified_type_identifier, - STATE(5650), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, + STATE(6762), 1, + sym__scope_resolution, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(6055), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [210520] = 23, + STATE(2237), 2, + sym_decltype, + sym_template_type, + ACTIONS(9535), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2331), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [210392] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6363), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8022), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(9663), 1, sym_identifier, - STATE(2598), 1, + STATE(1835), 1, sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2703), 1, + STATE(1923), 1, sym__class_declaration_item, + STATE(2404), 1, + sym_field_declaration_list, STATE(5706), 1, sym_ms_declspec_modifier, STATE(6738), 1, sym__scope_resolution, - STATE(7141), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7773), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2374), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5702), 2, + STATE(5647), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [210598] = 23, + [210470] = 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - ACTIONS(9643), 1, + ACTIONS(9504), 1, + anon_sym_COLON_COLON, + ACTIONS(9681), 1, sym_identifier, - STATE(1922), 1, + STATE(2713), 1, sym_template_type, - STATE(2503), 1, - sym__class_declaration_item, - STATE(2962), 1, + STATE(2901), 1, sym_field_declaration_list, - STATE(5571), 1, + STATE(3244), 1, + sym__class_declaration_item, + STATE(5613), 1, sym_ms_declspec_modifier, - STATE(6746), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7176), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7933), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5570), 2, + STATE(5612), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [210676] = 21, + [210548] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(3176), 1, + ACTIONS(1844), 1, sym_auto, - ACTIONS(3178), 1, + ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(8024), 1, + ACTIONS(7983), 1, sym_primitive_type, - ACTIONS(9610), 1, + ACTIONS(9426), 1, sym_identifier, - ACTIONS(9612), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9616), 1, + ACTIONS(9432), 1, anon_sym_enum, - ACTIONS(9618), 1, + ACTIONS(9434), 1, anon_sym_class, - ACTIONS(9620), 1, + ACTIONS(9436), 1, anon_sym_struct, - ACTIONS(9622), 1, + ACTIONS(9438), 1, anon_sym_union, - ACTIONS(9624), 1, + ACTIONS(9440), 1, anon_sym_typename, - STATE(2223), 1, + STATE(1901), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2616), 1, - sym_type_specifier, - STATE(2685), 1, - sym_qualified_type_identifier, - STATE(2733), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(6694), 1, + STATE(1941), 1, + sym_qualified_type_identifier, + STATE(4039), 1, + sym_type_specifier, + STATE(6745), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2621), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - ACTIONS(9614), 4, + ACTIONS(9430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2747), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473467,105 +474889,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [210750] = 21, + [210622] = 23, 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, + ACTIONS(1978), 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, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5498), 1, + anon_sym___declspec, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8757), 1, + anon_sym_LBRACE, + ACTIONS(9686), 1, + sym_identifier, + STATE(4398), 1, + sym_template_type, + STATE(4974), 1, + sym_field_declaration_list, + STATE(5012), 1, + sym__class_declaration_item, + STATE(5624), 1, + sym_ms_declspec_modifier, + STATE(6737), 1, sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(2951), 2, + STATE(7130), 1, + sym_virtual_specifier, + STATE(7760), 1, + sym_base_class_clause, + ACTIONS(5492), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(5500), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5623), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 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, + sym_dependent_type_identifier, + STATE(6086), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + [210700] = 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, + ACTIONS(73), 1, anon_sym_enum, - ACTIONS(9538), 1, + ACTIONS(75), 1, anon_sym_class, - ACTIONS(9540), 1, + ACTIONS(77), 1, anon_sym_struct, - ACTIONS(9542), 1, + ACTIONS(79), 1, anon_sym_union, - ACTIONS(9544), 1, + ACTIONS(125), 1, sym_auto, - ACTIONS(9546), 1, + ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(9548), 1, + ACTIONS(131), 1, anon_sym_typename, - STATE(1612), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3027), 1, + sym_primitive_type, + ACTIONS(5234), 1, + sym_identifier, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + STATE(2369), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1920), 1, + STATE(2409), 1, sym_type_specifier, - STATE(2306), 1, + STATE(2563), 1, sym_decltype_auto, - STATE(2335), 1, + STATE(3067), 1, sym_qualified_type_identifier, - STATE(6695), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2242), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(9532), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2310), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473573,7 +474997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [210898] = 21, + [210774] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(125), 1, @@ -473582,43 +475006,43 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(1884), 1, anon_sym_enum, - ACTIONS(3923), 1, + ACTIONS(1886), 1, anon_sym_class, - ACTIONS(3925), 1, + ACTIONS(1888), 1, anon_sym_struct, - ACTIONS(3927), 1, + ACTIONS(1890), 1, anon_sym_union, - ACTIONS(3929), 1, + ACTIONS(1914), 1, anon_sym_typename, - STATE(2421), 1, + ACTIONS(3027), 1, + sym_primitive_type, + ACTIONS(5026), 1, + sym_identifier, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + STATE(2369), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2409), 1, sym_type_specifier, - STATE(2453), 1, + STATE(2563), 1, sym_decltype_auto, - STATE(2695), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2836), 1, + STATE(3067), 1, sym_qualified_type_identifier, - STATE(6697), 1, + STATE(6759), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2439), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(3917), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473626,107 +475050,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [210972] = 23, + [210848] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9647), 1, + ACTIONS(9679), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4700), 1, + STATE(2454), 1, sym__class_declaration_item, - STATE(5606), 1, + STATE(2990), 1, + sym_field_declaration_list, + STATE(5644), 1, sym_ms_declspec_modifier, - STATE(6743), 1, + STATE(6759), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5604), 2, + STATE(5643), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [211050] = 21, + [210926] = 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, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(7983), 1, sym_primitive_type, - ACTIONS(8058), 1, + ACTIONS(9426), 1, sym_identifier, - ACTIONS(8060), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(8064), 1, + ACTIONS(9432), 1, + anon_sym_enum, + ACTIONS(9434), 1, anon_sym_class, - ACTIONS(8066), 1, + ACTIONS(9436), 1, anon_sym_struct, - ACTIONS(8068), 1, + ACTIONS(9438), 1, anon_sym_union, - ACTIONS(9678), 1, - anon_sym_enum, - ACTIONS(9680), 1, + ACTIONS(9440), 1, anon_sym_typename, - STATE(2421), 1, - sym_type_specifier, - STATE(2453), 1, + STATE(1901), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1904), 1, sym_decltype_auto, - STATE(2836), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(5109), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6729), 1, + STATE(4122), 1, + sym_type_specifier, + STATE(6745), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2439), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - ACTIONS(9676), 4, + ACTIONS(9430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473734,62 +475158,60 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [211124] = 23, + [211000] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(1978), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, anon_sym_decltype, - 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(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(7983), 1, + sym_primitive_type, + ACTIONS(9426), 1, sym_identifier, - STATE(1922), 1, - sym_template_type, - STATE(2503), 1, - sym__class_declaration_item, - STATE(3663), 1, - sym_field_declaration_list, - STATE(5568), 1, - sym_ms_declspec_modifier, - STATE(6743), 1, - sym__scope_resolution, - STATE(7228), 1, - sym_virtual_specifier, - STATE(8009), 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(3041), 2, - sym__class_name, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(9432), 1, + anon_sym_enum, + ACTIONS(9434), 1, + anon_sym_class, + ACTIONS(9436), 1, + anon_sym_struct, + ACTIONS(9438), 1, + anon_sym_union, + ACTIONS(9440), 1, + anon_sym_typename, + STATE(1901), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(1904), 1, + sym_decltype_auto, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(5564), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, + STATE(4121), 1, + sym_type_specifier, + STATE(6745), 1, + sym__scope_resolution, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(6055), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [211202] = 21, + STATE(1793), 2, + sym_decltype, + sym_template_type, + ACTIONS(9430), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1907), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [211074] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -473798,43 +475220,96 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, ACTIONS(1846), 1, anon_sym_decltype, - ACTIONS(7986), 1, + ACTIONS(8042), 1, + sym_identifier, + ACTIONS(8044), 1, + anon_sym_COLON_COLON, + ACTIONS(8048), 1, sym_primitive_type, - ACTIONS(9435), 1, + ACTIONS(8050), 1, + anon_sym_enum, + ACTIONS(8052), 1, + anon_sym_class, + ACTIONS(8054), 1, + anon_sym_struct, + ACTIONS(8056), 1, + anon_sym_union, + ACTIONS(8058), 1, + anon_sym_typename, + STATE(1856), 1, + sym_type_specifier, + STATE(1904), 1, + sym_decltype_auto, + STATE(2854), 1, + sym_qualified_type_identifier, + STATE(4962), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6739), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_dependent_type_identifier, + STATE(1793), 2, + sym_decltype, + sym_template_type, + ACTIONS(8046), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1907), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [211148] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9442), 1, sym_identifier, - ACTIONS(9437), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9441), 1, + ACTIONS(9448), 1, + sym_primitive_type, + ACTIONS(9450), 1, anon_sym_enum, - ACTIONS(9443), 1, + ACTIONS(9452), 1, anon_sym_class, - ACTIONS(9445), 1, + ACTIONS(9454), 1, anon_sym_struct, - ACTIONS(9447), 1, + ACTIONS(9456), 1, anon_sym_union, - ACTIONS(9449), 1, + ACTIONS(9458), 1, + sym_auto, + ACTIONS(9460), 1, + anon_sym_decltype, + ACTIONS(9462), 1, anon_sym_typename, - STATE(1887), 1, + STATE(1648), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1888), 1, + STATE(3009), 1, + sym_type_specifier, + STATE(3094), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(3113), 1, sym_qualified_type_identifier, - STATE(4116), 1, - sym_type_specifier, - STATE(6699), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(1782), 2, + STATE(2999), 2, sym_decltype, sym_template_type, - ACTIONS(9439), 4, + ACTIONS(9446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(3096), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473842,52 +475317,211 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [211276] = 21, + [211222] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7594), 1, + anon_sym_requires, + ACTIONS(7636), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + STATE(6255), 1, + sym__function_attributes_end, + STATE(6330), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5449), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [211296] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7797), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + STATE(5565), 1, + sym_trailing_return_type, + STATE(6349), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5460), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [211370] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7797), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + STATE(5567), 1, + sym_trailing_return_type, + STATE(6350), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5464), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [211444] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(8032), 1, + ACTIONS(8026), 1, sym_primitive_type, - ACTIONS(8042), 1, + ACTIONS(8036), 1, sym_auto, - ACTIONS(8044), 1, + ACTIONS(8038), 1, anon_sym_decltype, - ACTIONS(8072), 1, + ACTIONS(8118), 1, sym_identifier, - ACTIONS(8074), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(8076), 1, + ACTIONS(8122), 1, anon_sym_enum, - ACTIONS(8078), 1, + ACTIONS(8124), 1, anon_sym_class, - ACTIONS(8080), 1, + ACTIONS(8126), 1, anon_sym_struct, - ACTIONS(8082), 1, + ACTIONS(8128), 1, anon_sym_union, - ACTIONS(8084), 1, + ACTIONS(8130), 1, anon_sym_typename, - STATE(2836), 1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4024), 1, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4519), 1, + STATE(4609), 1, sym_type_specifier, - STATE(4672), 1, + STATE(4699), 1, sym_decltype_auto, - STATE(6743), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2439), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(8030), 4, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4773), 7, + STATE(4702), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473895,52 +475529,158 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [211350] = 21, + [211518] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1844), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7797), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9325), 1, + anon_sym_requires, + STATE(5526), 1, + sym_trailing_return_type, + STATE(6353), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5441), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [211592] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7797), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9423), 1, + anon_sym_requires, + STATE(5527), 1, + sym_trailing_return_type, + STATE(6405), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(5442), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [211666] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(125), 1, sym_auto, - ACTIONS(1846), 1, + ACTIONS(127), 1, anon_sym_decltype, - ACTIONS(7986), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(3927), 1, sym_primitive_type, - ACTIONS(9435), 1, + ACTIONS(8104), 1, sym_identifier, - ACTIONS(9437), 1, + ACTIONS(8106), 1, anon_sym_COLON_COLON, - ACTIONS(9441), 1, + ACTIONS(8108), 1, anon_sym_enum, - ACTIONS(9443), 1, + ACTIONS(8110), 1, anon_sym_class, - ACTIONS(9445), 1, + ACTIONS(8112), 1, anon_sym_struct, - ACTIONS(9447), 1, + ACTIONS(8114), 1, anon_sym_union, - ACTIONS(9449), 1, + ACTIONS(8116), 1, anon_sym_typename, - STATE(1887), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(1888), 1, + STATE(2409), 1, + sym_type_specifier, + STATE(2563), 1, sym_decltype_auto, - STATE(1916), 1, + STATE(2696), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(4134), 1, - sym_type_specifier, - STATE(6699), 1, + STATE(6736), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(1782), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(9439), 4, + ACTIONS(3925), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1890), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -473948,160 +475688,158 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [211424] = 23, + [211740] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 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(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(7213), 1, - sym_virtual_specifier, - STATE(7996), 1, - sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7594), 1, + anon_sym_requires, + ACTIONS(7636), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9527), 1, anon_sym___attribute__, + ACTIONS(9530), 1, anon_sym___attribute, - ACTIONS(5497), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(5567), 2, + STATE(6256), 1, + sym__function_attributes_end, + STATE(6331), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5659), 2, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 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, - [211502] = 21, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5458), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [211814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7799), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9343), 1, anon_sym___attribute, - ACTIONS(9366), 1, + ACTIONS(9385), 1, anon_sym_requires, - STATE(6182), 1, - sym_trailing_return_type, - STATE(6231), 1, + STATE(6260), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6326), 1, + sym_trailing_return_type, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9172), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5444), 3, + anon_sym_GT2, + STATE(5438), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [211576] = 21, + [211888] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(73), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(9473), 1, + sym_identifier, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9479), 1, + sym_primitive_type, + ACTIONS(9481), 1, anon_sym_enum, - ACTIONS(75), 1, + ACTIONS(9483), 1, anon_sym_class, - ACTIONS(77), 1, + ACTIONS(9485), 1, anon_sym_struct, - ACTIONS(79), 1, + ACTIONS(9487), 1, anon_sym_union, - ACTIONS(125), 1, + ACTIONS(9489), 1, sym_auto, - ACTIONS(127), 1, + ACTIONS(9491), 1, anon_sym_decltype, - ACTIONS(131), 1, + ACTIONS(9493), 1, anon_sym_typename, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(3019), 1, - sym_primitive_type, - ACTIONS(5226), 1, - sym_identifier, - ACTIONS(5228), 1, - anon_sym_COLON_COLON, - STATE(2385), 1, + STATE(1626), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2421), 1, + STATE(2259), 1, sym_type_specifier, - STATE(2453), 1, + STATE(2328), 1, sym_decltype_auto, - STATE(3138), 1, + STATE(2344), 1, sym_qualified_type_identifier, - STATE(6715), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2439), 2, + STATE(2237), 2, sym_decltype, sym_template_type, - ACTIONS(59), 4, + ACTIONS(9477), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2558), 7, + STATE(2331), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -474109,52 +475847,211 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [211650] = 21, + [211962] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7636), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9527), 1, + anon_sym___attribute__, + ACTIONS(9530), 1, + anon_sym___attribute, + ACTIONS(9683), 1, + anon_sym_requires, + STATE(6261), 1, + sym__function_attributes_end, + STATE(6327), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + STATE(5452), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [212036] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7638), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + ACTIONS(9356), 1, + anon_sym_requires, + STATE(6184), 1, + sym_trailing_return_type, + STATE(6232), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5454), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [212110] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7638), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9470), 1, + anon_sym_requires, + ACTIONS(9527), 1, + anon_sym___attribute__, + ACTIONS(9530), 1, + anon_sym___attribute, + STATE(6198), 1, + sym_trailing_return_type, + STATE(6233), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(5455), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [212184] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9496), 1, + ACTIONS(1844), 1, + sym_auto, + ACTIONS(1846), 1, + anon_sym_decltype, + ACTIONS(7983), 1, + sym_primitive_type, + ACTIONS(9426), 1, sym_identifier, - ACTIONS(9498), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9502), 1, - sym_primitive_type, - ACTIONS(9504), 1, + ACTIONS(9432), 1, anon_sym_enum, - ACTIONS(9506), 1, + ACTIONS(9434), 1, anon_sym_class, - ACTIONS(9508), 1, + ACTIONS(9436), 1, anon_sym_struct, - ACTIONS(9510), 1, + ACTIONS(9438), 1, anon_sym_union, - ACTIONS(9512), 1, - sym_auto, - ACTIONS(9514), 1, - anon_sym_decltype, - ACTIONS(9516), 1, + ACTIONS(9440), 1, anon_sym_typename, - STATE(1645), 1, + STATE(1901), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2857), 1, - sym_type_specifier, - STATE(3157), 1, + STATE(1904), 1, sym_decltype_auto, - STATE(3216), 1, + STATE(1941), 1, sym_qualified_type_identifier, - STATE(6728), 1, + STATE(4016), 1, + sym_type_specifier, + STATE(6745), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(3064), 2, + STATE(1793), 2, sym_decltype, sym_template_type, - ACTIONS(9500), 4, + ACTIONS(9430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3158), 7, + STATE(1907), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -474162,7 +476059,7 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [211724] = 21, + [212258] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(125), 1, @@ -474171,96 +476068,43 @@ static const uint16_t ts_small_parse_table[] = { 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(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(7012), 1, - sym_type_specifier, - 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, - [211798] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(9496), 1, + ACTIONS(3915), 1, sym_identifier, - ACTIONS(9498), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9502), 1, + ACTIONS(3927), 1, sym_primitive_type, - ACTIONS(9504), 1, + ACTIONS(3929), 1, anon_sym_enum, - ACTIONS(9506), 1, + ACTIONS(3931), 1, anon_sym_class, - ACTIONS(9508), 1, + ACTIONS(3933), 1, anon_sym_struct, - ACTIONS(9510), 1, + ACTIONS(3935), 1, anon_sym_union, - ACTIONS(9512), 1, - sym_auto, - ACTIONS(9514), 1, - anon_sym_decltype, - ACTIONS(9516), 1, + ACTIONS(3937), 1, anon_sym_typename, - STATE(1645), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2813), 1, + STATE(2409), 1, sym_type_specifier, - STATE(3157), 1, + STATE(2563), 1, sym_decltype_auto, - STATE(3216), 1, + STATE(2696), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2854), 1, sym_qualified_type_identifier, - STATE(6728), 1, + STATE(6757), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(3064), 2, + STATE(2429), 2, sym_decltype, sym_template_type, - ACTIONS(9500), 4, + ACTIONS(3925), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3158), 7, + STATE(2452), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -474268,162 +476112,107 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [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, + [212332] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5498), 1, anon_sym___declspec, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(3638), 1, + STATE(1946), 1, sym_template_type, - STATE(4009), 1, - sym_field_declaration_list, - STATE(4159), 1, + STATE(2454), 1, sym__class_declaration_item, - STATE(5579), 1, + STATE(3750), 1, + sym_field_declaration_list, + STATE(5608), 1, sym_ms_declspec_modifier, - STATE(6732), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(7061), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7717), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5489), 2, + ACTIONS(5492), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5500), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5573), 2, + STATE(5604), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6055), 3, + STATE(6086), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - [212028] = 21, + [212410] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9528), 1, + ACTIONS(9614), 1, sym_identifier, - ACTIONS(9530), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(9534), 1, + ACTIONS(9620), 1, sym_primitive_type, - ACTIONS(9536), 1, + ACTIONS(9622), 1, anon_sym_enum, - ACTIONS(9538), 1, + ACTIONS(9624), 1, anon_sym_class, - ACTIONS(9540), 1, + ACTIONS(9626), 1, anon_sym_struct, - ACTIONS(9542), 1, + ACTIONS(9628), 1, anon_sym_union, - ACTIONS(9544), 1, + ACTIONS(9630), 1, sym_auto, - ACTIONS(9546), 1, + ACTIONS(9632), 1, anon_sym_decltype, - ACTIONS(9548), 1, + ACTIONS(9634), 1, anon_sym_typename, - STATE(1612), 1, + STATE(1677), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2221), 1, + STATE(3373), 1, sym_type_specifier, - STATE(2306), 1, + STATE(3513), 1, sym_decltype_auto, - STATE(2335), 1, + STATE(3533), 1, sym_qualified_type_identifier, - STATE(6695), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(2242), 2, + STATE(3356), 2, sym_decltype, sym_template_type, - ACTIONS(9532), 4, + ACTIONS(9618), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2310), 7, + STATE(3522), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -474431,52 +476220,52 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [212102] = 21, + [212484] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, - ACTIONS(9410), 1, + ACTIONS(9442), 1, sym_identifier, - ACTIONS(9412), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9416), 1, + ACTIONS(9448), 1, sym_primitive_type, - ACTIONS(9418), 1, + ACTIONS(9450), 1, anon_sym_enum, - ACTIONS(9420), 1, + ACTIONS(9452), 1, anon_sym_class, - ACTIONS(9422), 1, + ACTIONS(9454), 1, anon_sym_struct, - ACTIONS(9424), 1, + ACTIONS(9456), 1, anon_sym_union, - ACTIONS(9426), 1, + ACTIONS(9458), 1, sym_auto, - ACTIONS(9428), 1, + ACTIONS(9460), 1, anon_sym_decltype, - ACTIONS(9430), 1, + ACTIONS(9462), 1, anon_sym_typename, - STATE(1860), 1, + STATE(1648), 1, aux_sym_sized_type_specifier_repeat1, - STATE(1916), 1, - sym_qualified_type_identifier, - STATE(4089), 1, + STATE(2804), 1, sym_type_specifier, - STATE(4125), 1, + STATE(3094), 1, sym_decltype_auto, - STATE(6732), 1, + STATE(3113), 1, + sym_qualified_type_identifier, + STATE(6703), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_dependent_type_identifier, - STATE(4102), 2, + STATE(2999), 2, sym_decltype, sym_template_type, - ACTIONS(9414), 4, + ACTIONS(9446), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4108), 7, + STATE(3096), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -474484,315 +476273,185 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [212176] = 21, + [212558] = 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(3176), 1, - sym_auto, - ACTIONS(3178), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8024), 1, - sym_primitive_type, - ACTIONS(9610), 1, + ACTIONS(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, + anon_sym_AMP, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(9612), 1, + ACTIONS(6412), 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(2733), 1, - sym_decltype_auto, - STATE(4166), 1, - sym_type_specifier, - STATE(6694), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(5903), 1, sym__scope_resolution, - STATE(8569), 1, - sym_dependent_type_identifier, - STATE(2621), 2, + STATE(6769), 1, + sym__declarator, + STATE(8850), 1, + sym_ms_based_modifier, + STATE(8381), 3, 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, - [212250] = 21, + sym_dependent_type_identifier, + STATE(6137), 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, + [212625] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7162), 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, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7494), 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, - STATE(5433), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [212324] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, + ACTIONS(7928), 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, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9491), 1, - anon_sym_requires, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - STATE(6111), 1, + STATE(6219), 1, sym_trailing_return_type, - STATE(6232), 1, + STATE(6530), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(9388), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(5425), 3, + STATE(5468), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [212398] = 21, + [212698] = 5, 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, + STATE(5106), 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, + ACTIONS(5539), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(9698), 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(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(6035), 1, - anon_sym_LBRACE, - 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(1886), 1, - sym__class_declaration_item, - STATE(5190), 1, - sym_field_declaration_list, - STATE(5601), 1, - sym_ms_declspec_modifier, - STATE(6724), 1, - sym__scope_resolution, - STATE(7203), 1, - sym_virtual_specifier, - STATE(7975), 1, - sym_base_class_clause, - ACTIONS(5489), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(5497), 2, + ACTIONS(5537), 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, - ACTIONS(5567), 2, - anon_sym_final, - anon_sym_override, - 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, - STATE(6055), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - [212550] = 18, + sym_primitive_type, + sym_identifier, + sym_auto, + anon_sym_decltype, + [212739] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7073), 1, + ACTIONS(7093), 1, anon_sym_DASH_GT, - ACTIONS(7079), 1, + ACTIONS(7105), 1, anon_sym_requires, - ACTIONS(9141), 1, + ACTIONS(9703), 1, anon_sym___attribute__, - ACTIONS(9144), 1, + ACTIONS(9706), 1, anon_sym___attribute, - ACTIONS(9147), 1, + ACTIONS(9709), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - STATE(5671), 1, + STATE(5711), 1, sym_trailing_return_type, - STATE(5814), 1, + STATE(5750), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 7, + ACTIONS(9701), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -474800,9 +476459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [212617] = 18, + [212806] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -474811,33 +476472,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, + anon_sym_AMP, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 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, + anon_sym_LBRACK, + STATE(5903), 1, sym__scope_resolution, - STATE(6463), 1, + STATE(6844), 1, sym__declarator, - STATE(8339), 1, + STATE(8850), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -474849,7 +476508,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212684] = 18, + [212873] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -474860,33 +476519,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7313), 1, anon_sym_STAR, - ACTIONS(7113), 1, + ACTIONS(7315), 1, anon_sym_AMP_AMP, - ACTIONS(7115), 1, + ACTIONS(7317), 1, anon_sym_AMP, - STATE(5923), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6330), 1, + STATE(6412), 1, sym__declarator, - STATE(8339), 1, + STATE(8363), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -474898,7 +476557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212751] = 18, + [212940] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -474909,33 +476568,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7283), 1, anon_sym_STAR, - ACTIONS(7113), 1, + ACTIONS(7285), 1, anon_sym_AMP_AMP, - ACTIONS(7115), 1, + ACTIONS(7287), 1, anon_sym_AMP, - STATE(5923), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6314), 1, + STATE(6291), 1, sym__declarator, - STATE(8339), 1, + STATE(8848), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -474947,9 +476606,11 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212818] = 18, + [213007] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -474958,33 +476619,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, + anon_sym_AMP, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(5903), 1, + sym__scope_resolution, + STATE(6589), 1, + sym__declarator, + STATE(8850), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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, + [213074] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7219), 1, + ACTIONS(7319), 1, anon_sym_STAR, - ACTIONS(7221), 1, + ACTIONS(7321), 1, anon_sym_AMP_AMP, - ACTIONS(7223), 1, + ACTIONS(7323), 1, anon_sym_AMP, - STATE(5896), 1, + ACTIONS(7325), 1, + anon_sym_COLON_COLON, + STATE(5953), 1, sym__scope_resolution, - STATE(6643), 1, + STATE(6804), 1, sym__declarator, - STATE(8381), 1, + STATE(8422), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -474996,7 +476704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212885] = 18, + [213141] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, @@ -475009,31 +476717,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(3001), 1, + ACTIONS(3009), 1, anon_sym_STAR, - ACTIONS(3003), 1, + ACTIONS(3011), 1, anon_sym_AMP, - ACTIONS(5481), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - STATE(5923), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6818), 1, + STATE(6793), 1, sym__declarator, - STATE(8864), 1, + STATE(8850), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475045,7 +476753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [212952] = 18, + [213208] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475056,33 +476764,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7303), 1, anon_sym_AMP, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(5972), 1, + STATE(5999), 1, sym__declarator, - STATE(8623), 1, + STATE(8817), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475094,43 +476802,105 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213019] = 5, + [213275] = 18, ACTIONS(3), 1, sym_comment, - STATE(5047), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5517), 3, + 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(3005), 1, anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(3009), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(9682), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5515), 21, + ACTIONS(3011), 1, 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, + ACTIONS(5484), 1, sym_identifier, - sym_auto, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(5903), 1, + sym__scope_resolution, + STATE(6837), 1, + sym__declarator, + STATE(8850), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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, + [213342] = 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, - [213060] = 18, + ACTIONS(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, + anon_sym_AMP, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(5903), 1, + sym__scope_resolution, + STATE(6764), 1, + sym__declarator, + STATE(8850), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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, + [213409] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475141,33 +476911,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7311), 1, anon_sym_AMP, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6551), 1, + STATE(6588), 1, sym__declarator, - STATE(8135), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475179,7 +476949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213127] = 18, + [213476] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475190,33 +476960,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(5873), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7315), 1, + anon_sym_AMP_AMP, + ACTIONS(7317), 1, + anon_sym_AMP, + STATE(5903), 1, + sym__scope_resolution, + STATE(6394), 1, + sym__declarator, + STATE(8363), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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, + [213543] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9356), 1, + anon_sym_requires, + STATE(6184), 1, + sym_trailing_return_type, + STATE(6507), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5474), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [213616] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7923), 1, + anon_sym_DASH_GT, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9651), 1, + anon_sym_requires, + STATE(6407), 1, + sym__function_attributes_end, + STATE(6578), 1, + sym_trailing_return_type, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5470), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [213689] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7923), 1, + anon_sym_DASH_GT, + ACTIONS(9396), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9714), 1, + anon_sym_requires, + STATE(6408), 1, + sym__function_attributes_end, + STATE(6579), 1, + sym_trailing_return_type, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9388), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5475), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [213762] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1693), 1, + sym_alignas_qualifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9719), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(9717), 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [213807] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, anon_sym_LBRACK, + ACTIONS(9356), 1, + anon_sym_requires, + STATE(6504), 1, + sym__function_attributes_end, + STATE(6661), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5483), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [213880] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7093), 1, + anon_sym_DASH_GT, ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(9174), 1, + anon_sym___attribute__, + ACTIONS(9177), 1, + anon_sym___attribute, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, + anon_sym_LBRACK, + STATE(5679), 1, + sym_trailing_return_type, + STATE(5746), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [213947] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9470), 1, + anon_sym_requires, + STATE(6499), 1, + sym__function_attributes_end, + STATE(6668), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9388), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5469), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [214020] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1968), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5141), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_GT2, + ACTIONS(5138), 4, + anon_sym___attribute__, + anon_sym___attribute, + sym_auto, + anon_sym_decltype, + ACTIONS(5937), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5089), 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, + [214063] = 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7107), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7109), 1, + ACTIONS(7303), 1, anon_sym_AMP, - STATE(5896), 1, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + STATE(5914), 1, sym__scope_resolution, - STATE(6205), 1, + STATE(6382), 1, sym__declarator, - STATE(8504), 1, + STATE(8817), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475228,14 +477431,48 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213194] = 3, + [214130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8135), 3, + anon_sym_AMP, + sym_ms_restrict_modifier, + anon_sym_const, + ACTIONS(8137), 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, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [214167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8050), 3, + ACTIONS(8100), 3, anon_sym_AMP, sym_ms_restrict_modifier, anon_sym_const, - ACTIONS(8052), 26, + ACTIONS(8102), 26, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, @@ -475262,9 +477499,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [213231] = 18, + [214204] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -475273,33 +477512,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, + anon_sym_AMP, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 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, + anon_sym_LBRACK, + STATE(5903), 1, sym__scope_resolution, - STATE(6309), 1, + STATE(6811), 1, sym__declarator, - STATE(8339), 1, + STATE(8850), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475311,7 +477548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213298] = 18, + [214271] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475322,33 +477559,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7271), 1, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7273), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7275), 1, + ACTIONS(7303), 1, anon_sym_AMP, - ACTIONS(7277), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - STATE(5967), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6210), 1, + STATE(6015), 1, sym__declarator, - STATE(8221), 1, + STATE(8817), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475360,41 +477597,105 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213365] = 3, + [214338] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8054), 3, + 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(3005), 1, + anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, anon_sym_AMP, - sym_ms_restrict_modifier, - anon_sym_const, - ACTIONS(8056), 26, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(5903), 1, + sym__scope_resolution, + STATE(6792), 1, + sym__declarator, + STATE(8850), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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, + [214405] = 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(3005), 1, anon_sym_LPAREN2, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, anon_sym_STAR, + ACTIONS(7309), 1, 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, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [213402] = 18, + ACTIONS(7311), 1, + anon_sym_AMP, + STATE(5914), 1, + sym__scope_resolution, + STATE(6605), 1, + sym__declarator, + STATE(8157), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(6137), 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, + [214472] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475405,33 +477706,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, - sym_identifier, - ACTIONS(7211), 1, + ACTIONS(7313), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7315), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7317), 1, anon_sym_AMP, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - STATE(5895), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6005), 1, + STATE(6372), 1, sym__declarator, - STATE(8623), 1, + STATE(8363), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475443,7 +477744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213469] = 18, + [214539] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475454,33 +477755,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7313), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7315), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7317), 1, anon_sym_AMP, - STATE(5895), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6561), 1, + STATE(6342), 1, sym__declarator, - STATE(8135), 1, + STATE(8363), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475492,11 +477793,9 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213536] = 18, + [214606] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -475505,31 +477804,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(3001), 1, - anon_sym_STAR, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(5481), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(5923), 1, + ACTIONS(7307), 1, + anon_sym_STAR, + ACTIONS(7309), 1, + anon_sym_AMP_AMP, + ACTIONS(7311), 1, + anon_sym_AMP, + STATE(5914), 1, sym__scope_resolution, - STATE(6752), 1, + STATE(6589), 1, sym__declarator, - STATE(8864), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475541,11 +477842,58 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213603] = 18, + [214673] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(9390), 1, + anon_sym___attribute__, + ACTIONS(9393), 1, + anon_sym___attribute, + ACTIONS(9396), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9399), 1, + anon_sym_LBRACK, + STATE(5646), 1, + sym_trailing_return_type, + STATE(5749), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [214740] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -475554,31 +477902,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(3001), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(3003), 1, + ACTIONS(7301), 1, + anon_sym_AMP_AMP, + ACTIONS(7303), 1, anon_sym_AMP, - ACTIONS(5481), 1, - sym_identifier, - ACTIONS(6365), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(5923), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6779), 1, + STATE(6059), 1, sym__declarator, - STATE(8864), 1, + STATE(8817), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475590,47 +477940,11 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213670] = 7, + [214807] = 18, 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, + ACTIONS(29), 1, 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, - 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(1268), 1, @@ -475639,33 +477953,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(3009), 1, + anon_sym_STAR, + ACTIONS(3011), 1, + anon_sym_AMP, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 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, + anon_sym_LBRACK, + STATE(5903), 1, sym__scope_resolution, - STATE(6318), 1, + STATE(6802), 1, sym__declarator, - STATE(8339), 1, + STATE(8850), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475677,7 +477989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213782] = 18, + [214874] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475688,33 +478000,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, - sym_identifier, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7257), 1, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7259), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7261), 1, + ACTIONS(7311), 1, anon_sym_AMP, - ACTIONS(7263), 1, - anon_sym_COLON_COLON, - STATE(5931), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6767), 1, + STATE(6561), 1, sym__declarator, - STATE(8398), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475726,7 +478038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213849] = 18, + [214941] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475737,33 +478049,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7313), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7315), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7317), 1, anon_sym_AMP, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - STATE(5895), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6007), 1, + STATE(6377), 1, sym__declarator, - STATE(8623), 1, + STATE(8363), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475775,7 +478087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213916] = 18, + [215008] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475786,33 +478098,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(7107), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7109), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7111), 1, anon_sym_AMP, - ACTIONS(7217), 1, + ACTIONS(7113), 1, anon_sym_COLON_COLON, - STATE(5895), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(5949), 1, sym__scope_resolution, - STATE(6022), 1, + STATE(6259), 1, sym__declarator, - STATE(8623), 1, + STATE(8245), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475824,7 +478136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [213983] = 18, + [215075] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475835,33 +478147,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7303), 1, anon_sym_AMP, - STATE(5895), 1, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + STATE(5914), 1, sym__scope_resolution, - STATE(6523), 1, + STATE(6012), 1, sym__declarator, - STATE(8135), 1, + STATE(8817), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475873,7 +478185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [214050] = 18, + [215142] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475884,33 +478196,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7311), 1, anon_sym_AMP, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6545), 1, + STATE(6557), 1, sym__declarator, - STATE(8135), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -475922,56 +478234,97 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [214117] = 18, + [215209] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(1693), 1, + sym_alignas_qualifier, + ACTIONS(69), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(1666), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9723), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(9721), 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [215254] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7073), 1, - anon_sym_DASH_GT, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(9373), 1, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(9376), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(9379), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(5567), 1, + ACTIONS(9470), 1, + anon_sym_requires, + STATE(6198), 1, sym_trailing_return_type, - STATE(5722), 1, + STATE(6538), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + ACTIONS(9388), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 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, - [214184] = 18, + STATE(5477), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [215327] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -475982,33 +478335,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7313), 1, anon_sym_STAR, - ACTIONS(7113), 1, + ACTIONS(7315), 1, anon_sym_AMP_AMP, - ACTIONS(7115), 1, + ACTIONS(7317), 1, anon_sym_AMP, - STATE(5923), 1, + STATE(5903), 1, sym__scope_resolution, - STATE(6380), 1, + STATE(6382), 1, sym__declarator, - STATE(8339), 1, + STATE(8363), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -476020,7 +478373,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [214251] = 18, + [215394] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -476031,33 +478384,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, - sym_identifier, - ACTIONS(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7219), 1, + ACTIONS(7297), 1, + sym_identifier, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7221), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7223), 1, + ACTIONS(7303), 1, anon_sym_AMP, - STATE(5896), 1, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + STATE(5914), 1, sym__scope_resolution, - STATE(6735), 1, + STATE(5995), 1, sym__declarator, - STATE(8381), 1, + STATE(8817), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -476069,7 +478422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [214318] = 18, + [215461] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -476080,33 +478433,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7311), 1, anon_sym_AMP, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(5989), 1, + STATE(6607), 1, sym__declarator, - STATE(8623), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -476118,11 +478471,9 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [214385] = 18, + [215528] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -476131,80 +478482,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(3001), 1, - anon_sym_STAR, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(5481), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(5870), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(5923), 1, - sym__scope_resolution, - STATE(6634), 1, - sym__declarator, - STATE(8864), 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, - [214452] = 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, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, - sym_identifier, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7333), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7335), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7337), 1, anon_sym_AMP, - STATE(5895), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6571), 1, + STATE(6653), 1, sym__declarator, - STATE(8135), 1, + STATE(8405), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -476216,56 +478520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [214519] = 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(9691), 1, - anon_sym___attribute__, - ACTIONS(9694), 1, - anon_sym___attribute, - ACTIONS(9697), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9700), 1, - anon_sym_LBRACK, - STATE(5666), 1, - sym_trailing_return_type, - STATE(5724), 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(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, - [214586] = 18, + [215595] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -476276,33 +478531,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7103), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7257), 1, + ACTIONS(7333), 1, anon_sym_STAR, - ACTIONS(7259), 1, + ACTIONS(7335), 1, anon_sym_AMP_AMP, - ACTIONS(7261), 1, + ACTIONS(7337), 1, anon_sym_AMP, - ACTIONS(7263), 1, - anon_sym_COLON_COLON, - STATE(5931), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6808), 1, + STATE(6735), 1, sym__declarator, - STATE(8398), 1, + STATE(8405), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -476314,59 +478569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [214653] = 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(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(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, - 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, - [214726] = 18, + [215662] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -476377,33 +478580,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5861), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(7097), 1, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7099), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7101), 1, + ACTIONS(7303), 1, anon_sym_AMP, - ACTIONS(7103), 1, - anon_sym_LBRACK, - STATE(5896), 1, + ACTIONS(7305), 1, + anon_sym_COLON_COLON, + STATE(5914), 1, sym__scope_resolution, - STATE(6438), 1, + STATE(6009), 1, sym__declarator, - STATE(8286), 1, + STATE(8817), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -476415,48 +478618,48 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [214793] = 18, + [215729] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7073), 1, + ACTIONS(7093), 1, anon_sym_DASH_GT, - ACTIONS(9141), 1, + ACTIONS(9174), 1, anon_sym___attribute__, - ACTIONS(9144), 1, + ACTIONS(9177), 1, anon_sym___attribute, - ACTIONS(9147), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9196), 1, + ACTIONS(9216), 1, anon_sym_requires, - STATE(5655), 1, + STATE(5635), 1, sym_trailing_return_type, - STATE(5738), 1, + STATE(5762), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 7, + ACTIONS(9172), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -476464,100 +478667,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [214860] = 21, + [215796] = 18, 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(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(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7073), 1, + ACTIONS(7093), 1, anon_sym_DASH_GT, - ACTIONS(9373), 1, + ACTIONS(9390), 1, anon_sym___attribute__, - ACTIONS(9376), 1, + ACTIONS(9393), 1, anon_sym___attribute, - ACTIONS(9379), 1, + ACTIONS(9396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9390), 1, + ACTIONS(9404), 1, anon_sym_requires, - STATE(5703), 1, + STATE(5680), 1, sym_trailing_return_type, - STATE(5739), 1, + STATE(5763), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9387), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 7, + ACTIONS(9388), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -476565,152 +478716,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [215000] = 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(7913), 1, - anon_sym_DASH_GT, - ACTIONS(7924), 1, - anon_sym_requires, - ACTIONS(9147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, - anon_sym_LBRACK, - STATE(6431), 1, - sym__function_attributes_end, - STATE(6598), 1, - sym_trailing_return_type, - 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__, - ACTIONS(9139), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - 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(5451), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [215073] = 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(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(6398), 1, - sym__function_attributes_end, - STATE(6575), 1, - sym_trailing_return_type, - STATE(6850), 1, - sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9139), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - 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(5462), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [215146] = 18, + [215863] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7073), 1, + ACTIONS(7093), 1, anon_sym_DASH_GT, - ACTIONS(9691), 1, + ACTIONS(9703), 1, anon_sym___attribute__, - ACTIONS(9694), 1, + ACTIONS(9706), 1, anon_sym___attribute, - ACTIONS(9697), 1, + ACTIONS(9709), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9705), 1, + ACTIONS(9728), 1, anon_sym_requires, - STATE(5708), 1, + STATE(5699), 1, sym_trailing_return_type, - STATE(5740), 1, + STATE(5764), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9702), 2, + ACTIONS(9725), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 7, + ACTIONS(9701), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -476718,264 +478765,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [215213] = 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(7913), 1, - anon_sym_DASH_GT, - ACTIONS(7924), 1, - anon_sym_requires, - ACTIONS(9379), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, - anon_sym_LBRACK, - STATE(6432), 1, - sym__function_attributes_end, - STATE(6600), 1, - sym_trailing_return_type, - 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__, - ACTIONS(9371), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - 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(5467), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [215286] = 21, + [215930] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, - anon_sym_DASH_GT, - ACTIONS(9379), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9708), 1, + ACTIONS(7494), 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, - STATE(5466), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [215359] = 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(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(6632), 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, - [215426] = 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(7918), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7920), 1, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9366), 1, - anon_sym_requires, - STATE(6182), 1, + STATE(6135), 1, sym_trailing_return_type, - STATE(6500), 1, + STATE(6528), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9139), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9327), 2, + ACTIONS(7472), 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(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(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9491), 1, - anon_sym_requires, - STATE(6111), 1, - sym_trailing_return_type, - STATE(6505), 1, - sym__function_attributes_end, - STATE(6850), 1, - sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9371), 2, + ACTIONS(9172), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9488), 2, - anon_sym_final, - anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - STATE(5471), 3, + STATE(5482), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [215572] = 18, + [216003] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -476986,33 +478828,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(5481), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7111), 1, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7113), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7115), 1, + ACTIONS(7311), 1, anon_sym_AMP, - STATE(5923), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6341), 1, + STATE(6640), 1, sym__declarator, - STATE(8339), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477024,7 +478866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [215639] = 18, + [216070] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -477035,33 +478877,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7319), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7321), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7323), 1, anon_sym_AMP, - ACTIONS(7217), 1, + ACTIONS(7325), 1, anon_sym_COLON_COLON, - STATE(5895), 1, + STATE(5953), 1, sym__scope_resolution, - STATE(6019), 1, + STATE(6781), 1, sym__declarator, - STATE(8623), 1, + STATE(8422), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477073,7 +478915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [215706] = 18, + [216137] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -477084,33 +478926,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(5858), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + ACTIONS(7327), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7329), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7331), 1, anon_sym_AMP, - ACTIONS(7217), 1, - anon_sym_COLON_COLON, - STATE(5895), 1, + STATE(5965), 1, sym__scope_resolution, - STATE(6318), 1, + STATE(6413), 1, sym__declarator, - STATE(8623), 1, + STATE(8310), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477122,94 +478964,59 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [215773] = 7, + [216204] = 21, 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(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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [215818] = 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, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7923), 1, + anon_sym_DASH_GT, + ACTIONS(7934), 1, + anon_sym_requires, + ACTIONS(9180), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(5923), 1, - sym__scope_resolution, - STATE(6804), 1, - sym__declarator, - STATE(8864), 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, - [215885] = 18, + STATE(6440), 1, + sym__function_attributes_end, + STATE(6625), 1, + sym_trailing_return_type, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + STATE(5466), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [216277] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -477220,33 +479027,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7211), 1, + ACTIONS(7299), 1, anon_sym_STAR, - ACTIONS(7213), 1, + ACTIONS(7301), 1, anon_sym_AMP_AMP, - ACTIONS(7215), 1, + ACTIONS(7303), 1, anon_sym_AMP, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6013), 1, + STATE(6045), 1, sym__declarator, - STATE(8623), 1, + STATE(8817), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477258,63 +479065,61 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [215952] = 21, + [216344] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(7299), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9366), 1, + ACTIONS(7934), 1, anon_sym_requires, - STATE(6502), 1, + ACTIONS(9396), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9399), 1, + anon_sym_LBRACK, + STATE(6442), 1, sym__function_attributes_end, - STATE(6651), 1, + STATE(6626), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9139), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9388), 2, anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5455), 2, + anon_sym_COLON, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - STATE(5458), 3, + STATE(5484), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [216025] = 18, + [216417] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -477323,31 +479128,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(3001), 1, - anon_sym_STAR, - ACTIONS(3003), 1, - anon_sym_AMP, - ACTIONS(5481), 1, + ACTIONS(5484), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6412), 1, anon_sym_COLON_COLON, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - STATE(5923), 1, + ACTIONS(7313), 1, + anon_sym_STAR, + ACTIONS(7315), 1, + anon_sym_AMP_AMP, + ACTIONS(7317), 1, + anon_sym_AMP, + STATE(5903), 1, sym__scope_resolution, - STATE(6820), 1, + STATE(6395), 1, sym__declarator, - STATE(8864), 1, + STATE(8363), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477359,61 +479166,11 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [216092] = 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(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - 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, + [216484] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, ACTIONS(1268), 1, @@ -477422,33 +479179,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 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, + ACTIONS(3009), 1, anon_sym_STAR, - ACTIONS(7267), 1, - anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(3011), 1, anon_sym_AMP, - STATE(5895), 1, + ACTIONS(5484), 1, + sym_identifier, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(7115), 1, + anon_sym_LBRACK, + STATE(5903), 1, sym__scope_resolution, - STATE(6533), 1, + STATE(6821), 1, sym__declarator, - STATE(8135), 1, + STATE(8850), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477460,44 +479215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [216232] = 6, - ACTIONS(3), 1, - sym_comment, - 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(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, + [216551] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -477508,33 +479226,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2997), 1, + ACTIONS(3005), 1, anon_sym_LPAREN2, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7103), 1, + ACTIONS(7115), 1, anon_sym_LBRACK, - ACTIONS(7209), 1, + ACTIONS(7297), 1, sym_identifier, - ACTIONS(7217), 1, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(7265), 1, + ACTIONS(7307), 1, anon_sym_STAR, - ACTIONS(7267), 1, + ACTIONS(7309), 1, anon_sym_AMP_AMP, - ACTIONS(7269), 1, + ACTIONS(7311), 1, anon_sym_AMP, - STATE(5895), 1, + STATE(5914), 1, sym__scope_resolution, - STATE(6634), 1, + STATE(6648), 1, sym__declarator, - STATE(8135), 1, + STATE(8157), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(6145), 11, + STATE(6137), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477546,2707 +479264,2891 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [216342] = 18, + [216618] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9305), 1, + ACTIONS(9414), 1, anon_sym___asm, - ACTIONS(9308), 1, + ACTIONS(9417), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9311), 1, - anon_sym_requires, - STATE(5528), 1, + STATE(5567), 1, sym_trailing_return_type, - STATE(5744), 1, + STATE(5756), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9193), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(9411), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9388), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [216408] = 18, + [216684] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7283), 1, - anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(5671), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, + anon_sym___asm, + ACTIONS(9325), 1, + anon_sym_requires, + STATE(5526), 1, sym_trailing_return_type, - STATE(6070), 1, + STATE(5770), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(9317), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9172), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [216474] = 18, + [216750] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7079), 1, + ACTIONS(7105), 1, anon_sym_requires, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9379), 1, + ACTIONS(9709), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - STATE(5567), 1, + STATE(5711), 1, sym_trailing_return_type, - STATE(6053), 1, + STATE(6085), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, + ACTIONS(9701), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [216540] = 18, + [216816] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(9700), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9715), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9721), 1, + ACTIONS(9414), 1, anon_sym___asm, - STATE(5530), 1, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9423), 1, + anon_sym_requires, + STATE(5527), 1, sym_trailing_return_type, - STATE(5732), 1, + STATE(5771), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - ACTIONS(9718), 2, + ACTIONS(9411), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 6, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [216882] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7166), 1, + anon_sym_DASH_GT, + ACTIONS(9709), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9712), 1, + anon_sym_LBRACK, + ACTIONS(9728), 1, + anon_sym_requires, + STATE(5699), 1, + sym_trailing_return_type, + STATE(6079), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, - anon_sym_COMMA, + ACTIONS(9701), 6, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [216606] = 18, + [216948] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9396), 1, - anon_sym___asm, - ACTIONS(9401), 1, + ACTIONS(9731), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9407), 1, + ACTIONS(9737), 1, + anon_sym___asm, + ACTIONS(9740), 1, anon_sym_requires, - STATE(5536), 1, + STATE(5528), 1, sym_trailing_return_type, - STATE(5745), 1, + STATE(5772), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9387), 2, + ACTIONS(9725), 2, anon_sym_final, anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(9734), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, + ACTIONS(9701), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [216672] = 18, + [217014] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(7314), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9396), 1, - anon_sym___asm, - ACTIONS(9401), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - STATE(5529), 1, + ACTIONS(9320), 1, + anon_sym___asm, + STATE(5565), 1, sym_trailing_return_type, - STATE(5731), 1, + STATE(5755), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(9317), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, + ACTIONS(9172), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [216738] = 18, + [217080] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9697), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9721), 1, + ACTIONS(9216), 1, + anon_sym_requires, + ACTIONS(9320), 1, anon_sym___asm, - STATE(5666), 1, + STATE(5635), 1, sym_trailing_return_type, - STATE(5783), 1, + STATE(5798), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - ACTIONS(9718), 2, + ACTIONS(9317), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5924), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, + ACTIONS(9172), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [216804] = 18, + [217146] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9396), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9305), 1, + ACTIONS(9404), 1, + anon_sym_requires, + ACTIONS(9414), 1, anon_sym___asm, - ACTIONS(9308), 1, - anon_sym_LBRACK_LBRACK, - STATE(5526), 1, + STATE(5680), 1, sym_trailing_return_type, - STATE(5729), 1, + STATE(5799), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(9411), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9388), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [216870] = 18, + [217212] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, + ACTIONS(9709), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9196), 1, + ACTIONS(9728), 1, anon_sym_requires, - ACTIONS(9305), 1, + ACTIONS(9737), 1, anon_sym___asm, - STATE(5655), 1, + STATE(5699), 1, sym_trailing_return_type, - STATE(5786), 1, + STATE(5800), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(9193), 2, + ACTIONS(9725), 2, anon_sym_final, anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(9734), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9701), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [216936] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + [217278] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9379), 1, + ACTIONS(9396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9390), 1, - anon_sym_requires, - ACTIONS(9396), 1, - anon_sym___asm, - STATE(5703), 1, + STATE(5646), 1, sym_trailing_return_type, - STATE(5787), 1, + STATE(6069), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(9387), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, - anon_sym_COMMA, + ACTIONS(9388), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [217042] = 18, + anon_sym_try, + [217344] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7312), 1, + ACTIONS(7158), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9715), 1, + ACTIONS(9731), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9721), 1, + ACTIONS(9737), 1, anon_sym___asm, - ACTIONS(9724), 1, - anon_sym_requires, - STATE(5537), 1, + STATE(5568), 1, sym_trailing_return_type, - STATE(5746), 1, + STATE(5758), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9702), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9718), 2, + ACTIONS(9734), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, + ACTIONS(9701), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [217108] = 18, + [217410] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9697), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9705), 1, - anon_sym_requires, - ACTIONS(9721), 1, - anon_sym___asm, - STATE(5708), 1, + STATE(5679), 1, sym_trailing_return_type, - STATE(5788), 1, + STATE(6099), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(9702), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9718), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5924), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, - anon_sym_COMMA, + ACTIONS(9172), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [217174] = 18, + anon_sym_try, + [217476] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, + ACTIONS(9709), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9196), 1, - anon_sym_requires, - STATE(5655), 1, + ACTIONS(9737), 1, + anon_sym___asm, + STATE(5711), 1, sym_trailing_return_type, - STATE(6061), 1, + STATE(5795), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + ACTIONS(9734), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9701), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [217240] = 18, + [217542] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9379), 1, + ACTIONS(9396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9390), 1, - anon_sym_requires, - STATE(5703), 1, + ACTIONS(9414), 1, + anon_sym___asm, + STATE(5646), 1, sym_trailing_return_type, - STATE(6063), 1, + STATE(5793), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9387), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + ACTIONS(9411), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, + ACTIONS(9388), 6, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [217306] = 18, + [217608] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9697), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9705), 1, + ACTIONS(9216), 1, anon_sym_requires, - STATE(5708), 1, + STATE(5635), 1, sym_trailing_return_type, - STATE(6077), 1, + STATE(6096), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9702), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5924), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, + ACTIONS(9172), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [217372] = 18, + [217674] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, + ACTIONS(7105), 1, anon_sym_requires, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7318), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9379), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9396), 1, + ACTIONS(9320), 1, anon_sym___asm, - STATE(5567), 1, + STATE(5679), 1, sym_trailing_return_type, - STATE(5782), 1, + STATE(5792), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(9317), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, + ACTIONS(9172), 6, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [217438] = 18, + [217740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5537), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5539), 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, + [217780] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7287), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9697), 1, + ACTIONS(9396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9700), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(5666), 1, + ACTIONS(9404), 1, + anon_sym_requires, + STATE(5680), 1, sym_trailing_return_type, - STATE(6075), 1, + STATE(6063), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5924), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, + ACTIONS(9388), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [217504] = 18, + [217846] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7283), 1, - anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7318), 1, - anon_sym_DASH_GT, - ACTIONS(9147), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9305), 1, + ACTIONS(7091), 1, anon_sym___asm, - STATE(5671), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(9712), 1, + anon_sym_LBRACK, + ACTIONS(9746), 1, + anon_sym_requires, + STATE(6105), 1, sym_trailing_return_type, - STATE(5779), 1, + STATE(6229), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5540), 2, + ACTIONS(9743), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9701), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - [217570] = 18, + [217911] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7393), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9401), 1, + ACTIONS(9417), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9479), 1, - anon_sym_requires, - STATE(5993), 1, + STATE(6017), 1, sym_trailing_return_type, - STATE(6104), 1, + STATE(6215), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9387), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [217635] = 18, + [217976] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(7375), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(9712), 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, + STATE(6120), 1, sym_trailing_return_type, - STATE(5995), 1, + STATE(6277), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9701), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [217700] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + [218041] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(7474), 1, anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(6016), 1, + STATE(6023), 1, sym_trailing_return_type, - STATE(6280), 1, + STATE(6247), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [217765] = 18, + [218106] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - STATE(6155), 1, + ACTIONS(9749), 1, + anon_sym_requires, + STATE(6001), 1, sym_trailing_return_type, - STATE(6291), 1, + STATE(6305), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9743), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9701), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [217830] = 18, + anon_sym_EQ, + anon_sym_try, + [218171] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9730), 1, - anon_sym_requires, - STATE(6176), 1, + ACTIONS(9731), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9752), 1, + anon_sym___attribute__, + ACTIONS(9755), 1, + anon_sym___attribute, + STATE(5568), 1, sym_trailing_return_type, - STATE(6225), 1, + STATE(6038), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9727), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9701), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [217895] = 18, + anon_sym_EQ, + anon_sym_GT2, + [218236] = 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, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9550), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, + anon_sym___asm, + ACTIONS(9337), 1, anon_sym_requires, - STATE(5980), 1, - sym_trailing_return_type, - STATE(6270), 1, + STATE(5905), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6060), 1, + sym_trailing_return_type, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(9317), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9172), 5, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_try, - [217960] = 18, + [218301] = 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, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9366), 1, + ACTIONS(9414), 1, + anon_sym___asm, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9543), 1, anon_sym_requires, - STATE(6182), 1, - sym_trailing_return_type, - STATE(6214), 1, + STATE(5906), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(5988), 1, + sym_trailing_return_type, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(9411), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9388), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - [218025] = 4, + anon_sym_try, + [218366] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5523), 1, - anon_sym_LBRACE, - ACTIONS(5515), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(5517), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7466), 1, + anon_sym_DASH_GT, + ACTIONS(9712), 1, + anon_sym_LBRACK, + ACTIONS(9731), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9737), 1, + anon_sym___asm, + ACTIONS(9758), 1, + anon_sym_requires, + STATE(5907), 1, + sym__function_attributes_end, + STATE(5989), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9734), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 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_GT2, - [218062] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [218431] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7375), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9715), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9724), 1, - anon_sym_requires, - ACTIONS(9733), 1, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9736), 1, + ACTIONS(9343), 1, anon_sym___attribute, - STATE(5537), 1, + ACTIONS(9349), 1, + anon_sym_requires, + STATE(6025), 1, sym_trailing_return_type, - STATE(6003), 1, + STATE(6066), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9702), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [218127] = 18, + [218496] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(6152), 1, + ACTIONS(9527), 1, + anon_sym___attribute__, + ACTIONS(9530), 1, + anon_sym___attribute, + ACTIONS(9593), 1, + anon_sym_requires, + STATE(6061), 1, sym_trailing_return_type, - STATE(6234), 1, + STATE(6067), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [218192] = 18, + anon_sym_EQ, + anon_sym_GT2, + [218561] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9305), 1, - anon_sym___asm, - ACTIONS(9308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9359), 1, + ACTIONS(9749), 1, anon_sym_requires, - STATE(5887), 1, - sym__function_attributes_end, - STATE(6044), 1, + ACTIONS(9752), 1, + anon_sym___attribute__, + ACTIONS(9755), 1, + anon_sym___attribute, + STATE(6001), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6068), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9193), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(9743), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9701), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [218257] = 18, + anon_sym_EQ, + anon_sym_GT2, + [218626] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9396), 1, - anon_sym___asm, - ACTIONS(9401), 1, + ACTIONS(9417), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9479), 1, - anon_sym_requires, - STATE(5888), 1, - sym__function_attributes_end, - STATE(5993), 1, + ACTIONS(9527), 1, + anon_sym___attribute__, + ACTIONS(9530), 1, + anon_sym___attribute, + STATE(5567), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6035), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9387), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_GT2, + [218691] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5615), 1, anon_sym_LBRACE, - anon_sym_try, - [218322] = 18, + ACTIONS(5537), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(5539), 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, + [218728] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7443), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9715), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9721), 1, - anon_sym___asm, - ACTIONS(9739), 1, + ACTIONS(9593), 1, anon_sym_requires, - STATE(5889), 1, - sym__function_attributes_end, - STATE(6046), 1, + STATE(6061), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6295), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(9702), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9718), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, - anon_sym_COMMA, + ACTIONS(9388), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_try, - [218387] = 18, + [218793] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(7474), 1, anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(5975), 1, + STATE(6051), 1, sym_trailing_return_type, - STATE(6269), 1, + STATE(6253), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [218452] = 18, + [218858] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7445), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9330), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9337), 1, anon_sym_requires, - ACTIONS(9333), 1, - anon_sym___attribute__, - ACTIONS(9336), 1, - anon_sym___attribute, - STATE(6031), 1, + STATE(6060), 1, sym_trailing_return_type, - STATE(6067), 1, + STATE(6109), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, - anon_sym_COMMA, + ACTIONS(9172), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [218517] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [218923] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9518), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - ACTIONS(9550), 1, + ACTIONS(7428), 1, + anon_sym_DASH_GT, + ACTIONS(7474), 1, anon_sym_requires, - STATE(5980), 1, + ACTIONS(9712), 1, + anon_sym_LBRACK, + STATE(5985), 1, sym_trailing_return_type, - STATE(6048), 1, + STATE(6269), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9701), 5, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [218582] = 18, + anon_sym_try, + [218988] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7445), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9733), 1, - anon_sym___attribute__, - ACTIONS(9736), 1, - anon_sym___attribute, - ACTIONS(9742), 1, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9543), 1, anon_sym_requires, - STATE(5992), 1, + STATE(5988), 1, sym_trailing_return_type, - STATE(6049), 1, + STATE(6136), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9727), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, - anon_sym_COMMA, + ACTIONS(9388), 5, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [218647] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [219053] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(7375), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9401), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - STATE(5529), 1, + STATE(6219), 1, sym_trailing_return_type, - STATE(5996), 1, + STATE(6235), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [218712] = 18, + anon_sym_SEMI, + anon_sym_LBRACE, + [219118] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9305), 1, - anon_sym___asm, - ACTIONS(9308), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - STATE(5883), 1, + ACTIONS(9320), 1, + anon_sym___asm, + STATE(5900), 1, sym__function_attributes_end, - STATE(6042), 1, + STATE(6046), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9302), 2, + ACTIONS(9317), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [218777] = 18, + [219183] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7393), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(7395), 1, - anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9308), 1, + ACTIONS(9731), 1, anon_sym_LBRACK_LBRACK, - STATE(6042), 1, + ACTIONS(9758), 1, + anon_sym_requires, + STATE(5989), 1, sym_trailing_return_type, - STATE(6180), 1, + STATE(6163), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9701), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [218842] = 18, + [219248] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9396), 1, + ACTIONS(9414), 1, anon_sym___asm, - ACTIONS(9401), 1, + ACTIONS(9417), 1, anon_sym_LBRACK_LBRACK, - STATE(5884), 1, + STATE(5901), 1, sym__function_attributes_end, - STATE(5994), 1, + STATE(6017), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9393), 2, + ACTIONS(9411), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [218907] = 18, + [219313] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(7466), 1, + anon_sym_DASH_GT, + ACTIONS(9712), 1, + anon_sym_LBRACK, + ACTIONS(9731), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(9737), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7424), 1, + STATE(5902), 1, + sym__function_attributes_end, + STATE(6026), 1, + sym_trailing_return_type, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9734), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [219378] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9491), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9325), 1, anon_sym_requires, - STATE(6111), 1, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + STATE(5526), 1, sym_trailing_return_type, - STATE(6221), 1, + STATE(6040), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [218972] = 18, + anon_sym_EQ, + anon_sym_GT2, + [219443] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7393), 1, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(7395), 1, - anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9401), 1, + ACTIONS(9417), 1, anon_sym_LBRACK_LBRACK, - STATE(5994), 1, + ACTIONS(9423), 1, + anon_sym_requires, + ACTIONS(9527), 1, + anon_sym___attribute__, + ACTIONS(9530), 1, + anon_sym___attribute, + STATE(5527), 1, sym_trailing_return_type, - STATE(6119), 1, + STATE(6041), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [219037] = 18, + anon_sym_EQ, + anon_sym_GT2, + [219508] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(7375), 1, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9715), 1, + ACTIONS(9731), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9733), 1, + ACTIONS(9740), 1, + anon_sym_requires, + ACTIONS(9752), 1, anon_sym___attribute__, - ACTIONS(9736), 1, + ACTIONS(9755), 1, anon_sym___attribute, - STATE(5530), 1, + STATE(5528), 1, sym_trailing_return_type, - STATE(5997), 1, + STATE(6042), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9701), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [219102] = 18, + [219573] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, - anon_sym_LBRACK, - ACTIONS(9742), 1, + ACTIONS(7474), 1, anon_sym_requires, - STATE(5992), 1, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + STATE(6051), 1, sym_trailing_return_type, - STATE(6272), 1, + STATE(6103), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9727), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [219167] = 18, + anon_sym_GT2, + [219638] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(6015), 1, + ACTIONS(9356), 1, + anon_sym_requires, + STATE(6184), 1, sym_trailing_return_type, - STATE(6289), 1, + STATE(6267), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [219232] = 18, + [219703] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7395), 1, - anon_sym_requires, - ACTIONS(7443), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9715), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9721), 1, - anon_sym___asm, - STATE(5885), 1, - sym__function_attributes_end, - STATE(6023), 1, + ACTIONS(9470), 1, + anon_sym_requires, + STATE(6198), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6222), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9718), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9388), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_try, - [219297] = 18, + [219768] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(7445), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9527), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9530), 1, anon_sym___attribute, - STATE(5975), 1, + STATE(6023), 1, sym_trailing_return_type, STATE(6083), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [219362] = 18, + [219833] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(7445), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9518), 1, + ACTIONS(9752), 1, anon_sym___attribute__, - ACTIONS(9521), 1, + ACTIONS(9755), 1, anon_sym___attribute, - STATE(6016), 1, + STATE(5985), 1, sym_trailing_return_type, - STATE(6084), 1, + STATE(6064), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9701), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [219427] = 18, + [219898] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7375), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9311), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(9333), 1, - anon_sym___attribute__, - ACTIONS(9336), 1, - anon_sym___attribute, - STATE(5528), 1, + ACTIONS(9183), 1, + anon_sym_LBRACK, + STATE(6135), 1, sym_trailing_return_type, - STATE(6001), 1, + STATE(6275), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + [219963] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7428), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9349), 1, + anon_sym_requires, + STATE(6025), 1, + sym_trailing_return_type, + STATE(6288), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5562), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [219492] = 18, + anon_sym_try, + [220028] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7393), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9715), 1, + ACTIONS(9731), 1, anon_sym_LBRACK_LBRACK, - STATE(6023), 1, + STATE(6026), 1, sym_trailing_return_type, - STATE(6102), 1, + STATE(6121), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9701), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [219557] = 18, + [220093] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7361), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(7445), 1, + ACTIONS(7447), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9733), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9736), 1, + ACTIONS(9343), 1, anon_sym___attribute, - STATE(6015), 1, + STATE(5565), 1, sym_trailing_return_type, - STATE(6087), 1, + STATE(6062), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [219622] = 18, + [220158] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7393), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9308), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9359), 1, - anon_sym_requires, - STATE(6044), 1, + STATE(6046), 1, sym_trailing_return_type, - STATE(6157), 1, + STATE(6129), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_try, - [219687] = 18, + [220223] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7357), 1, + ACTIONS(7507), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9330), 1, + ACTIONS(9385), 1, anon_sym_requires, - STATE(6031), 1, + STATE(6326), 1, sym_trailing_return_type, - STATE(6264), 1, + STATE(6337), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [219752] = 18, + ACTIONS(9172), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [220287] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7375), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7507), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9401), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9407), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - STATE(5536), 1, + ACTIONS(9399), 1, + anon_sym_LBRACK, + STATE(6331), 1, sym_trailing_return_type, - STATE(6002), 1, + STATE(6402), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9387), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_EQ, anon_sym_GT2, - [219817] = 18, + [220351] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7393), 1, + ACTIONS(7507), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, - anon_sym_LBRACK, - ACTIONS(9715), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9739), 1, + ACTIONS(7594), 1, anon_sym_requires, - STATE(6046), 1, + ACTIONS(9712), 1, + anon_sym_LBRACK, + STATE(6334), 1, sym_trailing_return_type, - STATE(6106), 1, + STATE(6404), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9702), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, - anon_sym_RPAREN, + ACTIONS(9701), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [219882] = 18, + anon_sym_GT2, + [220415] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7507), 1, anon_sym_DASH_GT, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(6123), 1, + ACTIONS(9683), 1, + anon_sym_requires, + STATE(6327), 1, sym_trailing_return_type, - STATE(6207), 1, + STATE(6338), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9388), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - [219947] = 18, + anon_sym_GT2, + [220479] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7536), 1, + ACTIONS(7507), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9745), 1, + ACTIONS(9761), 1, anon_sym_requires, - STATE(6307), 1, + STATE(6328), 1, sym_trailing_return_type, - STATE(6313), 1, + STATE(6340), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9727), 2, + ACTIONS(9743), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 4, + ACTIONS(9701), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [220011] = 15, + [220543] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(5914), 1, + STATE(5921), 1, sym_ms_call_modifier, - STATE(6852), 1, + STATE(6898), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -480259,37 +482161,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [220069] = 15, + [220601] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, sym_primitive_type, - ACTIONS(8338), 1, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(5889), 1, + sym_ms_call_modifier, + STATE(6883), 1, + sym__type_declarator, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 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, + [220659] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(5957), 1, + STATE(5895), 1, sym_ms_call_modifier, - STATE(6833), 1, + STATE(6872), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -480302,83 +482247,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [220127] = 18, + [220717] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7536), 1, + ACTIONS(7507), 1, anon_sym_DASH_GT, - ACTIONS(7538), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(6297), 1, + STATE(6330), 1, sym_trailing_return_type, - STATE(6302), 1, + STATE(6400), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 4, + ACTIONS(9172), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [220191] = 15, + [220781] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(5877), 1, + STATE(5916), 1, sym_ms_call_modifier, - STATE(6867), 1, + STATE(6869), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -480391,279 +482336,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [220249] = 18, + [220839] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7536), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(7538), 1, - anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9399), 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, + ACTIONS(9527), 1, anon_sym___attribute__, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9384), 1, + ACTIONS(9530), 1, + anon_sym___attribute, + ACTIONS(9683), 1, anon_sym_requires, - STATE(6305), 1, - sym_trailing_return_type, - STATE(6311), 1, + STATE(6261), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6327), 1, + sym_trailing_return_type, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(9388), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [220377] = 15, + [220902] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9690), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(9764), 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(5898), 1, - sym_ms_call_modifier, - STATE(6841), 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, - [220435] = 18, + ACTIONS(9766), 1, + anon_sym_LBRACE, + ACTIONS(9770), 1, + anon_sym_requires, + STATE(2828), 1, + sym_template_type, + STATE(3859), 1, + sym_requirement_seq, + STATE(5509), 1, + sym_lambda_capture_specifier, + STATE(6729), 1, + sym__scope_resolution, + STATE(7765), 1, + sym_requires_parameter_list, + ACTIONS(9768), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3875), 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, + [220963] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7536), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9651), 1, + ACTIONS(9314), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9325), 1, anon_sym_requires, - STATE(6306), 1, + STATE(5526), 1, sym_trailing_return_type, - STATE(6312), 1, + STATE(6353), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9172), 3, anon_sym_LPAREN2, - anon_sym_GT2, - [220499] = 18, + anon_sym_LBRACE, + anon_sym_EQ, + [221026] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7536), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(7538), 1, - anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(6296), 1, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9423), 1, + anon_sym_requires, + STATE(5527), 1, sym_trailing_return_type, - STATE(6301), 1, + STATE(6405), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9388), 3, anon_sym_LPAREN2, - anon_sym_GT2, - [220563] = 18, + anon_sym_LBRACE, + anon_sym_EQ, + [221089] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7799), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - STATE(6152), 1, + ACTIONS(9731), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9740), 1, + anon_sym_requires, + STATE(5528), 1, sym_trailing_return_type, - STATE(6223), 1, + STATE(6354), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9725), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9701), 3, anon_sym_LPAREN2, - [220626] = 17, + anon_sym_LBRACE, + anon_sym_EQ, + [221152] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -480672,33 +482569,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9580), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9681), 1, sym_identifier, - ACTIONS(9748), 1, + ACTIONS(9772), 1, anon_sym_LPAREN2, - ACTIONS(9750), 1, + ACTIONS(9774), 1, anon_sym_LBRACE, - ACTIONS(9754), 1, + ACTIONS(9778), 1, anon_sym_requires, - STATE(2673), 1, + STATE(2713), 1, sym_template_type, - STATE(3424), 1, + STATE(3710), 1, sym_requirement_seq, - STATE(5494), 1, + STATE(5502), 1, sym_lambda_capture_specifier, - STATE(6713), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(7755), 1, + STATE(7799), 1, sym_requires_parameter_list, - ACTIONS(9752), 2, + ACTIONS(9776), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3425), 8, + STATE(3630), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -480707,97 +482604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [220687] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7538), 1, - anon_sym_requires, - ACTIONS(7768), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - STATE(6253), 1, - sym__function_attributes_end, - STATE(6296), 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(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, - ACTIONS(9371), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [220750] = 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(9700), 1, - anon_sym_LBRACK, - ACTIONS(9730), 1, - anon_sym_requires, - ACTIONS(9733), 1, - anon_sym___attribute__, - ACTIONS(9736), 1, - anon_sym___attribute, - STATE(6176), 1, - sym_trailing_return_type, - STATE(6233), 1, - sym__function_attributes_end, - STATE(6870), 1, - sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9727), 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(6133), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9689), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - [220813] = 17, + [221213] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -480806,33 +482613,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9498), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9661), 1, sym_identifier, - ACTIONS(9756), 1, + ACTIONS(9780), 1, anon_sym_LPAREN2, - ACTIONS(9758), 1, + ACTIONS(9782), 1, anon_sym_LBRACE, - ACTIONS(9762), 1, + ACTIONS(9786), 1, anon_sym_requires, - STATE(2684), 1, - sym_template_type, - STATE(3704), 1, + STATE(3378), 1, sym_requirement_seq, + STATE(3603), 1, + sym_template_type, STATE(5495), 1, sym_lambda_capture_specifier, - STATE(6728), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(7904), 1, + STATE(7855), 1, sym_requires_parameter_list, - ACTIONS(9760), 2, + ACTIONS(9784), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3716), 8, + STATE(4282), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -480841,7 +482648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [220874] = 17, + [221274] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -480850,33 +482657,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9437), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(9671), 1, sym_identifier, - ACTIONS(9764), 1, + ACTIONS(9780), 1, anon_sym_LPAREN2, - ACTIONS(9766), 1, + ACTIONS(9782), 1, anon_sym_LBRACE, - ACTIONS(9770), 1, + ACTIONS(9786), 1, anon_sym_requires, - STATE(1784), 1, + STATE(1835), 1, sym_template_type, - STATE(3268), 1, + STATE(3378), 1, sym_requirement_seq, - STATE(5479), 1, + STATE(5495), 1, sym_lambda_capture_specifier, - STATE(6699), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(7742), 1, + STATE(7855), 1, sym_requires_parameter_list, - ACTIONS(9768), 2, + ACTIONS(9788), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4253), 8, + STATE(4252), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -480885,136 +482692,214 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [220935] = 18, + [221335] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7876), 1, + anon_sym_STAR, + ACTIONS(7878), 1, + anon_sym_AMP_AMP, + ACTIONS(7880), 1, + anon_sym_AMP, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8380), 1, + anon_sym___attribute, + STATE(2899), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6144), 1, + sym__abstract_declarator, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 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, + [221386] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7896), 1, + anon_sym_STAR, + ACTIONS(7898), 1, + anon_sym_AMP_AMP, + ACTIONS(7900), 1, + anon_sym_AMP, + ACTIONS(8380), 1, + anon_sym___asm, + STATE(2945), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6218), 1, + sym__abstract_declarator, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 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, + [221437] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(7905), 1, + anon_sym_STAR, + ACTIONS(7907), 1, + anon_sym_AMP_AMP, + ACTIONS(7909), 1, + anon_sym_AMP, + ACTIONS(8380), 1, + anon_sym___asm, + STATE(2947), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6179), 1, + sym__abstract_declarator, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 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, + [221488] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7447), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(7799), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9733), 1, + ACTIONS(9527), 1, anon_sym___attribute__, - ACTIONS(9736), 1, + ACTIONS(9530), 1, anon_sym___attribute, - STATE(6155), 1, - sym_trailing_return_type, - STATE(6224), 1, + STATE(6256), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6331), 1, + sym_trailing_return_type, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 3, + ACTIONS(9388), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - [220998] = 18, + anon_sym_GT2, + [221551] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7538), 1, - anon_sym_requires, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9343), 1, anon_sym___attribute, - STATE(6252), 1, + ACTIONS(9385), 1, + anon_sym_requires, + STATE(6260), 1, sym__function_attributes_end, - STATE(6295), 1, + STATE(6326), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9172), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [221061] = 12, - ACTIONS(3), 1, - sym_comment, - 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(8362), 1, - anon_sym___asm, - STATE(3006), 1, - sym_parameter_list, - STATE(5953), 1, - sym__function_declarator_seq, - STATE(6185), 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_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, - [221112] = 17, + [221614] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -481023,33 +482908,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9459), 1, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9675), 1, sym_identifier, - ACTIONS(9772), 1, + ACTIONS(9790), 1, anon_sym_LPAREN2, - ACTIONS(9774), 1, + ACTIONS(9792), 1, anon_sym_LBRACE, - ACTIONS(9778), 1, + ACTIONS(9796), 1, anon_sym_requires, - STATE(2856), 1, + STATE(2611), 1, sym_template_type, - STATE(3924), 1, + STATE(4321), 1, sym_requirement_seq, - STATE(5492), 1, + STATE(5508), 1, sym_lambda_capture_specifier, - STATE(6708), 1, + STATE(6744), 1, sym__scope_resolution, - STATE(7783), 1, + STATE(7878), 1, sym_requires_parameter_list, - ACTIONS(9776), 2, + ACTIONS(9794), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3938), 8, + STATE(4904), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -481058,758 +482943,502 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [221173] = 18, + [221675] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7738), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9308), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9311), 1, + ACTIONS(9752), 1, + anon_sym___attribute__, + ACTIONS(9755), 1, + anon_sym___attribute, + ACTIONS(9761), 1, anon_sym_requires, - STATE(5528), 1, - sym_trailing_return_type, - STATE(6349), 1, + STATE(6262), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6328), 1, + sym_trailing_return_type, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9193), 2, + ACTIONS(9743), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9701), 3, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [221236] = 18, + anon_sym_GT2, + [221738] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7738), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9401), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9407), 1, + ACTIONS(9340), 1, + anon_sym___attribute__, + ACTIONS(9343), 1, + anon_sym___attribute, + ACTIONS(9356), 1, anon_sym_requires, - STATE(5536), 1, + STATE(6184), 1, sym_trailing_return_type, - STATE(6350), 1, + STATE(6232), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9387), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 3, + ACTIONS(9172), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [221299] = 18, + [221801] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9470), 1, + anon_sym_requires, + ACTIONS(9527), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9530), 1, anon_sym___attribute, - ACTIONS(9366), 1, - anon_sym_requires, - STATE(6182), 1, + STATE(6198), 1, sym_trailing_return_type, - STATE(6231), 1, + STATE(6233), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9388), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [221362] = 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(9412), 1, - anon_sym_COLON_COLON, - ACTIONS(9674), 1, - sym_identifier, - ACTIONS(9764), 1, - anon_sym_LPAREN2, - ACTIONS(9766), 1, - anon_sym_LBRACE, - ACTIONS(9770), 1, - anon_sym_requires, - STATE(3268), 1, - sym_requirement_seq, - STATE(3638), 1, - sym_template_type, - STATE(5479), 1, - sym_lambda_capture_specifier, - STATE(6732), 1, - sym__scope_resolution, - STATE(7742), 1, - sym_requires_parameter_list, - ACTIONS(9780), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4288), 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, - [221423] = 18, + [221864] = 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(7314), 1, - anon_sym_requires, - ACTIONS(7738), 1, - anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym_LBRACK, - ACTIONS(9308), 1, + ACTIONS(5496), 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, - [221486] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7738), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9715), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9724), 1, + ACTIONS(9746), 1, anon_sym_requires, - STATE(5537), 1, + ACTIONS(9752), 1, + anon_sym___attribute__, + ACTIONS(9755), 1, + anon_sym___attribute, + STATE(6105), 1, sym_trailing_return_type, - STATE(6351), 1, + STATE(6234), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9702), 2, + ACTIONS(9743), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 3, + ACTIONS(9701), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [221549] = 18, + [221927] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(7314), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(7738), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9401), 1, - anon_sym_LBRACK_LBRACK, - STATE(5529), 1, + ACTIONS(9527), 1, + anon_sym___attribute__, + ACTIONS(9530), 1, + anon_sym___attribute, + STATE(6219), 1, sym_trailing_return_type, - STATE(6346), 1, + STATE(6227), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 3, + ACTIONS(9388), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_EQ, - [221612] = 18, + [221990] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7538), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9733), 1, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9736), 1, + ACTIONS(9343), 1, anon_sym___attribute, - STATE(6254), 1, + STATE(6255), 1, sym__function_attributes_end, - STATE(6297), 1, + STATE(6330), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 3, + ACTIONS(9172), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [221675] = 18, + [222053] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7768), 1, + ACTIONS(7594), 1, + anon_sym_requires, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9752), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9755), 1, anon_sym___attribute, - ACTIONS(9384), 1, - anon_sym_requires, STATE(6257), 1, sym__function_attributes_end, - STATE(6305), 1, + STATE(6334), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9327), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9701), 3, anon_sym_COMMA, anon_sym_LPAREN2, 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, + [222116] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7314), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(7738), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9715), 1, + ACTIONS(9314), 1, anon_sym_LBRACK_LBRACK, - STATE(5530), 1, + STATE(5565), 1, sym_trailing_return_type, - STATE(6347), 1, + STATE(6349), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 3, + ACTIONS(9172), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_EQ, - [221852] = 12, + [222179] = 18, ACTIONS(3), 1, sym_comment, - 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(8362), 1, + ACTIONS(43), 1, anon_sym___attribute, - 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, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7145), 1, 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, + ACTIONS(7160), 1, anon_sym_requires, - [221903] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7799), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9491), 1, - anon_sym_requires, - ACTIONS(9518), 1, - anon_sym___attribute__, - ACTIONS(9521), 1, - anon_sym___attribute, - STATE(6111), 1, + ACTIONS(9417), 1, + anon_sym_LBRACK_LBRACK, + STATE(5567), 1, sym_trailing_return_type, - STATE(6232), 1, + STATE(6350), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(6026), 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, - ACTIONS(9371), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - [221966] = 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(9530), 1, - anon_sym_COLON_COLON, - ACTIONS(9658), 1, - sym_identifier, - ACTIONS(9782), 1, - anon_sym_LPAREN2, - ACTIONS(9784), 1, - anon_sym_LBRACE, - ACTIONS(9788), 1, - anon_sym_requires, - STATE(1943), 1, - sym_template_type, - STATE(2486), 1, - sym_requirement_seq, - STATE(5485), 1, - sym_lambda_capture_specifier, - STATE(6695), 1, - sym__scope_resolution, - STATE(7805), 1, - sym_requires_parameter_list, - ACTIONS(9786), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2489), 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, - [222027] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7768), 1, - anon_sym_DASH_GT, - ACTIONS(9700), 1, - anon_sym_LBRACK, - ACTIONS(9733), 1, - anon_sym___attribute__, - ACTIONS(9736), 1, - anon_sym___attribute, - ACTIONS(9745), 1, - anon_sym_requires, - STATE(6259), 1, - sym__function_attributes_end, - STATE(6307), 1, - sym_trailing_return_type, - STATE(6870), 1, - sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9727), 2, - anon_sym_final, - anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 3, - anon_sym_COMMA, + ACTIONS(9388), 3, anon_sym_LPAREN2, - anon_sym_GT2, - [222090] = 18, + anon_sym_LBRACE, + anon_sym_EQ, + [222242] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7768), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9518), 1, + ACTIONS(9752), 1, anon_sym___attribute__, - ACTIONS(9521), 1, + ACTIONS(9755), 1, anon_sym___attribute, - ACTIONS(9651), 1, - anon_sym_requires, - STATE(6258), 1, - sym__function_attributes_end, - STATE(6306), 1, + STATE(6120), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6228), 1, + sym__function_attributes_end, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9488), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 3, + ACTIONS(9701), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_GT2, - [222153] = 18, + [222305] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7447), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9333), 1, + ACTIONS(9340), 1, anon_sym___attribute__, - ACTIONS(9336), 1, + ACTIONS(9343), 1, anon_sym___attribute, - STATE(6123), 1, + STATE(6135), 1, sym_trailing_return_type, - STATE(6222), 1, + STATE(6226), 1, sym__function_attributes_end, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9172), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [222216] = 17, + [222368] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -481818,33 +483447,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9612), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9664), 1, + ACTIONS(9677), 1, sym_identifier, - ACTIONS(9790), 1, + ACTIONS(9798), 1, anon_sym_LPAREN2, - ACTIONS(9792), 1, + ACTIONS(9800), 1, anon_sym_LBRACE, - ACTIONS(9796), 1, + ACTIONS(9804), 1, anon_sym_requires, - STATE(2598), 1, + STATE(2671), 1, sym_template_type, - STATE(4308), 1, + STATE(3584), 1, sym_requirement_seq, - STATE(5489), 1, + STATE(5506), 1, sym_lambda_capture_specifier, - STATE(6694), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7962), 1, + STATE(7999), 1, sym_requires_parameter_list, - ACTIONS(9794), 2, + ACTIONS(9802), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4849), 8, + STATE(3413), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -481853,159 +483482,158 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [222277] = 24, + [222429] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8521), 1, - anon_sym_COMMA, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(9800), 1, - anon_sym_SEMI, - ACTIONS(9802), 1, - anon_sym_COLON, - ACTIONS(9804), 1, - anon_sym_LBRACE, - ACTIONS(9806), 1, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7797), 1, + anon_sym_DASH_GT, + ACTIONS(9712), 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, + ACTIONS(9731), 1, + anon_sym_LBRACK_LBRACK, + STATE(5568), 1, + sym_trailing_return_type, + STATE(6351), 1, + sym__function_attributes_end, + STATE(6904), 1, + sym_gnu_asm_expression, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(5472), 2, sym_attribute_specifier, - STATE(6430), 2, + aux_sym_type_definition_repeat1, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [222351] = 18, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_EQ, + [222492] = 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(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9669), 1, + sym_identifier, + ACTIONS(9806), 1, + anon_sym_LPAREN2, + ACTIONS(9808), 1, + anon_sym_LBRACE, + ACTIONS(9812), 1, + anon_sym_requires, + STATE(1966), 1, + sym_template_type, + STATE(2574), 1, + sym_requirement_seq, + STATE(5488), 1, + sym_lambda_capture_specifier, + STATE(6762), 1, + sym__scope_resolution, + STATE(7840), 1, + sym_requires_parameter_list, + ACTIONS(9810), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2575), 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, + [222553] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(7924), 1, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(9379), 1, + ACTIONS(9396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(6432), 1, + STATE(6442), 1, sym__function_attributes_end, - STATE(6600), 1, + STATE(6626), 1, sym_trailing_return_type, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9371), 2, + ACTIONS(9388), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - [222413] = 14, - 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(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, + [222615] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(9814), 2, + ACTIONS(9816), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(4306), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5548), 2, + STATE(5551), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9812), 15, + ACTIONS(9814), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -482021,696 +483649,830 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [222509] = 18, + [222657] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7918), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7920), 1, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9491), 1, - anon_sym_requires, - STATE(6111), 1, + STATE(6120), 1, sym_trailing_return_type, - STATE(6505), 1, + STATE(6536), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9371), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9488), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + ACTIONS(9701), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - [222571] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - 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, - 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, - [222613] = 18, + [222719] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9366), 1, + ACTIONS(9746), 1, anon_sym_requires, - STATE(6502), 1, + STATE(6485), 1, sym__function_attributes_end, - STATE(6651), 1, + STATE(6659), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - ACTIONS(9139), 2, + ACTIONS(9701), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(5455), 2, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - [222675] = 18, + [222781] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(9147), 1, + ACTIONS(9396), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9632), 1, + ACTIONS(9714), 1, anon_sym_requires, - STATE(6398), 1, + STATE(6408), 1, sym__function_attributes_end, - STATE(6575), 1, + STATE(6579), 1, sym_trailing_return_type, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9139), 2, + ACTIONS(9388), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9193), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5927), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - [222737] = 18, + [222843] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9820), 1, + anon_sym_SEMI, + ACTIONS(9822), 1, + anon_sym_COLON, + ACTIONS(9824), 1, + anon_sym_LBRACE, + ACTIONS(9826), 1, + anon_sym_LBRACK, + ACTIONS(9828), 1, + anon_sym_EQ, + ACTIONS(9830), 1, + anon_sym_try, + STATE(2003), 1, + sym_pure_virtual_clause, + STATE(2030), 1, + sym_try_statement, + STATE(2209), 1, + sym_compound_statement, + STATE(2220), 1, + sym_default_method_clause, + STATE(2222), 1, + sym_delete_method_clause, + STATE(2917), 1, + sym_parameter_list, + STATE(6512), 1, + sym__function_declarator_seq, + STATE(6908), 1, + sym_bitfield_clause, + STATE(6909), 1, + sym_initializer_list, + STATE(6913), 1, + aux_sym_field_declaration_repeat1, + STATE(8835), 1, + sym_attribute_specifier, + STATE(6477), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [222917] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(9834), 2, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7299), 1, + STATE(4325), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5564), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9832), 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, + [222959] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9491), 1, + ACTIONS(9356), 1, anon_sym_requires, - STATE(6478), 1, - sym__function_attributes_end, - STATE(6674), 1, + STATE(6184), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6507), 1, + sym__function_attributes_end, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - ACTIONS(9371), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5455), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - [222799] = 18, + [223021] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7918), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7920), 1, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(6123), 1, + ACTIONS(9470), 1, + anon_sym_requires, + STATE(6198), 1, sym_trailing_return_type, - STATE(6490), 1, + STATE(6538), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9139), 2, + ACTIONS(9388), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(5540), 2, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - [222861] = 18, + [223083] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7299), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7424), 1, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9709), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9730), 1, + ACTIONS(9836), 1, anon_sym_requires, - STATE(6514), 1, + STATE(6409), 1, sym__function_attributes_end, - STATE(6647), 1, + STATE(6580), 1, sym_trailing_return_type, - STATE(6870), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(9701), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + ACTIONS(9725), 2, anon_sym_final, anon_sym_override, - ACTIONS(9689), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - STATE(5455), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5507), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - [222923] = 18, + [223145] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - anon_sym___asm, - ACTIONS(7283), 1, - anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7918), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7920), 1, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(6152), 1, - sym_trailing_return_type, - STATE(6491), 1, + ACTIONS(9356), 1, + anon_sym_requires, + STATE(6504), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6661), 1, + sym_trailing_return_type, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - ACTIONS(9371), 2, + ACTIONS(9172), 2, anon_sym_LPAREN2, - anon_sym_COLON, - STATE(5540), 2, + anon_sym_LBRACE, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5730), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - [222985] = 18, + [223207] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, - anon_sym_DASH_GT, - ACTIONS(9379), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9382), 1, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9708), 1, + ACTIONS(9746), 1, anon_sym_requires, - STATE(6399), 1, - sym__function_attributes_end, - STATE(6580), 1, + STATE(6105), 1, sym_trailing_return_type, - STATE(6850), 1, + STATE(6519), 1, + sym__function_attributes_end, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9371), 2, + ACTIONS(9701), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9387), 2, + ACTIONS(9743), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5934), 2, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - [223047] = 18, + [223269] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7447), 1, + ACTIONS(7923), 1, + anon_sym_DASH_GT, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(7918), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(6155), 1, - sym_trailing_return_type, - STATE(6494), 1, + STATE(6440), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6625), 1, + sym_trailing_return_type, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7359), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9689), 2, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9172), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5730), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - [223109] = 24, + [223331] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7918), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9802), 1, + ACTIONS(9822), 1, anon_sym_COLON, - ACTIONS(9806), 1, + ACTIONS(9826), 1, anon_sym_LBRACK, - ACTIONS(9820), 1, + ACTIONS(9839), 1, anon_sym_SEMI, - ACTIONS(9822), 1, + ACTIONS(9841), 1, anon_sym_LBRACE, - ACTIONS(9824), 1, + ACTIONS(9843), 1, anon_sym_EQ, - ACTIONS(9826), 1, + ACTIONS(9845), 1, anon_sym_try, - STATE(2044), 1, + STATE(2036), 1, sym_compound_statement, - STATE(2045), 1, + STATE(2067), 1, sym_default_method_clause, - STATE(2046), 1, + STATE(2138), 1, sym_delete_method_clause, - STATE(2047), 1, + STATE(2176), 1, sym_pure_virtual_clause, - STATE(2048), 1, + STATE(2192), 1, sym_try_statement, - STATE(2902), 1, + STATE(2917), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6512), 1, sym__function_declarator_seq, - STATE(6939), 1, + STATE(6926), 1, sym_bitfield_clause, - STATE(6940), 1, + STATE(6939), 1, sym_initializer_list, - STATE(6947), 1, + STATE(6968), 1, aux_sym_field_declaration_repeat1, - STATE(8074), 1, + STATE(8342), 1, sym_attribute_specifier, - STATE(6430), 2, + STATE(6477), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [223183] = 18, + [223405] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, + anon_sym_STAR, + ACTIONS(8431), 1, + anon_sym_AMP_AMP, + ACTIONS(8433), 1, + anon_sym_AMP, + STATE(6073), 1, + sym_ms_call_modifier, + STATE(6828), 1, + sym__field_declarator, + STATE(6907), 1, + sym_operator_name, + STATE(8258), 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(6525), 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, + [223459] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7918), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7920), 1, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9366), 1, - anon_sym_requires, - STATE(6182), 1, + STATE(6135), 1, sym_trailing_return_type, - STATE(6500), 1, + STATE(6528), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9139), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9327), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + ACTIONS(9172), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - [223245] = 18, + [223521] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(9697), 1, + ACTIONS(9399), 1, + anon_sym_LBRACK, + STATE(6219), 1, + sym_trailing_return_type, + STATE(6530), 1, + sym__function_attributes_end, + STATE(6897), 1, + sym_gnu_asm_expression, + ACTIONS(7089), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9388), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5524), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + [223583] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9700), 1, + ACTIONS(7091), 1, + anon_sym___asm, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9828), 1, + ACTIONS(9470), 1, anon_sym_requires, - STATE(6400), 1, + STATE(6499), 1, sym__function_attributes_end, - STATE(6596), 1, + STATE(6668), 1, sym_trailing_return_type, - STATE(6850), 1, + STATE(6904), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9689), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - ACTIONS(9702), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + ACTIONS(9388), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + STATE(5472), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5562), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5924), 2, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - [223307] = 18, + [223645] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(7924), 1, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(9697), 1, + ACTIONS(9709), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - STATE(6433), 1, + STATE(6443), 1, sym__function_attributes_end, - STATE(6602), 1, + STATE(6627), 1, sym_trailing_return_type, - STATE(6850), 1, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9689), 2, + ACTIONS(9701), 2, anon_sym_LPAREN2, anon_sym_COLON, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5730), 2, + STATE(5747), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - [223369] = 24, + [223707] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(7918), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9802), 1, + ACTIONS(9822), 1, anon_sym_COLON, - ACTIONS(9806), 1, + ACTIONS(9826), 1, anon_sym_LBRACK, - ACTIONS(9831), 1, + ACTIONS(9847), 1, anon_sym_SEMI, - ACTIONS(9833), 1, + ACTIONS(9849), 1, anon_sym_LBRACE, - ACTIONS(9835), 1, + ACTIONS(9851), 1, anon_sym_EQ, - ACTIONS(9837), 1, + ACTIONS(9853), 1, anon_sym_try, - STATE(1760), 1, + STATE(1809), 1, sym_compound_statement, - STATE(1769), 1, + STATE(1813), 1, sym_default_method_clause, - STATE(1770), 1, + STATE(1814), 1, sym_delete_method_clause, - STATE(1771), 1, + STATE(1815), 1, sym_pure_virtual_clause, - STATE(1772), 1, + STATE(1816), 1, sym_try_statement, - STATE(2902), 1, + STATE(2917), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6512), 1, sym__function_declarator_seq, - STATE(6882), 1, + STATE(6906), 1, sym_bitfield_clause, - STATE(6907), 1, + STATE(6947), 1, sym_initializer_list, - STATE(6915), 1, + STATE(6977), 1, aux_sym_field_declaration_repeat1, - STATE(8349), 1, + STATE(8576), 1, sym_attribute_specifier, - STATE(6430), 2, + STATE(6477), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [223443] = 12, + [223781] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(7967), 1, + ACTIONS(7989), 1, anon_sym_STAR, - ACTIONS(7969), 1, + ACTIONS(7991), 1, anon_sym_AMP_AMP, - ACTIONS(7971), 1, + ACTIONS(7993), 1, anon_sym_AMP, - ACTIONS(8362), 1, + ACTIONS(8380), 1, anon_sym___asm, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6238), 1, + STATE(6240), 1, sym__abstract_declarator, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8360), 10, + ACTIONS(8378), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -482721,690 +484483,683 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [223493] = 18, + [223831] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7091), 1, anon_sym___asm, - ACTIONS(7283), 1, + ACTIONS(7162), 1, anon_sym___attribute__, - ACTIONS(7285), 1, + ACTIONS(7164), 1, anon_sym___attribute, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(7924), 1, - anon_sym_requires, - ACTIONS(9147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9150), 1, - anon_sym_LBRACK, - STATE(6431), 1, - sym__function_attributes_end, - STATE(6598), 1, - sym_trailing_return_type, - 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__, - ACTIONS(9139), 2, - anon_sym_LPAREN2, - anon_sym_COLON, - 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, - [223555] = 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(7918), 1, + ACTIONS(9180), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7920), 1, - anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9730), 1, + ACTIONS(9651), 1, anon_sym_requires, - STATE(6176), 1, - sym_trailing_return_type, - STATE(6509), 1, + STATE(6407), 1, sym__function_attributes_end, - STATE(6850), 1, + STATE(6578), 1, + sym_trailing_return_type, + STATE(6897), 1, sym_gnu_asm_expression, - ACTIONS(7069), 2, + ACTIONS(7089), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9689), 2, + ACTIONS(9172), 2, anon_sym_LPAREN2, anon_sym_COLON, - ACTIONS(9727), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5540), 2, + STATE(5524), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(5730), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(5747), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - [223617] = 17, + [223893] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9839), 1, + ACTIONS(9855), 1, anon_sym_LBRACE, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - STATE(5476), 1, - sym_template_parameter_list, - STATE(5649), 1, + STATE(2462), 1, sym_compound_statement, - STATE(5929), 1, + STATE(5490), 1, + sym_template_parameter_list, + STATE(5954), 1, sym_parameter_list, - STATE(7736), 1, + STATE(7924), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [223676] = 17, + [223952] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, + ACTIONS(9861), 1, anon_sym_LBRACE, - ACTIONS(9847), 1, + ACTIONS(9863), 1, anon_sym_requires, - STATE(3624), 1, - sym_compound_statement, - STATE(5628), 1, + STATE(5609), 1, sym_requires_clause, - STATE(5929), 1, + STATE(5664), 1, + sym_compound_statement, + STATE(5954), 1, sym_parameter_list, - STATE(7943), 1, + STATE(7856), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [223735] = 17, + [224011] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, - anon_sym_DASH_GT, - ACTIONS(9849), 1, + ACTIONS(9855), 1, anon_sym_LBRACE, - STATE(1639), 1, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(9863), 1, + anon_sym_requires, + STATE(2551), 1, sym_compound_statement, - STATE(5475), 1, - sym_template_parameter_list, - STATE(5929), 1, + STATE(5631), 1, + sym_requires_clause, + STATE(5954), 1, sym_parameter_list, - STATE(8004), 1, + STATE(8054), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [223794] = 17, + [224070] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(5042), 1, + anon_sym_LT, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, - anon_sym_requires, - ACTIONS(9849), 1, - anon_sym_LBRACE, - STATE(1631), 1, + STATE(3363), 1, sym_compound_statement, - STATE(5585), 1, - sym_requires_clause, - STATE(5929), 1, + STATE(5494), 1, + sym_template_parameter_list, + STATE(5954), 1, sym_parameter_list, - STATE(8052), 1, + STATE(7845), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [223853] = 17, + [224129] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9839), 1, - anon_sym_LBRACE, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(9863), 1, anon_sym_requires, - STATE(5565), 1, + ACTIONS(9865), 1, + anon_sym_LBRACE, + STATE(3325), 1, sym_compound_statement, - STATE(5607), 1, + STATE(5686), 1, sym_requires_clause, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7817), 1, + STATE(7731), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [223912] = 17, + [224188] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5034), 1, - anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - STATE(3353), 1, + ACTIONS(9863), 1, + anon_sym_requires, + ACTIONS(9867), 1, + anon_sym_LBRACE, + STATE(4285), 1, sym_compound_statement, - STATE(5478), 1, - sym_template_parameter_list, - STATE(5929), 1, + STATE(5688), 1, + sym_requires_clause, + STATE(5954), 1, sym_parameter_list, - STATE(7691), 1, + STATE(7920), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [223971] = 17, + [224247] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(9863), 1, anon_sym_requires, - STATE(3306), 1, + STATE(3325), 1, sym_compound_statement, - STATE(5632), 1, + STATE(5619), 1, sym_requires_clause, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(8010), 1, + STATE(7982), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224030] = 17, + [224306] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9851), 1, + ACTIONS(9865), 1, anon_sym_LBRACE, - STATE(3353), 1, + STATE(3363), 1, sym_compound_statement, - STATE(5491), 1, + STATE(5492), 1, sym_template_parameter_list, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7995), 1, + STATE(7883), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224089] = 17, + [224365] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(5034), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - STATE(1639), 1, + STATE(1645), 1, sym_compound_statement, - STATE(5481), 1, + STATE(5497), 1, sym_template_parameter_list, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7723), 1, + STATE(7782), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224148] = 17, + [224424] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(9863), 1, anon_sym_requires, - STATE(1631), 1, + STATE(1642), 1, sym_compound_statement, - STATE(5641), 1, + STATE(5626), 1, sym_requires_clause, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7737), 1, + STATE(7862), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224207] = 17, + [224483] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9853), 1, + ACTIONS(9869), 1, anon_sym_LBRACE, - STATE(5483), 1, + STATE(5499), 1, sym_template_parameter_list, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(6018), 1, + STATE(6000), 1, sym_compound_statement, - STATE(7775), 1, + STATE(7955), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224266] = 17, + [224542] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(9863), 1, anon_sym_requires, - ACTIONS(9853), 1, + ACTIONS(9869), 1, anon_sym_LBRACE, - STATE(5658), 1, + STATE(5627), 1, sym_requires_clause, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(6038), 1, + STATE(6002), 1, sym_compound_statement, - STATE(7784), 1, + STATE(7973), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224325] = 17, + [224601] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8066), 1, + anon_sym_STAR, + ACTIONS(8068), 1, + anon_sym_AMP_AMP, + ACTIONS(8070), 1, + anon_sym_AMP, + ACTIONS(8380), 1, + anon_sym___attribute, + STATE(3079), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6360), 1, + sym__abstract_declarator, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 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, + [224650] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(9863), 1, anon_sym_requires, - ACTIONS(9855), 1, + ACTIONS(9871), 1, anon_sym_LBRACE, - STATE(3502), 1, + STATE(1642), 1, sym_compound_statement, - STATE(5615), 1, + STATE(5596), 1, sym_requires_clause, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7934), 1, + STATE(7882), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224384] = 17, + [224709] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9857), 1, + ACTIONS(9873), 1, anon_sym_LBRACE, - STATE(2497), 1, + STATE(3634), 1, sym_compound_statement, - STATE(5487), 1, + STATE(5511), 1, sym_template_parameter_list, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7824), 1, + STATE(7809), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224443] = 3, + [224768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9861), 3, + ACTIONS(9877), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9859), 20, + ACTIONS(9875), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483425,380 +485180,580 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [224474] = 17, + [224799] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5042), 1, + anon_sym_LT, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, - anon_sym_requires, - ACTIONS(9857), 1, + ACTIONS(9871), 1, anon_sym_LBRACE, - STATE(2560), 1, + STATE(1645), 1, sym_compound_statement, - STATE(5612), 1, - sym_requires_clause, - STATE(5929), 1, + STATE(5501), 1, + sym_template_parameter_list, + STATE(5954), 1, sym_parameter_list, - STATE(7956), 1, + STATE(7823), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224533] = 12, - ACTIONS(3), 1, - sym_comment, - 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, + [224858] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9863), 1, + ACTIONS(9861), 1, anon_sym_LBRACE, - STATE(4280), 1, - sym_compound_statement, - STATE(5490), 1, + STATE(5489), 1, sym_template_parameter_list, - STATE(5929), 1, + STATE(5640), 1, + sym_compound_statement, + STATE(5954), 1, sym_parameter_list, - STATE(7968), 1, + STATE(7841), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224641] = 17, + [224917] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5042), 1, + anon_sym_LT, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, - anon_sym_requires, - ACTIONS(9863), 1, + ACTIONS(9879), 1, anon_sym_LBRACE, - STATE(4299), 1, + STATE(3449), 1, sym_compound_statement, - STATE(5661), 1, - sym_requires_clause, - STATE(5929), 1, + STATE(5510), 1, + sym_template_parameter_list, + STATE(5954), 1, sym_parameter_list, - STATE(7703), 1, + STATE(8027), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224700] = 17, + [224976] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, + ACTIONS(9863), 1, anon_sym_requires, - ACTIONS(9851), 1, + ACTIONS(9881), 1, anon_sym_LBRACE, - STATE(3306), 1, + STATE(3900), 1, sym_compound_statement, - STATE(5654), 1, + STATE(5712), 1, sym_requires_clause, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7941), 1, + STATE(7916), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224759] = 17, + [225035] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9865), 1, + ACTIONS(9867), 1, anon_sym_LBRACE, - STATE(3937), 1, + STATE(4308), 1, sym_compound_statement, STATE(5493), 1, sym_template_parameter_list, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7793), 1, + STATE(7768), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224818] = 17, + [225094] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5042), 1, + anon_sym_LT, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9847), 1, - anon_sym_requires, - ACTIONS(9865), 1, + ACTIONS(9881), 1, anon_sym_LBRACE, - STATE(3909), 1, + STATE(3864), 1, sym_compound_statement, - STATE(5694), 1, - sym_requires_clause, - STATE(5929), 1, + STATE(5507), 1, + sym_template_parameter_list, + STATE(5954), 1, sym_parameter_list, - STATE(7820), 1, + STATE(7774), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224877] = 17, + [225153] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9855), 1, + ACTIONS(9863), 1, + anon_sym_requires, + ACTIONS(9879), 1, anon_sym_LBRACE, - STATE(3439), 1, + STATE(3438), 1, sym_compound_statement, - STATE(5484), 1, - sym_template_parameter_list, - STATE(5929), 1, + STATE(5735), 1, + sym_requires_clause, + STATE(5954), 1, sym_parameter_list, - STATE(7857), 1, + STATE(7994), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224936] = 17, + [225212] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_LT, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9845), 1, + ACTIONS(9863), 1, + anon_sym_requires, + ACTIONS(9873), 1, anon_sym_LBRACE, - STATE(3736), 1, + STATE(3677), 1, sym_compound_statement, - STATE(5473), 1, - sym_template_parameter_list, - STATE(5929), 1, + STATE(5585), 1, + sym_requires_clause, + STATE(5954), 1, sym_parameter_list, - STATE(7909), 1, + STATE(7889), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [224995] = 14, + [225271] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + ACTIONS(9786), 1, + anon_sym_requires, + ACTIONS(9883), 1, + anon_sym_LPAREN2, + STATE(1946), 1, + sym_template_type, + STATE(5491), 1, + sym_lambda_capture_specifier, + STATE(6757), 1, + sym__scope_resolution, + ACTIONS(9885), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(7004), 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, + [225323] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8362), 1, + anon_sym_STAR, + ACTIONS(9887), 1, + sym_identifier, + ACTIONS(9889), 1, + anon_sym_TILDE, + ACTIONS(9891), 1, + anon_sym_COLON_COLON, + ACTIONS(9893), 1, + anon_sym_template, + ACTIONS(9895), 1, + anon_sym_operator, + STATE(1931), 1, + sym_template_type, + STATE(1937), 1, + sym_dependent_type_identifier, + STATE(1938), 1, + sym_qualified_type_identifier, + STATE(2620), 1, + sym_destructor_name, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, + sym_dependent_identifier, + STATE(2659), 1, + sym_operator_name, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5513), 1, + sym__scope_resolution, + STATE(7112), 1, + sym_qualified_operator_cast_identifier, + STATE(7178), 1, + sym_operator_cast, + STATE(8381), 1, + sym_decltype, + STATE(8609), 1, + sym_ms_based_modifier, + [225393] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(9686), 1, + sym_identifier, + ACTIONS(9897), 1, + anon_sym_LPAREN2, + ACTIONS(9901), 1, + anon_sym_requires, + STATE(4398), 1, + sym_template_type, + STATE(5498), 1, + sym_lambda_capture_specifier, + STATE(6737), 1, + sym__scope_resolution, + ACTIONS(9899), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5996), 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, + [225445] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9669), 1, + sym_identifier, + ACTIONS(9812), 1, + anon_sym_requires, + ACTIONS(9903), 1, + anon_sym_LPAREN2, + STATE(1966), 1, + sym_template_type, + STATE(5488), 1, + sym_lambda_capture_specifier, + STATE(6762), 1, + sym__scope_resolution, + ACTIONS(9905), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(2461), 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, + [225497] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + ACTIONS(9786), 1, + anon_sym_requires, + ACTIONS(9883), 1, + anon_sym_LPAREN2, + STATE(1946), 1, + sym_template_type, + STATE(5491), 1, + sym_lambda_capture_specifier, + STATE(6757), 1, + sym__scope_resolution, + ACTIONS(9907), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3291), 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, + [225549] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(9671), 1, + sym_identifier, + ACTIONS(9786), 1, + anon_sym_requires, + ACTIONS(9883), 1, + anon_sym_LPAREN2, + STATE(1835), 1, + sym_template_type, + STATE(5495), 1, + sym_lambda_capture_specifier, + STATE(6745), 1, + sym__scope_resolution, + ACTIONS(9909), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4261), 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, + [225601] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -483807,27 +485762,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8028), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9867), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - ACTIONS(9871), 1, + ACTIONS(9915), 1, anon_sym_requires, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(5472), 1, + STATE(5496), 1, sym_lambda_capture_specifier, - STATE(6719), 1, + STATE(6757), 1, sym__scope_resolution, - ACTIONS(9869), 2, + ACTIONS(9913), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5639), 8, + STATE(6027), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -483836,7 +485791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225047] = 14, + [225653] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -483845,27 +485800,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8000), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(9673), 1, sym_identifier, - ACTIONS(9873), 1, - anon_sym_LPAREN2, - ACTIONS(9877), 1, + ACTIONS(9796), 1, anon_sym_requires, - STATE(4461), 1, + ACTIONS(9917), 1, + anon_sym_LPAREN2, + STATE(2611), 1, sym_template_type, - STATE(5482), 1, + STATE(5508), 1, sym_lambda_capture_specifier, - STATE(6731), 1, + STATE(6758), 1, sym__scope_resolution, - ACTIONS(9875), 2, + ACTIONS(9919), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6006), 8, + STATE(4320), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -483874,7 +485829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225099] = 14, + [225705] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -483883,27 +485838,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, - anon_sym_requires, - ACTIONS(9879), 1, + ACTIONS(9444), 1, + anon_sym_COLON_COLON, + ACTIONS(9677), 1, sym_identifier, - ACTIONS(9881), 1, + ACTIONS(9804), 1, + anon_sym_requires, + ACTIONS(9921), 1, anon_sym_LPAREN2, - ACTIONS(9883), 1, - anon_sym_COLON_COLON, - STATE(1784), 1, + STATE(2671), 1, sym_template_type, - STATE(5479), 1, + STATE(5506), 1, sym_lambda_capture_specifier, - STATE(6722), 1, + STATE(6703), 1, sym__scope_resolution, - ACTIONS(9885), 2, + ACTIONS(9923), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6192), 8, + STATE(3463), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -483912,7 +485867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225151] = 14, + [225757] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -483921,27 +485876,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, - anon_sym_requires, - ACTIONS(9879), 1, + ACTIONS(9504), 1, + anon_sym_COLON_COLON, + ACTIONS(9681), 1, sym_identifier, - ACTIONS(9881), 1, + ACTIONS(9778), 1, + anon_sym_requires, + ACTIONS(9925), 1, anon_sym_LPAREN2, - ACTIONS(9883), 1, - anon_sym_COLON_COLON, - STATE(1784), 1, + STATE(2713), 1, sym_template_type, - STATE(5479), 1, + STATE(5502), 1, sym_lambda_capture_specifier, - STATE(6722), 1, + STATE(6733), 1, sym__scope_resolution, - ACTIONS(9887), 2, + ACTIONS(9927), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6172), 8, + STATE(3716), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -483950,7 +485905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225203] = 14, + [225809] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -483959,27 +485914,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9770), 1, - anon_sym_requires, - ACTIONS(9879), 1, + ACTIONS(9504), 1, + anon_sym_COLON_COLON, + ACTIONS(9681), 1, sym_identifier, - ACTIONS(9881), 1, + ACTIONS(9778), 1, + anon_sym_requires, + ACTIONS(9925), 1, anon_sym_LPAREN2, - ACTIONS(9883), 1, - anon_sym_COLON_COLON, - STATE(1784), 1, + STATE(2713), 1, sym_template_type, - STATE(5479), 1, + STATE(5502), 1, sym_lambda_capture_specifier, - STATE(6722), 1, + STATE(6733), 1, sym__scope_resolution, - ACTIONS(9889), 2, + ACTIONS(9929), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3303), 8, + STATE(3723), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -483988,7 +485943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225255] = 14, + [225861] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -483997,27 +485952,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9612), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9664), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9796), 1, - anon_sym_requires, - ACTIONS(9891), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - STATE(2598), 1, + ACTIONS(9915), 1, + anon_sym_requires, + STATE(1946), 1, sym_template_type, - STATE(5489), 1, + STATE(5496), 1, sym_lambda_capture_specifier, - STATE(6694), 1, + STATE(6757), 1, sym__scope_resolution, - ACTIONS(9893), 2, + ACTIONS(9931), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4880), 8, + STATE(6055), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484026,7 +485981,194 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225307] = 14, + [225913] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9834), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(4416), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9832), 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, + [225953] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9325), 1, + anon_sym_requires, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9183), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9172), 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, + [225991] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9423), 1, + anon_sym_requires, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9399), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9388), 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, + [226029] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9740), 1, + anon_sym_requires, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9712), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9701), 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, + [226067] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9940), 1, + anon_sym_requires, + ACTIONS(9937), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9935), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9933), 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, + [226105] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9950), 1, + anon_sym_requires, + ACTIONS(9947), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5887), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9943), 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, + [226143] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484035,27 +486177,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9612), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9664), 1, + ACTIONS(9661), 1, sym_identifier, - ACTIONS(9796), 1, + ACTIONS(9786), 1, anon_sym_requires, - ACTIONS(9891), 1, + ACTIONS(9883), 1, anon_sym_LPAREN2, - STATE(2598), 1, + STATE(3603), 1, sym_template_type, - STATE(5489), 1, + STATE(5495), 1, sym_lambda_capture_specifier, - STATE(6694), 1, + STATE(6742), 1, sym__scope_resolution, - ACTIONS(9895), 2, + ACTIONS(9907), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4287), 8, + STATE(3291), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484064,7 +486206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225359] = 14, + [226195] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484073,27 +486215,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9459), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9778), 1, - anon_sym_requires, - ACTIONS(9897), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - STATE(2856), 1, + ACTIONS(9915), 1, + anon_sym_requires, + STATE(1946), 1, sym_template_type, - STATE(5492), 1, + STATE(5504), 1, sym_lambda_capture_specifier, - STATE(6708), 1, + STATE(6757), 1, sym__scope_resolution, - ACTIONS(9899), 2, + ACTIONS(9953), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3875), 8, + STATE(6371), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484102,7 +486244,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225411] = 14, + [226247] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484111,27 +486253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9459), 1, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9675), 1, sym_identifier, - ACTIONS(9778), 1, + ACTIONS(9796), 1, anon_sym_requires, - ACTIONS(9897), 1, + ACTIONS(9917), 1, anon_sym_LPAREN2, - STATE(2856), 1, + STATE(2611), 1, sym_template_type, - STATE(5492), 1, + STATE(5508), 1, sym_lambda_capture_specifier, - STATE(6708), 1, + STATE(6744), 1, sym__scope_resolution, - ACTIONS(9901), 2, + ACTIONS(9955), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3878), 8, + STATE(4882), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484140,7 +486282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225463] = 14, + [226299] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484149,27 +486291,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8074), 1, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9675), 1, sym_identifier, - ACTIONS(9867), 1, - anon_sym_LPAREN2, - ACTIONS(9871), 1, + ACTIONS(9796), 1, anon_sym_requires, - STATE(1922), 1, + ACTIONS(9917), 1, + anon_sym_LPAREN2, + STATE(2611), 1, sym_template_type, - STATE(5472), 1, + STATE(5508), 1, sym_lambda_capture_specifier, - STATE(6743), 1, + STATE(6744), 1, sym__scope_resolution, - ACTIONS(9903), 2, + ACTIONS(9919), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6620), 8, + STATE(4320), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484178,7 +486320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225515] = 14, + [226351] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484187,27 +486329,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9905), 1, - anon_sym_LPAREN2, - ACTIONS(9909), 1, + ACTIONS(9786), 1, anon_sym_requires, - STATE(1922), 1, + ACTIONS(9883), 1, + anon_sym_LPAREN2, + STATE(1946), 1, sym_template_type, - STATE(5474), 1, + STATE(5491), 1, sym_lambda_capture_specifier, - STATE(6697), 1, + STATE(6757), 1, sym__scope_resolution, - ACTIONS(9907), 2, + ACTIONS(9957), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6363), 8, + STATE(7054), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484216,36 +486358,43 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225567] = 5, + [226403] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - STATE(4831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9818), 3, - anon_sym___attribute, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8163), 1, + anon_sym_STAR, + ACTIONS(8165), 1, + anon_sym_AMP_AMP, + ACTIONS(8167), 1, + anon_sym_AMP, + ACTIONS(8175), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9816), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(8380), 1, + anon_sym___attribute, + STATE(3102), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6450), 1, + sym__abstract_declarator, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 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, - [225601] = 14, + [226451] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484254,27 +486403,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8022), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9796), 1, - anon_sym_requires, - ACTIONS(9891), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - STATE(2598), 1, + ACTIONS(9915), 1, + anon_sym_requires, + STATE(1946), 1, sym_template_type, - STATE(5489), 1, + STATE(5496), 1, sym_lambda_capture_specifier, - STATE(6738), 1, + STATE(6757), 1, sym__scope_resolution, - ACTIONS(9911), 2, + ACTIONS(9959), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6360), 8, + STATE(1650), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484283,7 +486432,42 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225653] = 14, + [226503] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8157), 1, + anon_sym_STAR, + ACTIONS(8159), 1, + anon_sym_AMP_AMP, + ACTIONS(8161), 1, + anon_sym_AMP, + STATE(2934), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6422), 1, + sym__abstract_declarator, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 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, + [226549] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484292,27 +486476,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9669), 1, sym_identifier, - ACTIONS(9770), 1, + ACTIONS(9812), 1, anon_sym_requires, - ACTIONS(9881), 1, + ACTIONS(9903), 1, anon_sym_LPAREN2, - STATE(1922), 1, + STATE(1966), 1, sym_template_type, - STATE(5477), 1, + STATE(5488), 1, sym_lambda_capture_specifier, - STATE(6697), 1, + STATE(6762), 1, sym__scope_resolution, - ACTIONS(9913), 2, + ACTIONS(9961), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6973), 8, + STATE(2572), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484321,7 +486505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225705] = 14, + [226601] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484330,27 +486514,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(9647), 1, - sym_identifier, - ACTIONS(9867), 1, - anon_sym_LPAREN2, - ACTIONS(9871), 1, + ACTIONS(9786), 1, anon_sym_requires, - STATE(1922), 1, + ACTIONS(9883), 1, + anon_sym_LPAREN2, + ACTIONS(9963), 1, + sym_identifier, + ACTIONS(9965), 1, + anon_sym_COLON_COLON, + STATE(1835), 1, sym_template_type, - STATE(5472), 1, + STATE(5495), 1, sym_lambda_capture_specifier, - STATE(6743), 1, + STATE(6726), 1, sym__scope_resolution, - ACTIONS(9915), 2, + ACTIONS(9907), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6540), 8, + STATE(3291), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484359,7 +486543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225757] = 14, + [226653] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484368,27 +486552,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8074), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9867), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - ACTIONS(9871), 1, + ACTIONS(9915), 1, anon_sym_requires, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(5472), 1, + STATE(5504), 1, sym_lambda_capture_specifier, - STATE(6743), 1, + STATE(6757), 1, sym__scope_resolution, - ACTIONS(9869), 2, + ACTIONS(9959), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5639), 8, + STATE(1650), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484397,7 +486581,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225809] = 14, + [226705] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484406,27 +486590,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9412), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9770), 1, - anon_sym_requires, - ACTIONS(9881), 1, + ACTIONS(9967), 1, anon_sym_LPAREN2, - STATE(3638), 1, + ACTIONS(9971), 1, + anon_sym_requires, + STATE(1946), 1, sym_template_type, - STATE(5479), 1, + STATE(5505), 1, sym_lambda_capture_specifier, - STATE(6732), 1, + STATE(6721), 1, sym__scope_resolution, - ACTIONS(9917), 2, + ACTIONS(9969), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4279), 8, + STATE(6598), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484435,7 +486619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225861] = 14, + [226757] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484444,27 +486628,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9412), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9770), 1, - anon_sym_requires, - ACTIONS(9881), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - STATE(3638), 1, + ACTIONS(9915), 1, + anon_sym_requires, + STATE(1946), 1, sym_template_type, - STATE(5479), 1, + STATE(5504), 1, sym_lambda_capture_specifier, - STATE(6732), 1, + STATE(6757), 1, sym__scope_resolution, - ACTIONS(9889), 2, + ACTIONS(9973), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3303), 8, + STATE(6397), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484473,7 +486657,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225913] = 14, + [226809] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484482,27 +486666,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, - ACTIONS(9647), 1, - sym_identifier, - ACTIONS(9905), 1, - anon_sym_LPAREN2, - ACTIONS(9909), 1, + ACTIONS(9786), 1, anon_sym_requires, - STATE(1922), 1, + ACTIONS(9883), 1, + anon_sym_LPAREN2, + ACTIONS(9963), 1, + sym_identifier, + ACTIONS(9965), 1, + anon_sym_COLON_COLON, + STATE(1835), 1, sym_template_type, - STATE(5480), 1, + STATE(5495), 1, sym_lambda_capture_specifier, - STATE(6697), 1, + STATE(6726), 1, sym__scope_resolution, - ACTIONS(9919), 2, + ACTIONS(9975), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5970), 8, + STATE(6190), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484511,7 +486695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [225965] = 14, + [226861] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484520,27 +486704,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9905), 1, + ACTIONS(9967), 1, anon_sym_LPAREN2, - ACTIONS(9909), 1, + ACTIONS(9971), 1, anon_sym_requires, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(5480), 1, + STATE(5505), 1, sym_lambda_capture_specifier, - STATE(6697), 1, + STATE(6721), 1, sym__scope_resolution, - ACTIONS(9921), 2, + ACTIONS(9977), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(1637), 8, + STATE(5670), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484549,7 +486733,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [226017] = 14, + [226913] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484558,27 +486742,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9530), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9667), 1, sym_identifier, - ACTIONS(9788), 1, - anon_sym_requires, - ACTIONS(9923), 1, + ACTIONS(9967), 1, anon_sym_LPAREN2, - STATE(1943), 1, + ACTIONS(9971), 1, + anon_sym_requires, + STATE(1946), 1, sym_template_type, - STATE(5485), 1, + STATE(5505), 1, sym_lambda_capture_specifier, - STATE(6695), 1, + STATE(6716), 1, sym__scope_resolution, - ACTIONS(9925), 2, + ACTIONS(9979), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2528), 8, + STATE(5668), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484587,7 +486771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [226069] = 14, + [226965] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484596,27 +486780,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9530), 1, - anon_sym_COLON_COLON, - ACTIONS(9658), 1, - sym_identifier, - ACTIONS(9788), 1, - anon_sym_requires, - ACTIONS(9923), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - STATE(1943), 1, + ACTIONS(9915), 1, + anon_sym_requires, + ACTIONS(9981), 1, + sym_identifier, + ACTIONS(9983), 1, + anon_sym_COLON_COLON, + STATE(2269), 1, sym_template_type, - STATE(5485), 1, + STATE(5504), 1, sym_lambda_capture_specifier, - STATE(6695), 1, + STATE(6731), 1, sym__scope_resolution, - ACTIONS(9927), 2, + ACTIONS(9985), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(2529), 8, + STATE(2342), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484625,7 +486809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [226121] = 14, + [227017] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484634,27 +486818,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, - ACTIONS(9647), 1, - sym_identifier, - ACTIONS(9905), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - ACTIONS(9909), 1, + ACTIONS(9915), 1, anon_sym_requires, - STATE(1922), 1, + ACTIONS(9981), 1, + sym_identifier, + ACTIONS(9983), 1, + anon_sym_COLON_COLON, + STATE(2269), 1, sym_template_type, - STATE(5480), 1, + STATE(5504), 1, sym_lambda_capture_specifier, - STATE(6697), 1, + STATE(6731), 1, sym__scope_resolution, - ACTIONS(9929), 2, + ACTIONS(9959), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6000), 8, + STATE(1650), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484663,78 +486847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [226173] = 11, - ACTIONS(3), 1, - sym_comment, - 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(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, - [226219] = 12, - ACTIONS(3), 1, - sym_comment, - 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, - 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___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [226267] = 14, + [227069] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484743,27 +486856,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8060), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9673), 1, sym_identifier, - ACTIONS(9905), 1, - anon_sym_LPAREN2, - ACTIONS(9909), 1, + ACTIONS(9796), 1, anon_sym_requires, - STATE(1922), 1, + ACTIONS(9917), 1, + anon_sym_LPAREN2, + STATE(2611), 1, sym_template_type, - STATE(5480), 1, + STATE(5508), 1, sym_lambda_capture_specifier, - STATE(6729), 1, + STATE(6758), 1, sym__scope_resolution, - ACTIONS(9931), 2, + ACTIONS(9987), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5535), 8, + STATE(6383), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484772,7 +486885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [226319] = 14, + [227121] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484781,27 +486894,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9667), 1, sym_identifier, - ACTIONS(9905), 1, + ACTIONS(9967), 1, anon_sym_LPAREN2, - ACTIONS(9909), 1, + ACTIONS(9971), 1, anon_sym_requires, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(5474), 1, + STATE(5505), 1, sym_lambda_capture_specifier, - STATE(6697), 1, + STATE(6716), 1, sym__scope_resolution, - ACTIONS(9933), 2, + ACTIONS(9977), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(6339), 8, + STATE(5670), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484810,7 +486923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [226371] = 14, + [227173] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -484819,27 +486932,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9686), 1, sym_identifier, - ACTIONS(9905), 1, + ACTIONS(9897), 1, anon_sym_LPAREN2, - ACTIONS(9909), 1, + ACTIONS(9901), 1, anon_sym_requires, - STATE(1922), 1, + STATE(4398), 1, sym_template_type, - STATE(5474), 1, + STATE(5498), 1, sym_lambda_capture_specifier, - STATE(6697), 1, + STATE(6737), 1, sym__scope_resolution, - ACTIONS(9921), 2, + ACTIONS(9989), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(1637), 8, + STATE(6003), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -484848,271 +486961,287 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [226423] = 7, + [227225] = 5, ACTIONS(3), 1, sym_comment, - 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(5927), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9150), 3, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9993), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9139), 12, + ACTIONS(9991), 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_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [226461] = 23, + anon_sym_requires, + [227259] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8272), 1, - anon_sym_STAR, - ACTIONS(9935), 1, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(9786), 1, + anon_sym_requires, + ACTIONS(9883), 1, + anon_sym_LPAREN2, + ACTIONS(9963), 1, sym_identifier, - ACTIONS(9937), 1, - anon_sym_TILDE, - ACTIONS(9939), 1, + ACTIONS(9965), 1, anon_sym_COLON_COLON, - ACTIONS(9941), 1, - anon_sym_template, - ACTIONS(9943), 1, - anon_sym_operator, - STATE(1919), 1, + STATE(1835), 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, + STATE(5495), 1, + sym_lambda_capture_specifier, + STATE(6726), 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, + ACTIONS(9995), 2, + sym_true, + sym_false, + STATE(8381), 2, sym_decltype, - [226531] = 7, + sym_dependent_type_identifier, + STATE(6124), 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, + [227311] = 8, ACTIONS(3), 1, sym_comment, - 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(5934), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9382), 3, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, anon_sym___attribute, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9816), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9371), 12, + STATE(4416), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5743), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9814), 13, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_COLON, 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, - [226569] = 7, + anon_sym_requires, + [227351] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9311), 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(9150), 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(9139), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9690), 1, + sym_identifier, + ACTIONS(9770), 1, + anon_sym_requires, + ACTIONS(9997), 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, - [226607] = 7, + STATE(2828), 1, + sym_template_type, + STATE(5509), 1, + sym_lambda_capture_specifier, + STATE(6729), 1, + sym__scope_resolution, + ACTIONS(9999), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3951), 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, + [227403] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9371), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9690), 1, + sym_identifier, + ACTIONS(9770), 1, + anon_sym_requires, + ACTIONS(9997), 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, - [226645] = 7, + STATE(2828), 1, + sym_template_type, + STATE(5509), 1, + sym_lambda_capture_specifier, + STATE(6729), 1, + sym__scope_resolution, + ACTIONS(10001), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3952), 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, + [227455] = 14, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9689), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(9671), 1, + sym_identifier, + ACTIONS(9786), 1, + anon_sym_requires, + ACTIONS(9883), 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, - [226683] = 7, + STATE(1835), 1, + sym_template_type, + STATE(5495), 1, + sym_lambda_capture_specifier, + STATE(6745), 1, + sym__scope_resolution, + ACTIONS(9907), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(3291), 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, + [227507] = 14, ACTIONS(3), 1, sym_comment, - 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(5874), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9947), 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(9945), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(9667), 1, + sym_identifier, + ACTIONS(9967), 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, - [226721] = 7, + ACTIONS(9971), 1, + anon_sym_requires, + STATE(1946), 1, + sym_template_type, + STATE(5505), 1, + sym_lambda_capture_specifier, + STATE(6716), 1, + sym__scope_resolution, + ACTIONS(10003), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5718), 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, + [227559] = 5, ACTIONS(3), 1, sym_comment, - 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(5912), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9951), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9949), 12, + ACTIONS(10007), 1, + anon_sym_LPAREN2, + STATE(5871), 1, + sym_preproc_argument_list, + ACTIONS(10009), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10005), 15, 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, - [226759] = 14, + 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, + [227593] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -485121,27 +487250,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(3915), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9770), 1, - anon_sym_requires, - ACTIONS(9881), 1, + ACTIONS(9967), 1, anon_sym_LPAREN2, - STATE(1922), 1, + ACTIONS(9971), 1, + anon_sym_requires, + STATE(1946), 1, sym_template_type, - STATE(5477), 1, + STATE(5505), 1, sym_lambda_capture_specifier, - STATE(6697), 1, + STATE(6721), 1, sym__scope_resolution, - ACTIONS(9889), 2, + ACTIONS(10011), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3303), 8, + STATE(6634), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485150,7 +487279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [226811] = 14, + [227645] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -485159,27 +487288,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8060), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9673), 1, sym_identifier, - ACTIONS(9905), 1, - anon_sym_LPAREN2, - ACTIONS(9909), 1, + ACTIONS(9796), 1, anon_sym_requires, - STATE(1922), 1, + ACTIONS(9917), 1, + anon_sym_LPAREN2, + STATE(2611), 1, sym_template_type, - STATE(5480), 1, + STATE(5508), 1, sym_lambda_capture_specifier, - STATE(6729), 1, + STATE(6758), 1, sym__scope_resolution, - ACTIONS(9921), 2, + ACTIONS(10013), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(1637), 8, + STATE(6376), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485188,113 +487317,152 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [226863] = 4, + [227697] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9953), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6248), 3, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9183), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6250), 17, + ACTIONS(9172), 12, 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, - [226895] = 5, + [227735] = 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, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9834), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6300), 15, + ACTIONS(9832), 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_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [226929] = 7, + [227769] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9724), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(8106), 1, + anon_sym_COLON_COLON, + ACTIONS(9667), 1, + sym_identifier, + ACTIONS(9911), 1, + anon_sym_LPAREN2, + ACTIONS(9915), 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, + STATE(1946), 1, + sym_template_type, + STATE(5496), 1, + sym_lambda_capture_specifier, + STATE(6736), 1, + sym__scope_resolution, + ACTIONS(10015), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(5576), 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, + [227821] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9816), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9689), 12, + ACTIONS(9814), 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_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [226967] = 7, + anon_sym_requires, + [227855] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9960), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(9957), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9947), 3, + ACTIONS(9399), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9945), 12, + ACTIONS(9388), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -485307,25 +487475,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [227005] = 7, + [227893] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(2020), 1, + anon_sym_LBRACK, + ACTIONS(9554), 1, + anon_sym_COLON_COLON, + ACTIONS(9661), 1, + sym_identifier, + ACTIONS(9786), 1, + anon_sym_requires, + ACTIONS(9883), 1, + anon_sym_LPAREN2, + STATE(3603), 1, + sym_template_type, + STATE(5495), 1, + sym_lambda_capture_specifier, + STATE(6742), 1, + sym__scope_resolution, + ACTIONS(10017), 2, + sym_true, + sym_false, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + STATE(4312), 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, + [227945] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9966), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(9963), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5912), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9951), 3, + ACTIONS(9712), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9949), 12, + ACTIONS(9701), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -485338,138 +487544,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [227043] = 5, + [227983] = 7, 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, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9935), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9812), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(9933), 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_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [227077] = 8, + [228021] = 7, 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(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(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, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(6026), 2, 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, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5887), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, anon_sym___attribute, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9814), 2, anon_sym_LBRACK, anon_sym___asm, - 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, + ACTIONS(9943), 12, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, + 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_requires, - [227157] = 14, + [228059] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(141), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(9905), 1, - anon_sym_LPAREN2, - ACTIONS(9909), 1, - anon_sym_requires, - ACTIONS(9969), 1, - sym_identifier, - ACTIONS(9971), 1, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(3021), 1, anon_sym_COLON_COLON, - STATE(2311), 1, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(10019), 1, + sym_identifier, + ACTIONS(10021), 1, + anon_sym_template, + STATE(1931), 1, sym_template_type, - STATE(5474), 1, - sym_lambda_capture_specifier, - STATE(6705), 1, - sym__scope_resolution, - ACTIONS(9973), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(2325), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, + STATE(1938), 1, sym_qualified_type_identifier, - [227209] = 14, + STATE(2620), 1, + sym_destructor_name, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, + sym_dependent_identifier, + STATE(2659), 1, + sym_operator_name, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5570), 1, + sym__scope_resolution, + STATE(7112), 1, + sym_qualified_operator_cast_identifier, + STATE(7178), 1, + sym_operator_cast, + STATE(8381), 1, + sym_decltype, + STATE(8501), 1, + sym_ms_based_modifier, + [228129] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -485478,27 +487662,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(8028), 1, + ACTIONS(8106), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9667), 1, sym_identifier, - ACTIONS(9867), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - ACTIONS(9871), 1, + ACTIONS(9915), 1, anon_sym_requires, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(5472), 1, + STATE(5496), 1, sym_lambda_capture_specifier, - STATE(6719), 1, + STATE(6736), 1, sym__scope_resolution, - ACTIONS(9975), 2, + ACTIONS(10023), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(5672), 8, + STATE(5574), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485507,7 +487691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [227261] = 14, + [228181] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -485516,27 +487700,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9498), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9677), 1, sym_identifier, - ACTIONS(9762), 1, + ACTIONS(9804), 1, anon_sym_requires, - ACTIONS(9977), 1, + ACTIONS(9921), 1, anon_sym_LPAREN2, - STATE(2684), 1, + STATE(2671), 1, sym_template_type, - STATE(5495), 1, + STATE(5506), 1, sym_lambda_capture_specifier, - STATE(6728), 1, + STATE(6703), 1, sym__scope_resolution, - ACTIONS(9979), 2, + ACTIONS(10025), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3697), 8, + STATE(3461), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485545,7 +487729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [227313] = 14, + [228233] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -485554,27 +487738,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9498), 1, + ACTIONS(8106), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9667), 1, sym_identifier, - ACTIONS(9762), 1, - anon_sym_requires, - ACTIONS(9977), 1, + ACTIONS(9911), 1, anon_sym_LPAREN2, - STATE(2684), 1, + ACTIONS(9915), 1, + anon_sym_requires, + STATE(1946), 1, sym_template_type, - STATE(5495), 1, + STATE(5496), 1, sym_lambda_capture_specifier, - STATE(6728), 1, + STATE(6736), 1, sym__scope_resolution, - ACTIONS(9981), 2, + ACTIONS(9959), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3671), 8, + STATE(1650), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485583,7 +487767,35 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [227365] = 14, + [228285] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10027), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6315), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6317), 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, + [228317] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -485592,27 +487804,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9580), 1, - anon_sym_COLON_COLON, - ACTIONS(9656), 1, - sym_identifier, - ACTIONS(9754), 1, + ACTIONS(9911), 1, + anon_sym_LPAREN2, + ACTIONS(9915), 1, anon_sym_requires, + ACTIONS(9981), 1, + sym_identifier, ACTIONS(9983), 1, - anon_sym_LPAREN2, - STATE(2673), 1, + anon_sym_COLON_COLON, + STATE(2269), 1, sym_template_type, - STATE(5494), 1, + STATE(5504), 1, sym_lambda_capture_specifier, - STATE(6713), 1, + STATE(6731), 1, sym__scope_resolution, - ACTIONS(9985), 2, + ACTIONS(10029), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(3574), 8, + STATE(2292), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485621,103 +487833,83 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [227417] = 5, + [228369] = 5, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(10027), 2, 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, - STATE(4831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9995), 3, + anon_sym_and, + ACTIONS(10031), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6261), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9993), 16, - anon_sym_DOT_DOT_DOT, + ACTIONS(6263), 15, 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_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [227485] = 14, + [228403] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(141), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(9580), 1, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(3987), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(10033), 1, sym_identifier, - ACTIONS(9754), 1, - anon_sym_requires, - ACTIONS(9983), 1, - anon_sym_LPAREN2, - STATE(2673), 1, + ACTIONS(10035), 1, + anon_sym_template, + STATE(1931), 1, sym_template_type, - STATE(5494), 1, - sym_lambda_capture_specifier, - STATE(6713), 1, - sym__scope_resolution, - ACTIONS(9997), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(3467), 8, - sym__class_name, - sym_constraint_conjunction, - sym_constraint_disjunction, - sym__requirement_clause_constraint, - sym_requires_expression, - sym_lambda_expression, - sym_fold_expression, + STATE(1938), 1, sym_qualified_type_identifier, - [227537] = 14, + STATE(2620), 1, + sym_destructor_name, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, + sym_dependent_identifier, + STATE(2659), 1, + sym_operator_name, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5577), 1, + sym__scope_resolution, + STATE(7112), 1, + sym_qualified_operator_cast_identifier, + STATE(7178), 1, + sym_operator_cast, + STATE(8381), 1, + sym_decltype, + STATE(8501), 1, + sym_ms_based_modifier, + [228473] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -485726,27 +487918,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, ACTIONS(2020), 1, anon_sym_LBRACK, - ACTIONS(9437), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(9686), 1, sym_identifier, - ACTIONS(9770), 1, - anon_sym_requires, - ACTIONS(9881), 1, + ACTIONS(9897), 1, anon_sym_LPAREN2, - STATE(1784), 1, + ACTIONS(9901), 1, + anon_sym_requires, + STATE(4398), 1, sym_template_type, - STATE(5479), 1, + STATE(5498), 1, sym_lambda_capture_specifier, - STATE(6699), 1, + STATE(6737), 1, sym__scope_resolution, - ACTIONS(9999), 2, + ACTIONS(10037), 2, sym_true, sym_false, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - STATE(4252), 8, + STATE(6058), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -485755,3038 +487947,3464 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [227589] = 14, + [228525] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(9905), 1, - anon_sym_LPAREN2, - ACTIONS(9909), 1, - anon_sym_requires, - ACTIONS(9969), 1, - sym_identifier, - ACTIONS(9971), 1, + ACTIONS(5036), 1, anon_sym_COLON_COLON, - STATE(2311), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9679), 1, + sym_identifier, + STATE(1946), 1, sym_template_type, - STATE(5474), 1, - sym_lambda_capture_specifier, - STATE(6705), 1, + STATE(2515), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(6759), 1, sym__scope_resolution, - ACTIONS(10001), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(2271), 8, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2539), 2, 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, - [227641] = 14, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [228584] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(9905), 1, - anon_sym_LPAREN2, - ACTIONS(9909), 1, - anon_sym_requires, - ACTIONS(9969), 1, - sym_identifier, - ACTIONS(9971), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - STATE(2311), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, sym_template_type, - STATE(5474), 1, - sym_lambda_capture_specifier, - STATE(6705), 1, + STATE(4537), 1, + sym_field_declaration_list, + STATE(4684), 1, + sym__class_declaration_item, + STATE(6721), 1, sym__scope_resolution, - ACTIONS(9921), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(1637), 8, + STATE(7261), 1, + sym_virtual_specifier, + STATE(8059), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4304), 2, 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, - [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, + STATE(5583), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, sym_decltype, - [227763] = 14, + sym_dependent_type_identifier, + [228643] = 18, 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, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9770), 1, - anon_sym_requires, - ACTIONS(9881), 1, - anon_sym_LPAREN2, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(5479), 1, - sym_lambda_capture_specifier, - STATE(6699), 1, + STATE(4537), 1, + sym_field_declaration_list, + STATE(4723), 1, + sym__class_declaration_item, + STATE(6721), 1, sym__scope_resolution, - ACTIONS(9889), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(3303), 8, + STATE(7261), 1, + sym_virtual_specifier, + STATE(8059), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4304), 2, 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, - [227815] = 14, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [228702] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9853), 1, + anon_sym_try, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10041), 1, + anon_sym_LPAREN2, + ACTIONS(10043), 1, + anon_sym_SEMI, + ACTIONS(10045), 1, + anon_sym_LBRACE, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, + anon_sym_EQ, + STATE(1755), 1, + sym_compound_statement, + STATE(1763), 1, + sym_try_statement, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7305), 1, + sym_gnu_asm_expression, + STATE(7315), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [228763] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(8028), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9867), 1, - anon_sym_LPAREN2, - ACTIONS(9871), 1, - anon_sym_requires, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(5472), 1, - sym_lambda_capture_specifier, - STATE(6719), 1, + STATE(4537), 1, + sym_field_declaration_list, + STATE(4847), 1, + sym__class_declaration_item, + STATE(6721), 1, sym__scope_resolution, - ACTIONS(10007), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5638), 8, + STATE(7261), 1, + sym_virtual_specifier, + STATE(8059), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4304), 2, 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, - [227867] = 14, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [228822] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(3915), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(9770), 1, - anon_sym_requires, - ACTIONS(9881), 1, - anon_sym_LPAREN2, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(5477), 1, - sym_lambda_capture_specifier, - STATE(6697), 1, + STATE(4537), 1, + sym_field_declaration_list, + STATE(4681), 1, + sym__class_declaration_item, + STATE(6721), 1, sym__scope_resolution, - ACTIONS(10009), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(7034), 8, + STATE(7261), 1, + sym_virtual_specifier, + STATE(8059), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4304), 2, 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, - [227919] = 23, + STATE(5586), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [228881] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(141), 1, - anon_sym_operator, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(9873), 1, + anon_sym_LBRACE, + STATE(3697), 1, + sym_compound_statement, + STATE(5954), 1, + sym_parameter_list, + STATE(7945), 1, + sym_lambda_declarator, + STATE(8522), 1, + sym_trailing_return_type, + STATE(5962), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6084), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6975), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [228934] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2999), 1, - anon_sym_TILDE, - ACTIONS(3013), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(8338), 1, - anon_sym_STAR, - ACTIONS(10011), 1, + ACTIONS(8669), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(10013), 1, - anon_sym_template, - STATE(1919), 1, + STATE(1946), 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(5557), 1, + STATE(4537), 1, + sym_field_declaration_list, + STATE(4708), 1, + sym__class_declaration_item, + STATE(6721), 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, + STATE(7261), 1, + sym_virtual_specifier, + STATE(8059), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4304), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, sym_decltype, - [227989] = 14, + sym_dependent_type_identifier, + [228993] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(8000), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6410), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(9675), 1, sym_identifier, - ACTIONS(9873), 1, - anon_sym_LPAREN2, - ACTIONS(9877), 1, - anon_sym_requires, - STATE(4461), 1, + STATE(2611), 1, sym_template_type, - STATE(5482), 1, - sym_lambda_capture_specifier, - STATE(6731), 1, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2725), 1, + sym__class_declaration_item, + STATE(6744), 1, sym__scope_resolution, - ACTIONS(10015), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6020), 8, + STATE(7127), 1, + sym_virtual_specifier, + STATE(7735), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2394), 2, 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, - [228041] = 14, + STATE(5589), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [229052] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(8000), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6410), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9672), 1, + ACTIONS(9675), 1, sym_identifier, - ACTIONS(9873), 1, - anon_sym_LPAREN2, - ACTIONS(9877), 1, - anon_sym_requires, - STATE(4461), 1, + STATE(2611), 1, sym_template_type, - STATE(5482), 1, - sym_lambda_capture_specifier, - STATE(6731), 1, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2727), 1, + sym__class_declaration_item, + STATE(6744), 1, sym__scope_resolution, - ACTIONS(10017), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5986), 8, + STATE(7127), 1, + sym_virtual_specifier, + STATE(7735), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2394), 2, 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, - [228093] = 14, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [229111] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(8022), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6410), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(9675), 1, sym_identifier, - ACTIONS(9796), 1, - anon_sym_requires, - ACTIONS(9891), 1, - anon_sym_LPAREN2, - STATE(2598), 1, + STATE(2611), 1, sym_template_type, - STATE(5489), 1, - sym_lambda_capture_specifier, - STATE(6738), 1, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2737), 1, + sym__class_declaration_item, + STATE(6744), 1, sym__scope_resolution, - ACTIONS(10019), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(6385), 8, + STATE(7127), 1, + sym_virtual_specifier, + STATE(7735), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2394), 2, 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, - [228145] = 14, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [229170] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(8022), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6410), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(9675), 1, sym_identifier, - ACTIONS(9796), 1, - anon_sym_requires, - ACTIONS(9891), 1, - anon_sym_LPAREN2, - STATE(2598), 1, + STATE(2611), 1, sym_template_type, - STATE(5489), 1, - sym_lambda_capture_specifier, - STATE(6738), 1, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2741), 1, + sym__class_declaration_item, + STATE(6744), 1, sym__scope_resolution, - ACTIONS(9895), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(4287), 8, + STATE(7127), 1, + sym_virtual_specifier, + STATE(7735), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2394), 2, 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, - [228197] = 14, + STATE(5591), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [229229] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2020), 1, - anon_sym_LBRACK, - ACTIONS(8060), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6410), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9675), 1, sym_identifier, - ACTIONS(9905), 1, - anon_sym_LPAREN2, - ACTIONS(9909), 1, - anon_sym_requires, - STATE(1922), 1, + STATE(2611), 1, sym_template_type, - STATE(5480), 1, - sym_lambda_capture_specifier, - STATE(6729), 1, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2749), 1, + sym__class_declaration_item, + STATE(6744), 1, sym__scope_resolution, - ACTIONS(10021), 2, - sym_true, - sym_false, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - STATE(5534), 8, + STATE(7127), 1, + sym_virtual_specifier, + STATE(7735), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2394), 2, 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, - [228249] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10023), 1, - anon_sym_COMMA, - 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, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [229288] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9688), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(2515), 1, + STATE(1889), 1, sym__class_declaration_item, - STATE(3663), 1, + STATE(5139), 1, sym_field_declaration_list, - STATE(6743), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7220), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(4603), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [228363] = 3, + [229347] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, anon_sym___asm, - ACTIONS(5158), 18, + ACTIONS(9830), 1, + anon_sym_try, + ACTIONS(10039), 1, anon_sym_COMMA, + ACTIONS(10041), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, + anon_sym_EQ, + ACTIONS(10053), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10055), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, + STATE(2126), 1, + sym_compound_statement, + STATE(2127), 1, + sym_try_statement, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7332), 1, + sym_gnu_asm_expression, + STATE(7334), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [228392] = 3, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [229408] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5162), 18, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8421), 1, + anon_sym_STAR, + ACTIONS(8423), 1, anon_sym_AMP_AMP, + ACTIONS(8425), 1, + anon_sym_AMP, + ACTIONS(10057), 1, anon_sym_SEMI, + STATE(5479), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8760), 1, + sym_attribute_specifier, + STATE(8840), 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, - [228421] = 7, + anon_sym___attribute, + STATE(6525), 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, + [229461] = 19, 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(5924), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9700), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, anon_sym___asm, - ACTIONS(9689), 11, + ACTIONS(10039), 1, anon_sym_COMMA, + ACTIONS(10041), 1, anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, + anon_sym_EQ, + ACTIONS(10059), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10061), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10063), 1, + anon_sym_try, + STATE(311), 1, + sym_compound_statement, + STATE(312), 1, + sym_try_statement, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7465), 1, + sym_gnu_asm_expression, + STATE(7470), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [228458] = 18, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [229522] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(9871), 1, + anon_sym_LBRACE, + STATE(1656), 1, + sym_compound_statement, + STATE(5954), 1, + sym_parameter_list, + STATE(7749), 1, + sym_lambda_declarator, + STATE(8522), 1, + sym_trailing_return_type, + STATE(5962), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6084), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6975), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [229575] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9690), 1, sym_identifier, - STATE(1922), 1, + STATE(2828), 1, sym_template_type, - STATE(2522), 1, - sym__class_declaration_item, - STATE(3663), 1, + STATE(3031), 1, sym_field_declaration_list, - STATE(6743), 1, + STATE(3565), 1, + sym__class_declaration_item, + STATE(6729), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7189), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7780), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(2672), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5626), 2, + STATE(5599), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [228517] = 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(2999), 1, - anon_sym_TILDE, - ACTIONS(5491), 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(5569), 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), 3, + STATE(8381), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [228580] = 18, + [229634] = 18, 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - ACTIONS(9643), 1, + ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9690), 1, sym_identifier, - STATE(1922), 1, + STATE(2828), 1, sym_template_type, - STATE(2515), 1, - sym__class_declaration_item, - STATE(2962), 1, + STATE(3031), 1, sym_field_declaration_list, - STATE(6746), 1, + STATE(3567), 1, + sym__class_declaration_item, + STATE(6729), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7189), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7780), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2672), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [228639] = 18, + [229693] = 18, 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - ACTIONS(9643), 1, + ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9690), 1, sym_identifier, - STATE(1922), 1, + STATE(2828), 1, sym_template_type, - STATE(2522), 1, - sym__class_declaration_item, - STATE(2962), 1, + STATE(3031), 1, sym_field_declaration_list, - STATE(6746), 1, + STATE(3548), 1, + sym__class_declaration_item, + STATE(6729), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7189), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7780), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2672), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5580), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [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, + [229752] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9690), 1, sym_identifier, - STATE(3638), 1, + STATE(2828), 1, sym_template_type, - STATE(4009), 1, + STATE(3031), 1, sym_field_declaration_list, - STATE(4141), 1, + STATE(3556), 1, sym__class_declaration_item, - STATE(6732), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(7061), 1, + STATE(7189), 1, sym_virtual_specifier, - STATE(7717), 1, + STATE(7780), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(2672), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5601), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [228790] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - 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, - [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, - 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, - [228848] = 3, + [229811] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, 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, - [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__, + ACTIONS(6664), 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__, - anon_sym_final, - anon_sym_override, - 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, + ACTIONS(6836), 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, + ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9690), 1, + sym_identifier, + STATE(2828), 1, + sym_template_type, + STATE(3031), 1, + sym_field_declaration_list, + STATE(3486), 1, + sym__class_declaration_item, + STATE(6729), 1, + sym__scope_resolution, + STATE(7189), 1, + sym_virtual_specifier, + STATE(7780), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2672), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7980), 2, - sym_argument_list, - sym_initializer_list, - [228967] = 18, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [229870] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9663), 1, sym_identifier, - STATE(3638), 1, + STATE(1835), 1, sym_template_type, - STATE(4009), 1, - sym_field_declaration_list, - STATE(4153), 1, + STATE(1917), 1, sym__class_declaration_item, - STATE(6732), 1, + STATE(2404), 1, + sym_field_declaration_list, + STATE(6738), 1, sym__scope_resolution, - STATE(7061), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7717), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5589), 2, + STATE(5647), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229026] = 18, + [229929] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5028), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9643), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2531), 1, + STATE(2517), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(6746), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229085] = 19, + [229988] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(10063), 1, - anon_sym_COMMA, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2521), 1, + sym__class_declaration_item, + STATE(3750), 1, + sym_field_declaration_list, + STATE(6721), 1, + sym__scope_resolution, + STATE(7247), 1, + sym_virtual_specifier, + STATE(8003), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(3122), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [230047] = 10, + ACTIONS(3), 1, + sym_comment, ACTIONS(10065), 1, + sym_identifier, + ACTIONS(10067), 1, + anon_sym_RPAREN, + ACTIONS(10069), 1, anon_sym_LPAREN2, ACTIONS(10071), 1, - anon_sym_LBRACK, - ACTIONS(10073), 1, - anon_sym_EQ, + anon_sym_defined, ACTIONS(10077), 1, - anon_sym_SEMI, - ACTIONS(10079), 1, - anon_sym_LBRACE, - ACTIONS(10081), 1, - anon_sym_try, - STATE(311), 1, - sym_compound_statement, - STATE(312), 1, - sym_try_statement, - 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, + sym_number_literal, + ACTIONS(10073), 2, + anon_sym_BANG, + anon_sym_TILDE, 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, - [229146] = 18, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10079), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5632), 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, + [230090] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9647), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4690), 1, + STATE(2521), 1, sym__class_declaration_item, - STATE(6743), 1, + STATE(2990), 1, + sym_field_declaration_list, + STATE(6713), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229205] = 3, + [230149] = 18, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6024), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(9663), 1, + sym_identifier, + STATE(1835), 1, + sym_template_type, + STATE(1889), 1, + sym__class_declaration_item, + STATE(2404), 1, + sym_field_declaration_list, + STATE(6738), 1, + sym__scope_resolution, + STATE(7223), 1, + sym_virtual_specifier, + STATE(7948), 1, + sym_base_class_clause, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [229234] = 7, + STATE(2035), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [230208] = 18, 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [229271] = 15, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2532), 1, + sym__class_declaration_item, + STATE(3750), 1, + sym_field_declaration_list, + STATE(6721), 1, + sym__scope_resolution, + STATE(7247), 1, + sym_virtual_specifier, + STATE(8003), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(3122), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5698), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [230267] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9849), 1, + ACTIONS(9861), 1, anon_sym_LBRACE, - STATE(1629), 1, + STATE(5684), 1, sym_compound_statement, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7997), 1, + STATE(7838), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [229324] = 18, + [230320] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9437), 1, + ACTIONS(6672), 1, + anon_sym_LBRACE, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(9681), 1, sym_identifier, - STATE(1784), 1, + STATE(2713), 1, sym_template_type, - STATE(1907), 1, - sym__class_declaration_item, - STATE(2382), 1, + STATE(2901), 1, sym_field_declaration_list, - STATE(6699), 1, + STATE(3240), 1, + sym__class_declaration_item, + STATE(6733), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7176), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(7933), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5612), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229383] = 18, + [230379] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6795), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - ACTIONS(9459), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9681), 1, sym_identifier, - STATE(2856), 1, + STATE(2713), 1, sym_template_type, - STATE(3013), 1, + STATE(2901), 1, sym_field_declaration_list, - STATE(3571), 1, + STATE(3243), 1, sym__class_declaration_item, - STATE(6708), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(7182), 1, + STATE(7176), 1, sym_virtual_specifier, - STATE(7894), 1, + STATE(7933), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2608), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5590), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229442] = 18, + [230438] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6795), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - ACTIONS(9459), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9681), 1, sym_identifier, - STATE(2856), 1, + STATE(2713), 1, sym_template_type, - STATE(3013), 1, + STATE(2901), 1, sym_field_declaration_list, - STATE(3575), 1, + STATE(3249), 1, sym__class_declaration_item, - STATE(6708), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(7182), 1, + STATE(7176), 1, sym_virtual_specifier, - STATE(7894), 1, + STATE(7933), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2608), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229501] = 18, + [230497] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9681), 1, sym_identifier, - STATE(3638), 1, + STATE(2713), 1, sym_template_type, - STATE(4009), 1, + STATE(2901), 1, sym_field_declaration_list, - STATE(4157), 1, + STATE(3252), 1, sym__class_declaration_item, - STATE(6732), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(7061), 1, + STATE(7176), 1, sym_virtual_specifier, - STATE(7717), 1, + STATE(7933), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5614), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229560] = 18, + [230556] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6795), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - ACTIONS(9459), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9681), 1, sym_identifier, - STATE(2856), 1, + STATE(2713), 1, sym_template_type, - STATE(3013), 1, + STATE(2901), 1, sym_field_declaration_list, - STATE(3468), 1, + STATE(3261), 1, sym__class_declaration_item, - STATE(6708), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(7182), 1, + STATE(7176), 1, sym_virtual_specifier, - STATE(7894), 1, + STATE(7933), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2608), 2, + STATE(2541), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229619] = 18, + [230615] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9437), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(9688), 1, sym_identifier, - STATE(1784), 1, + STATE(1835), 1, sym_template_type, - STATE(1913), 1, + STATE(1871), 1, sym__class_declaration_item, - STATE(2382), 1, + STATE(5139), 1, sym_field_declaration_list, - STATE(6699), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7220), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(4603), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5653), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229678] = 10, + [230674] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, sym_identifier, - ACTIONS(10089), 1, - anon_sym_RPAREN, - ACTIONS(10091), 1, - anon_sym_LPAREN2, - ACTIONS(10093), 1, - anon_sym_defined, - ACTIONS(10099), 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(5563), 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, - [229721] = 5, - ACTIONS(3), 1, - sym_comment, - 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, - 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, - [229754] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9196), 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(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(5170), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5172), 18, - anon_sym_COMMA, + ACTIONS(8419), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(8421), 1, + anon_sym_STAR, + ACTIONS(8423), 1, anon_sym_AMP_AMP, + ACTIONS(8425), 1, + anon_sym_AMP, + ACTIONS(10081), 1, anon_sym_SEMI, + STATE(5471), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8350), 1, + sym_attribute_specifier, + STATE(8840), 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, - [229820] = 18, + anon_sym___attribute, + STATE(6525), 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, + [230727] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6795), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9459), 1, - anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(2856), 1, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, sym_template_type, - STATE(3013), 1, - sym_field_declaration_list, - STATE(3507), 1, + STATE(2521), 1, sym__class_declaration_item, - STATE(6708), 1, + STATE(2990), 1, + sym_field_declaration_list, + STATE(6741), 1, sym__scope_resolution, - STATE(7182), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7894), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2608), 2, + STATE(4027), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5600), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [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, + [230786] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - ACTIONS(9660), 1, + ACTIONS(9659), 1, anon_sym_COLON_COLON, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2515), 1, + STATE(2532), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(6706), 1, + STATE(6741), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4003), 2, + STATE(4027), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5639), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [229991] = 18, + [230845] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + STATE(3345), 1, + sym_compound_statement, + STATE(5954), 1, + sym_parameter_list, + STATE(8030), 1, + sym_lambda_declarator, + STATE(8522), 1, + sym_trailing_return_type, + STATE(5962), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6084), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6975), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [230898] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8757), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9686), 1, sym_identifier, - ACTIONS(9660), 1, - anon_sym_COLON_COLON, - STATE(1922), 1, + STATE(4398), 1, sym_template_type, - STATE(2522), 1, - sym__class_declaration_item, - STATE(2962), 1, + STATE(4974), 1, sym_field_declaration_list, - STATE(6706), 1, + STATE(5013), 1, + sym__class_declaration_item, + STATE(6737), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7130), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7760), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4003), 2, + STATE(4396), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5616), 2, + STATE(5623), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230050] = 18, + [230957] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6795), 1, - anon_sym_LBRACE, - ACTIONS(9459), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(8757), 1, + anon_sym_LBRACE, + ACTIONS(9686), 1, sym_identifier, - STATE(2856), 1, + STATE(4398), 1, sym_template_type, - STATE(3013), 1, + STATE(4974), 1, sym_field_declaration_list, - STATE(3449), 1, + STATE(5001), 1, sym__class_declaration_item, - STATE(6708), 1, + STATE(6737), 1, sym__scope_resolution, - STATE(7182), 1, + STATE(7130), 1, sym_virtual_specifier, - STATE(7894), 1, + STATE(7760), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2608), 2, + STATE(4396), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230109] = 18, + [231016] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8088), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(9649), 1, + ACTIONS(9688), 1, sym_identifier, - STATE(1784), 1, + STATE(1835), 1, sym_template_type, - STATE(1913), 1, + STATE(1902), 1, sym__class_declaration_item, - STATE(5190), 1, + STATE(5139), 1, sym_field_declaration_list, - STATE(6724), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(7203), 1, + STATE(7220), 1, sym_virtual_specifier, - STATE(7975), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4535), 2, + STATE(4603), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5680), 2, + STATE(5629), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230168] = 7, + [231075] = 18, 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(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_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(8757), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [230205] = 18, + ACTIONS(9686), 1, + sym_identifier, + STATE(4398), 1, + sym_template_type, + STATE(4974), 1, + sym_field_declaration_list, + STATE(5004), 1, + sym__class_declaration_item, + STATE(6737), 1, + sym__scope_resolution, + STATE(7130), 1, + sym_virtual_specifier, + STATE(7760), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(4396), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [231134] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, - anon_sym_LBRACE, ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(8757), 1, + anon_sym_LBRACE, + ACTIONS(9686), 1, sym_identifier, - STATE(1922), 1, + STATE(4398), 1, sym_template_type, - STATE(2544), 1, - sym__class_declaration_item, - STATE(3663), 1, + STATE(4974), 1, sym_field_declaration_list, - STATE(6743), 1, + STATE(5017), 1, + sym__class_declaration_item, + STATE(6737), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7130), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7760), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(4396), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5564), 2, + STATE(5625), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230264] = 18, + [231193] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(8757), 1, anon_sym_LBRACE, - ACTIONS(9647), 1, + ACTIONS(9686), 1, sym_identifier, - STATE(1922), 1, + STATE(4398), 1, sym_template_type, - STATE(4635), 1, + STATE(4974), 1, sym_field_declaration_list, - STATE(4785), 1, + STATE(4984), 1, sym__class_declaration_item, - STATE(6743), 1, + STATE(6737), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7130), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7760), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(4396), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230323] = 18, + [231252] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + STATE(1656), 1, + sym_compound_statement, + STATE(5954), 1, + sym_parameter_list, + STATE(7885), 1, + sym_lambda_declarator, + STATE(8522), 1, + sym_trailing_return_type, + STATE(5962), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6084), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6975), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [231305] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(9869), 1, + anon_sym_LBRACE, + STATE(5954), 1, + sym_parameter_list, + STATE(6043), 1, + sym_compound_statement, + STATE(7987), 1, + sym_lambda_declarator, + STATE(8522), 1, + sym_trailing_return_type, + STATE(5962), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6084), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6975), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [231358] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10085), 1, + anon_sym_LPAREN2, + ACTIONS(10087), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10083), 17, + anon_sym_DOT_DOT_DOT, + 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_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [231389] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9688), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(2456), 1, + STATE(1888), 1, sym__class_declaration_item, - STATE(3663), 1, + STATE(5139), 1, sym_field_declaration_list, - STATE(6743), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7220), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(4603), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230382] = 18, + [231448] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9647), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4793), 1, + STATE(2532), 1, sym__class_declaration_item, - STATE(6743), 1, + STATE(2990), 1, + sym_field_declaration_list, + STATE(6713), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5629), 2, + STATE(5713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230441] = 15, + [231507] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9839), 1, + ACTIONS(9855), 1, anon_sym_LBRACE, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - STATE(5576), 1, + STATE(2534), 1, sym_compound_statement, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7859), 1, + STATE(7901), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [230494] = 10, + [231560] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, - sym_identifier, + ACTIONS(10089), 1, + anon_sym_COMMA, 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, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10099), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10101), 1, + anon_sym_AMP_AMP, + ACTIONS(10103), 1, + anon_sym_PIPE, + ACTIONS(10105), 1, + anon_sym_CARET, + ACTIONS(10107), 1, + anon_sym_AMP, + STATE(7650), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10093), 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(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10109), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [231615] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(7512), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9661), 1, sym_identifier, - STATE(2684), 1, + STATE(3603), 1, sym_template_type, - STATE(2885), 1, + STATE(4023), 1, sym_field_declaration_list, - STATE(3221), 1, + STATE(4140), 1, sym__class_declaration_item, - STATE(6728), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(7042), 1, + STATE(7167), 1, sym_virtual_specifier, - STATE(8040), 1, + STATE(7770), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2467), 2, + STATE(3166), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5621), 2, + STATE(5655), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230596] = 18, + [231674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5196), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + 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, + anon_sym_requires, + [231703] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9404), 1, + anon_sym_requires, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9399), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9388), 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, + [231740] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(7512), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9661), 1, sym_identifier, - STATE(2684), 1, + STATE(3603), 1, sym_template_type, - STATE(2885), 1, + STATE(4023), 1, sym_field_declaration_list, - STATE(3240), 1, + STATE(4172), 1, sym__class_declaration_item, - STATE(6728), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(7042), 1, + STATE(7167), 1, sym_virtual_specifier, - STATE(8040), 1, + STATE(7770), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2467), 2, + STATE(3166), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230655] = 18, + [231799] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5036), 1, anon_sym_COLON_COLON, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9679), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2544), 1, + STATE(2542), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(6715), 1, + STATE(6759), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2539), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5717), 2, + STATE(5643), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230714] = 15, + [231858] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 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(9857), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, anon_sym_LBRACE, - STATE(2557), 1, - sym_compound_statement, - STATE(5929), 1, - sym_parameter_list, - STATE(8036), 1, - sym_lambda_declarator, - STATE(8588), 1, - sym_trailing_return_type, - STATE(5946), 2, + ACTIONS(9679), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2517), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(6759), 1, + sym__scope_resolution, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2539), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 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, - [230767] = 18, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [231917] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8088), 1, - anon_sym_COLON_COLON, - ACTIONS(9649), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, sym_identifier, - STATE(1784), 1, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, sym_template_type, - STATE(1907), 1, + STATE(2515), 1, sym__class_declaration_item, - STATE(5190), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(6724), 1, + STATE(6741), 1, sym__scope_resolution, - STATE(7203), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(7975), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4535), 2, + STATE(4027), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230826] = 3, + [231976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10115), 3, + ACTIONS(5174), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10113), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(5176), 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_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [230855] = 15, + [232005] = 20, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(141), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5494), 1, + anon_sym_COLON_COLON, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(10117), 1, + sym_identifier, + ACTIONS(10119), 1, + anon_sym_template, + STATE(2620), 1, + sym_destructor_name, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, + sym_dependent_identifier, + STATE(2659), 1, + sym_operator_name, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5641), 1, + sym__scope_resolution, + STATE(7112), 1, + sym_qualified_operator_cast_identifier, + STATE(7178), 1, + sym_operator_cast, + STATE(8501), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [232068] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9183), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9172), 11, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9843), 1, - anon_sym_DASH_GT, - ACTIONS(9855), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(3421), 1, - sym_compound_statement, - STATE(5929), 1, - sym_parameter_list, - STATE(7819), 1, - sym_lambda_declarator, - STATE(8588), 1, - sym_trailing_return_type, - STATE(5946), 2, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [232105] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9679), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2521), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(6759), 1, + sym__scope_resolution, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2539), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 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, - [230908] = 18, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [232164] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9679), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2532), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(6759), 1, + sym__scope_resolution, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2539), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5579), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [232223] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(9660), 1, + ACTIONS(10069), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_defined, + ACTIONS(10121), 1, + anon_sym_RPAREN, + ACTIONS(10123), 1, + sym_number_literal, + ACTIONS(10073), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10075), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10079), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5723), 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, + [232266] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9712), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9701), 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, + [232303] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6024), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - STATE(1922), 1, + ACTIONS(9663), 1, + sym_identifier, + STATE(1835), 1, sym_template_type, - STATE(2531), 1, + STATE(1871), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2404), 1, sym_field_declaration_list, - STATE(6706), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4003), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [230967] = 16, + [232362] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + 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, + [232391] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + 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, + [232420] = 3, + ACTIONS(3), 1, + sym_comment, + 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, + 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, + [232449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5681), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10127), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10125), 14, 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, - 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, + 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, + [232482] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6526), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9580), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(2673), 1, + STATE(2671), 1, sym_template_type, - STATE(2809), 1, + STATE(2881), 1, sym_field_declaration_list, - STATE(3068), 1, + STATE(3152), 1, sym__class_declaration_item, - STATE(6713), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7139), 1, + STATE(7093), 1, sym_virtual_specifier, - STATE(7762), 1, + STATE(8050), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2437), 2, + STATE(2441), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5623), 2, + STATE(5657), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231081] = 18, + [232541] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6526), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9580), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(2673), 1, + STATE(2671), 1, sym_template_type, - STATE(2809), 1, + STATE(2881), 1, sym_field_declaration_list, - STATE(3072), 1, + STATE(3157), 1, sym__class_declaration_item, - STATE(6713), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7139), 1, + STATE(7093), 1, sym_virtual_specifier, - STATE(7762), 1, + STATE(8050), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2437), 2, + STATE(2441), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231140] = 18, + [232600] = 18, 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(9663), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(2522), 1, + STATE(1888), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2404), 1, sym_field_declaration_list, - STATE(6715), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5646), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231199] = 18, + [232659] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(7512), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9661), 1, sym_identifier, - STATE(2684), 1, + STATE(3603), 1, sym_template_type, - STATE(2885), 1, + STATE(4023), 1, sym_field_declaration_list, - STATE(3169), 1, + STATE(4151), 1, sym__class_declaration_item, - STATE(6728), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(7042), 1, + STATE(7167), 1, sym_virtual_specifier, - STATE(8040), 1, + STATE(7770), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2467), 2, + STATE(3166), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231258] = 18, + [232718] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(7512), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9661), 1, sym_identifier, - STATE(2684), 1, + STATE(3603), 1, sym_template_type, - STATE(2885), 1, + STATE(4023), 1, sym_field_declaration_list, - STATE(3155), 1, + STATE(4154), 1, sym__class_declaration_item, - STATE(6728), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(7042), 1, + STATE(7167), 1, sym_virtual_specifier, - STATE(8040), 1, + STATE(7770), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2467), 2, + STATE(3166), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5625), 2, + STATE(5661), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231317] = 18, + [232777] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6526), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9580), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(2673), 1, + STATE(2671), 1, sym_template_type, - STATE(2809), 1, + STATE(2881), 1, sym_field_declaration_list, - STATE(3114), 1, + STATE(3035), 1, sym__class_declaration_item, - STATE(6713), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7139), 1, + STATE(7093), 1, sym_virtual_specifier, - STATE(7762), 1, + STATE(8050), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2437), 2, + STATE(2441), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231376] = 18, + [232836] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6526), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9580), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(2673), 1, + STATE(2671), 1, sym_template_type, - STATE(2809), 1, + STATE(2881), 1, sym_field_declaration_list, - STATE(3090), 1, + STATE(3049), 1, sym__class_declaration_item, - STATE(6713), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7139), 1, + STATE(7093), 1, sym_virtual_specifier, - STATE(7762), 1, + STATE(8050), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2437), 2, + STATE(2441), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5627), 2, + STATE(5659), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231435] = 18, + [232895] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(2684), 1, + STATE(2671), 1, sym_template_type, - STATE(2885), 1, + STATE(2881), 1, sym_field_declaration_list, - STATE(3161), 1, + STATE(3128), 1, sym__class_declaration_item, - STATE(6728), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(7042), 1, + STATE(7093), 1, sym_virtual_specifier, - STATE(8040), 1, + STATE(8050), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2467), 2, + STATE(2441), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231494] = 18, + [232954] = 3, 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, + ACTIONS(5158), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5160), 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(6530), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(8074), 1, - anon_sym_COLON_COLON, - ACTIONS(9647), 1, - sym_identifier, - STATE(1922), 1, - sym_template_type, - STATE(2531), 1, - sym__class_declaration_item, - STATE(3663), 1, - sym_field_declaration_list, - STATE(6743), 1, - sym__scope_resolution, - STATE(7228), 1, - sym_virtual_specifier, - STATE(8009), 1, - sym_base_class_clause, - ACTIONS(5567), 2, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - 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, - [231553] = 18, + anon_sym_try, + anon_sym_requires, + [232983] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6526), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9580), 1, + ACTIONS(7512), 1, + anon_sym_LBRACE, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9661), 1, sym_identifier, - STATE(2673), 1, + STATE(3603), 1, sym_template_type, - STATE(2809), 1, + STATE(4023), 1, sym_field_declaration_list, - STATE(3103), 1, + STATE(4163), 1, sym__class_declaration_item, - STATE(6713), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(7139), 1, + STATE(7167), 1, sym_virtual_specifier, - STATE(7762), 1, + STATE(7770), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2437), 2, + STATE(3166), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231612] = 15, + [233042] = 3, 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, + ACTIONS(5170), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5172), 18, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9843), 1, - anon_sym_DASH_GT, - ACTIONS(9845), 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(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, + 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, + [233071] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6024), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8074), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(8630), 1, - anon_sym_LBRACE, - ACTIONS(9647), 1, + ACTIONS(9671), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4765), 1, + STATE(1902), 1, sym__class_declaration_item, - STATE(6743), 1, + STATE(2404), 1, + sym_field_declaration_list, + STATE(6745), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5701), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231724] = 19, + [233130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(5162), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5164), 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(113), 1, + 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, + [233159] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10089), 1, + anon_sym_COMMA, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10099), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10101), 1, + anon_sym_AMP_AMP, + ACTIONS(10103), 1, + anon_sym_PIPE, + ACTIONS(10105), 1, + anon_sym_CARET, + ACTIONS(10107), 1, + anon_sym_AMP, + ACTIONS(10129), 1, + anon_sym_RPAREN, + STATE(7674), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10109), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [233214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5166), 3, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10063), 1, + ACTIONS(5168), 18, anon_sym_COMMA, - ACTIONS(10065), 1, anon_sym_LPAREN2, - ACTIONS(10071), 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, + 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, + [233243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5178), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10073), 1, + anon_sym___asm, + ACTIONS(5180), 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, - ACTIONS(10119), 1, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [233272] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10131), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6315), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6317), 16, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_SEMI, - ACTIONS(10121), 1, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(10123), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, 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_requires, + [233303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10135), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10133), 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__, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7980), 2, - sym_argument_list, - sym_initializer_list, - [231785] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [233332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 3, + ACTIONS(5192), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5182), 18, + ACTIONS(5194), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -488805,263 +491423,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [231814] = 15, + [233361] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(9216), 1, + anon_sym_requires, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9183), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9172), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, - anon_sym_noexcept, - ACTIONS(7077), 1, - anon_sym_throw, - ACTIONS(9798), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [233398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10139), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10137), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9843), 1, + 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, - 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [233427] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8000), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(8906), 1, + ACTIONS(8669), 1, anon_sym_LBRACE, - ACTIONS(9672), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(4461), 1, + STATE(1946), 1, sym_template_type, - STATE(4950), 1, + STATE(4537), 1, sym_field_declaration_list, - STATE(4990), 1, + STATE(4684), 1, sym__class_declaration_item, - STATE(6731), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7051), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7920), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5635), 2, + STATE(5682), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231926] = 18, + [233486] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8000), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(8906), 1, + ACTIONS(8669), 1, anon_sym_LBRACE, - ACTIONS(9672), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(4461), 1, + STATE(1946), 1, sym_template_type, - STATE(4950), 1, + STATE(4537), 1, sym_field_declaration_list, - STATE(4993), 1, + STATE(4723), 1, sym__class_declaration_item, - STATE(6731), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7051), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7920), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [231985] = 18, + [233545] = 5, + ACTIONS(10005), 1, + anon_sym_LF, + ACTIONS(10141), 1, + anon_sym_LPAREN2, + ACTIONS(10143), 1, + sym_comment, + STATE(5910), 1, + sym_preproc_argument_list, + ACTIONS(10009), 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, + [233578] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5887), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9943), 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, + [233615] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10041), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, + anon_sym_EQ, + ACTIONS(10145), 1, + anon_sym_SEMI, + ACTIONS(10147), 1, + anon_sym_LBRACE, + ACTIONS(10149), 1, + anon_sym_try, + STATE(767), 1, + sym_compound_statement, + STATE(768), 1, + sym_try_statement, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7467), 1, + sym_gnu_asm_expression, + STATE(7468), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [233676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5200), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5202), 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(6528), 1, + 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, + [233705] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9399), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9388), 11, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(8000), 1, - anon_sym_COLON_COLON, - ACTIONS(8906), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(9672), 1, - sym_identifier, - STATE(4461), 1, - sym_template_type, - STATE(4950), 1, - sym_field_declaration_list, - STATE(5003), 1, - sym__class_declaration_item, - STATE(6731), 1, - sym__scope_resolution, - STATE(7051), 1, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [233742] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9728), 1, + anon_sym_requires, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, sym_virtual_specifier, - STATE(7920), 1, - sym_base_class_clause, - ACTIONS(5567), 2, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9712), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9701), 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, + [233779] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10155), 2, anon_sym_final, anon_sym_override, - STATE(4449), 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, - [232044] = 18, + STATE(5681), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10153), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10151), 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, + [233812] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8000), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(8906), 1, + ACTIONS(8669), 1, anon_sym_LBRACE, - ACTIONS(9672), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(4461), 1, + STATE(1946), 1, sym_template_type, - STATE(4950), 1, + STATE(4537), 1, sym_field_declaration_list, - STATE(5006), 1, + STATE(4847), 1, sym__class_declaration_item, - STATE(6731), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7051), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7920), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5637), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [232103] = 18, + [233871] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8000), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(8906), 1, + ACTIONS(8669), 1, anon_sym_LBRACE, - ACTIONS(9672), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(4461), 1, + STATE(1946), 1, sym_template_type, - STATE(4950), 1, + STATE(4537), 1, sym_field_declaration_list, - STATE(5014), 1, + STATE(4681), 1, sym__class_declaration_item, - STATE(6731), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7051), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7920), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4449), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5690), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [232162] = 4, + [233930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10125), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6248), 3, + ACTIONS(5208), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6250), 16, + ACTIONS(5210), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, @@ -489069,20 +491876,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [232193] = 3, + [233959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 3, + ACTIONS(5204), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5186), 18, + ACTIONS(5206), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -489101,175 +491909,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [232222] = 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(2693), 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(5643), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [232281] = 15, + [233988] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - STATE(1629), 1, + ACTIONS(9865), 1, + anon_sym_LBRACE, + STATE(3345), 1, sym_compound_statement, - STATE(5929), 1, + STATE(5954), 1, sym_parameter_list, - STATE(7752), 1, + STATE(8015), 1, sym_lambda_declarator, - STATE(8588), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(5946), 2, + STATE(5962), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6072), 2, + STATE(6084), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6944), 3, + STATE(6975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [232334] = 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(2702), 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(4831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [232393] = 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(2721), 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(4831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [232452] = 3, + [234041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 3, + ACTIONS(1940), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5190), 18, + ACTIONS(1938), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -489288,165 +491973,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [232481] = 5, + [234070] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10131), 2, - anon_sym_final, - anon_sym_override, - STATE(5645), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(10129), 3, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(9867), 1, + anon_sym_LBRACE, + STATE(4298), 1, + sym_compound_statement, + STATE(5954), 1, + sym_parameter_list, + STATE(7816), 1, + sym_lambda_declarator, + STATE(8522), 1, + sym_trailing_return_type, + STATE(5962), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6084), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6975), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [234123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10127), 14, + ACTIONS(1934), 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_try, - anon_sym_requires, - [232514] = 18, - 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(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, + anon_sym_try, + anon_sym_requires, + [234152] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8074), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(8669), 1, anon_sym_LBRACE, - ACTIONS(9647), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(4635), 1, + STATE(4537), 1, sym_field_declaration_list, - STATE(4780), 1, + STATE(4708), 1, sym__class_declaration_item, - STATE(6743), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7261), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(8059), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(4304), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5604), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [232632] = 18, + [234211] = 15, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 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(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8421), 1, + anon_sym_STAR, + ACTIONS(8423), 1, + anon_sym_AMP_AMP, + ACTIONS(8425), 1, + anon_sym_AMP, + ACTIONS(10158), 1, + anon_sym_SEMI, + STATE(5485), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8531), 1, + sym_attribute_specifier, + STATE(8840), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(6525), 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, + [234264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 3, + ACTIONS(5182), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5194), 18, + ACTIONS(5184), 18, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -489465,533 +492142,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [232720] = 18, + [234293] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7984), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9645), 1, + ACTIONS(9669), 1, sym_identifier, - STATE(1784), 1, + STATE(1966), 1, sym_template_type, - STATE(1907), 1, - sym__class_declaration_item, - STATE(2382), 1, + STATE(2230), 1, sym_field_declaration_list, - STATE(6727), 1, + STATE(2289), 1, + sym__class_declaration_item, + STATE(6762), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7186), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(7866), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5695), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [232779] = 18, + [234352] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(5609), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8028), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(8630), 1, - anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(9669), 1, sym_identifier, - STATE(1922), 1, + STATE(1966), 1, sym_template_type, - STATE(4635), 1, + STATE(2230), 1, sym_field_declaration_list, - STATE(4780), 1, + STATE(2293), 1, sym__class_declaration_item, - STATE(6719), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7186), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7866), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5659), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [232838] = 18, + [234411] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(5609), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8028), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(8630), 1, - anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(9669), 1, sym_identifier, - STATE(1922), 1, + STATE(1966), 1, sym_template_type, - STATE(4635), 1, + STATE(2230), 1, sym_field_declaration_list, - STATE(4690), 1, + STATE(2326), 1, sym__class_declaration_item, - STATE(6719), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7186), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7866), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [232897] = 18, + [234470] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9437), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(9669), 1, sym_identifier, - STATE(1784), 1, + STATE(1966), 1, sym_template_type, - STATE(1874), 1, - sym__class_declaration_item, - STATE(2382), 1, + STATE(2230), 1, sym_field_declaration_list, - STATE(6699), 1, + STATE(2330), 1, + sym__class_declaration_item, + STATE(6762), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7186), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(7866), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(1832), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5697), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [232956] = 15, + [234529] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 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(9851), 1, + ACTIONS(5609), 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, - ACTIONS(9390), 1, - anon_sym_requires, - ACTIONS(9387), 2, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9669), 1, + sym_identifier, + STATE(1966), 1, + sym_template_type, + STATE(2230), 1, + sym_field_declaration_list, + STATE(2312), 1, + sym__class_declaration_item, + STATE(6762), 1, + sym__scope_resolution, + STATE(7186), 1, + sym_virtual_specifier, + STATE(7866), 1, + sym_base_class_clause, + ACTIONS(5611), 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, + STATE(1832), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [234588] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7984), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9645), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1913), 1, + STATE(2515), 1, sym__class_declaration_item, - STATE(2382), 1, + STATE(3750), 1, sym_field_declaration_list, - STATE(6727), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5716), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [233105] = 19, + [234647] = 7, 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, + ACTIONS(10160), 1, + anon_sym_requires, + ACTIONS(9937), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9935), 3, + anon_sym___attribute, 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___asm, + ACTIONS(9933), 11, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9843), 1, - anon_sym_DASH_GT, - ACTIONS(9853), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, 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, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [234684] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6024), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8028), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(8630), 1, - anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(9671), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4785), 1, + STATE(1917), 1, sym__class_declaration_item, - STATE(6719), 1, + STATE(2404), 1, + sym_field_declaration_list, + STATE(6745), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5734), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [233278] = 18, + [234743] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6024), 1, + anon_sym_LBRACE, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8028), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(8630), 1, - anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(9671), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4793), 1, + STATE(1888), 1, sym__class_declaration_item, - STATE(6719), 1, + STATE(2404), 1, + sym_field_declaration_list, + STATE(6745), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5662), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [233337] = 15, + [234802] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 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(9863), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - STATE(4300), 1, - sym_compound_statement, - STATE(5929), 1, - sym_parameter_list, - STATE(7726), 1, - sym_lambda_declarator, - STATE(8588), 1, - sym_trailing_return_type, - STATE(5946), 2, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(9671), 1, + sym_identifier, + STATE(1835), 1, + sym_template_type, + STATE(1889), 1, + sym__class_declaration_item, + STATE(2404), 1, + sym_field_declaration_list, + STATE(6745), 1, + sym__scope_resolution, + STATE(7223), 1, + sym_virtual_specifier, + STATE(7948), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2035), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 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, - [233390] = 18, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [234861] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(8630), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(9667), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(4635), 1, - sym_field_declaration_list, - STATE(4765), 1, + STATE(2542), 1, sym__class_declaration_item, - STATE(6719), 1, + STATE(3750), 1, + sym_field_declaration_list, + STATE(6716), 1, sym__scope_resolution, - STATE(7213), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7996), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4270), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5708), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [233449] = 4, + [234920] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10142), 1, - anon_sym_LPAREN2, - ACTIONS(10144), 3, + ACTIONS(10163), 1, + anon_sym_requires, + ACTIONS(9947), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5887), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9945), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10140), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(9943), 11, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, @@ -490000,284 +492611,273 @@ 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, - [233480] = 18, + [234957] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6363), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9612), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9664), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(2598), 1, + STATE(1946), 1, sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2743), 1, + STATE(2517), 1, sym__class_declaration_item, - STATE(6694), 1, + STATE(3750), 1, + sym_field_declaration_list, + STATE(6716), 1, sym__scope_resolution, - STATE(7141), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7773), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2374), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [233539] = 18, + [235016] = 18, 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(9663), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(2456), 1, + STATE(1902), 1, sym__class_declaration_item, - STATE(2962), 1, + STATE(2404), 1, sym_field_declaration_list, - STATE(6715), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(7126), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(7712), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2440), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5654), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [233598] = 7, + [235075] = 19, 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, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, anon_sym___asm, - ACTIONS(9945), 11, + ACTIONS(9845), 1, + anon_sym_try, + ACTIONS(10039), 1, anon_sym_COMMA, + ACTIONS(10041), 1, anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, + anon_sym_EQ, + ACTIONS(10166), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10168), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(2015), 1, + sym_compound_statement, + STATE(2016), 1, + sym_try_statement, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7610), 1, + sym_gnu_asm_expression, + STATE(7611), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [233635] = 18, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [235136] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9530), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1943), 1, + STATE(1946), 1, sym_template_type, - STATE(2213), 1, - sym_field_declaration_list, - STATE(2289), 1, + STATE(2521), 1, sym__class_declaration_item, - STATE(6695), 1, + STATE(3750), 1, + sym_field_declaration_list, + STATE(6716), 1, sym__scope_resolution, - STATE(7100), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7921), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(1816), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5673), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [233694] = 18, + [235195] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9530), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1943), 1, + STATE(1946), 1, sym_template_type, - STATE(2213), 1, - sym_field_declaration_list, - STATE(2314), 1, + STATE(2532), 1, sym__class_declaration_item, - STATE(6695), 1, + STATE(3750), 1, + sym_field_declaration_list, + STATE(6716), 1, sym__scope_resolution, - STATE(7100), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7921), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(1816), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5715), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 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, + [235254] = 18, 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + ACTIONS(9657), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2542), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(6713), 1, + sym__scope_resolution, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [233825] = 7, + STATE(2539), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(5606), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [235313] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, + ACTIONS(7105), 1, anon_sym_requires, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9382), 3, + ACTIONS(9935), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9371), 11, + ACTIONS(9933), 11, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -490289,21 +492889,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [233862] = 5, + [235350] = 15, 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, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(9881), 1, + anon_sym_LBRACE, + STATE(3959), 1, + sym_compound_statement, + STATE(5954), 1, + sym_parameter_list, + STATE(7979), 1, + sym_lambda_declarator, + STATE(8522), 1, + sym_trailing_return_type, + STATE(5962), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6084), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6975), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [235403] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2515), 1, + sym__class_declaration_item, + STATE(2990), 1, + sym_field_declaration_list, + STATE(6713), 1, + sym__scope_resolution, + STATE(7254), 1, + sym_virtual_specifier, + STATE(7734), 1, + sym_base_class_clause, + ACTIONS(5611), 2, + anon_sym_final, + anon_sym_override, + STATE(2539), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [235462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10172), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6300), 14, + ACTIONS(10170), 18, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -490313,167 +492988,171 @@ 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, - [233895] = 18, + [235491] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5565), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9530), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1943), 1, + STATE(1946), 1, sym_template_type, - STATE(2213), 1, - sym_field_declaration_list, - STATE(2275), 1, + STATE(2515), 1, sym__class_declaration_item, - STATE(6695), 1, + STATE(3750), 1, + sym_field_declaration_list, + STATE(6716), 1, sym__scope_resolution, - STATE(7100), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7921), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(1816), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [233954] = 18, + [235550] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5565), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9530), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9673), 1, sym_identifier, - STATE(1943), 1, + STATE(2611), 1, sym_template_type, - STATE(2213), 1, + STATE(2635), 1, sym_field_declaration_list, - STATE(2250), 1, + STATE(2725), 1, sym__class_declaration_item, - STATE(6695), 1, + STATE(6758), 1, sym__scope_resolution, - STATE(7100), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7921), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(1816), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5675), 2, + STATE(5720), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234013] = 18, + [235609] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5565), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9530), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9673), 1, sym_identifier, - STATE(1943), 1, + STATE(2611), 1, sym_template_type, - STATE(2213), 1, + STATE(2635), 1, sym_field_declaration_list, - STATE(2340), 1, + STATE(2727), 1, sym__class_declaration_item, - STATE(6695), 1, + STATE(6758), 1, sym__scope_resolution, - STATE(7100), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7921), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(1816), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234072] = 3, + [235668] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 3, + ACTIONS(10131), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(10174), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6261), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5198), 18, + ACTIONS(6263), 14, 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, - [234101] = 3, + [235701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10158), 3, + ACTIONS(10178), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10156), 18, + ACTIONS(10176), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -490492,1171 +493171,1463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [234130] = 3, + [235730] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(6410), 1, 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, - [234159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5196), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5198), 18, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(6664), 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(8096), 1, + anon_sym_COLON_COLON, + ACTIONS(9673), 1, + sym_identifier, + STATE(2611), 1, + sym_template_type, + STATE(2635), 1, + sym_field_declaration_list, + STATE(2737), 1, + sym__class_declaration_item, + STATE(6758), 1, + sym__scope_resolution, + STATE(7127), 1, + sym_virtual_specifier, + STATE(7735), 1, + sym_base_class_clause, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [234188] = 18, + STATE(2394), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [235789] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(8088), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9649), 1, + ACTIONS(9673), 1, sym_identifier, - STATE(1784), 1, + STATE(2611), 1, sym_template_type, - STATE(1874), 1, - sym__class_declaration_item, - STATE(5190), 1, + STATE(2635), 1, sym_field_declaration_list, - STATE(6724), 1, + STATE(2741), 1, + sym__class_declaration_item, + STATE(6758), 1, sym__scope_resolution, - STATE(7203), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7975), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(4535), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5722), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234247] = 18, + [235848] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(7543), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9673), 1, sym_identifier, - STATE(3638), 1, + STATE(2611), 1, sym_template_type, - STATE(4009), 1, + STATE(2635), 1, sym_field_declaration_list, - STATE(4148), 1, + STATE(2749), 1, sym__class_declaration_item, - STATE(6732), 1, + STATE(6758), 1, sym__scope_resolution, - STATE(7061), 1, + STATE(7127), 1, sym_virtual_specifier, - STATE(7717), 1, + STATE(7735), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3210), 2, + STATE(2394), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5573), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234306] = 11, + [235907] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, - anon_sym_LPAREN2, - ACTIONS(7862), 1, - anon_sym_LBRACK, - ACTIONS(8183), 1, - anon_sym_STAR, - ACTIONS(8185), 1, + ACTIONS(10089), 1, + anon_sym_COMMA, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10099), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10101), 1, anon_sym_AMP_AMP, - ACTIONS(8187), 1, + ACTIONS(10103), 1, + anon_sym_PIPE, + ACTIONS(10105), 1, + anon_sym_CARET, + ACTIONS(10107), 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, + ACTIONS(10180), 1, 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, - [234351] = 18, + STATE(7540), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10109), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [235962] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(9437), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1885), 1, + STATE(2542), 1, sym__class_declaration_item, - STATE(2382), 1, + STATE(3750), 1, sym_field_declaration_list, - STATE(6699), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5604), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234410] = 18, + [236021] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7984), 1, + ACTIONS(6666), 1, + anon_sym_LBRACE, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9645), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(1784), 1, + STATE(1946), 1, sym_template_type, - STATE(1882), 1, + STATE(2517), 1, sym__class_declaration_item, - STATE(2382), 1, + STATE(3750), 1, sym_field_declaration_list, - STATE(6727), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7247), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(8003), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(3122), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5650), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234469] = 18, + [236080] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, sym_template_type, - STATE(2544), 1, + STATE(2542), 1, sym__class_declaration_item, - STATE(3663), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(6719), 1, + STATE(6741), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(4027), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5690), 2, + STATE(5617), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234528] = 18, + [236139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10184), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10182), 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, + [236168] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, sym_template_type, - STATE(2456), 1, + STATE(2517), 1, sym__class_declaration_item, - STATE(3663), 1, + STATE(2990), 1, sym_field_declaration_list, - STATE(6719), 1, + STATE(6741), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7254), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7734), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(4027), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234587] = 19, + [236227] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(9810), 1, - anon_sym_try, - ACTIONS(10063), 1, + ACTIONS(1932), 1, + anon_sym_LBRACE, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(10065), 1, + ACTIONS(10041), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10073), 1, + ACTIONS(10049), 1, anon_sym_EQ, - ACTIONS(10160), 1, + ACTIONS(10186), 1, anon_sym_SEMI, - ACTIONS(10162), 1, - anon_sym_LBRACE, - STATE(2010), 1, + ACTIONS(10188), 1, + anon_sym_try, + STATE(502), 1, sym_compound_statement, - STATE(2032), 1, + STATE(512), 1, sym_try_statement, - STATE(2989), 1, + STATE(2924), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(7561), 1, + STATE(7276), 1, sym_gnu_asm_expression, - STATE(7562), 1, + STATE(7304), 1, aux_sym_declaration_repeat1, - ACTIONS(10075), 2, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7980), 2, + STATE(7927), 2, sym_argument_list, sym_initializer_list, - [234648] = 15, + [236288] = 11, 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, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(8423), 1, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8223), 1, anon_sym_STAR, - ACTIONS(8425), 1, + ACTIONS(8225), 1, anon_sym_AMP_AMP, - ACTIONS(8427), 1, + ACTIONS(8227), 1, anon_sym_AMP, - ACTIONS(10164), 1, + STATE(3045), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6508), 1, + sym__abstract_declarator, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 8, + anon_sym_RPAREN, 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___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, - [234701] = 18, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [236333] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6035), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(6528), 1, + ACTIONS(6664), 1, anon_sym_COLON, - ACTIONS(7984), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(9645), 1, + ACTIONS(9688), 1, sym_identifier, - STATE(1784), 1, + STATE(1835), 1, sym_template_type, - STATE(1885), 1, + STATE(1917), 1, sym__class_declaration_item, - STATE(2382), 1, + STATE(5139), 1, sym_field_declaration_list, - STATE(6727), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(7084), 1, + STATE(7220), 1, sym_virtual_specifier, - STATE(7872), 1, + STATE(7934), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(2031), 2, + STATE(4603), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(5615), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234760] = 18, + [236392] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10041), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, + anon_sym_EQ, + ACTIONS(10190), 1, + anon_sym_SEMI, + ACTIONS(10192), 1, + anon_sym_LBRACE, + ACTIONS(10194), 1, + anon_sym_try, + STATE(759), 1, + sym_compound_statement, + STATE(761), 1, + sym_try_statement, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7400), 1, + sym_gnu_asm_expression, + STATE(7403), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [236453] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10065), 1, + sym_identifier, + ACTIONS(10069), 1, + anon_sym_LPAREN2, + ACTIONS(10071), 1, + anon_sym_defined, + ACTIONS(10196), 1, + anon_sym_RPAREN, + ACTIONS(10198), 1, + sym_number_literal, + ACTIONS(10073), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10075), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10079), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5665), 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, + [236496] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, + ACTIONS(6664), 1, + anon_sym_COLON, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9671), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(2515), 1, + STATE(1871), 1, sym__class_declaration_item, - STATE(3663), 1, + STATE(2404), 1, sym_field_declaration_list, - STATE(6719), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(7228), 1, + STATE(7223), 1, sym_virtual_specifier, - STATE(8009), 1, + STATE(7948), 1, sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(5611), 2, anon_sym_final, anon_sym_override, - STATE(3041), 2, + STATE(2035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [234819] = 18, + [236555] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(9879), 1, + anon_sym_LBRACE, + STATE(3472), 1, + sym_compound_statement, + STATE(5954), 1, + sym_parameter_list, + STATE(7898), 1, + sym_lambda_declarator, + STATE(8522), 1, + sym_trailing_return_type, + STATE(5962), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6084), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6975), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [236608] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10200), 1, + sym_identifier, + ACTIONS(10202), 1, + anon_sym_LPAREN2, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10210), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10208), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5919), 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, + [236648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10216), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10214), 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, + [236682] = 15, 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(6530), 1, - anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 1, sym_identifier, - STATE(1922), 1, - sym_template_type, - STATE(2522), 1, - sym__class_declaration_item, - STATE(3663), 1, - sym_field_declaration_list, - STATE(6719), 1, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10226), 1, + anon_sym_RBRACK, + ACTIONS(10228), 1, + sym_this, + STATE(5972), 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(3041), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5697), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [234878] = 18, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [236734] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10200), 1, + sym_identifier, + ACTIONS(10202), 1, + anon_sym_LPAREN2, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10230), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10208), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5982), 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, + [236774] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6575), 1, + sym__type_declarator, + STATE(7003), 1, + sym__type_definition_declarators, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [236824] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10200), 1, + sym_identifier, + ACTIONS(10202), 1, + anon_sym_LPAREN2, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10232), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10208), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5896), 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, + [236864] = 15, 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(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(8088), 1, - anon_sym_COLON_COLON, - ACTIONS(9649), 1, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 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, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10234), 1, + anon_sym_RBRACK, + STATE(5972), 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(5613), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [234937] = 16, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [236916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + STATE(5824), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9993), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9991), 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, + [236948] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7105), 1, + anon_sym_requires, + STATE(5679), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9183), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 9, anon_sym_COMMA, - ACTIONS(10031), 1, + 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, + [236988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10216), 5, 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(10166), 1, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10214), 15, + anon_sym_COMMA, 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, 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, + [237016] = 9, 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, + ACTIONS(7093), 1, anon_sym_DASH_GT, - ACTIONS(9865), 1, - anon_sym_LBRACE, - STATE(3857), 1, - sym_compound_statement, - STATE(5929), 1, - sym_parameter_list, - STATE(7847), 1, - sym_lambda_declarator, - STATE(8588), 1, + ACTIONS(7105), 1, + anon_sym_requires, + STATE(5646), 1, sym_trailing_return_type, - STATE(5946), 2, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9399), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 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, + [237056] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + STATE(5824), 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, - [235045] = 3, + ACTIONS(9834), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9832), 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, + [237088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 3, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + STATE(5824), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9816), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5202), 18, + ACTIONS(9814), 14, 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_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [235074] = 18, + [237120] = 9, 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(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(4130), 1, - sym__class_declaration_item, - STATE(6732), 1, - sym__scope_resolution, - STATE(7061), 1, - sym_virtual_specifier, - STATE(7717), 1, - sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7105), 1, + anon_sym_requires, + STATE(5711), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(3210), 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, - [235133] = 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, + ACTIONS(9712), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(6530), 1, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(9668), 1, - sym_identifier, - STATE(1922), 1, - sym_template_type, - STATE(2531), 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(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, - [235192] = 18, + anon_sym_EQ, + anon_sym_try, + [237160] = 9, 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(6035), 1, - anon_sym_LBRACE, - 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, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(7105), 1, + anon_sym_requires, + STATE(5676), 1, + sym_trailing_return_type, + ACTIONS(6026), 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(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(9837), 1, - anon_sym_try, - ACTIONS(10063), 1, + ACTIONS(9935), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 9, anon_sym_COMMA, - ACTIONS(10065), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, - anon_sym_LBRACK, - ACTIONS(10073), 1, - anon_sym_EQ, - ACTIONS(10168), 1, anon_sym_SEMI, - ACTIONS(10170), 1, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(1780), 1, - sym_compound_statement, - STATE(1781), 1, - sym_try_statement, - STATE(2989), 1, - sym_parameter_list, - STATE(6203), 1, - sym__function_declarator_seq, - STATE(7677), 1, - sym_gnu_asm_expression, - STATE(7679), 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, - [235312] = 18, + anon_sym_EQ, + anon_sym_try, + [237200] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, + ACTIONS(53), 1, + anon_sym___based, 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(8022), 1, - anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(8294), 1, + anon_sym_STAR, + ACTIONS(10236), 1, sym_identifier, - STATE(2598), 1, + ACTIONS(10238), 1, + anon_sym_TILDE, + ACTIONS(10240), 1, + anon_sym_COLON_COLON, + ACTIONS(10242), 1, + anon_sym_template, + ACTIONS(10244), 1, + anon_sym_operator, + STATE(1749), 1, sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2693), 1, - sym__class_declaration_item, - STATE(6738), 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, + STATE(1765), 1, + sym_dependent_type_identifier, + STATE(1905), 1, sym_qualified_type_identifier, - STATE(5702), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(3267), 1, + sym_pointer_type_declarator, + STATE(3268), 1, + sym_template_function, + STATE(3269), 1, + sym_destructor_name, + STATE(3270), 1, + sym_dependent_identifier, + STATE(3274), 1, + sym_qualified_identifier, + STATE(3275), 1, + sym_operator_name, + STATE(5751), 1, + sym__scope_resolution, + STATE(8381), 1, sym_decltype, - sym_dependent_type_identifier, - [235371] = 18, + STATE(8864), 1, + sym_ms_based_modifier, + [237264] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, + ACTIONS(53), 1, + anon_sym___based, 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(8022), 1, - anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(8362), 1, + anon_sym_STAR, + ACTIONS(10246), 1, sym_identifier, - STATE(2598), 1, + 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(1749), 1, sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2702), 1, - sym__class_declaration_item, - STATE(6738), 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, + STATE(1765), 1, + sym_dependent_type_identifier, + STATE(1905), 1, sym_qualified_type_identifier, - STATE(4831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(2463), 1, + sym_pointer_type_declarator, + STATE(2465), 1, + sym_template_function, + STATE(2470), 1, + sym_destructor_name, + STATE(2471), 1, + sym_dependent_identifier, + STATE(2481), 1, + sym_qualified_identifier, + STATE(2485), 1, + sym_operator_name, + STATE(5752), 1, + sym__scope_resolution, + STATE(8381), 1, sym_decltype, - sym_dependent_type_identifier, - [235430] = 18, + STATE(8609), 1, + sym_ms_based_modifier, + [237328] = 14, 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(8022), 1, - anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, sym_identifier, - STATE(2598), 1, - sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2721), 1, - sym__class_declaration_item, - STATE(6738), 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(4831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [235489] = 7, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6575), 1, + sym__type_declarator, + STATE(7025), 1, + sym__type_definition_declarators, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [237378] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9705), 1, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(9702), 2, + STATE(5565), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + ACTIONS(9183), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9700), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9689), 11, + ACTIONS(9172), 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_asm, anon_sym___asm__, anon_sym_try, - [235526] = 3, + [237418] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 3, - anon_sym___attribute, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(7160), 1, + anon_sym_requires, + STATE(5567), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9399), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5142), 18, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 9, 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_try, + [237458] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(7160), 1, + anon_sym_requires, + STATE(5568), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, + ACTIONS(9712), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 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, - anon_sym_requires, - [235555] = 18, + [237498] = 15, 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(6530), 1, - anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(9660), 1, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - STATE(1922), 1, - sym_template_type, - STATE(2544), 1, - sym__class_declaration_item, - STATE(2962), 1, - sym_field_declaration_list, - STATE(6706), 1, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10256), 1, + anon_sym_RBRACK, + STATE(5972), 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(5598), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [235614] = 18, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [237550] = 9, 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(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(2725), 1, - sym__class_declaration_item, - STATE(6738), 1, - sym__scope_resolution, - STATE(7141), 1, - sym_virtual_specifier, - STATE(7773), 1, - sym_base_class_clause, - ACTIONS(5567), 2, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(7160), 1, + anon_sym_requires, + STATE(5569), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(2374), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5707), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [235673] = 18, + ACTIONS(9935), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 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, + [237590] = 15, 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(8022), 1, - anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 1, sym_identifier, - STATE(2598), 1, - sym_template_type, - STATE(2614), 1, - sym_field_declaration_list, - STATE(2743), 1, - sym__class_declaration_item, - STATE(6738), 1, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10258), 1, + anon_sym_RBRACK, + STATE(5972), 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(4831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [235732] = 7, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [237642] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10200), 1, + sym_identifier, + ACTIONS(10202), 1, + anon_sym_LPAREN2, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10260), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10208), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5967), 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, + [237682] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10172), 1, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(9216), 1, anon_sym_requires, - ACTIONS(9957), 2, + STATE(5635), 1, + sym_trailing_return_type, + ACTIONS(9183), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9947), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9945), 11, + ACTIONS(9172), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -491665,28 +494636,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [235769] = 7, + [237722] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10175), 1, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(9404), 1, anon_sym_requires, - ACTIONS(9963), 2, + STATE(5680), 1, + sym_trailing_return_type, + ACTIONS(9399), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5912), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9951), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9949), 11, + ACTIONS(9388), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -491695,584 +494667,714 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_try, - [235806] = 18, + [237762] = 9, 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, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(9728), 1, + anon_sym_requires, + STATE(5699), 1, + sym_trailing_return_type, + ACTIONS(9712), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(6530), 1, + anon_sym_LBRACK_LBRACK, 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_EQ, + anon_sym_try, + [237802] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7093), 1, + anon_sym_DASH_GT, + ACTIONS(10160), 1, + anon_sym_requires, + STATE(5704), 1, + sym_trailing_return_type, + ACTIONS(9935), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9937), 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, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 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, + [237842] = 15, 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(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(9643), 1, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 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, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10262), 1, + anon_sym_RBRACK, + STATE(5972), 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(5570), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8569), 2, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [235924] = 18, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [237894] = 15, 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(6035), 1, - anon_sym_LBRACE, - ACTIONS(6528), 1, - anon_sym_COLON, - ACTIONS(9437), 1, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4557), 1, + anon_sym_RBRACK, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10264), 1, sym_identifier, - STATE(1784), 1, - sym_template_type, - STATE(1882), 1, - sym__class_declaration_item, - STATE(2382), 1, - sym_field_declaration_list, - STATE(6699), 1, + STATE(5972), 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, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [235983] = 18, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [237946] = 15, 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(6528), 1, - anon_sym_COLON, - ACTIONS(6530), 1, - anon_sym_LBRACE, - ACTIONS(9643), 1, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 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, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10266), 1, + anon_sym_RBRACK, + STATE(5972), 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, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [236042] = 15, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [237998] = 13, 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, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10101), 1, anon_sym_AMP_AMP, - ACTIONS(8427), 1, + ACTIONS(10103), 1, + anon_sym_PIPE, + ACTIONS(10105), 1, + anon_sym_CARET, + ACTIONS(10107), 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(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10109), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10214), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [238046] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 3, - anon_sym___attribute, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(9325), 1, + anon_sym_requires, + STATE(5526), 1, + sym_trailing_return_type, + ACTIONS(9183), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(1938), 18, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 9, 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, - [236124] = 18, + [238086] = 9, 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(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(1874), 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, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(9423), 1, + anon_sym_requires, + STATE(5527), 1, + sym_trailing_return_type, + ACTIONS(9399), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9401), 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, - sym_dependent_type_identifier, - [236183] = 18, - 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, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, 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, - 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, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [238126] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 3, - anon_sym___attribute, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(9740), 1, + anon_sym_requires, + STATE(5528), 1, + sym_trailing_return_type, + ACTIONS(9712), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(1934), 18, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 9, 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, - [236271] = 19, + [238166] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, + ACTIONS(7158), 1, + anon_sym_DASH_GT, + ACTIONS(9940), 1, + anon_sym_requires, + STATE(5529), 1, + sym_trailing_return_type, + ACTIONS(9935), 2, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(1872), 1, - anon_sym_LBRACE, - ACTIONS(10063), 1, + ACTIONS(9937), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 9, 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, 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, + anon_sym_try, + [238206] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10200), 1, + sym_identifier, + ACTIONS(10202), 1, + anon_sym_LPAREN2, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10268), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10208), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5923), 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, + [238246] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 1, + sym_identifier, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10270), 1, + anon_sym_RBRACK, + STATE(5972), 1, + sym__scope_resolution, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [238298] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10200), 1, + sym_identifier, + ACTIONS(10202), 1, + anon_sym_LPAREN2, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10272), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10208), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5894), 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, + [238338] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(5044), 1, + anon_sym_COLON_COLON, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(10274), 1, + sym_identifier, + ACTIONS(10276), 1, + anon_sym_template, + STATE(1931), 1, + sym_template_type, + STATE(1937), 1, + sym_dependent_type_identifier, + STATE(1938), 1, + sym_qualified_type_identifier, + STATE(2620), 1, + sym_destructor_name, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, + sym_dependent_identifier, + STATE(2659), 1, + sym_operator_name, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5776), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + STATE(8501), 1, + sym_ms_based_modifier, + [238402] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10103), 1, + anon_sym_PIPE, + ACTIONS(10105), 1, + anon_sym_CARET, + ACTIONS(10107), 1, + anon_sym_AMP, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10109), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10214), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [238448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, - sym_identifier, - ACTIONS(10186), 1, - anon_sym_LPAREN2, - ACTIONS(10188), 1, - anon_sym_defined, - ACTIONS(10194), 1, - sym_number_literal, - ACTIONS(10190), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10280), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10278), 15, + anon_sym_COMMA, + anon_sym_RPAREN, 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(5964), 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, - [236372] = 21, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_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, + [238476] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 1, + sym_identifier, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10282), 1, + anon_sym_RBRACK, + STATE(5972), 1, + sym__scope_resolution, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [238528] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8272), 1, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(10198), 1, - sym_identifier, - ACTIONS(10200), 1, + ACTIONS(10248), 1, anon_sym_TILDE, - ACTIONS(10202), 1, + ACTIONS(10254), 1, + anon_sym_operator, + ACTIONS(10284), 1, + sym_identifier, + ACTIONS(10286), 1, anon_sym_COLON_COLON, - ACTIONS(10204), 1, + ACTIONS(10288), 1, anon_sym_template, - ACTIONS(10206), 1, - anon_sym_operator, - STATE(1919), 1, + STATE(1931), 1, sym_template_type, - STATE(1930), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(1932), 1, + STATE(1938), 1, sym_qualified_type_identifier, - STATE(2498), 1, + STATE(2463), 1, sym_pointer_type_declarator, - STATE(2499), 1, + STATE(2465), 1, sym_template_function, - STATE(2506), 1, + STATE(2470), 1, sym_destructor_name, - STATE(2507), 1, + STATE(2471), 1, sym_dependent_identifier, - STATE(2510), 1, + STATE(2481), 1, sym_qualified_identifier, - STATE(2511), 1, + STATE(2485), 1, sym_operator_name, - STATE(5721), 1, + STATE(5780), 1, sym__scope_resolution, - STATE(8550), 1, - sym_ms_based_modifier, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [236436] = 9, + STATE(8609), 1, + sym_ms_based_modifier, + [238592] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7073), 1, - anon_sym_DASH_GT, - ACTIONS(7079), 1, - anon_sym_requires, - STATE(5666), 1, - sym_trailing_return_type, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9700), 2, - anon_sym___attribute, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, anon_sym_LBRACK, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5924), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9689), 9, + ACTIONS(8229), 1, + anon_sym_STAR, + ACTIONS(8231), 1, + anon_sym_AMP_AMP, + ACTIONS(8233), 1, + anon_sym_AMP, + STATE(3058), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6602), 1, + sym__abstract_declarator, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 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, - [236476] = 15, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [238636] = 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(4549), 1, - anon_sym_RBRACK, ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - STATE(5956), 1, + ACTIONS(10290), 1, + anon_sym_RBRACK, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [236528] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7073), 1, - anon_sym_DASH_GT, - ACTIONS(7079), 1, - anon_sym_requires, - STATE(5602), 1, - sym_trailing_return_type, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9947), 2, - anon_sym___attribute, - anon_sym_LBRACK, - 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___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [236568] = 9, + [238688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10218), 1, + ACTIONS(10292), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5920), 7, + STATE(5930), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -492280,879 +495382,672 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [236608] = 15, + [238728] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6575), 1, + sym__type_declarator, + STATE(7017), 1, + sym__type_definition_declarators, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [238778] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10220), 1, + ACTIONS(10294), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [236660] = 15, + [238830] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6575), 1, + sym__type_declarator, + STATE(7041), 1, + sym__type_definition_declarators, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [238880] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10222), 1, + ACTIONS(10296), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [236712] = 9, + [238932] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, - anon_sym_DASH_GT, - ACTIONS(7314), 1, - anon_sym_requires, - STATE(5526), 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), 9, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10109), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10216), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10214), 5, 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, - [236752] = 9, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [238974] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, - anon_sym_DASH_GT, - ACTIONS(7314), 1, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10099), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10101), 1, + anon_sym_AMP_AMP, + ACTIONS(10103), 1, + anon_sym_PIPE, + ACTIONS(10105), 1, + anon_sym_CARET, + ACTIONS(10107), 1, + anon_sym_AMP, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10109), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10298), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [239024] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7105), 1, anon_sym_requires, - STATE(5529), 1, + ACTIONS(7279), 1, + anon_sym_DASH_GT, + STATE(5679), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9382), 2, + ACTIONS(9183), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 9, + ACTIONS(9172), 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__, - anon_sym_try, - [236792] = 5, + [239064] = 21, 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(53), 1, + anon_sym___based, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8294), 1, + anon_sym_STAR, + ACTIONS(10300), 1, + sym_identifier, + ACTIONS(10302), 1, + anon_sym_TILDE, + ACTIONS(10304), 1, + anon_sym_COLON_COLON, + ACTIONS(10306), 1, + anon_sym_template, + ACTIONS(10308), 1, + anon_sym_operator, + STATE(1749), 1, + sym_template_type, + STATE(1765), 1, + sym_dependent_type_identifier, + STATE(1905), 1, + sym_qualified_type_identifier, + STATE(3410), 1, + sym_dependent_identifier, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3502), 1, + sym_operator_name, + STATE(3586), 1, + sym_pointer_type_declarator, + STATE(3588), 1, + sym_template_function, + STATE(3589), 1, + sym_destructor_name, + STATE(5791), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + STATE(8864), 1, + sym_ms_based_modifier, + [239128] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, - anon_sym_DASH_GT, - ACTIONS(7314), 1, + ACTIONS(7105), 1, anon_sym_requires, - STATE(5530), 1, + ACTIONS(7279), 1, + anon_sym_DASH_GT, + STATE(5646), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9700), 2, + ACTIONS(9399), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 9, + ACTIONS(9388), 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__, - anon_sym_try, - [236864] = 9, + [239168] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, - anon_sym_DASH_GT, - ACTIONS(7314), 1, + ACTIONS(7105), 1, anon_sym_requires, - STATE(5531), 1, + ACTIONS(7279), 1, + anon_sym_DASH_GT, + STATE(5711), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9947), 2, + ACTIONS(9712), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 9, + ACTIONS(9701), 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__, - anon_sym_try, - [236904] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10184), 1, - sym_identifier, - ACTIONS(10186), 1, - anon_sym_LPAREN2, - ACTIONS(10188), 1, - anon_sym_defined, - ACTIONS(10224), 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(5919), 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, - [236944] = 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(10226), 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, - [236996] = 14, + [239208] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10031), 1, + ACTIONS(10097), 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, + ACTIONS(10105), 1, anon_sym_CARET, - ACTIONS(10041), 1, + ACTIONS(10107), 1, anon_sym_AMP, - ACTIONS(10027), 2, + ACTIONS(10216), 1, + anon_sym_PIPE, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10029), 2, + ACTIONS(10095), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(10043), 2, + ACTIONS(10109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10045), 2, + ACTIONS(10111), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(10047), 2, + ACTIONS(10113), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(10049), 2, + ACTIONS(10115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10228), 2, + ACTIONS(10214), 4, anon_sym_COMMA, anon_sym_RPAREN, - [237046] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7073), 1, - anon_sym_DASH_GT, - ACTIONS(9196), 1, - anon_sym_requires, - STATE(5655), 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), 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, - [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_PIPE_PIPE, 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, + [239254] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7073), 1, - anon_sym_DASH_GT, - ACTIONS(9390), 1, + ACTIONS(7105), 1, anon_sym_requires, - STATE(5703), 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), 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, - [237172] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7073), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9705), 1, - anon_sym_requires, - STATE(5708), 1, + STATE(5676), 1, sym_trailing_return_type, - ACTIONS(9700), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(9702), 2, + ACTIONS(6026), 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___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [237212] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7073), 1, - anon_sym_DASH_GT, - ACTIONS(10172), 1, - anon_sym_requires, - STATE(5709), 1, - sym_trailing_return_type, - ACTIONS(9947), 2, - anon_sym___attribute, + ACTIONS(9935), 2, anon_sym_LBRACK, - ACTIONS(9957), 2, - anon_sym_final, - anon_sym_override, - STATE(5593), 2, + anon_sym___asm, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 9, + ACTIONS(9933), 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, - [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, + anon_sym_asm, + anon_sym___asm__, + [239294] = 9, 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, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10232), 1, + ACTIONS(10202), 1, + anon_sym_LPAREN2, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10310), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, 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(10208), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5977), 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, + [239334] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9311), 1, + ACTIONS(9216), 1, anon_sym_requires, - STATE(5528), 1, + STATE(5635), 1, sym_trailing_return_type, - ACTIONS(9150), 2, + ACTIONS(9183), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9193), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 9, + ACTIONS(9172), 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__, - anon_sym_try, - [237402] = 9, + [239374] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9407), 1, + ACTIONS(9404), 1, anon_sym_requires, - STATE(5536), 1, + STATE(5680), 1, sym_trailing_return_type, - ACTIONS(9382), 2, + ACTIONS(9399), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9387), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 9, + ACTIONS(9388), 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__, - anon_sym_try, - [237442] = 9, + [239414] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9724), 1, + ACTIONS(9728), 1, anon_sym_requires, - STATE(5537), 1, + STATE(5699), 1, sym_trailing_return_type, - ACTIONS(9700), 2, + ACTIONS(9712), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9702), 2, + ACTIONS(9725), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 9, + ACTIONS(9701), 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__, - anon_sym_try, - [237482] = 9, + [239454] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7312), 1, + ACTIONS(7279), 1, anon_sym_DASH_GT, - ACTIONS(9960), 1, + ACTIONS(10160), 1, anon_sym_requires, - STATE(5538), 1, + STATE(5704), 1, sym_trailing_return_type, - ACTIONS(9947), 2, + ACTIONS(9935), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9957), 2, + ACTIONS(9937), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 9, + ACTIONS(9933), 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__, - 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, + [239494] = 14, 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, + ACTIONS(8308), 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, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 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, + STATE(6575), 1, + sym__type_declarator, + STATE(7023), 1, + sym__type_definition_declarators, + STATE(8501), 1, sym_ms_based_modifier, - STATE(8569), 1, - sym_decltype, - [237666] = 9, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [239544] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(8310), 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, + ACTIONS(8312), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8314), 1, 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(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6575), 1, + sym__type_declarator, + STATE(7006), 1, + sym__type_definition_declarators, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [239594] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10258), 1, + ACTIONS(10312), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5876), 7, + STATE(5909), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493160,30 +496055,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [237774] = 9, + [239634] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10260), 1, + ACTIONS(10314), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5938), 7, + STATE(5979), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493191,16 +496086,16 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [237814] = 3, + [239674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10264), 5, + ACTIONS(10318), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10262), 15, + ACTIONS(10316), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -493216,16 +496111,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [237842] = 3, + [239702] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8294), 1, + anon_sym_STAR, + ACTIONS(10302), 1, + anon_sym_TILDE, + ACTIONS(10308), 1, + anon_sym_operator, + ACTIONS(10320), 1, + sym_identifier, + ACTIONS(10322), 1, + anon_sym_COLON_COLON, + ACTIONS(10324), 1, + anon_sym_template, + STATE(1931), 1, + sym_template_type, + STATE(1937), 1, + sym_dependent_type_identifier, + STATE(1938), 1, + sym_qualified_type_identifier, + STATE(3410), 1, + sym_dependent_identifier, + STATE(3434), 1, + sym_qualified_identifier, + STATE(3502), 1, + sym_operator_name, + STATE(3586), 1, + sym_pointer_type_declarator, + STATE(3588), 1, + sym_template_function, + STATE(3589), 1, + sym_destructor_name, + STATE(5806), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + STATE(8864), 1, + sym_ms_based_modifier, + [239766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10268), 5, + ACTIONS(10328), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10266), 15, + ACTIONS(10326), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -493241,16 +496179,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [237870] = 3, + [239794] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8340), 1, + anon_sym_STAR, + ACTIONS(10330), 1, + sym_identifier, + ACTIONS(10332), 1, + anon_sym_TILDE, + ACTIONS(10334), 1, + anon_sym_COLON_COLON, + ACTIONS(10336), 1, + anon_sym_template, + ACTIONS(10338), 1, + anon_sym_operator, + STATE(2590), 1, + sym_dependent_type_identifier, + STATE(2608), 1, + sym_template_type, + STATE(2682), 1, + sym_qualified_type_identifier, + STATE(3639), 1, + sym_pointer_type_declarator, + STATE(3653), 1, + sym_template_function, + STATE(3659), 1, + sym_destructor_name, + STATE(3661), 1, + sym_dependent_identifier, + STATE(3670), 1, + sym_qualified_identifier, + STATE(3693), 1, + sym_operator_name, + STATE(5808), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + STATE(8509), 1, + sym_ms_based_modifier, + [239858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10272), 5, + ACTIONS(10342), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(10270), 15, + ACTIONS(10340), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -493266,30 +496247,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [237898] = 9, + [239886] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10274), 1, + ACTIONS(10344), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5852), 7, + STATE(5885), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493297,30 +496278,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [237938] = 9, + [239926] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10276), 1, + ACTIONS(10346), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5853), 7, + STATE(5891), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493328,61 +496309,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [237978] = 9, + [239966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, - sym_identifier, - ACTIONS(10091), 1, - anon_sym_LPAREN2, - ACTIONS(10093), 1, - anon_sym_defined, - ACTIONS(10278), 1, - sym_number_literal, - ACTIONS(10095), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10350), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10348), 15, + anon_sym_COMMA, + anon_sym_RPAREN, 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, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_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, + [239994] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10280), 1, + ACTIONS(10352), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5855), 7, + STATE(5932), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493390,30 +496365,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238058] = 9, + [240034] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10282), 1, + ACTIONS(10354), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5856), 7, + STATE(5942), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493421,30 +496396,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238098] = 9, + [240074] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10284), 1, + ACTIONS(10356), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5857), 7, + STATE(5745), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493452,30 +496427,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238138] = 9, + [240114] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10286), 1, + ACTIONS(10358), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5858), 7, + STATE(5768), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493483,30 +496458,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238178] = 9, + [240154] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10288), 1, + ACTIONS(10360), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5859), 7, + STATE(5924), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493514,30 +496489,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238218] = 9, + [240194] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10290), 1, + ACTIONS(10362), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5860), 7, + STATE(5974), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493545,30 +496520,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238258] = 9, + [240234] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10292), 1, + ACTIONS(10364), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5861), 7, + STATE(5897), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493576,366 +496551,197 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238298] = 14, - 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(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, + [240274] = 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_DOT_DOT_DOT, + ACTIONS(4557), 1, + anon_sym_RBRACK, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10294), 1, - anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [238400] = 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(10232), 1, - anon_sym_TILDE, - ACTIONS(10238), 1, - anon_sym_operator, - ACTIONS(10296), 1, - sym_identifier, - ACTIONS(10298), 1, - anon_sym_COLON_COLON, - ACTIONS(10300), 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(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(5769), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_decltype, - STATE(8597), 1, - sym_ms_based_modifier, - [238464] = 14, + [240326] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6526), 1, + STATE(6575), 1, sym__type_declarator, - STATE(7030), 1, + STATE(7021), 1, sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [238514] = 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(10302), 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, - [238566] = 14, + [240376] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6526), 1, + STATE(6575), 1, sym__type_declarator, - STATE(6957), 1, + STATE(7029), 1, sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [238616] = 15, + [240426] = 9, 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(10304), 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, - [238668] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8272), 1, - anon_sym_STAR, ACTIONS(10200), 1, - anon_sym_TILDE, - ACTIONS(10206), 1, - anon_sym_operator, - ACTIONS(10306), 1, sym_identifier, - ACTIONS(10308), 1, - anon_sym_COLON_COLON, - ACTIONS(10310), 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(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(5774), 1, - sym__scope_resolution, - STATE(8550), 1, - sym_ms_based_modifier, - STATE(8569), 1, - sym_decltype, - [238732] = 9, + ACTIONS(10202), 1, + anon_sym_LPAREN2, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10366), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10208), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5925), 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, + [240466] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7318), 1, - anon_sym_DASH_GT, - STATE(5671), 1, - sym_trailing_return_type, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9150), 2, + ACTIONS(10368), 1, + anon_sym_LBRACK_LBRACK, + STATE(5824), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2043), 3, + anon_sym___attribute, 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), 9, + ACTIONS(6319), 14, 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__, - [238772] = 9, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [240498] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10312), 1, + ACTIONS(10371), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5962), 7, + STATE(5777), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493943,30 +496749,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238812] = 9, + [240538] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10314), 1, + ACTIONS(10373), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5960), 7, + STATE(5794), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -493974,30 +496780,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238852] = 9, + [240578] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10316), 1, + ACTIONS(10375), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5932), 7, + STATE(5880), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -494005,61 +496811,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238892] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7318), 1, - anon_sym_DASH_GT, - STATE(5567), 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), 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__, - [238932] = 9, + [240618] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10318), 1, + ACTIONS(10377), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5930), 7, + STATE(5788), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -494067,394 +496842,172 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [238972] = 21, + [240658] = 9, 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(4318), 1, - anon_sym_COLON_COLON, - ACTIONS(8338), 1, - anon_sym_STAR, - ACTIONS(10320), 1, + ACTIONS(10065), 1, sym_identifier, - 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, + ACTIONS(10069), 1, 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__, - [239076] = 9, + ACTIONS(10071), 1, + anon_sym_defined, + ACTIONS(10379), 1, + sym_number_literal, + ACTIONS(10073), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10075), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10079), 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, + [240698] = 9, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(10065), 1, + sym_identifier, + ACTIONS(10069), 1, 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__, - [239116] = 15, + ACTIONS(10071), 1, + anon_sym_defined, + ACTIONS(10381), 1, + sym_number_literal, + ACTIONS(10073), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10075), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10079), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5866), 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, + [240738] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10324), 1, + ACTIONS(10383), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 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(7318), 1, - anon_sym_DASH_GT, - ACTIONS(9196), 1, - anon_sym_requires, - STATE(5655), 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [239208] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7318), 1, - anon_sym_DASH_GT, - ACTIONS(9390), 1, - anon_sym_requires, - STATE(5703), 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [239248] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7318), 1, - anon_sym_DASH_GT, - ACTIONS(9705), 1, - anon_sym_requires, - STATE(5708), 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [239288] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7318), 1, - anon_sym_DASH_GT, - ACTIONS(10172), 1, - anon_sym_requires, - STATE(5709), 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [239328] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, + [240790] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, + ACTIONS(53), 1, + anon_sym___based, 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, + ACTIONS(8294), 1, anon_sym_STAR, - ACTIONS(10212), 1, - anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10302), 1, + anon_sym_TILDE, + ACTIONS(10308), 1, + anon_sym_operator, + ACTIONS(10385), 1, + sym_identifier, + ACTIONS(10387), 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, + ACTIONS(10389), 1, + anon_sym_template, + STATE(1931), 1, sym_template_type, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(7462), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, + STATE(1938), 1, + sym_qualified_type_identifier, + STATE(3410), 1, + sym_dependent_identifier, + STATE(3434), 1, sym_qualified_identifier, - [239408] = 14, - 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(1971), 1, + STATE(3502), 1, + sym_operator_name, + STATE(3586), 1, sym_pointer_type_declarator, - STATE(6526), 1, - sym__type_declarator, - STATE(6986), 1, - sym__type_definition_declarators, - STATE(8477), 1, + STATE(3588), 1, + sym_template_function, + STATE(3589), 1, + sym_destructor_name, + STATE(5832), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + STATE(8864), 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, + [240854] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10332), 1, + ACTIONS(10391), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5941), 7, + STATE(5737), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -494462,686 +497015,482 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [239498] = 14, + [240894] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6526), 1, + STATE(6575), 1, sym__type_declarator, - STATE(6960), 1, + STATE(7045), 1, sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [239548] = 14, + [240944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7062), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(7064), 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, + [240972] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6526), 1, + STATE(6575), 1, sym__type_declarator, - STATE(7032), 1, + STATE(7050), 1, sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [239598] = 9, + [241022] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, - sym_identifier, - ACTIONS(10186), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, - anon_sym_defined, - ACTIONS(10334), 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(5875), 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, - [239638] = 21, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8257), 1, + anon_sym_STAR, + ACTIONS(8259), 1, + anon_sym_AMP_AMP, + ACTIONS(8261), 1, + anon_sym_AMP, + STATE(3073), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6567), 1, + sym__abstract_declarator, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [241066] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8272), 1, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(9937), 1, + ACTIONS(9889), 1, anon_sym_TILDE, - ACTIONS(10336), 1, + ACTIONS(10393), 1, sym_identifier, - ACTIONS(10338), 1, + ACTIONS(10395), 1, anon_sym_COLON_COLON, - ACTIONS(10340), 1, + ACTIONS(10397), 1, anon_sym_template, - ACTIONS(10342), 1, + ACTIONS(10399), 1, anon_sym_operator, - STATE(1919), 1, + STATE(1931), 1, sym_template_type, - STATE(1930), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(1932), 1, + STATE(1938), 1, sym_qualified_type_identifier, - STATE(2617), 1, - sym_template_function, - STATE(2653), 1, + STATE(2620), 1, sym_destructor_name, - STATE(2658), 1, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, sym_dependent_identifier, - STATE(2662), 1, - sym_qualified_identifier, - STATE(2665), 1, + STATE(2659), 1, sym_operator_name, - STATE(2672), 1, - sym_pointer_type_declarator, - STATE(5796), 1, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5838), 1, sym__scope_resolution, - STATE(8550), 1, - sym_ms_based_modifier, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [239702] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10184), 1, - sym_identifier, - ACTIONS(10186), 1, - anon_sym_LPAREN2, - ACTIONS(10188), 1, - anon_sym_defined, - ACTIONS(10344), 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(5937), 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, - [239742] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10184), 1, - sym_identifier, - ACTIONS(10186), 1, - anon_sym_LPAREN2, - ACTIONS(10188), 1, - anon_sym_defined, - ACTIONS(10346), 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(5902), 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, - [239782] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10184), 1, - sym_identifier, - ACTIONS(10186), 1, - anon_sym_LPAREN2, - ACTIONS(10188), 1, - anon_sym_defined, - ACTIONS(10348), 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(5910), 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, - [239822] = 15, + STATE(8609), 1, + sym_ms_based_modifier, + [241130] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10350), 1, + ACTIONS(10401), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 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(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, - 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, + [241182] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6526), 1, + STATE(6575), 1, sym__type_declarator, - STATE(6975), 1, + STATE(6979), 1, sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [239988] = 15, + [241232] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 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(10358), 1, - anon_sym_LBRACK_LBRACK, - STATE(5804), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2043), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6273), 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, - [240072] = 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(4549), 1, + ACTIONS(10403), 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, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 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, + [241284] = 9, 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, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, anon_sym_STAR, - ACTIONS(10212), 1, - anon_sym_AMP, - ACTIONS(10214), 1, - anon_sym_COLON_COLON, - ACTIONS(10216), 1, - sym_this, - ACTIONS(10363), 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, - [240208] = 14, + anon_sym_PERCENT, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10216), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(10214), 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, + [241324] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6526), 1, + STATE(6575), 1, sym__type_declarator, - STATE(7018), 1, + STATE(6985), 1, sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [240258] = 14, + [241374] = 21, 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(1978), 1, + anon_sym_decltype, ACTIONS(8340), 1, - anon_sym_AMP_AMP, - ACTIONS(8342), 1, - anon_sym_AMP, - STATE(1971), 1, + anon_sym_STAR, + ACTIONS(10332), 1, + anon_sym_TILDE, + ACTIONS(10338), 1, + anon_sym_operator, + ACTIONS(10405), 1, + sym_identifier, + ACTIONS(10407), 1, + anon_sym_COLON_COLON, + ACTIONS(10409), 1, + anon_sym_template, + STATE(1931), 1, + sym_template_type, + STATE(1937), 1, + sym_dependent_type_identifier, + STATE(1938), 1, + sym_qualified_type_identifier, + STATE(3639), 1, sym_pointer_type_declarator, - STATE(6526), 1, - sym__type_declarator, - STATE(7003), 1, - sym__type_definition_declarators, - STATE(8477), 1, + STATE(3653), 1, + sym_template_function, + STATE(3659), 1, + sym_destructor_name, + STATE(3661), 1, + sym_dependent_identifier, + STATE(3670), 1, + sym_qualified_identifier, + STATE(3693), 1, + sym_operator_name, + STATE(5844), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + STATE(8509), 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, - [240308] = 9, + [241438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, - sym_identifier, - ACTIONS(10091), 1, - anon_sym_LPAREN2, - ACTIONS(10093), 1, - anon_sym_defined, - ACTIONS(10365), 1, - sym_number_literal, - ACTIONS(10095), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10413), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10411), 15, + anon_sym_COMMA, + anon_sym_RPAREN, 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(5735), 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, - [240348] = 11, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_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, + [241466] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8230), 1, + ACTIONS(8243), 1, anon_sym_STAR, - ACTIONS(8232), 1, + ACTIONS(8245), 1, anon_sym_AMP_AMP, - ACTIONS(8234), 1, + ACTIONS(8247), 1, anon_sym_AMP, - STATE(3086), 1, + ACTIONS(8380), 1, + anon_sym___attribute, + STATE(3282), 1, sym_parameter_list, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6539), 1, + STATE(6584), 1, sym__abstract_declarator, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8360), 7, + ACTIONS(8378), 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, - [240392] = 9, + [241512] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10367), 1, + ACTIONS(10415), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5945), 7, + STATE(5936), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -495149,467 +497498,328 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [240432] = 15, + [241552] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6575), 1, + sym__type_declarator, + STATE(6978), 1, + sym__type_definition_declarators, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [241602] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10369), 1, + ACTIONS(10417), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 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(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, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [240524] = 14, + [241654] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6526), 1, + STATE(6575), 1, sym__type_declarator, - STATE(7009), 1, + STATE(6993), 1, sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [240574] = 21, + [241704] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8272), 1, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(10200), 1, + ACTIONS(10248), 1, anon_sym_TILDE, - ACTIONS(10206), 1, + ACTIONS(10254), 1, anon_sym_operator, - ACTIONS(10371), 1, + ACTIONS(10419), 1, sym_identifier, - ACTIONS(10373), 1, + ACTIONS(10421), 1, anon_sym_COLON_COLON, - ACTIONS(10375), 1, + ACTIONS(10423), 1, anon_sym_template, - STATE(1919), 1, + STATE(1931), 1, sym_template_type, - STATE(1930), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(1932), 1, + STATE(1938), 1, sym_qualified_type_identifier, - STATE(2498), 1, + STATE(2463), 1, sym_pointer_type_declarator, - STATE(2499), 1, + STATE(2465), 1, sym_template_function, - STATE(2506), 1, + STATE(2470), 1, sym_destructor_name, - STATE(2507), 1, + STATE(2471), 1, sym_dependent_identifier, - STATE(2510), 1, + STATE(2481), 1, sym_qualified_identifier, - STATE(2511), 1, + STATE(2485), 1, sym_operator_name, - STATE(5816), 1, + STATE(5851), 1, sym__scope_resolution, - STATE(8550), 1, - sym_ms_based_modifier, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [240638] = 14, - 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(1971), 1, - sym_pointer_type_declarator, - STATE(6526), 1, - sym__type_declarator, - STATE(7014), 1, - sym__type_definition_declarators, - STATE(8477), 1, + STATE(8609), 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, - [240688] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10087), 1, - sym_identifier, - 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, + [241768] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8272), 1, - anon_sym_STAR, - ACTIONS(10200), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(10206), 1, - anon_sym_operator, - ACTIONS(10379), 1, - sym_identifier, - ACTIONS(10381), 1, + ACTIONS(4326), 1, anon_sym_COLON_COLON, - ACTIONS(10383), 1, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(10425), 1, + sym_identifier, + ACTIONS(10427), 1, anon_sym_template, - STATE(1805), 1, + STATE(1931), 1, sym_template_type, - STATE(1806), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(1865), 1, + STATE(1938), 1, sym_qualified_type_identifier, - STATE(2498), 1, - sym_pointer_type_declarator, - STATE(2499), 1, - sym_template_function, - STATE(2506), 1, + STATE(2620), 1, sym_destructor_name, - STATE(2507), 1, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, sym_dependent_identifier, - STATE(2510), 1, - sym_qualified_identifier, - STATE(2511), 1, + STATE(2659), 1, sym_operator_name, - STATE(5819), 1, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5852), 1, sym__scope_resolution, - STATE(8550), 1, - sym_ms_based_modifier, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [240792] = 14, - 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(1971), 1, - sym_pointer_type_declarator, - STATE(6526), 1, - sym__type_declarator, - STATE(6958), 1, - sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 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, - [240842] = 14, + [241832] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6526), 1, + STATE(6575), 1, sym__type_declarator, STATE(6997), 1, sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [240892] = 14, + [241882] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, - sym_pointer_type_declarator, - STATE(6526), 1, - sym__type_declarator, - STATE(6966), 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, - [240942] = 14, - 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, + ACTIONS(8320), 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, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6526), 1, + STATE(6575), 1, sym__type_declarator, - STATE(6989), 1, + STATE(6998), 1, sym__type_definition_declarators, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [240992] = 14, + [241932] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(10202), 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(6526), 1, - sym__type_declarator, - STATE(6982), 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, - [241042] = 9, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10429), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10208), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5971), 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, + [241972] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10385), 1, + ACTIONS(10431), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5921), 7, + STATE(5789), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -495617,166 +497827,104 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [241082] = 15, + [242012] = 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(10387), 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, - [241134] = 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, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10389), 1, + ACTIONS(10433), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [241186] = 15, + [242064] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10391), 1, + ACTIONS(10435), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [241238] = 3, - 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, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_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, + [242116] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10397), 1, + ACTIONS(10437), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5963), 7, + STATE(5917), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -495784,147 +497932,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [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(8302), 1, - anon_sym_STAR, - ACTIONS(10248), 1, - anon_sym_TILDE, - ACTIONS(10254), 1, - anon_sym_operator, - ACTIONS(10403), 1, - sym_identifier, - ACTIONS(10405), 1, - anon_sym_COLON_COLON, - ACTIONS(10407), 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(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(5833), 1, - sym__scope_resolution, - STATE(8189), 1, - sym_ms_based_modifier, - STATE(8569), 1, - sym_decltype, - [241474] = 9, + [242156] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10409), 1, + ACTIONS(10439), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5905), 7, + STATE(5976), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -495932,94 +497963,67 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [241514] = 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(9814), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9812), 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, - [241546] = 15, + [242196] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10411), 1, + ACTIONS(10441), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [241598] = 9, + [242248] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10413), 1, + ACTIONS(10443), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5908), 7, + STATE(5940), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -496027,136 +498031,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [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(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(10415), 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, - [241734] = 14, - 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(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, + [242288] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10091), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10093), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10417), 1, + ACTIONS(10445), 1, sym_number_literal, - ACTIONS(10095), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10097), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10101), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5903), 7, + STATE(5809), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -496164,221 +498062,73 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [241824] = 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(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(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(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, - 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, - [241928] = 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(10423), 1, - sym_identifier, - ACTIONS(10425), 1, - anon_sym_TILDE, - ACTIONS(10427), 1, - anon_sym_COLON_COLON, - ACTIONS(10429), 1, - anon_sym_template, - ACTIONS(10431), 1, - anon_sym_operator, - STATE(1805), 1, - sym_template_type, - STATE(1806), 1, - sym_dependent_type_identifier, - STATE(1865), 1, - sym_qualified_type_identifier, - STATE(3257), 1, - sym_dependent_identifier, - STATE(3263), 1, - sym_qualified_identifier, - STATE(3264), 1, - sym_operator_name, - STATE(3332), 1, - sym_destructor_name, - STATE(3382), 1, - sym_pointer_type_declarator, - STATE(3391), 1, - sym_template_function, - STATE(5844), 1, - sym__scope_resolution, - STATE(8189), 1, - sym_ms_based_modifier, - STATE(8569), 1, - sym_decltype, - [241992] = 9, - ACTIONS(3), 1, - sym_comment, - 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_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, + [242328] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8302), 1, + ACTIONS(8362), 1, anon_sym_STAR, ACTIONS(10248), 1, anon_sym_TILDE, ACTIONS(10254), 1, anon_sym_operator, - ACTIONS(10433), 1, + ACTIONS(10447), 1, sym_identifier, - ACTIONS(10435), 1, + ACTIONS(10449), 1, anon_sym_COLON_COLON, - ACTIONS(10437), 1, + ACTIONS(10451), 1, anon_sym_template, - STATE(1805), 1, + STATE(1931), 1, sym_template_type, - STATE(1806), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(1865), 1, + STATE(1938), 1, sym_qualified_type_identifier, - STATE(3553), 1, + STATE(2463), 1, sym_pointer_type_declarator, - STATE(3554), 1, + STATE(2465), 1, sym_template_function, - STATE(3555), 1, + STATE(2470), 1, sym_destructor_name, - STATE(3556), 1, + STATE(2471), 1, sym_dependent_identifier, - STATE(3557), 1, + STATE(2481), 1, sym_qualified_identifier, - STATE(3558), 1, + STATE(2485), 1, sym_operator_name, - STATE(5846), 1, + STATE(5864), 1, sym__scope_resolution, - STATE(8189), 1, - sym_ms_based_modifier, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [242096] = 9, + STATE(8609), 1, + sym_ms_based_modifier, + [242392] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10439), 1, + ACTIONS(10453), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5954), 7, + STATE(5959), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -496386,30 +498136,59 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [242136] = 9, + [242432] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10216), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10214), 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, + [242468] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10065), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10069), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10071), 1, anon_sym_defined, - ACTIONS(10441), 1, + ACTIONS(10455), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10073), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10075), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10079), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5928), 7, + STATE(5978), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -496417,30 +498196,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [242176] = 9, + [242508] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10443), 1, + ACTIONS(10457), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5878), 7, + STATE(5970), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -496448,30 +498227,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [242216] = 9, + [242548] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10200), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(10202), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, + ACTIONS(10204), 1, anon_sym_defined, - ACTIONS(10445), 1, + ACTIONS(10459), 1, sym_number_literal, - ACTIONS(10190), 2, + ACTIONS(10206), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(10192), 2, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10196), 5, + ACTIONS(10212), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(5894), 7, + STATE(5890), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -496479,330 +498258,186 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [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, + [242588] = 9, 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, + ACTIONS(10200), 1, + sym_identifier, + ACTIONS(10202), 1, + anon_sym_LPAREN2, + ACTIONS(10204), 1, + anon_sym_defined, + ACTIONS(10461), 1, + sym_number_literal, + ACTIONS(10206), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(10208), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [242344] = 13, + ACTIONS(10212), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(5912), 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, + [242628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10031), 1, + ACTIONS(10465), 5, 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, + ACTIONS(10463), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [242392] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10031), 1, - anon_sym_SLASH, - 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), 4, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - [242438] = 12, - ACTIONS(3), 1, - sym_comment, - 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, + [242656] = 15, 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 1, + sym_identifier, + ACTIONS(10220), 1, 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(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10467), 1, + anon_sym_RBRACK, + STATE(5972), 1, + sym__scope_resolution, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [242708] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10031), 1, - anon_sym_SLASH, - ACTIONS(10027), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10029), 2, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8235), 1, 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, + ACTIONS(8237), 1, + anon_sym_AMP_AMP, + ACTIONS(8239), 1, anon_sym_AMP, - ACTIONS(10451), 5, + ACTIONS(8380), 1, + anon_sym___attribute, + STATE(3283), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6540), 1, + sym__abstract_declarator, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8378), 6, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [242570] = 9, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [242754] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10031), 1, - anon_sym_SLASH, - ACTIONS(10027), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10029), 2, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 1, + sym_identifier, + ACTIONS(10220), 1, 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, + ACTIONS(10222), 1, 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(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10469), 1, + anon_sym_RBRACK, + STATE(5972), 1, + sym__scope_resolution, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [242806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10031), 1, + ACTIONS(10473), 5, 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, + ACTIONS(10471), 15, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - [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, @@ -496812,624 +498447,744 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [242680] = 15, + [242834] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10455), 1, + ACTIONS(10475), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [242732] = 15, + [242886] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10457), 1, + ACTIONS(10477), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [242784] = 9, + [242938] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10087), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10091), 1, - anon_sym_LPAREN2, - ACTIONS(10093), 1, - anon_sym_defined, - ACTIONS(10459), 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(5756), 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, - [242824] = 9, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10479), 1, + anon_sym_RBRACK, + STATE(5972), 1, + sym__scope_resolution, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [242990] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(10186), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(10188), 1, - anon_sym_defined, - ACTIONS(10461), 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(5955), 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, - [242864] = 3, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6575), 1, + sym__type_declarator, + STATE(7058), 1, + sym__type_definition_declarators, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [243040] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10465), 5, + ACTIONS(10097), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(10107), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10463), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10216), 1, + anon_sym_PIPE, + ACTIONS(10093), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10095), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(10109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(10115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [242892] = 15, + ACTIONS(10214), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [243084] = 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_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10467), 1, + ACTIONS(10481), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [242944] = 15, + [243136] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4543), 1, + ACTIONS(4551), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, + anon_sym_EQ, + ACTIONS(10218), 1, + sym_identifier, + ACTIONS(10220), 1, + anon_sym_STAR, + ACTIONS(10222), 1, + anon_sym_AMP, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10228), 1, + sym_this, + ACTIONS(10483), 1, + anon_sym_RBRACK, + STATE(5972), 1, + sym__scope_resolution, + STATE(7952), 1, + sym_lambda_default_capture, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7448), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [243188] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4559), 1, anon_sym_EQ, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10212), 1, + ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10216), 1, + ACTIONS(10228), 1, sym_this, - ACTIONS(10469), 1, + ACTIONS(10485), 1, anon_sym_RBRACK, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(7761), 1, + STATE(7952), 1, sym_lambda_default_capture, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(7462), 5, + STATE(7448), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [242996] = 21, + [243240] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8302), 1, + ACTIONS(8294), 1, anon_sym_STAR, - ACTIONS(10425), 1, + ACTIONS(10238), 1, anon_sym_TILDE, - ACTIONS(10431), 1, + ACTIONS(10244), 1, anon_sym_operator, - ACTIONS(10471), 1, + ACTIONS(10487), 1, sym_identifier, - ACTIONS(10473), 1, + ACTIONS(10489), 1, anon_sym_COLON_COLON, - ACTIONS(10475), 1, + ACTIONS(10491), 1, anon_sym_template, - STATE(1919), 1, + STATE(1931), 1, sym_template_type, - STATE(1930), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(1932), 1, + STATE(1938), 1, sym_qualified_type_identifier, - STATE(3257), 1, + STATE(3267), 1, + sym_pointer_type_declarator, + STATE(3268), 1, + sym_template_function, + STATE(3269), 1, + sym_destructor_name, + STATE(3270), 1, sym_dependent_identifier, - STATE(3263), 1, + STATE(3274), 1, sym_qualified_identifier, - STATE(3264), 1, + STATE(3275), 1, sym_operator_name, - STATE(3332), 1, - sym_destructor_name, - STATE(3382), 1, - sym_pointer_type_declarator, - STATE(3391), 1, - sym_template_function, - STATE(5869), 1, + STATE(5884), 1, sym__scope_resolution, - STATE(8189), 1, - sym_ms_based_modifier, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [243060] = 14, + STATE(8864), 1, + sym_ms_based_modifier, + [243304] = 5, 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, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10095), 2, anon_sym_STAR, - ACTIONS(8340), 1, - anon_sym_AMP_AMP, - ACTIONS(8342), 1, + anon_sym_PERCENT, + ACTIONS(10216), 4, + anon_sym_PIPE, anon_sym_AMP, - STATE(1971), 1, - sym_pointer_type_declarator, - STATE(6526), 1, - sym__type_declarator, - STATE(6963), 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, - [243110] = 3, - ACTIONS(7083), 1, - anon_sym_LF, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(7081), 18, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10214), 13, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - [243137] = 13, + [243336] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, ACTIONS(8312), 1, anon_sym_STAR, ACTIONS(8314), 1, anon_sym_AMP_AMP, ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6879), 1, + STATE(6575), 1, sym__type_declarator, - STATE(8660), 1, + STATE(7011), 1, + sym__type_definition_declarators, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [243184] = 6, + [243386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(7483), 1, - anon_sym_LT, - STATE(6052), 1, - sym_template_argument_list, - ACTIONS(8123), 4, + ACTIONS(10495), 3, anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5044), 12, + ACTIONS(10493), 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, - [243217] = 3, + anon_sym_requires, + [243413] = 13, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(10497), 1, 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(10499), 1, + anon_sym_DASH_GT, + ACTIONS(10501), 1, anon_sym_requires, - [243244] = 8, - ACTIONS(10057), 1, + STATE(7648), 1, + sym_trailing_return_type, + STATE(8271), 1, + sym_requires_clause, + STATE(6495), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6832), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6772), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [243460] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(10451), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6860), 1, + sym__type_declarator, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [243507] = 12, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10503), 1, anon_sym_LF, - ACTIONS(10477), 2, + ACTIONS(10509), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, + anon_sym_AMP_AMP, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10453), 5, + [243552] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10097), 1, + anon_sym_SLASH, + ACTIONS(10099), 1, anon_sym_PIPE_PIPE, + ACTIONS(10101), 1, anon_sym_AMP_AMP, + ACTIONS(10103), 1, anon_sym_PIPE, + ACTIONS(10105), 1, anon_sym_CARET, + ACTIONS(10107), 1, anon_sym_AMP, - [243281] = 12, - ACTIONS(10057), 1, + ACTIONS(10525), 1, + anon_sym_RPAREN, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10109), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10111), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(10115), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [243601] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(10487), 1, + ACTIONS(10527), 1, + anon_sym_LBRACK_LBRACK, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2043), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6319), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_using, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [243632] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10326), 1, anon_sym_LF, - ACTIONS(10489), 1, + ACTIONS(10328), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, 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(10477), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10481), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + [243659] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10340), 1, + anon_sym_LF, + ACTIONS(10342), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [243326] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [243686] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6869), 1, + STATE(6865), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [243373] = 12, - ACTIONS(10057), 1, + [243733] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10489), 1, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, - ACTIONS(10491), 1, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - ACTIONS(10493), 1, + ACTIONS(10513), 1, anon_sym_PIPE, - ACTIONS(10495), 1, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(10497), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10499), 1, + ACTIONS(10530), 1, anon_sym_LF, - ACTIONS(10477), 2, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [243418] = 3, - ACTIONS(10057), 1, + [243778] = 11, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10463), 1, + ACTIONS(10214), 1, anon_sym_LF, - ACTIONS(10465), 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(10513), 1, anon_sym_PIPE, + ACTIONS(10515), 1, anon_sym_CARET, + ACTIONS(10517), 1, anon_sym_AMP, + ACTIONS(10216), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(10505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [243445] = 13, - 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(2970), 1, - sym__type_declarator, - STATE(3374), 1, - sym_pointer_type_declarator, - STATE(8189), 1, - sym_ms_based_modifier, - 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, - [243492] = 3, + [243821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10503), 3, + ACTIONS(9712), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10501), 16, + ACTIONS(9701), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497446,28 +499201,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [243519] = 9, + [243848] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - STATE(6042), 1, + STATE(6046), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9150), 2, + ACTIONS(9183), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 8, + ACTIONS(9172), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -497476,28 +499231,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [243558] = 9, + [243887] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - STATE(5994), 1, + STATE(6017), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9382), 2, + ACTIONS(9399), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 8, + ACTIONS(9388), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -497506,28 +499261,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [243597] = 9, + [243926] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - STATE(6023), 1, + STATE(6026), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9700), 2, + ACTIONS(9712), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 8, + ACTIONS(9701), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -497536,28 +499291,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [243636] = 9, + [243965] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - STATE(5971), 1, + STATE(6047), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9947), 2, + ACTIONS(9935), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 8, + ACTIONS(9933), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -497566,28 +499321,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [243675] = 9, + [244004] = 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(3007), 1, + anon_sym_TILDE, + ACTIONS(6412), 1, + anon_sym_COLON_COLON, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(10117), 1, + sym_identifier, + ACTIONS(10119), 1, + anon_sym_template, + STATE(2620), 1, + sym_destructor_name, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, + sym_dependent_identifier, + STATE(2659), 1, + sym_operator_name, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5903), 1, + sym__scope_resolution, + STATE(8501), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [244061] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - ACTIONS(9359), 1, + ACTIONS(9337), 1, anon_sym_requires, - STATE(6044), 1, + STATE(6060), 1, sym_trailing_return_type, - ACTIONS(9150), 2, + ACTIONS(9183), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9193), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 8, + ACTIONS(9172), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -497596,28 +499390,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [243714] = 9, + [244100] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - ACTIONS(9479), 1, + ACTIONS(9543), 1, anon_sym_requires, - STATE(5993), 1, + STATE(5988), 1, sym_trailing_return_type, - ACTIONS(9382), 2, + ACTIONS(9399), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9387), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 8, + ACTIONS(9388), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -497626,28 +499420,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [243753] = 9, + [244139] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - ACTIONS(9739), 1, + ACTIONS(9758), 1, anon_sym_requires, - STATE(6046), 1, + STATE(5989), 1, sym_trailing_return_type, - ACTIONS(9700), 2, + ACTIONS(9712), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9702), 2, + ACTIONS(9725), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 8, + ACTIONS(9701), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -497656,28 +499450,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [243792] = 9, + [244178] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 1, + ACTIONS(7466), 1, anon_sym_DASH_GT, - ACTIONS(10505), 1, + ACTIONS(10532), 1, anon_sym_requires, - STATE(5969), 1, + STATE(5992), 1, sym_trailing_return_type, - ACTIONS(9947), 2, + ACTIONS(9935), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9957), 2, + ACTIONS(9937), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 8, + ACTIONS(9933), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -497686,62 +499480,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [243831] = 3, + [244217] = 13, 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, + ACTIONS(5496), 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(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(10499), 1, + anon_sym_DASH_GT, + ACTIONS(10501), 1, anon_sym_requires, - [243858] = 3, + ACTIONS(10535), 1, + anon_sym_LBRACE, + STATE(7711), 1, + sym_trailing_return_type, + STATE(8238), 1, + sym_requires_clause, + STATE(5888), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6829), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6841), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [244264] = 12, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10509), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, + anon_sym_AMP_AMP, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10537), 1, + anon_sym_LF, + ACTIONS(10505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10521), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244309] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10463), 1, + anon_sym_LF, + ACTIONS(10465), 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, + [244336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10514), 3, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8727), 1, + anon_sym_LT, + STATE(2702), 1, + sym_template_argument_list, + ACTIONS(5839), 2, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10512), 16, + anon_sym_COLON, + ACTIONS(4180), 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_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [243885] = 3, + [244369] = 12, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10509), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, + anon_sym_AMP_AMP, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10539), 1, + anon_sym_LF, + ACTIONS(10505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10521), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10518), 3, + ACTIONS(10543), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10516), 16, + ACTIONS(10541), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -497758,269 +499655,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [243912] = 6, + [244441] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(7305), 1, anon_sym_COLON_COLON, - ACTIONS(8725), 1, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(10545), 1, + sym_identifier, + ACTIONS(10547), 1, + anon_sym_template, + STATE(2620), 1, + sym_destructor_name, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, + sym_dependent_identifier, + STATE(2659), 1, + sym_operator_name, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5914), 1, + sym__scope_resolution, + STATE(8501), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [244498] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10316), 1, + anon_sym_LF, + ACTIONS(10318), 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, - 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_LT_LT, + anon_sym_GT_GT, + [244525] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6859), 1, + sym__type_declarator, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [244572] = 12, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, + ACTIONS(10511), 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, - [243945] = 12, - ACTIONS(10057), 1, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10549), 1, + anon_sym_LF, + ACTIONS(10505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10521), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [244617] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8322), 1, + sym_identifier, + ACTIONS(8324), 1, + anon_sym_LPAREN2, + ACTIONS(8326), 1, + anon_sym_STAR, + ACTIONS(8328), 1, + anon_sym_AMP_AMP, + ACTIONS(8330), 1, + anon_sym_AMP, + ACTIONS(8334), 1, + sym_primitive_type, + STATE(6005), 1, + sym__type_declarator, + STATE(6210), 1, + sym_pointer_type_declarator, + STATE(8469), 1, + sym_ms_based_modifier, + ACTIONS(8332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6208), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [244664] = 8, + ACTIONS(10143), 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(10520), 1, + ACTIONS(10214), 1, anon_sym_LF, - ACTIONS(10477), 2, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [243990] = 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(7217), 1, - anon_sym_COLON_COLON, - ACTIONS(8338), 1, - anon_sym_STAR, - ACTIONS(10522), 1, - sym_identifier, - ACTIONS(10524), 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(5895), 1, - sym__scope_resolution, - STATE(8477), 1, - sym_ms_based_modifier, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [244047] = 18, - ACTIONS(3), 1, + ACTIONS(10216), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [244701] = 3, + ACTIONS(10143), 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(5873), 1, - anon_sym_COLON_COLON, - ACTIONS(8288), 1, + ACTIONS(10471), 1, + anon_sym_LF, + ACTIONS(10473), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - 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(10530), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(6464), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6466), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + 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_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, - [244133] = 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + [244728] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, - sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8314), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8316), 1, anon_sym_AMP, - STATE(1971), 1, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6874), 1, + STATE(6888), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [244180] = 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(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(10540), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10538), 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, - [244254] = 3, + [244775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10544), 3, + ACTIONS(10553), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10542), 16, + ACTIONS(10551), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -498037,171 +499930,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244281] = 6, - ACTIONS(10057), 1, + [244802] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10451), 1, + ACTIONS(10509), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, + anon_sym_AMP_AMP, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10555), 1, anon_sym_LF, - ACTIONS(10477), 2, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10485), 2, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 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, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [244314] = 14, - ACTIONS(3), 1, + [244847] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10031), 1, - anon_sym_SLASH, - ACTIONS(10033), 1, + ACTIONS(10214), 1, + anon_sym_LF, + ACTIONS(10216), 1, anon_sym_PIPE_PIPE, - ACTIONS(10035), 1, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - ACTIONS(10037), 1, + ACTIONS(10513), 1, anon_sym_PIPE, - ACTIONS(10039), 1, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(10041), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10546), 1, - anon_sym_RPAREN, - ACTIONS(10027), 2, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10029), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10043), 2, + ACTIONS(10519), 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, + ACTIONS(10523), 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, + ACTIONS(10507), 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(10521), 4, 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, + [244892] = 10, + ACTIONS(10143), 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, + ACTIONS(10214), 1, + anon_sym_LF, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(10497), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10548), 1, - anon_sym_LF, - ACTIONS(10477), 2, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10216), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [244435] = 17, + [244933] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(113), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6074), 1, + sym__type_declarator, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [244980] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8308), 1, + sym_identifier, + ACTIONS(8310), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_STAR, + ACTIONS(8314), 1, + anon_sym_AMP_AMP, + ACTIONS(8316), 1, + anon_sym_AMP, + ACTIONS(8320), 1, + sym_primitive_type, + STATE(1950), 1, + sym_pointer_type_declarator, + STATE(6663), 1, + sym__type_declarator, + STATE(8501), 1, + sym_ms_based_modifier, + ACTIONS(8318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(1971), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [245027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9183), 3, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3623), 1, - anon_sym_LBRACE, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10063), 1, + ACTIONS(9172), 16, anon_sym_COMMA, - ACTIONS(10065), 1, + anon_sym_RPAREN, 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___attribute__, 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [245054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10556), 3, + ACTIONS(10559), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10554), 16, + ACTIONS(10557), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -498218,47 +500143,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244517] = 12, - ACTIONS(10057), 1, + [245081] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10489), 1, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, - ACTIONS(10491), 1, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - ACTIONS(10493), 1, + ACTIONS(10513), 1, anon_sym_PIPE, - ACTIONS(10495), 1, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(10497), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10558), 1, + ACTIONS(10561), 1, anon_sym_LF, - ACTIONS(10477), 2, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [244562] = 3, + [245126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10562), 3, + ACTIONS(10565), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10560), 16, + ACTIONS(10563), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -498275,19 +500200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244589] = 5, - ACTIONS(10057), 1, + [245153] = 4, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10451), 1, + ACTIONS(10214), 1, anon_sym_LF, - ACTIONS(10477), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10453), 13, + ACTIONS(10216), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -498301,48 +500225,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [244620] = 13, + [245182] = 6, 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, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(8727), 1, + anon_sym_LT, + STATE(2702), 1, + sym_template_argument_list, + ACTIONS(4915), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(4922), 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, - 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, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [245215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 3, + ACTIONS(10569), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10566), 16, + ACTIONS(10567), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -498359,14 +500276,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244694] = 3, + [245242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 3, + ACTIONS(10573), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10570), 16, + ACTIONS(10571), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -498383,208 +500300,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [244721] = 13, - ACTIONS(3), 1, + [245269] = 9, + ACTIONS(10143), 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, + ACTIONS(10214), 1, + anon_sym_LF, + ACTIONS(10517), 1, + anon_sym_AMP, + ACTIONS(10505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10519), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10507), 3, anon_sym_STAR, - ACTIONS(8340), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10216), 4, + anon_sym_PIPE_PIPE, 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, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(10521), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [245308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(10577), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10575), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, 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, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [245335] = 3, + ACTIONS(7064), 1, + anon_sym_LF, + ACTIONS(10143), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8284), 1, - sym_identifier, - ACTIONS(8286), 1, - anon_sym_LPAREN2, - ACTIONS(8288), 1, + ACTIONS(7062), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(8290), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8292), 1, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - 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, + 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, + [245362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(7483), 1, - anon_sym_LT, - STATE(6052), 1, - sym_template_argument_list, - ACTIONS(4934), 4, + ACTIONS(10581), 3, anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4927), 12, + ACTIONS(10579), 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, - [244895] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(8318), 1, - sym_identifier, - ACTIONS(8320), 1, - anon_sym_LPAREN2, - ACTIONS(8322), 1, - anon_sym_STAR, - 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, + anon_sym_requires, + [245389] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10489), 1, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, - ACTIONS(10491), 1, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - ACTIONS(10493), 1, + ACTIONS(10513), 1, anon_sym_PIPE, - ACTIONS(10495), 1, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(10497), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10576), 1, + ACTIONS(10583), 1, anon_sym_LF, - ACTIONS(10477), 2, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [244987] = 3, - ACTIONS(10057), 1, + [245434] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10270), 1, + ACTIONS(10587), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10585), 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, + [245461] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10214), 1, anon_sym_LF, - ACTIONS(10272), 18, + ACTIONS(10216), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498603,120 +500483,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [245014] = 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(10578), 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, - [245059] = 13, + [245488] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, + ACTIONS(8320), 1, sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8362), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8364), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8366), 1, anon_sym_AMP, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6649), 1, + STATE(2254), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8609), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 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, + [245535] = 3, + ACTIONS(10143), 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, + ACTIONS(10411), 1, + anon_sym_LF, + ACTIONS(10413), 18, + anon_sym_DASH, + anon_sym_PLUS, 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, + 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, + [245562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9947), 3, + ACTIONS(9945), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9945), 16, + ACTIONS(9943), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -498733,12 +500565,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245190] = 3, - ACTIONS(10057), 1, + [245589] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(10326), 1, + ACTIONS(9935), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9933), 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, + [245616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10591), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10589), 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, + [245643] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10278), 1, anon_sym_LF, - ACTIONS(10328), 18, + ACTIONS(10280), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498757,7 +500637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [245217] = 18, + [245670] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -498766,44 +500646,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(8338), 1, + ACTIONS(7113), 1, + anon_sym_COLON_COLON, + ACTIONS(8368), 1, anon_sym_STAR, - ACTIONS(10580), 1, + ACTIONS(10593), 1, sym_identifier, - ACTIONS(10582), 1, - anon_sym_COLON_COLON, - ACTIONS(10584), 1, + ACTIONS(10595), 1, anon_sym_template, - STATE(2617), 1, + STATE(5949), 1, + sym__scope_resolution, + STATE(6126), 1, sym_template_function, - STATE(2653), 1, + STATE(6139), 1, sym_destructor_name, - STATE(2658), 1, - sym_dependent_identifier, - STATE(2662), 1, + STATE(6189), 1, sym_qualified_identifier, - STATE(2665), 1, + STATE(6195), 1, sym_operator_name, - STATE(2672), 1, + STATE(6203), 1, sym_pointer_type_declarator, - STATE(5926), 1, - sym__scope_resolution, - STATE(8477), 1, + STATE(6220), 1, + sym_dependent_identifier, + STATE(8632), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [245274] = 3, + [245727] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10041), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, + anon_sym_EQ, + ACTIONS(10597), 1, + anon_sym_SEMI, + ACTIONS(10599), 1, + anon_sym_COLON, + STATE(3014), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7343), 1, + sym_gnu_asm_expression, + STATE(7345), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6466), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [245782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9382), 3, + ACTIONS(9399), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9371), 16, + ACTIONS(9388), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -498820,105 +500738,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245301] = 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(10586), 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, - [245346] = 13, + [245809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(10603), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10601), 16, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, 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(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(10451), 1, - anon_sym_LF, - ACTIONS(10495), 1, - anon_sym_CARET, - 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(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(10483), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [245434] = 18, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [245836] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -498927,279 +500771,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(7263), 1, + ACTIONS(7325), 1, anon_sym_COLON_COLON, - ACTIONS(8312), 1, + ACTIONS(8350), 1, anon_sym_STAR, - ACTIONS(10051), 1, + ACTIONS(10117), 1, sym_identifier, - ACTIONS(10053), 1, + ACTIONS(10119), 1, anon_sym_template, - STATE(2617), 1, - sym_template_function, - STATE(2653), 1, + STATE(2620), 1, sym_destructor_name, - STATE(2658), 1, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, sym_dependent_identifier, - STATE(2662), 1, - sym_qualified_identifier, - STATE(2665), 1, + STATE(2659), 1, sym_operator_name, - STATE(2672), 1, - sym_pointer_type_declarator, - STATE(5931), 1, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5953), 1, sym__scope_resolution, - STATE(8660), 1, + STATE(8684), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [245491] = 11, - ACTIONS(10057), 1, + [245893] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(10451), 1, - anon_sym_LF, - ACTIONS(10493), 1, - anon_sym_PIPE, - ACTIONS(10495), 1, - anon_sym_CARET, - ACTIONS(10497), 1, - anon_sym_AMP, - ACTIONS(10453), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_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, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10483), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [245534] = 6, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(10499), 1, + anon_sym_DASH_GT, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(10605), 1, + anon_sym_LBRACE, + STATE(7294), 1, + sym_trailing_return_type, + STATE(8821), 1, + sym_requires_clause, + STATE(5969), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6825), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6776), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [245940] = 3, 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(5834), 2, + ACTIONS(10609), 3, anon_sym___attribute, - anon_sym_COLON, - ACTIONS(4192), 14, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10607), 16, 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_LBRACK, - anon_sym_or, - anon_sym_and, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [245567] = 3, + [245967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9700), 3, + ACTIONS(10611), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(6460), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9689), 16, + ACTIONS(6462), 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, - [245594] = 3, - ACTIONS(10057), 1, - sym_comment, - 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, - 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, - [245621] = 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(10590), 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, - [245666] = 7, - 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(10483), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10453), 7, - 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, - [245701] = 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(10592), 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, - [245746] = 13, + [245996] = 6, 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, - ACTIONS(8336), 1, - anon_sym_AMP, - STATE(6122), 1, - sym_pointer_type_declarator, - STATE(6355), 1, - sym__type_declarator, - STATE(8378), 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, - [245793] = 3, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(6097), 1, + sym_template_argument_list, + ACTIONS(4924), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4917), 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, + [246029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10596), 3, + ACTIONS(10615), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10594), 16, + ACTIONS(10613), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -499216,235 +500935,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [245820] = 9, - ACTIONS(10057), 1, + [246056] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10451), 1, - anon_sym_LF, - ACTIONS(10497), 1, + ACTIONS(10509), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, + anon_sym_AMP_AMP, + ACTIONS(10513), 1, + anon_sym_PIPE, + ACTIONS(10515), 1, + anon_sym_CARET, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10477), 2, + ACTIONS(10617), 1, + anon_sym_LF, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, 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, + ACTIONS(10521), 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(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(1971), 1, - sym_pointer_type_declarator, - STATE(2240), 1, - sym__type_declarator, - STATE(8550), 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, - [245906] = 5, - ACTIONS(3), 1, - sym_comment, - 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_LBRACK, - anon_sym___asm, - ACTIONS(6273), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_using, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [245937] = 11, + [246101] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(8352), 1, + ACTIONS(8356), 1, anon_sym_STAR, - ACTIONS(8354), 1, + ACTIONS(8358), 1, anon_sym_AMP_AMP, - ACTIONS(8356), 1, + ACTIONS(8360), 1, anon_sym_AMP, - STATE(3198), 1, + STATE(3165), 1, sym_parameter_list, - STATE(6109), 1, + STATE(6134), 1, sym__function_declarator_seq, - STATE(6677), 1, + STATE(6666), 1, sym__abstract_declarator, - STATE(6099), 5, + STATE(6117), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8360), 6, + ACTIONS(8378), 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, + [246144] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(10489), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10491), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8336), 1, + sym_identifier, + ACTIONS(8338), 1, + anon_sym_LPAREN2, + ACTIONS(8340), 1, + anon_sym_STAR, + ACTIONS(8342), 1, anon_sym_AMP_AMP, - ACTIONS(10493), 1, - anon_sym_PIPE, - ACTIONS(10495), 1, - anon_sym_CARET, - ACTIONS(10497), 1, + ACTIONS(8344), 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(8348), 1, + sym_primitive_type, + STATE(3163), 1, + sym__type_declarator, + STATE(3498), 1, + sym_pointer_type_declarator, + STATE(8509), 1, + sym_ms_based_modifier, + ACTIONS(8346), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3473), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [246191] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(10603), 1, + ACTIONS(10619), 1, anon_sym_LBRACE, - STATE(5915), 1, + STATE(5908), 1, sym_parameter_list, - STATE(8531), 1, + STATE(8418), 1, sym_trailing_return_type, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6086), 2, + STATE(6080), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6897), 3, + STATE(6915), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [246072] = 11, + [246238] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7848), 1, + ACTIONS(7874), 1, anon_sym_LPAREN2, - ACTIONS(7862), 1, + ACTIONS(7888), 1, anon_sym_LBRACK, - ACTIONS(8262), 1, + ACTIONS(8284), 1, anon_sym_STAR, - ACTIONS(8264), 1, + ACTIONS(8286), 1, anon_sym_AMP_AMP, - ACTIONS(8266), 1, + ACTIONS(8288), 1, anon_sym_AMP, - STATE(3255), 1, + STATE(3359), 1, sym_parameter_list, - STATE(5953), 1, + STATE(5941), 1, sym__function_declarator_seq, - STATE(6684), 1, + STATE(6678), 1, sym__abstract_declarator, - STATE(5952), 5, + STATE(5937), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8360), 6, + ACTIONS(8378), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_requires, - [246115] = 3, + [246281] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(6097), 1, + sym_template_argument_list, + ACTIONS(8179), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5052), 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, + [246314] = 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(3007), 1, + anon_sym_TILDE, + ACTIONS(5870), 1, + anon_sym_COLON_COLON, + ACTIONS(8326), 1, + anon_sym_STAR, + ACTIONS(10593), 1, + sym_identifier, + ACTIONS(10595), 1, + anon_sym_template, + STATE(5965), 1, + sym__scope_resolution, + STATE(6126), 1, + sym_template_function, + STATE(6139), 1, + sym_destructor_name, + STATE(6189), 1, + sym_qualified_identifier, + STATE(6195), 1, + sym_operator_name, + STATE(6203), 1, + sym_pointer_type_declarator, + STATE(6220), 1, + sym_dependent_identifier, + STATE(8469), 1, + sym_ms_based_modifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [246371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10607), 3, + ACTIONS(10623), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10605), 16, + ACTIONS(10621), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -499461,203 +501190,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [246142] = 3, - ACTIONS(10057), 1, + [246398] = 12, + ACTIONS(10143), 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, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, + ACTIONS(10511), 1, anon_sym_AMP_AMP, + ACTIONS(10513), 1, anon_sym_PIPE, + ACTIONS(10515), 1, anon_sym_CARET, + ACTIONS(10517), 1, anon_sym_AMP, + ACTIONS(10625), 1, + anon_sym_LF, + ACTIONS(10505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [246169] = 13, + [246443] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(8268), 1, + ACTIONS(8308), 1, sym_identifier, - ACTIONS(8270), 1, + ACTIONS(8310), 1, anon_sym_LPAREN2, - ACTIONS(8282), 1, + ACTIONS(8320), 1, sym_primitive_type, - ACTIONS(8338), 1, + ACTIONS(8350), 1, anon_sym_STAR, - ACTIONS(8340), 1, + ACTIONS(8352), 1, anon_sym_AMP_AMP, - ACTIONS(8342), 1, + ACTIONS(8354), 1, anon_sym_AMP, - STATE(1971), 1, + STATE(1950), 1, sym_pointer_type_declarator, - STATE(6054), 1, + STATE(6894), 1, sym__type_declarator, - STATE(8477), 1, + STATE(8684), 1, sym_ms_based_modifier, - ACTIONS(8280), 4, + ACTIONS(8318), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(1985), 5, + STATE(1971), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [246216] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(10262), 1, - anon_sym_LF, - ACTIONS(10264), 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, - [246243] = 3, + [246490] = 13, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5496), 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(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(10499), 1, + anon_sym_DASH_GT, + ACTIONS(10501), 1, anon_sym_requires, - [246270] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10615), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10613), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10627), 1, 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, - [246297] = 12, - ACTIONS(10057), 1, + STATE(7655), 1, + sym_trailing_return_type, + STATE(8736), 1, + sym_requires_clause, + STATE(6495), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6816), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6817), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [246537] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10489), 1, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, - ACTIONS(10491), 1, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - ACTIONS(10493), 1, + ACTIONS(10513), 1, anon_sym_PIPE, - ACTIONS(10495), 1, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(10497), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10617), 1, + ACTIONS(10629), 1, anon_sym_LF, - ACTIONS(10477), 2, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [246342] = 12, - ACTIONS(10057), 1, + [246582] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10489), 1, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, - ACTIONS(10491), 1, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - ACTIONS(10493), 1, + ACTIONS(10513), 1, anon_sym_PIPE, - ACTIONS(10495), 1, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(10497), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10619), 1, + ACTIONS(10631), 1, anon_sym_LF, - ACTIONS(10477), 2, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [246387] = 18, + [246627] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -499666,102 +501366,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(2999), 1, + ACTIONS(3007), 1, anon_sym_TILDE, - ACTIONS(8338), 1, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10621), 1, + ACTIONS(10633), 1, sym_identifier, - ACTIONS(10623), 1, + ACTIONS(10635), 1, anon_sym_template, - STATE(2617), 1, - sym_template_function, - STATE(2653), 1, + STATE(2620), 1, sym_destructor_name, - STATE(2658), 1, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, + sym_pointer_type_declarator, + STATE(2651), 1, sym_dependent_identifier, - STATE(2662), 1, - sym_qualified_identifier, - STATE(2665), 1, + STATE(2659), 1, sym_operator_name, - STATE(2672), 1, - sym_pointer_type_declarator, - STATE(5956), 1, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5972), 1, sym__scope_resolution, - STATE(8477), 1, + STATE(8501), 1, sym_ms_based_modifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [246444] = 13, + [246684] = 18, 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, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3007), 1, + anon_sym_TILDE, + ACTIONS(8312), 1, anon_sym_STAR, - ACTIONS(8340), 1, - anon_sym_AMP_AMP, - ACTIONS(8342), 1, - anon_sym_AMP, - STATE(1971), 1, + ACTIONS(10637), 1, + sym_identifier, + ACTIONS(10639), 1, + anon_sym_COLON_COLON, + ACTIONS(10641), 1, + anon_sym_template, + STATE(2620), 1, + sym_destructor_name, + STATE(2623), 1, + sym_template_function, + STATE(2643), 1, sym_pointer_type_declarator, - STATE(6835), 1, - sym__type_declarator, - STATE(8477), 1, + STATE(2651), 1, + sym_dependent_identifier, + STATE(2659), 1, + sym_operator_name, + STATE(2667), 1, + sym_qualified_identifier, + STATE(5973), 1, + sym__scope_resolution, + STATE(8501), 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, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [246741] = 7, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10627), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [246518] = 3, + ACTIONS(10214), 1, + anon_sym_LF, + ACTIONS(10505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10521), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10216), 7, + 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, + [246776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10631), 3, + ACTIONS(10645), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10629), 16, + ACTIONS(10643), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -499778,50 +501487,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [246545] = 12, - ACTIONS(10057), 1, + [246803] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10451), 1, - anon_sym_LF, - ACTIONS(10453), 1, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, - ACTIONS(10491), 1, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - ACTIONS(10493), 1, + ACTIONS(10513), 1, anon_sym_PIPE, - ACTIONS(10495), 1, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(10497), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10477), 2, + ACTIONS(10647), 1, + anon_sym_LF, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10481), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10485), 2, + ACTIONS(10523), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10479), 3, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10483), 4, + ACTIONS(10521), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [246590] = 3, - ACTIONS(10057), 1, + [246848] = 6, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10393), 1, + ACTIONS(10214), 1, anon_sym_LF, - ACTIONS(10395), 18, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10216), 11, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -499833,72 +501547,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [246617] = 4, - ACTIONS(10057), 1, + [246881] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(10451), 1, - anon_sym_LF, - ACTIONS(10479), 3, - anon_sym_STAR, + ACTIONS(10097), 1, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10453), 15, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10099), 1, anon_sym_PIPE_PIPE, + ACTIONS(10101), 1, anon_sym_AMP_AMP, + ACTIONS(10103), 1, anon_sym_PIPE, + ACTIONS(10105), 1, anon_sym_CARET, + ACTIONS(10107), 1, anon_sym_AMP, + ACTIONS(10649), 1, + anon_sym_RPAREN, + ACTIONS(10093), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10095), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(10109), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(10111), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(10113), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10115), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [246646] = 12, - ACTIONS(10057), 1, + [246930] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10489), 1, + ACTIONS(10214), 1, + anon_sym_LF, + ACTIONS(10505), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10216), 13, 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(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, + anon_sym_LT_LT, + anon_sym_GT_GT, + [246961] = 3, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10451), 1, + ACTIONS(10348), 1, anon_sym_LF, - ACTIONS(10453), 18, + ACTIONS(10350), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -499917,150 +501632,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [246718] = 3, + [246988] = 13, 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(8290), 1, + sym_identifier, + ACTIONS(8292), 1, 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, + ACTIONS(8294), 1, + anon_sym_STAR, + ACTIONS(8296), 1, + anon_sym_AMP_AMP, + ACTIONS(8298), 1, + anon_sym_AMP, + ACTIONS(8304), 1, + sym_primitive_type, + STATE(2965), 1, + sym__type_declarator, + STATE(3290), 1, + sym_pointer_type_declarator, + STATE(8864), 1, + sym_ms_based_modifier, + ACTIONS(8302), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3288), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [247035] = 12, + ACTIONS(10143), 1, sym_comment, - ACTIONS(10031), 1, - anon_sym_SLASH, - ACTIONS(10033), 1, + ACTIONS(10509), 1, anon_sym_PIPE_PIPE, - ACTIONS(10035), 1, + ACTIONS(10511), 1, anon_sym_AMP_AMP, - ACTIONS(10037), 1, + ACTIONS(10513), 1, anon_sym_PIPE, - ACTIONS(10039), 1, + ACTIONS(10515), 1, anon_sym_CARET, - ACTIONS(10041), 1, + ACTIONS(10517), 1, anon_sym_AMP, - ACTIONS(10635), 1, - anon_sym_RPAREN, - ACTIONS(10027), 2, + ACTIONS(10651), 1, + anon_sym_LF, + ACTIONS(10505), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10029), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(10043), 2, + ACTIONS(10519), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10045), 2, + ACTIONS(10523), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10521), 4, 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, - [246794] = 18, + anon_sym_LT, + [247080] = 13, 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(7277), 1, - anon_sym_COLON_COLON, - ACTIONS(8332), 1, - anon_sym_STAR, - ACTIONS(10526), 1, + ACTIONS(8322), 1, sym_identifier, - ACTIONS(10528), 1, - anon_sym_template, - STATE(5967), 1, - sym__scope_resolution, - STATE(6095), 1, + ACTIONS(8324), 1, + anon_sym_LPAREN2, + ACTIONS(8334), 1, + sym_primitive_type, + ACTIONS(8368), 1, + anon_sym_STAR, + ACTIONS(8370), 1, + anon_sym_AMP_AMP, + ACTIONS(8372), 1, + anon_sym_AMP, + STATE(6210), 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(8378), 1, + STATE(6355), 1, + sym__type_declarator, + STATE(8632), 1, sym_ms_based_modifier, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [246851] = 8, + ACTIONS(8332), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6208), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [247127] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10041), 1, anon_sym_LPAREN2, - ACTIONS(10637), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(6113), 1, + ACTIONS(10597), 1, + anon_sym_SEMI, + ACTIONS(10653), 1, + anon_sym_EQ, + STATE(2924), 1, sym_parameter_list, - ACTIONS(6202), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(6057), 2, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7343), 1, + sym_gnu_asm_expression, + STATE(7345), 1, + aux_sym_declaration_repeat1, + STATE(7425), 1, + sym_initializer_list, + STATE(7927), 1, + sym_argument_list, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6204), 10, + [247181] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9935), 1, + anon_sym___attribute, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6122), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 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_asm, - anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [246887] = 7, + [247215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10639), 1, - anon_sym_requires, - ACTIONS(9951), 2, + ACTIONS(5178), 1, + anon_sym___attribute, + ACTIONS(5180), 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___asm, - ACTIONS(9963), 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, + [247241] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + ACTIONS(9183), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5912), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9949), 9, + ACTIONS(9172), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500070,48 +501847,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [246921] = 4, + [247275] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 2, + ACTIONS(9758), 1, + anon_sym_requires, + ACTIONS(9712), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10642), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6250), 14, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 9, anon_sym_COMMA, 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_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [246949] = 7, + [247309] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(10532), 1, anon_sym_requires, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9951), 2, + ACTIONS(9935), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + ACTIONS(9937), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5912), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9949), 9, + ACTIONS(9933), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500121,209 +501901,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [246983] = 17, + [247343] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(894), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(10071), 1, + ACTIONS(10041), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10138), 1, - anon_sym_try, - ACTIONS(10644), 1, + ACTIONS(10049), 1, + anon_sym_EQ, + ACTIONS(10190), 1, anon_sym_SEMI, - STATE(686), 1, - sym_compound_statement, - STATE(687), 1, - sym_try_statement, - STATE(3108), 1, + STATE(2924), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(7456), 1, + STATE(7400), 1, sym_gnu_asm_expression, - STATE(7457), 1, + STATE(7403), 1, aux_sym_declaration_repeat1, - ACTIONS(10075), 2, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [247037] = 3, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [247395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 3, + ACTIONS(10127), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6466), 15, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(6008), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(10125), 13, + anon_sym_DOT_DOT_DOT, 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, - [247063] = 8, + anon_sym_requires, + [247425] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10637), 1, + ACTIONS(10655), 1, + anon_sym_requires, + ACTIONS(9945), 2, 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, + ACTIONS(9947), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5887), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9943), 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_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [247099] = 7, + [247459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(5196), 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), 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_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [247133] = 16, + anon_sym_requires, + [247485] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(10065), 1, + ACTIONS(10041), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10073), 1, + ACTIONS(10049), 1, anon_sym_EQ, - ACTIONS(10180), 1, + ACTIONS(10186), 1, anon_sym_SEMI, - STATE(2989), 1, + STATE(2924), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(7254), 1, + STATE(7276), 1, sym_gnu_asm_expression, - STATE(7266), 1, + STATE(7304), 1, aux_sym_declaration_repeat1, - ACTIONS(10075), 2, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7980), 2, + STATE(7927), 2, sym_argument_list, sym_initializer_list, - [247185] = 3, + [247537] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9853), 1, + anon_sym_try, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10658), 1, + anon_sym_SEMI, + ACTIONS(10660), 1, + anon_sym_LBRACE, + STATE(1779), 1, + sym_compound_statement, + STATE(1781), 1, + sym_try_statement, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7516), 1, + sym_gnu_asm_expression, + STATE(7517), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [247591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, + ACTIONS(6261), 1, anon_sym___attribute, - ACTIONS(5162), 17, + ACTIONS(10662), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(10664), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6263), 13, 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, - [247211] = 3, + [247621] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 3, - anon_sym___attribute, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, anon_sym_LBRACK, + STATE(6161), 1, + sym_parameter_list, + ACTIONS(6200), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(6680), 15, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6202), 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, - [247237] = 3, + [247657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(5182), 1, anon_sym___attribute, - ACTIONS(1934), 17, + ACTIONS(5184), 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, + [247683] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10194), 1, + anon_sym_try, + ACTIONS(10668), 1, + anon_sym_SEMI, + STATE(688), 1, + sym_compound_statement, + STATE(689), 1, + sym_try_statement, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7530), 1, + sym_gnu_asm_expression, + STATE(7531), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [247737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 1, + anon_sym___attribute, + ACTIONS(5176), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500341,23 +502221,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247263] = 7, + [247763] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9700), 1, + ACTIONS(9935), 1, anon_sym___attribute, - ACTIONS(9742), 1, + ACTIONS(10673), 1, anon_sym_requires, - ACTIONS(9727), 2, + ACTIONS(10670), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 10, + ACTIONS(9933), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500368,12 +502248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [247297] = 3, + [247797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, + ACTIONS(5162), 1, anon_sym___attribute, - ACTIONS(5202), 17, + ACTIONS(5164), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500391,12 +502271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247323] = 3, + [247823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 1, + ACTIONS(5192), 1, anon_sym___attribute, - ACTIONS(5182), 17, + ACTIONS(5194), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500414,39 +502294,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247349] = 7, + [247849] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10041), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, + anon_sym_EQ, + ACTIONS(10597), 1, + anon_sym_SEMI, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7343), 1, + sym_gnu_asm_expression, + STATE(7345), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [247901] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9951), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, + anon_sym_LBRACK, + STATE(6161), 1, + sym_parameter_list, + ACTIONS(6196), 2, 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___asm, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6198), 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_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [247383] = 3, + [247937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 1, + ACTIONS(5166), 1, anon_sym___attribute, - ACTIONS(5146), 17, + ACTIONS(5168), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500464,39 +502381,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247409] = 7, + [247963] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9665), 1, + sym_identifier, + ACTIONS(10676), 1, + anon_sym_virtual, + STATE(1946), 1, + sym_template_type, + STATE(6571), 1, + sym_access_specifier, + STATE(6757), 1, + sym__scope_resolution, + STATE(6024), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7618), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10678), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [248011] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10153), 1, anon_sym___attribute, - ACTIONS(7359), 2, + ACTIONS(10680), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(6008), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9139), 10, + ACTIONS(10151), 13, + 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_GT2, anon_sym_try, - [247443] = 3, + anon_sym_requires, + [248041] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9830), 1, + anon_sym_try, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10683), 1, + anon_sym_SEMI, + ACTIONS(10685), 1, + anon_sym_LBRACE, + STATE(2145), 1, + sym_compound_statement, + STATE(2146), 1, + sym_try_statement, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7362), 1, + sym_gnu_asm_expression, + STATE(7377), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [248095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 1, + ACTIONS(5144), 1, anon_sym___attribute, - ACTIONS(5186), 17, + ACTIONS(5146), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500514,175 +502500,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [247469] = 3, + [248121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3959), 3, + ACTIONS(5144), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3961), 15, + 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__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, + anon_sym_GT2, 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, + [248147] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9826), 1, + ACTIONS(9845), 1, anon_sym_try, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10652), 1, + ACTIONS(10687), 1, anon_sym_SEMI, - ACTIONS(10654), 1, + ACTIONS(10689), 1, anon_sym_LBRACE, - STATE(2113), 1, + STATE(2037), 1, sym_compound_statement, - STATE(2115), 1, + STATE(2038), 1, sym_try_statement, - STATE(3108), 1, + STATE(3098), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(7667), 1, + STATE(7640), 1, sym_gnu_asm_expression, - STATE(7671), 1, + STATE(7641), 1, aux_sym_declaration_repeat1, - ACTIONS(10075), 2, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [247583] = 9, + [248201] = 3, 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, + 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__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_final, anon_sym_override, - ACTIONS(9150), 2, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [248227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1940), 1, 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, + ACTIONS(1938), 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, - [247621] = 16, + anon_sym_try, + anon_sym_requires, + [248253] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(3623), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(10065), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10073), 1, - anon_sym_EQ, - ACTIONS(10119), 1, + ACTIONS(10063), 1, + anon_sym_try, + ACTIONS(10691), 1, anon_sym_SEMI, - STATE(2989), 1, + STATE(331), 1, + sym_compound_statement, + STATE(332), 1, + sym_try_statement, + STATE(3098), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(7409), 1, + STATE(7607), 1, sym_gnu_asm_expression, - STATE(7417), 1, + STATE(7608), 1, aux_sym_declaration_repeat1, - ACTIONS(10075), 2, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7980), 2, - sym_argument_list, - sym_initializer_list, - [247673] = 7, + [248307] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9947), 1, + ACTIONS(9945), 1, anon_sym___attribute, - ACTIONS(10659), 1, + ACTIONS(10696), 1, anon_sym_requires, - ACTIONS(10656), 2, + ACTIONS(10693), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6125), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 10, + ACTIONS(9943), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500693,24 +502670,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [247707] = 7, + [248341] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9739), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(9700), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9702), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + ACTIONS(9712), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 9, + ACTIONS(9701), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500720,298 +502697,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [247741] = 7, + [248375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, - anon_sym_requires, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9700), 2, + ACTIONS(6460), 3, + anon_sym___attribute, 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, + ACTIONS(6462), 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, - [247775] = 9, + [248401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(7375), 1, - anon_sym_DASH_GT, - STATE(5529), 1, - sym_trailing_return_type, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9382), 2, - anon_sym___attribute, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, 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, + STATE(6161), 1, + sym_parameter_list, + ACTIONS(6185), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6081), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6187), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [247813] = 9, + anon_sym_try, + [248437] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7314), 1, - anon_sym_requires, - ACTIONS(7375), 1, - anon_sym_DASH_GT, - STATE(5530), 1, - sym_trailing_return_type, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9700), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5593), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5924), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9689), 7, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(10039), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10041), 1, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, anon_sym_EQ, - anon_sym_GT2, - [247851] = 9, + ACTIONS(10145), 1, + anon_sym_SEMI, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7467), 1, + sym_gnu_asm_expression, + STATE(7468), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [248489] = 14, 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, - ACTIONS(9947), 2, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9665), 1, + sym_identifier, + ACTIONS(10699), 1, + anon_sym_virtual, + STATE(1946), 1, + sym_template_type, + STATE(6564), 1, + sym_access_specifier, + STATE(6757), 1, + sym__scope_resolution, + STATE(6029), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7153), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10678), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [248537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3963), 3, anon_sym___attribute, anon_sym_LBRACK, - 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___asm, + ACTIONS(3965), 15, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [247889] = 11, - ACTIONS(3), 1, - sym_comment, - 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_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, - 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, + [248563] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 1, - anon_sym_DASH_GT, - ACTIONS(9311), 1, + ACTIONS(7474), 1, anon_sym_requires, - STATE(5528), 1, - sym_trailing_return_type, - ACTIONS(9150), 2, + ACTIONS(9712), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(9193), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 7, + ACTIONS(9701), 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, - [247969] = 5, + anon_sym_try, + [248597] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6298), 2, - anon_sym_LBRACK, - anon_sym___asm, - 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, 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(9665), 1, + sym_identifier, + ACTIONS(10701), 1, + anon_sym_virtual, + STATE(1946), 1, + sym_template_type, + STATE(6568), 1, + sym_access_specifier, + STATE(6757), 1, + sym__scope_resolution, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7621), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10678), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [248645] = 7, 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, + ACTIONS(9399), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(9387), 2, + ACTIONS(9593), 1, + anon_sym_requires, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 7, + ACTIONS(9388), 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, - [248037] = 9, + anon_sym_try, + [248679] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 1, - anon_sym_DASH_GT, - ACTIONS(9724), 1, + ACTIONS(7385), 1, anon_sym_requires, - STATE(5537), 1, - sym_trailing_return_type, - ACTIONS(9700), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(9702), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + ACTIONS(9935), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 7, + ACTIONS(9933), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [248075] = 9, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [248713] = 5, 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, + ACTIONS(6261), 2, 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___asm, + ACTIONS(10703), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(10705), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6263), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [248113] = 3, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [248743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5188), 1, + ACTIONS(1936), 1, anon_sym___attribute, - ACTIONS(5190), 17, + ACTIONS(1934), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -501029,184 +503004,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [248139] = 17, + [248769] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9665), 1, + sym_identifier, + ACTIONS(10707), 1, + anon_sym_virtual, + STATE(1946), 1, + sym_template_type, + STATE(6646), 1, + sym_access_specifier, + STATE(6757), 1, + sym__scope_resolution, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7180), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10678), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [248817] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9798), 1, + ACTIONS(9818), 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, + anon_sym_LBRACK, + STATE(6161), 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__, + ACTIONS(6175), 2, + anon_sym___attribute, + 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, + ACTIONS(6177), 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_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [248223] = 17, + [248853] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9798), 1, + ACTIONS(7160), 1, + anon_sym_requires, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + STATE(5565), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(9183), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 7, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9837), 1, - anon_sym_try, - ACTIONS(10063), 1, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [248891] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9945), 1, + anon_sym___attribute, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9943), 10, anon_sym_COMMA, - ACTIONS(10071), 1, - anon_sym_LBRACK, - ACTIONS(10672), 1, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(10674), 1, + anon_sym___attribute__, 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, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [248925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 1, + ACTIONS(3967), 3, anon_sym___attribute, - ACTIONS(5150), 17, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3969), 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_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, 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, - [248303] = 3, + [248951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 1, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(6097), 1, + sym_template_argument_list, + ACTIONS(6474), 3, anon_sym___attribute, - ACTIONS(5154), 17, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6476), 13, 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_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [248329] = 7, + [248981] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(9951), 1, - anon_sym___attribute, - ACTIONS(7359), 2, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + STATE(5568), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + ACTIONS(9712), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6190), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9949), 10, + ACTIONS(9701), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [248363] = 3, + [249019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, + ACTIONS(5158), 1, anon_sym___attribute, - ACTIONS(5142), 17, + ACTIONS(5160), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -501224,182 +503222,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [248389] = 7, + [249045] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9150), 1, - anon_sym___attribute, - ACTIONS(9330), 1, + ACTIONS(7874), 1, + anon_sym_LPAREN2, + ACTIONS(7888), 1, + anon_sym_LBRACK, + ACTIONS(8411), 1, + anon_sym_STAR, + ACTIONS(8413), 1, + anon_sym_AMP_AMP, + ACTIONS(8415), 1, + anon_sym_AMP, + STATE(3528), 1, + sym_parameter_list, + STATE(5941), 1, + sym__function_declarator_seq, + STATE(6705), 1, + sym__abstract_declarator, + ACTIONS(8378), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(5937), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [249087] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(9327), 2, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + STATE(5569), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + ACTIONS(9935), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 10, + ACTIONS(9933), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_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, + [249125] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + ACTIONS(9325), 1, anon_sym_requires, - ACTIONS(6037), 2, + STATE(5526), 1, + sym_trailing_return_type, + ACTIONS(9183), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - ACTIONS(9150), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 9, + ACTIONS(9172), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [248511] = 7, + anon_sym_EQ, + anon_sym_GT2, + [249163] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + ACTIONS(9423), 1, anon_sym_requires, - ACTIONS(9947), 1, + STATE(5527), 1, + sym_trailing_return_type, + ACTIONS(9399), 2, anon_sym___attribute, - ACTIONS(7359), 2, + anon_sym_LBRACK, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 10, + ACTIONS(9388), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [248545] = 7, + [249201] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + ACTIONS(9740), 1, anon_sym_requires, - ACTIONS(9700), 1, + STATE(5528), 1, + sym_trailing_return_type, + ACTIONS(9712), 2, anon_sym___attribute, - ACTIONS(7359), 2, + anon_sym_LBRACK, + ACTIONS(9725), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 10, + ACTIONS(9701), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [248579] = 5, + [249239] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10105), 1, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + ACTIONS(9940), 1, + anon_sym_requires, + STATE(5529), 1, + sym_trailing_return_type, + ACTIONS(9935), 2, anon_sym___attribute, - ACTIONS(7359), 2, + anon_sym_LBRACK, + ACTIONS(9937), 2, anon_sym_final, anon_sym_override, - STATE(6040), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(10103), 13, - anon_sym_DOT_DOT_DOT, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 7, 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_LBRACK_LBRACK, anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248609] = 3, + [249277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 1, + ACTIONS(5208), 1, anon_sym___attribute, - ACTIONS(5194), 17, + ACTIONS(5210), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -501417,150 +503421,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [248635] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, - anon_sym_LBRACE, - 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(10182), 1, - anon_sym_try, - ACTIONS(10678), 1, - anon_sym_SEMI, - 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__, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [248689] = 4, + [249303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, + ACTIONS(5204), 1, anon_sym___attribute, - ACTIONS(10670), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6250), 15, + ACTIONS(5206), 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, - [248717] = 8, + [249329] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10637), 1, - anon_sym_LBRACK, - STATE(6113), 1, - sym_parameter_list, - ACTIONS(6090), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(6057), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6092), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(57), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [248753] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10123), 1, + ACTIONS(10188), 1, anon_sym_try, - ACTIONS(10680), 1, + ACTIONS(10709), 1, anon_sym_SEMI, - STATE(704), 1, + STATE(627), 1, sym_compound_statement, - STATE(706), 1, + STATE(630), 1, sym_try_statement, - STATE(3108), 1, + STATE(3098), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(7404), 1, - sym_gnu_asm_expression, - STATE(7407), 1, + STATE(7284), 1, aux_sym_declaration_repeat1, - ACTIONS(10075), 2, + STATE(7710), 1, + sym_gnu_asm_expression, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [248807] = 7, + [249383] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - ACTIONS(9947), 2, + ACTIONS(9399), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 9, + ACTIONS(9388), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -501570,127 +503508,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [248841] = 3, + [249417] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 1, - anon_sym___attribute, - 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_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, + ACTIONS(7385), 1, anon_sym_requires, - [248867] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5196), 1, - anon_sym___attribute, - 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_or, - anon_sym_and, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5196), 1, - anon_sym___attribute, - ACTIONS(5198), 17, + ACTIONS(9945), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5887), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9943), 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, - [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, + [249451] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10637), 1, + ACTIONS(10666), 1, anon_sym_LBRACK, - STATE(6113), 1, + STATE(6161), 1, sym_parameter_list, - ACTIONS(6145), 2, + ACTIONS(6163), 2, anon_sym___attribute, anon_sym___asm, - STATE(6057), 2, + STATE(6081), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6147), 10, + ACTIONS(6165), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -501701,93 +503563,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [249003] = 16, + [249487] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(3623), 1, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(10065), 1, + ACTIONS(10041), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10073), 1, + ACTIONS(10049), 1, anon_sym_EQ, - ACTIONS(10134), 1, + ACTIONS(10059), 1, anon_sym_SEMI, - STATE(2989), 1, + STATE(2924), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(7433), 1, + STATE(7465), 1, sym_gnu_asm_expression, - STATE(7434), 1, + STATE(7470), 1, aux_sym_declaration_repeat1, - ACTIONS(10075), 2, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7980), 2, + STATE(7927), 2, sym_argument_list, sym_initializer_list, - [249055] = 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(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, + [249539] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym___attribute, - ACTIONS(9550), 1, + ACTIONS(9349), 1, anon_sym_requires, - ACTIONS(9488), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 10, + ACTIONS(9172), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -501798,132 +503626,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [249137] = 16, - ACTIONS(3), 1, - sym_comment, - 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(10550), 1, - anon_sym_SEMI, - 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, - 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, - [249189] = 16, - ACTIONS(3), 1, - sym_comment, - 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(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(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10637), 1, - anon_sym_LBRACK, - STATE(6113), 1, - sym_parameter_list, - ACTIONS(6112), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(6057), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6114), 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, - [249277] = 5, + [249573] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7483), 1, - anon_sym_LT, - STATE(6052), 1, - sym_template_argument_list, - ACTIONS(6426), 3, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9399), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6428), 13, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 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_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [249307] = 3, + [249607] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5170), 1, @@ -501946,177 +503676,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [249333] = 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(10688), 1, - anon_sym_virtual, - STATE(1922), 1, - sym_template_type, - STATE(6525), 1, - sym_access_specifier, - STATE(6697), 1, - sym__scope_resolution, - STATE(4831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7148), 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, - [249381] = 3, + [249633] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 1, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9183), 1, anon_sym___attribute, - ACTIONS(5158), 17, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 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, - [249407] = 17, - ACTIONS(3), 1, - sym_comment, - 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, + [249667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10129), 1, + ACTIONS(5200), 1, anon_sym___attribute, - 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, + ACTIONS(5202), 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, - [249491] = 14, + [249693] = 4, 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, + ACTIONS(6315), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10705), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6317), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, 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, + anon_sym_LBRACE, + anon_sym_or, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [249721] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(9337), 1, anon_sym_requires, - ACTIONS(6037), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(9382), 2, + ACTIONS(9183), 2, anon_sym_LBRACK, anon_sym___asm, - STATE(5593), 2, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 9, + ACTIONS(9172), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -502126,47 +503777,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [249573] = 3, + [249755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3943), 3, + ACTIONS(6714), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(3945), 15, + ACTIONS(6716), 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_DASH_GT, + anon_sym_GT2, + anon_sym_try, + [249781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6315), 1, + anon_sym___attribute, + ACTIONS(10664), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6317), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + 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, - [249599] = 7, + [249809] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9479), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10149), 1, + anon_sym_try, + ACTIONS(10711), 1, + anon_sym_SEMI, + STATE(786), 1, + sym_compound_statement, + STATE(787), 1, + sym_try_statement, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7492), 1, + sym_gnu_asm_expression, + STATE(7493), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [249863] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9543), 1, anon_sym_requires, - ACTIONS(9382), 2, + ACTIONS(9399), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9387), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 9, + ACTIONS(9388), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -502176,104 +503888,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [249633] = 3, + [249897] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(9712), 1, anon_sym___attribute, - ACTIONS(1938), 17, + ACTIONS(9749), 1, + anon_sym_requires, + ACTIONS(9743), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 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, - [249659] = 7, + [249931] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10505), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(9947), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9957), 2, + ACTIONS(7447), 1, + anon_sym_DASH_GT, + STATE(5567), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + ACTIONS(9399), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 9, + ACTIONS(9388), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, + anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [249693] = 8, + anon_sym_EQ, + anon_sym_GT2, + [249969] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, + ACTIONS(7166), 1, + anon_sym_DASH_GT, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9728), 1, + anon_sym_requires, + STATE(5699), 1, + sym_trailing_return_type, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 7, anon_sym_LPAREN2, - STATE(1942), 1, - sym_parameter_list, - ACTIONS(6145), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(6165), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6147), 9, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, anon_sym_try, - [249728] = 9, + [250006] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, - anon_sym___attribute, - ACTIONS(9742), 1, + ACTIONS(7474), 1, anon_sym_requires, - STATE(5992), 1, + ACTIONS(9935), 1, + anon_sym___attribute, + STATE(6032), 1, sym_trailing_return_type, - ACTIONS(9727), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 7, + ACTIONS(9933), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -502281,27 +504000,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [249765] = 9, + [250043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(9183), 1, anon_sym___attribute, - ACTIONS(10659), 1, + ACTIONS(9349), 1, anon_sym_requires, - STATE(5983), 1, + STATE(6025), 1, sym_trailing_return_type, - ACTIONS(10656), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 7, + ACTIONS(9172), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -502309,182 +504028,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [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, + [250080] = 9, ACTIONS(3), 1, sym_comment, - 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(6090), 2, + ACTIONS(7470), 1, + anon_sym_DASH_GT, + ACTIONS(9399), 1, anon_sym___attribute, - anon_sym___asm, - STATE(6165), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6092), 9, + ACTIONS(9593), 1, + anon_sym_requires, + STATE(6061), 1, + sym_trailing_return_type, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LPAREN2, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [249868] = 4, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [250117] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4991), 1, - anon_sym_COLON_COLON, - ACTIONS(4993), 4, + ACTIONS(7470), 1, + anon_sym_DASH_GT, + ACTIONS(9712), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4986), 12, + ACTIONS(9749), 1, + anon_sym_requires, + STATE(6001), 1, + sym_trailing_return_type, + ACTIONS(9743), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, anon_sym_GT2, - anon_sym_try, - [249895] = 9, + [250154] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7287), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, - anon_sym_LBRACK, - STATE(5666), 1, + ACTIONS(9935), 1, + anon_sym___attribute, + ACTIONS(10673), 1, + anon_sym_requires, + STATE(6016), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(10670), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 7, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [249932] = 8, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym___asm, - STATE(6165), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6200), 9, + ACTIONS(9933), 7, 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, - [249967] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10705), 2, + anon_sym_LPAREN2, anon_sym___attribute__, - anon_sym___attribute, - 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, - anon_sym_template, - [249998] = 9, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [250191] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, + ACTIONS(7105), 1, anon_sym_requires, - ACTIONS(7287), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - STATE(5671), 1, + STATE(5711), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 7, + ACTIONS(9701), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -502492,92 +504140,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [250035] = 5, + [250228] = 14, ACTIONS(3), 1, sym_comment, 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(113), 1, anon_sym___asm, - ACTIONS(6246), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(3631), 1, anon_sym_LBRACE, + ACTIONS(10041), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10049), 1, anon_sym_EQ, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7825), 1, + sym_gnu_asm_expression, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [250064] = 11, + ACTIONS(10713), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7927), 2, + sym_argument_list, + sym_initializer_list, + [250275] = 6, 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(6796), 1, - sym__abstract_declarator, - ACTIONS(8360), 4, + ACTIONS(10715), 1, + sym_identifier, + ACTIONS(5419), 3, 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, - [250105] = 12, + anon_sym_COLON, + STATE(6082), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10717), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10719), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [250306] = 12, 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4551), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(8475), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(8477), 1, - anon_sym_AMP_AMP, - ACTIONS(8479), 1, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(10721), 1, anon_sym_AMP, - STATE(6755), 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, - [250148] = 12, + ACTIONS(10723), 1, + sym_this, + STATE(5972), 1, + sym__scope_resolution, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(7645), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + [250349] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -502585,22 +504237,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_operator, ACTIONS(8419), 1, - sym_identifier, - ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(8423), 1, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, anon_sym_STAR, - ACTIONS(8425), 1, + ACTIONS(8431), 1, anon_sym_AMP_AMP, - ACTIONS(8427), 1, + ACTIONS(8433), 1, anon_sym_AMP, - STATE(6144), 1, + STATE(6786), 1, sym__field_declarator, - STATE(6445), 1, + STATE(6907), 1, sym_operator_name, - STATE(8851), 1, + STATE(8258), 1, sym_ms_based_modifier, - STATE(6476), 7, + STATE(6525), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -502608,52 +504260,24 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [250191] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7287), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9390), 1, - anon_sym_requires, - STATE(5703), 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), 7, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [250228] = 8, + [250392] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - STATE(1942), 1, + STATE(1994), 1, sym_parameter_list, - ACTIONS(6112), 2, + ACTIONS(6196), 2, anon_sym___attribute, anon_sym___asm, - STATE(6165), 2, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(6114), 9, + ACTIONS(6198), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -502663,35 +504287,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [250263] = 9, + [250427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 1, - anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(6056), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9705), 1, - anon_sym_requires, - STATE(5708), 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), 7, + anon_sym___asm, + ACTIONS(6054), 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_RBRACK, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [250452] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6171), 1, + anon_sym_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + STATE(1994), 1, + sym_parameter_list, + ACTIONS(6185), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6192), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6187), 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, - [250300] = 12, + [250487] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, @@ -502699,22 +504344,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1850), 1, anon_sym_operator, ACTIONS(8419), 1, - sym_identifier, - ACTIONS(8421), 1, anon_sym_LPAREN2, - ACTIONS(8423), 1, + ACTIONS(8427), 1, + sym_identifier, + ACTIONS(8429), 1, anon_sym_STAR, - ACTIONS(8425), 1, + ACTIONS(8431), 1, anon_sym_AMP_AMP, - ACTIONS(8427), 1, + ACTIONS(8433), 1, anon_sym_AMP, - STATE(6249), 1, + STATE(6831), 1, sym__field_declarator, - STATE(6445), 1, + STATE(6907), 1, sym_operator_name, - STATE(8851), 1, + STATE(8258), 1, sym_ms_based_modifier, - STATE(6476), 7, + STATE(6525), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -502722,310 +504367,223 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [250343] = 12, + [250530] = 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, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8421), 1, anon_sym_STAR, - ACTIONS(10214), 1, - anon_sym_COLON_COLON, - ACTIONS(10713), 1, + ACTIONS(8423), 1, + anon_sym_AMP_AMP, + ACTIONS(8425), 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, + STATE(6132), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8840), 1, + sym_ms_based_modifier, + STATE(6525), 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, + [250573] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym___attribute, - ACTIONS(9330), 1, + ACTIONS(9935), 1, + anon_sym_LBRACK, + ACTIONS(10160), 1, anon_sym_requires, - STATE(6031), 1, + STATE(5704), 1, sym_trailing_return_type, - ACTIONS(9327), 2, + ACTIONS(9937), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9933), 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, - [250423] = 9, + anon_sym_try, + [250610] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7098), 1, + anon_sym_noexcept, + ACTIONS(7100), 1, + anon_sym_throw, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym___attribute, - ACTIONS(9550), 1, - anon_sym_requires, - STATE(5980), 1, + ACTIONS(10725), 1, + anon_sym_LBRACE, + STATE(8860), 1, sym_trailing_return_type, - 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), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [250460] = 11, + STATE(6495), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(6920), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6912), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(9857), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [250651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6288), 3, + anon_sym___attribute, 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(6109), 1, - sym__function_declarator_seq, - STATE(6749), 1, - sym__abstract_declarator, - ACTIONS(8360), 4, + anon_sym___asm, + ACTIONS(6290), 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, - 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, + [250680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10717), 1, + ACTIONS(10727), 1, sym_identifier, - ACTIONS(5411), 3, + ACTIONS(5401), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(6069), 3, + STATE(6082), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(10720), 5, + ACTIONS(10730), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10723), 5, + ACTIONS(10733), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [250532] = 9, + [250711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, - anon_sym_requires, - ACTIONS(7287), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - STATE(5567), 1, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9712), 1, + anon_sym___attribute, + STATE(5985), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 7, + ACTIONS(9701), 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, - [250569] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10726), 1, - sym_identifier, - ACTIONS(10728), 2, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(6263), 2, - sym_string_literal, - sym_raw_string_literal, - 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(159), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [250602] = 11, + anon_sym_GT2, + [250748] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7075), 1, + ACTIONS(7098), 1, anon_sym_noexcept, - ACTIONS(7077), 1, + ACTIONS(7100), 1, anon_sym_throw, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(10603), 1, + ACTIONS(10619), 1, anon_sym_LBRACE, - STATE(8531), 1, + STATE(8418), 1, sym_trailing_return_type, - STATE(6522), 2, + STATE(6495), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(6889), 2, + STATE(6928), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6897), 3, + STATE(6915), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(9841), 4, + ACTIONS(9857), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [250643] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN2, - 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(3551), 1, - sym_parameter_list, - STATE(6109), 1, - sym__function_declarator_seq, - STATE(6789), 1, - sym__abstract_declarator, - 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, - [250684] = 8, - ACTIONS(3), 1, - sym_comment, - 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(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, + [250789] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, + ACTIONS(7105), 1, anon_sym_requires, - ACTIONS(7287), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(9935), 1, anon_sym_LBRACK, - STATE(5602), 1, + STATE(5676), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 7, + ACTIONS(9933), 7, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, @@ -503033,338 +504591,415 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [250756] = 9, + [250826] = 6, ACTIONS(3), 1, sym_comment, - 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, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(10738), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(10743), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10741), 3, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [250793] = 9, + STATE(6086), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + ACTIONS(10736), 7, + anon_sym_COLON, + anon_sym___declspec, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + [250857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 1, - anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10748), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10172), 1, - anon_sym_requires, - STATE(5709), 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), 7, + anon_sym___asm, + ACTIONS(10746), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [250830] = 12, + [250886] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(4543), 1, + ACTIONS(4551), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10208), 1, + ACTIONS(10218), 1, sym_identifier, - ACTIONS(10210), 1, + ACTIONS(10220), 1, anon_sym_STAR, - ACTIONS(10214), 1, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(10713), 1, + ACTIONS(10721), 1, anon_sym_AMP, - ACTIONS(10730), 1, + ACTIONS(10750), 1, sym_this, - STATE(5956), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(8034), 5, + STATE(7944), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - [250873] = 3, + [250929] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 3, - anon_sym___attribute, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5030), 1, + anon_sym_STAR, + ACTIONS(5032), 1, + anon_sym_AMP_AMP, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(8175), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6004), 14, + STATE(3134), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6836), 1, + sym__abstract_declarator, + ACTIONS(8378), 4, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [250970] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8439), 1, + anon_sym_STAR, + ACTIONS(8441), 1, + anon_sym_AMP_AMP, + ACTIONS(8443), 1, + anon_sym_AMP, + STATE(3544), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6799), 1, + sym__abstract_declarator, + ACTIONS(8378), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [251011] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7166), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym_LBRACK, + ACTIONS(9216), 1, + anon_sym_requires, + STATE(5635), 1, + sym_trailing_return_type, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 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, - [250898] = 14, + [251048] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(8417), 1, + sym_identifier, + ACTIONS(8419), 1, + anon_sym_LPAREN2, + ACTIONS(8421), 1, + anon_sym_STAR, + ACTIONS(8423), 1, + anon_sym_AMP_AMP, + ACTIONS(8425), 1, + anon_sym_AMP, + STATE(6293), 1, + sym__field_declarator, + STATE(6483), 1, + sym_operator_name, + STATE(8840), 1, + sym_ms_based_modifier, + STATE(6525), 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, + [251091] = 8, ACTIONS(3), 1, sym_comment, 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(10071), 1, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(10073), 1, - anon_sym_EQ, - STATE(2989), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + STATE(1994), 1, sym_parameter_list, - STATE(6203), 1, - sym__function_declarator_seq, - 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, + ACTIONS(6163), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7980), 2, - sym_argument_list, - sym_initializer_list, - [250945] = 5, + ACTIONS(6165), 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, + [251126] = 8, 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, + ACTIONS(6171), 1, anon_sym_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + STATE(1994), 1, + sym_parameter_list, + ACTIONS(6200), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(10734), 11, + STATE(6192), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6202), 9, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, 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, - [250974] = 9, + [251161] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym___attribute, - 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), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5028), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(8175), 1, anon_sym_LBRACK, + ACTIONS(8509), 1, + anon_sym_STAR, + ACTIONS(8511), 1, + anon_sym_AMP_AMP, + ACTIONS(8513), 1, + anon_sym_AMP, + STATE(3116), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6795), 1, + sym__abstract_declarator, + ACTIONS(8378), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [251011] = 9, + anon_sym_try, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [251202] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(7445), 1, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym___attribute, - STATE(6016), 1, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9404), 1, + anon_sym_requires, + STATE(5680), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9388), 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, - [251048] = 9, + anon_sym_try, + [251239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(7445), 1, - anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(5007), 1, + anon_sym_COLON_COLON, + ACTIONS(5009), 4, anon_sym___attribute, - 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), 7, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5002), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, anon_sym_GT2, - [251085] = 12, + anon_sym_try, + [251266] = 7, 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, + ACTIONS(10752), 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(10754), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(6289), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7171), 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, + [251299] = 9, 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(9843), 1, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7166), 1, anon_sym_DASH_GT, - ACTIONS(10738), 1, - anon_sym_LBRACE, - STATE(8225), 1, + ACTIONS(9399), 1, + anon_sym_LBRACK, + STATE(5646), 1, sym_trailing_return_type, - STATE(6522), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(6917), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6932), 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, - [251169] = 9, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 7, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [251336] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_requires, - ACTIONS(7445), 1, + ACTIONS(7470), 1, anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(7474), 1, + anon_sym_requires, + ACTIONS(9183), 1, anon_sym___attribute, - STATE(6010), 1, + STATE(6051), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 7, + ACTIONS(9172), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -503372,288 +505007,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - [251206] = 6, + [251373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10740), 1, + ACTIONS(10756), 1, sym_identifier, - ACTIONS(5401), 3, + ACTIONS(5429), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(6050), 3, + STATE(6071), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(10699), 5, + ACTIONS(10717), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10701), 5, + ACTIONS(10719), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [251237] = 3, + [251404] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5943), 3, - anon_sym___attribute, + ACTIONS(7105), 1, + anon_sym_requires, + ACTIONS(7166), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5945), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(5679), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 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_GT2, anon_sym_try, - [251261] = 11, - ACTIONS(3), 1, - sym_comment, - 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, + [251441] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, - anon_sym_LBRACK, - ACTIONS(10754), 1, - anon_sym___asm, - 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, + ACTIONS(7470), 1, + anon_sym_DASH_GT, + ACTIONS(7474), 1, anon_sym_requires, - [251373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10596), 1, + ACTIONS(9399), 1, anon_sym___attribute, - ACTIONS(10594), 15, - anon_sym_DOT_DOT_DOT, + STATE(6023), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 7, 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, - [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, + [251478] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 3, - anon_sym___attribute, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6171), 1, anon_sym_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + STATE(1994), 1, + sym_parameter_list, + ACTIONS(6175), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(4927), 13, + STATE(6192), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6177), 9, 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, - [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_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [251493] = 3, + [251513] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10503), 1, + ACTIONS(9935), 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, + ACTIONS(10758), 1, + anon_sym_requires, + ACTIONS(10670), 2, 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, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6122), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -503662,241 +505140,172 @@ 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, - [251581] = 3, + [251545] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 3, - anon_sym___attribute, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym___asm, - ACTIONS(4927), 13, + STATE(2945), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10761), 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, - [251605] = 3, + anon_sym_requires, + [251577] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5958), 3, - anon_sym___attribute, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, + ACTIONS(10769), 1, anon_sym___asm, - ACTIONS(5960), 13, + STATE(2945), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10767), 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, - [251629] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7393), 1, - anon_sym_DASH_GT, - ACTIONS(7395), 1, - anon_sym_requires, - ACTIONS(9947), 1, - anon_sym_LBRACK, - STATE(5971), 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(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, - [251665] = 3, + anon_sym_requires, + [251609] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10770), 3, - anon_sym___attribute, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, + ACTIONS(10773), 1, anon_sym___asm, - ACTIONS(10768), 13, + STATE(2945), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10771), 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, - [251689] = 9, + anon_sym_requires, + [251641] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9739), 1, + ACTIONS(9543), 1, anon_sym_requires, - STATE(6046), 1, + STATE(5988), 1, sym_trailing_return_type, - ACTIONS(9702), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, + ACTIONS(9388), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [251725] = 11, + [251677] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5028), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(10772), 1, + ACTIONS(10775), 1, sym_identifier, - ACTIONS(10774), 1, + ACTIONS(10777), 1, sym_primitive_type, - STATE(2385), 1, + STATE(4317), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6746), 1, + STATE(6758), 1, sym__scope_resolution, - STATE(2464), 2, + STATE(2733), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(59), 4, + ACTIONS(3150), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [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, + [251717] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8074), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(10742), 1, + ACTIONS(10779), 1, sym_identifier, - ACTIONS(10744), 1, + ACTIONS(10781), 1, sym_primitive_type, - STATE(4024), 1, + STATE(1627), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6743), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(4731), 2, + STATE(2320), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8030), 4, + ACTIONS(9535), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [251865] = 3, + [251757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10615), 1, + ACTIONS(10553), 1, anon_sym___attribute, - ACTIONS(10613), 15, + ACTIONS(10551), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -503912,66 +505321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [251889] = 11, - ACTIONS(3), 1, - sym_comment, - 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, - 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_LBRACE, - anon_sym_LBRACK, - [251961] = 3, + [251781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10607), 1, + ACTIONS(10591), 1, anon_sym___attribute, - ACTIONS(10605), 15, + ACTIONS(10589), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -503987,71 +505342,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [251985] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [252009] = 9, + [251805] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9359), 1, + ACTIONS(9337), 1, anon_sym_requires, - STATE(6044), 1, + STATE(6060), 1, sym_trailing_return_type, - ACTIONS(9193), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9172), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [252045] = 7, + [251841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(9951), 1, + ACTIONS(10581), 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, + ACTIONS(10579), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504060,14 +505384,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [252077] = 3, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [251865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10778), 3, + ACTIONS(5952), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10776), 13, + ACTIONS(5954), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504081,23 +505411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [252101] = 7, + [251889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9150), 1, + ACTIONS(10577), 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, + ACTIONS(10575), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504106,152 +505426,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [252133] = 11, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [251913] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9530), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(10780), 1, + ACTIONS(10783), 1, sym_identifier, - ACTIONS(10782), 1, + ACTIONS(10785), 1, sym_primitive_type, - STATE(1612), 1, + STATE(3986), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6695), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(2262), 2, + STATE(4827), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9532), 4, + ACTIONS(8024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [252173] = 9, + [251953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - anon_sym_DASH_GT, - ACTIONS(7395), 1, - anon_sym_requires, - ACTIONS(9700), 1, + ACTIONS(9935), 1, + anon_sym___attribute, + ACTIONS(9933), 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, - STATE(6023), 1, - sym_trailing_return_type, - ACTIONS(6037), 2, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [251977] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(9935), 1, + anon_sym___attribute, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, + ACTIONS(9933), 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, - [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, + [252009] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(7395), 1, + ACTIONS(7385), 1, anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9935), 1, anon_sym_LBRACK, - STATE(6042), 1, + STATE(6047), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9933), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_try, - [252277] = 3, + [252045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5947), 3, + ACTIONS(9945), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5949), 13, + ACTIONS(9943), 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, - [252301] = 7, + anon_sym_requires, + [252069] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9945), 1, anon_sym___attribute, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6125), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 8, + ACTIONS(9943), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504260,37 +505580,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [252333] = 7, + [252101] = 5, 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, + ACTIONS(6261), 1, + anon_sym___attribute, + ACTIONS(10787), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(10789), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6263), 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_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [252365] = 3, + [252129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9150), 1, + ACTIONS(10495), 1, anon_sym___attribute, - ACTIONS(9139), 15, + ACTIONS(10493), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504306,39 +505624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [252389] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(9150), 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(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__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - [252421] = 3, + [252153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5982), 3, + ACTIONS(4924), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5984), 13, + ACTIONS(4917), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504352,98 +505645,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [252445] = 12, + [252177] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_operator, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10248), 1, - anon_sym_TILDE, - ACTIONS(10788), 1, + ACTIONS(8106), 1, + anon_sym_COLON_COLON, + ACTIONS(10791), 1, sym_identifier, - ACTIONS(10790), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(10793), 1, - anon_sym_COLON_COLON, - ACTIONS(10795), 1, - anon_sym_template, - STATE(6406), 1, + sym_primitive_type, + STATE(5098), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6736), 1, sym__scope_resolution, - STATE(7928), 1, - sym_operator_name, - STATE(8569), 3, + STATE(2482), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8381), 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, - [252487] = 11, + ACTIONS(9692), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [252217] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8000), 1, + ACTIONS(5036), 1, anon_sym_COLON_COLON, - ACTIONS(10797), 1, + ACTIONS(10795), 1, sym_identifier, - ACTIONS(10799), 1, + ACTIONS(10797), 1, sym_primitive_type, - STATE(4150), 1, + STATE(2369), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6731), 1, + STATE(6759), 1, sym__scope_resolution, - STATE(4999), 2, + STATE(2482), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8002), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [252527] = 7, + [252257] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(7383), 1, + anon_sym_DASH_GT, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(10786), 1, + STATE(6017), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_try, + [252293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10801), 3, anon_sym___attribute, - STATE(2908), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10784), 11, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10799), 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, - [252559] = 3, + [252317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5903), 3, + ACTIONS(10805), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5905), 13, + ACTIONS(10803), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504457,12 +505772,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [252583] = 3, + [252341] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9822), 1, + anon_sym_COLON, + ACTIONS(9826), 1, + anon_sym_LBRACK, + ACTIONS(10809), 1, + anon_sym___attribute, + ACTIONS(10811), 1, + anon_sym_EQ, + STATE(2917), 1, + sym_parameter_list, + STATE(6512), 1, + sym__function_declarator_seq, + STATE(7142), 1, + sym_bitfield_clause, + STATE(7150), 1, + sym_initializer_list, + STATE(6477), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10807), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [252387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9700), 1, + ACTIONS(9399), 1, anon_sym___attribute, - ACTIONS(9689), 15, + ACTIONS(9388), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504478,12 +505825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [252607] = 3, + [252411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9947), 1, + ACTIONS(10587), 1, anon_sym___attribute, - ACTIONS(9945), 15, + ACTIONS(10585), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504499,64 +505846,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [252631] = 7, + [252435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, - anon_sym_LBRACK, - ACTIONS(10803), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(9399), 1, anon_sym___attribute, - STATE(2908), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10801), 11, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 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, - [252663] = 7, + anon_sym_LBRACK, + [252467] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(7383), 1, + anon_sym_DASH_GT, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(10807), 1, - anon_sym___attribute, - STATE(2908), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10805), 11, - anon_sym_COMMA, + ACTIONS(9758), 1, + anon_sym_requires, + STATE(5989), 1, + sym_trailing_return_type, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 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_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [252695] = 3, + [252503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5990), 3, + ACTIONS(8179), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5992), 13, + ACTIONS(5052), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504570,13 +505919,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [252719] = 3, + [252527] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10544), 1, + ACTIONS(9183), 1, anon_sym___attribute, - ACTIONS(10542), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(9356), 1, + anon_sym_requires, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504585,20 +505944,14 @@ 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, - [252743] = 3, + [252559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10811), 3, + ACTIONS(4924), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10809), 13, + ACTIONS(4917), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -504612,62 +505965,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [252767] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, - anon_sym_LBRACK, - ACTIONS(10815), 1, - anon_sym___attribute, - STATE(2908), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - 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_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [252799] = 7, + [252583] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, - anon_sym_LBRACK, - ACTIONS(10819), 1, - anon_sym___attribute, - STATE(2908), 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_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [252831] = 3, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(10783), 1, + sym_identifier, + ACTIONS(10785), 1, + sym_primitive_type, + STATE(3986), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6721), 1, + sym__scope_resolution, + STATE(4827), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8024), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [252623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10556), 1, + ACTIONS(10559), 1, anon_sym___attribute, - ACTIONS(10554), 15, + ACTIONS(10557), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504683,152 +506015,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [252855] = 7, + [252647] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10803), 1, - anon_sym___asm, - STATE(3010), 1, + ACTIONS(10815), 1, + anon_sym___attribute, + STATE(2899), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10801), 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, - [252887] = 7, + [252679] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10807), 1, - anon_sym___asm, - STATE(3010), 1, + ACTIONS(10819), 1, + anon_sym___attribute, + STATE(2899), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10805), 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, - [252919] = 14, + [252711] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, - anon_sym_LBRACE, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9802), 1, - anon_sym_COLON, - ACTIONS(9806), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, ACTIONS(10823), 1, anon_sym___attribute, - ACTIONS(10825), 1, - anon_sym_EQ, - STATE(2902), 1, + STATE(2899), 1, sym_parameter_list, - STATE(6468), 1, + STATE(5939), 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(8123), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(5044), 13, + ACTIONS(10821), 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, - [252989] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(9412), 1, - anon_sym_COLON_COLON, - ACTIONS(10827), 1, - sym_identifier, - ACTIONS(10829), 1, - sym_primitive_type, - STATE(1860), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6732), 1, - sym__scope_resolution, - STATE(4037), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - ACTIONS(9414), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [253029] = 7, + anon_sym_requires, + [252743] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10762), 1, + ACTIONS(10827), 1, anon_sym___attribute, - STATE(2908), 1, + STATE(2899), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10760), 11, + ACTIONS(10825), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -504840,20 +506115,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [253061] = 7, + [252775] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10754), 1, + ACTIONS(10831), 1, anon_sym___attribute, - STATE(2908), 1, + STATE(2899), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10750), 11, + ACTIONS(10829), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -504865,66 +506140,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [253093] = 3, + [252807] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9382), 1, - anon_sym___attribute, - ACTIONS(9371), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7383), 1, + anon_sym_DASH_GT, + ACTIONS(7385), 1, + anon_sym_requires, + ACTIONS(9183), 1, + anon_sym_LBRACK, + STATE(6046), 1, + sym_trailing_return_type, + ACTIONS(6026), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 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, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [253117] = 7, + [252843] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10819), 1, - anon_sym___asm, - STATE(3010), 1, + ACTIONS(10765), 1, + anon_sym___attribute, + STATE(2899), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10817), 11, + ACTIONS(10761), 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, - [253149] = 7, + [252875] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10833), 1, + ACTIONS(10769), 1, anon_sym___attribute, - STATE(2908), 1, + STATE(2899), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10831), 11, + ACTIONS(10767), 11, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -504936,37 +506217,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [253181] = 7, + [252907] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(9700), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + ACTIONS(10773), 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(6133), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9689), 8, + STATE(2899), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10771), 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, - [253213] = 3, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [252939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10631), 1, + ACTIONS(9183), 1, anon_sym___attribute, - ACTIONS(10629), 15, + ACTIONS(9172), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504982,44 +506263,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [253237] = 3, + [252963] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(9598), 1, + anon_sym_COLON_COLON, + ACTIONS(10777), 1, + sym_primitive_type, + ACTIONS(10833), 1, + sym_identifier, + STATE(2231), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6744), 1, + sym__scope_resolution, + STATE(2733), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9600), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [253003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 3, + ACTIONS(10603), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4927), 13, + ACTIONS(10601), 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, - [253261] = 7, + anon_sym_requires, + [253027] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(9947), 1, + ACTIONS(9183), 1, anon_sym___attribute, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 8, + ACTIONS(9172), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -505028,133 +506338,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [253293] = 3, + [253059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10837), 3, + ACTIONS(10609), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10835), 13, + ACTIONS(10607), 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, - [253317] = 9, + anon_sym_requires, + [253083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - anon_sym_DASH_GT, - ACTIONS(9382), 1, - anon_sym_LBRACK, - 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, + ACTIONS(10623), 1, + anon_sym___attribute, + ACTIONS(10621), 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_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [253353] = 3, + anon_sym_requires, + [253107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 3, + ACTIONS(10645), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4927), 13, + ACTIONS(10643), 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, - [253377] = 11, + anon_sym_requires, + [253131] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9612), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(10839), 1, + ACTIONS(10795), 1, sym_identifier, - ACTIONS(10841), 1, + ACTIONS(10797), 1, sym_primitive_type, - STATE(2223), 1, + STATE(2369), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6694), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(2714), 2, + STATE(2482), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9614), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [253417] = 3, + [253171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10518), 1, + ACTIONS(6590), 3, anon_sym___attribute, - ACTIONS(10516), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6592), 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, - [253441] = 3, + [253195] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8585), 1, + anon_sym_STAR, + ACTIONS(8587), 1, + anon_sym_AMP_AMP, + ACTIONS(8589), 1, + anon_sym_AMP, + STATE(3239), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6854), 1, + sym__abstract_declarator, + ACTIONS(8378), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [253235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 3, + ACTIONS(5994), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6648), 13, + ACTIONS(5996), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -505168,200 +506501,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [253465] = 11, + [253259] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7984), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(10843), 1, + ACTIONS(10835), 1, sym_identifier, - ACTIONS(10845), 1, + ACTIONS(10837), 1, sym_primitive_type, - STATE(4234), 1, + STATE(1901), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6727), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(1899), 2, + STATE(1913), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(1808), 4, + ACTIONS(9430), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [253505] = 7, + [253299] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(7383), 1, + anon_sym_DASH_GT, + ACTIONS(9935), 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, + ACTIONS(10532), 1, + anon_sym_requires, + STATE(5992), 1, + sym_trailing_return_type, + ACTIONS(9937), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_try, + [253335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10565), 1, + anon_sym___attribute, + ACTIONS(10563), 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_asm, - anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [253537] = 3, + [253359] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10849), 3, - anon_sym___attribute, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, + ACTIONS(10831), 1, anon_sym___asm, - ACTIONS(10847), 13, + STATE(2945), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10829), 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, - [253561] = 5, + anon_sym_requires, + [253391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6244), 3, + ACTIONS(10569), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6246), 10, + ACTIONS(10567), 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_RBRACK, - anon_sym_asm, - anon_sym___asm__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [253589] = 11, + anon_sym_requires, + [253415] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(8106), 1, anon_sym_COLON_COLON, - ACTIONS(10772), 1, + ACTIONS(10791), 1, sym_identifier, - ACTIONS(10774), 1, + ACTIONS(10793), 1, sym_primitive_type, - STATE(2385), 1, + STATE(2696), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6715), 1, + STATE(6736), 1, sym__scope_resolution, - STATE(2464), 2, + STATE(2482), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(59), 4, + ACTIONS(3925), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [253629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10627), 1, - anon_sym___attribute, - ACTIONS(10625), 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, - [253653] = 11, + [253455] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9530), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(10851), 1, + ACTIONS(10791), 1, sym_identifier, - ACTIONS(10853), 1, + ACTIONS(10793), 1, sym_primitive_type, - STATE(1614), 1, + STATE(2696), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6695), 1, + STATE(6757), 1, sym__scope_resolution, - STATE(2262), 2, + STATE(2482), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9555), 4, + ACTIONS(3925), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [253693] = 7, + [253495] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10302), 1, + anon_sym_TILDE, + ACTIONS(10839), 1, + sym_identifier, + ACTIONS(10841), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10844), 1, + anon_sym_COLON_COLON, + ACTIONS(10846), 1, + anon_sym_template, + STATE(6458), 1, + sym__scope_resolution, + STATE(7922), 1, + sym_operator_name, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(3437), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [253537] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10762), 1, + ACTIONS(10827), 1, anon_sym___asm, - STATE(3010), 1, + STATE(2945), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10760), 11, + ACTIONS(10825), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -505369,212 +506735,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [253725] = 7, + [253569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10850), 3, + anon_sym___attribute, 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, + ACTIONS(10848), 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, - [253757] = 7, + anon_sym_GT2, + anon_sym_try, + [253593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(5998), 3, + anon_sym___attribute, 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, + ACTIONS(6000), 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, - [253789] = 4, + anon_sym_GT2, + anon_sym_try, + [253617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, + ACTIONS(5903), 3, anon_sym___attribute, - ACTIONS(10855), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6250), 13, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5905), 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_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [253815] = 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(5109), 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(9676), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [253855] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [253641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10540), 1, + ACTIONS(5907), 3, anon_sym___attribute, - ACTIONS(10538), 15, - anon_sym_DOT_DOT_DOT, + 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, - 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, - [253879] = 11, - ACTIONS(3), 1, - sym_comment, - 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, + [253665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9947), 1, + ACTIONS(5911), 3, anon_sym___attribute, - ACTIONS(10861), 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), 8, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5913), 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, - [253951] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [253689] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10510), 1, - anon_sym___attribute, - ACTIONS(10508), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9818), 1, anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + ACTIONS(10815), 1, + anon_sym___asm, + STATE(2947), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10813), 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, - [253975] = 3, + [253721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5994), 3, + ACTIONS(6002), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5996), 13, + ACTIONS(6004), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -505588,22 +506888,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [253999] = 7, + [253745] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10803), 1, + ACTIONS(10819), 1, anon_sym___asm, - STATE(3006), 1, + STATE(2947), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10801), 11, + ACTIONS(10817), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -505611,147 +506912,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [254031] = 9, + [253777] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - anon_sym_DASH_GT, - ACTIONS(7395), 1, - anon_sym_requires, - ACTIONS(9382), 1, - anon_sym_LBRACK, - STATE(5994), 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(5934), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9371), 6, - anon_sym_RPAREN, + ACTIONS(9818), 1, anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + ACTIONS(10823), 1, + anon_sym___asm, + STATE(2947), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10821), 11, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_try, - [254067] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [253809] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 3, - anon_sym___attribute, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, + ACTIONS(10827), 1, anon_sym___asm, - ACTIONS(4927), 13, + STATE(2947), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10825), 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, - [254091] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9382), 1, - anon_sym___attribute, - 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_requires, + [253841] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym___asm, + STATE(2947), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10829), 11, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [254123] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [253873] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5939), 3, - anon_sym___attribute, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, + ACTIONS(10765), 1, anon_sym___asm, - ACTIONS(5941), 13, + STATE(2947), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10761), 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, - [254147] = 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(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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [253905] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10807), 1, + ACTIONS(10769), 1, anon_sym___asm, - STATE(3006), 1, + STATE(2947), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10805), 11, + ACTIONS(10767), 11, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -505759,15 +507037,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [254219] = 3, + [253937] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9951), 1, + ACTIONS(9399), 1, anon_sym___attribute, - ACTIONS(9949), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(9470), 1, + anon_sym_requires, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -505776,72 +507063,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, + [253969] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + ACTIONS(10773), 1, + anon_sym___asm, + STATE(2947), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10771), 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_GT2, - anon_sym_try, anon_sym_requires, - [254243] = 11, + [254001] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9437), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(10845), 1, - sym_primitive_type, - ACTIONS(10864), 1, + ACTIONS(10852), 1, sym_identifier, - STATE(1887), 1, + ACTIONS(10854), 1, + sym_primitive_type, + STATE(1677), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6699), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(1899), 2, + STATE(3180), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(9439), 4, + ACTIONS(9618), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [254283] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, - anon_sym_LBRACK, - ACTIONS(10815), 1, - anon_sym___asm, - STATE(3006), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10813), 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, - [254315] = 3, + [254041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10514), 1, + ACTIONS(10573), 1, anon_sym___attribute, - ACTIONS(10512), 15, + ACTIONS(10571), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -505857,35 +507138,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [254339] = 3, + [254065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(10858), 3, anon_sym___attribute, - ACTIONS(10566), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10856), 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, - [254363] = 3, + [254089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5925), 3, + ACTIONS(4924), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5927), 13, + ACTIONS(4917), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -505899,116 +507180,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [254387] = 5, + [254113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6298), 1, + ACTIONS(6315), 1, anon_sym___attribute, - ACTIONS(10855), 2, + ACTIONS(10789), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(10866), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6300), 11, + ACTIONS(6317), 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, + anon_sym_or, anon_sym_final, anon_sym_override, anon_sym_requires, - [254415] = 11, + [254139] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8088), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(10868), 1, + ACTIONS(10860), 1, sym_identifier, - ACTIONS(10870), 1, + ACTIONS(10862), 1, sym_primitive_type, - STATE(4916), 1, + STATE(1626), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6724), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(1899), 2, + STATE(2320), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(8090), 4, + ACTIONS(9477), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [254455] = 7, + [254179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6288), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10819), 1, anon_sym___asm, - STATE(3006), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10817), 11, + ACTIONS(6290), 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_EQ, + anon_sym_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [254487] = 7, + [254207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9951), 1, + ACTIONS(10866), 3, anon_sym___attribute, - ACTIONS(10872), 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), 8, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10864), 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, - [254519] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [254231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 3, + ACTIONS(10870), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(5964), 13, + ACTIONS(10868), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506022,14 +507296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [254543] = 3, + [254255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4934), 3, + ACTIONS(4924), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4927), 13, + ACTIONS(4917), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506043,64 +507317,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [254567] = 11, + [254279] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8022), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(10841), 1, + ACTIONS(10872), 1, + sym_identifier, + ACTIONS(10874), 1, sym_primitive_type, - ACTIONS(10875), 1, + STATE(1659), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6733), 1, + sym__scope_resolution, + STATE(2970), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [254319] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8044), 1, + anon_sym_COLON_COLON, + ACTIONS(10876), 1, sym_identifier, - STATE(4313), 1, + ACTIONS(10878), 1, + sym_primitive_type, + STATE(4962), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6738), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(2714), 2, + STATE(1913), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - ACTIONS(3142), 4, + ACTIONS(8046), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [254607] = 3, + [254359] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10879), 3, + ACTIONS(9712), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10877), 13, + ACTIONS(9746), 1, + anon_sym_requires, + ACTIONS(9743), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 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, - [254631] = 3, + anon_sym_LBRACK, + [254391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10883), 3, + ACTIONS(10882), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10881), 13, + ACTIONS(10880), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506114,14 +507421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [254655] = 3, + [254415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10887), 3, + ACTIONS(10886), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10885), 13, + ACTIONS(10884), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506135,12 +507442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [254679] = 3, + [254439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10562), 1, + ACTIONS(10615), 1, anon_sym___attribute, - ACTIONS(10560), 15, + ACTIONS(10613), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -506156,14 +507463,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [254703] = 3, + [254463] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9945), 1, + anon_sym___attribute, + ACTIONS(10888), 1, + anon_sym_requires, + ACTIONS(10693), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6125), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9943), 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, + [254495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10891), 3, + ACTIONS(4924), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10889), 13, + ACTIONS(4917), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506177,23 +507509,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [254727] = 7, + [254519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(10543), 1, + anon_sym___attribute, + ACTIONS(10541), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10752), 1, + 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, + [254543] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, ACTIONS(10815), 1, anon_sym___asm, - STATE(3010), 1, + STATE(2945), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, ACTIONS(10813), 11, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, @@ -506201,821 +507553,824 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [254759] = 9, + [254575] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(9554), 1, + anon_sym_COLON_COLON, + ACTIONS(10891), 1, + sym_identifier, + ACTIONS(10893), 1, + sym_primitive_type, + STATE(1897), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6742), 1, + sym__scope_resolution, + STATE(4056), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9556), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [254615] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10895), 1, anon_sym___asm, - 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(10893), 7, + ACTIONS(5942), 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, - [254794] = 9, + [254639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(5944), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10899), 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(10897), 7, + ACTIONS(5946), 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__, - [254829] = 8, + anon_sym_GT2, + anon_sym_try, + [254663] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5970), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5972), 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, - [254862] = 8, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [254687] = 3, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(5893), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(5895), 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, - [254895] = 6, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [254711] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(10837), 1, + sym_primitive_type, + ACTIONS(10895), 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, + STATE(4270), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6738), 1, + sym__scope_resolution, + STATE(1913), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8381), 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, + [254751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10899), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10895), 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(10893), 7, + ACTIONS(10897), 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__, - [254959] = 6, + anon_sym_GT2, + anon_sym_try, + [254775] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8074), 1, + anon_sym_COLON_COLON, + ACTIONS(10901), 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(10903), 1, + sym_primitive_type, + STATE(4133), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6737), 1, + sym__scope_resolution, + STATE(4993), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(8076), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [254815] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(9444), 1, + anon_sym_COLON_COLON, + ACTIONS(10905), 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(10071), 1, - anon_sym_LBRACK, - ACTIONS(10903), 1, - anon_sym___asm, - 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(10901), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [255052] = 8, + ACTIONS(10907), 1, + sym_primitive_type, + STATE(1648), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6703), 1, + sym__scope_resolution, + STATE(2892), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + ACTIONS(9446), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [254855] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7424), 1, + ACTIONS(7383), 1, anon_sym_DASH_GT, - ACTIONS(9491), 1, + ACTIONS(7385), 1, anon_sym_requires, - STATE(6111), 1, + ACTIONS(9712), 1, + anon_sym_LBRACK, + STATE(6026), 1, sym_trailing_return_type, - ACTIONS(9488), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, - anon_sym_COMMA, + ACTIONS(9701), 6, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, - [255085] = 9, + anon_sym_try, + [254891] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10899), 1, + ACTIONS(10819), 1, anon_sym___asm, - STATE(2989), 1, + STATE(2945), 1, sym_parameter_list, - STATE(6203), 1, + STATE(5939), 1, sym__function_declarator_seq, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10897), 7, + ACTIONS(10817), 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, - [255120] = 9, + anon_sym_requires, + [254923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9712), 1, + anon_sym___attribute, + ACTIONS(9701), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10071), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(10907), 1, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [254947] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + ACTIONS(10823), 1, anon_sym___asm, - STATE(2989), 1, + STATE(2945), 1, sym_parameter_list, - STATE(6203), 1, + STATE(5939), 1, sym__function_declarator_seq, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10905), 7, + ACTIONS(10821), 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, - [255155] = 8, + anon_sym_requires, + [254979] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(7494), 1, anon_sym_requires, - STATE(5975), 1, - sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(9712), 1, + anon_sym___attribute, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9701), 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, - anon_sym_EQ, - anon_sym_try, - [255188] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10909), 1, - sym_identifier, - 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, + [255011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10232), 1, - anon_sym_TILDE, - ACTIONS(10919), 1, - sym_identifier, - ACTIONS(10921), 1, - anon_sym_COLON_COLON, - ACTIONS(10923), 1, - anon_sym_template, - STATE(6466), 1, - sym__scope_resolution, - STATE(7702), 1, - sym_operator_name, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(3711), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - [255266] = 9, + ACTIONS(4924), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4917), 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, + [255035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7799), 1, + ACTIONS(10752), 1, + sym_identifier, + STATE(6289), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7570), 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, + [255064] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, - anon_sym___attribute, - STATE(6123), 1, + ACTIONS(9746), 1, + anon_sym_requires, + STATE(6105), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(9743), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9701), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - [255301] = 8, + [255097] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9730), 1, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9826), 1, + anon_sym_LBRACK, + ACTIONS(10911), 1, + anon_sym___attribute, + STATE(2917), 1, + sym_parameter_list, + STATE(6512), 1, + sym__function_declarator_seq, + STATE(6477), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10909), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [255132] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10752), 1, + sym_identifier, + STATE(6289), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(8163), 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, + [255161] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, anon_sym_requires, - STATE(6176), 1, + ACTIONS(7638), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym___attribute, + STATE(6135), 1, sym_trailing_return_type, - ACTIONS(9727), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - [255334] = 9, + [255196] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym___attribute, - STATE(6152), 1, + STATE(6219), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [255369] = 9, + [255231] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym___attribute, - STATE(6155), 1, + STATE(6120), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9701), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [255404] = 9, + [255266] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, + ACTIONS(7494), 1, anon_sym_requires, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(9935), 1, anon_sym___attribute, - STATE(6115), 1, + STATE(6123), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 5, + ACTIONS(9933), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [255439] = 8, + [255301] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7424), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(10758), 1, anon_sym_requires, - STATE(6195), 1, + STATE(6202), 1, sym_trailing_return_type, - ACTIONS(10656), 2, + ACTIONS(10670), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 6, + ACTIONS(9933), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, 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, - 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, + [255334] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10903), 1, + ACTIONS(10915), 1, anon_sym___asm, - STATE(3001), 1, + STATE(2924), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6435), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10901), 7, + ACTIONS(10913), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [255585] = 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(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_EQ, anon_sym_try, - [255620] = 9, + [255369] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym___attribute, - ACTIONS(9366), 1, + ACTIONS(9356), 1, anon_sym_requires, - STATE(6182), 1, + STATE(6184), 1, sym_trailing_return_type, - ACTIONS(9327), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [255655] = 9, + [255404] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym___attribute, - ACTIONS(9491), 1, + ACTIONS(9470), 1, anon_sym_requires, - STATE(6111), 1, + STATE(6198), 1, sym_trailing_return_type, - ACTIONS(9488), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [255690] = 9, + [255439] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym___attribute, - ACTIONS(9730), 1, + ACTIONS(9746), 1, anon_sym_requires, - STATE(6176), 1, + STATE(6105), 1, sym_trailing_return_type, - ACTIONS(9727), 2, + ACTIONS(9743), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9701), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [255725] = 9, + [255474] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7799), 1, + ACTIONS(7638), 1, anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(9935), 1, anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(10758), 1, anon_sym_requires, - STATE(6195), 1, + STATE(6202), 1, sym_trailing_return_type, - ACTIONS(10656), 2, + ACTIONS(10670), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 5, + ACTIONS(9933), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [255760] = 8, + [255509] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7424), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(7447), 1, + ACTIONS(7494), 1, anon_sym_requires, - STATE(6155), 1, + STATE(6120), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, + ACTIONS(9701), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [255793] = 11, + [255542] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10909), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10332), 1, + anon_sym_TILDE, + ACTIONS(10917), 1, sym_identifier, - 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(10919), 1, + anon_sym_COLON_COLON, + ACTIONS(10921), 1, + anon_sym_template, + STATE(6462), 1, + sym__scope_resolution, + STATE(7886), 1, + sym_operator_name, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(3617), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [255581] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(5028), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8654), 1, + anon_sym_STAR, + ACTIONS(8656), 1, + anon_sym_AMP_AMP, + ACTIONS(8658), 1, + anon_sym_AMP, + STATE(3432), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6918), 1, + sym__abstract_declarator, + ACTIONS(8378), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [255620] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10786), 1, + ACTIONS(10815), 1, anon_sym___asm, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10784), 10, + ACTIONS(10813), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -507026,20 +508381,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [255863] = 7, + [255651] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10803), 1, + ACTIONS(10819), 1, anon_sym___asm, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10801), 10, + ACTIONS(10817), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -507050,20 +508405,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [255894] = 7, + [255682] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10807), 1, + ACTIONS(10823), 1, anon_sym___asm, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10805), 10, + ACTIONS(10821), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -507074,20 +508429,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [255925] = 7, + [255713] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10815), 1, + ACTIONS(10827), 1, anon_sym___asm, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10813), 10, + ACTIONS(10825), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -507098,20 +508453,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [255956] = 7, + [255744] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10831), 1, anon_sym___asm, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10817), 10, + ACTIONS(10829), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -507122,20 +508477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [255987] = 7, + [255775] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10762), 1, + ACTIONS(10765), 1, anon_sym___asm, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10760), 10, + ACTIONS(10761), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -507146,20 +508501,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [256018] = 7, + [255806] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10754), 1, + ACTIONS(10769), 1, anon_sym___asm, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10750), 10, + ACTIONS(10767), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -507170,20 +508525,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [256049] = 7, + [255837] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(10833), 1, + ACTIONS(10773), 1, anon_sym___asm, - STATE(3110), 1, + STATE(3164), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10831), 10, + ACTIONS(10771), 10, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -507194,25 +508549,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [256080] = 9, + [255868] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10935), 1, + ACTIONS(10925), 1, anon_sym___asm, - STATE(3001), 1, + STATE(3014), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6435), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10933), 7, + ACTIONS(10923), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -507220,40 +508575,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [256115] = 8, + [255903] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7424), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(7447), 1, + ACTIONS(7474), 1, anon_sym_requires, - STATE(6123), 1, + STATE(5985), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9701), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, - [256148] = 6, + anon_sym_EQ, + anon_sym_try, + [255936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7508), 2, + STATE(7439), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507268,15 +508623,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [256177] = 6, + [255965] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9826), 1, + anon_sym_LBRACK, + ACTIONS(10929), 1, + anon_sym___attribute, + STATE(2917), 1, + sym_parameter_list, + STATE(6512), 1, + sym__function_declarator_seq, + STATE(6477), 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_EQ, + anon_sym_try, + [256000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7627), 2, + STATE(7708), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507291,208 +508672,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [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, + [256029] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10941), 1, - anon_sym___attribute, - STATE(2902), 1, + ACTIONS(10933), 1, + anon_sym___asm, + STATE(3014), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6430), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10939), 7, + ACTIONS(10931), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [256280] = 8, + anon_sym_asm, + anon_sym___asm__, + [256064] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(9330), 1, + ACTIONS(7494), 1, anon_sym_requires, - STATE(6031), 1, + STATE(6135), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [256097] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7428), 1, + anon_sym_DASH_GT, + ACTIONS(7474), 1, + anon_sym_requires, + STATE(6023), 1, sym_trailing_return_type, - ACTIONS(9327), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, + ACTIONS(9388), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [256313] = 9, + [256130] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym___attribute, - STATE(6295), 1, + STATE(6330), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9172), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [256348] = 9, + [256165] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym___attribute, - STATE(6296), 1, + STATE(6331), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [256383] = 9, + [256200] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym___attribute, - STATE(6297), 1, + STATE(6334), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9701), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [256418] = 9, + [256235] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(9935), 1, anon_sym___attribute, - STATE(6298), 1, + STATE(6308), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 5, + ACTIONS(9933), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [256453] = 9, + [256270] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(7636), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, + anon_sym___attribute, + ACTIONS(9385), 1, + anon_sym_requires, + STATE(6326), 1, + sym_trailing_return_type, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [256305] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10907), 1, + ACTIONS(10937), 1, anon_sym___asm, - STATE(3001), 1, + STATE(3014), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6435), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10905), 7, + ACTIONS(10935), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -507500,119 +508904,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_asm, anon_sym___asm__, - [256488] = 9, + [256340] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym___attribute, - ACTIONS(9384), 1, + ACTIONS(9683), 1, anon_sym_requires, - STATE(6305), 1, + STATE(6327), 1, sym_trailing_return_type, - ACTIONS(9327), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9388), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [256523] = 9, + [256375] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9712), 1, anon_sym___attribute, - ACTIONS(9651), 1, + ACTIONS(9761), 1, anon_sym_requires, - STATE(6306), 1, + STATE(6328), 1, sym_trailing_return_type, - ACTIONS(9488), 2, + ACTIONS(9743), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9701), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [256558] = 9, + [256410] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, + ACTIONS(7636), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9935), 1, anon_sym___attribute, - ACTIONS(9745), 1, + ACTIONS(10939), 1, anon_sym_requires, - STATE(6307), 1, + STATE(6329), 1, sym_trailing_return_type, - ACTIONS(9727), 2, + ACTIONS(10670), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9933), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [256593] = 9, + [256445] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, - anon_sym_DASH_GT, - ACTIONS(9947), 1, - anon_sym___attribute, - ACTIONS(10943), 1, - anon_sym_requires, - STATE(6308), 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), 5, - anon_sym_COMMA, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(10047), 1, anon_sym_LBRACK, - anon_sym_GT2, - [256628] = 6, + ACTIONS(10944), 1, + anon_sym___asm, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10942), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [256480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7292), 2, + STATE(7404), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507627,22 +509031,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [256657] = 9, + [256509] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10925), 1, + anon_sym___asm, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10923), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [256544] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9826), 1, anon_sym_LBRACK, ACTIONS(10948), 1, anon_sym___attribute, - STATE(2902), 1, + STATE(2917), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6512), 1, sym__function_declarator_seq, - STATE(6430), 2, + STATE(6477), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(10946), 7, @@ -507653,15 +509083,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [256692] = 6, + [256579] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_requires, + STATE(6198), 1, + sym_trailing_return_type, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [256612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7325), 2, + STATE(7335), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507676,85 +509131,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [256721] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6088), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5917), 3, - anon_sym_COMMA, - 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, + [256641] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(9550), 1, + ACTIONS(7474), 1, anon_sym_requires, - STATE(5980), 1, + STATE(6032), 1, sym_trailing_return_type, - ACTIONS(9488), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, + ACTIONS(9933), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [256781] = 6, + [256674] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10248), 1, + anon_sym_TILDE, + ACTIONS(10950), 1, sym_identifier, - STATE(6263), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(7425), 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, - [256810] = 6, + ACTIONS(10952), 1, + anon_sym_COLON_COLON, + ACTIONS(10954), 1, + anon_sym_template, + STATE(6414), 1, + sym__scope_resolution, + STATE(7740), 1, + sym_operator_name, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(2554), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [256713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7448), 2, + STATE(7365), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507769,15 +509207,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [256839] = 6, + [256742] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7428), 1, + anon_sym_DASH_GT, + ACTIONS(9349), 1, + anon_sym_requires, + STATE(6025), 1, + sym_trailing_return_type, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [256775] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10915), 1, + anon_sym___asm, + STATE(3014), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6466), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10913), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [256810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7364), 2, + STATE(7460), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507792,15 +509281,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [256868] = 6, + [256839] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(7494), 1, + anon_sym_requires, + STATE(6219), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + [256872] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7517), 2, + STATE(7485), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507815,65 +509329,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [256897] = 8, + [256901] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, + ACTIONS(7398), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(7494), 1, anon_sym_requires, - STATE(6016), 1, + STATE(6123), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, + ACTIONS(9933), 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, - [256930] = 8, + [256934] = 11, ACTIONS(3), 1, sym_comment, - 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(10956), 1, + sym_identifier, + ACTIONS(10958), 1, + aux_sym_preproc_if_token2, + ACTIONS(10960), 1, + aux_sym_preproc_else_token1, + ACTIONS(10962), 1, + aux_sym_preproc_elif_token1, + STATE(6650), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6651), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6862), 1, + sym_enumerator, + ACTIONS(10964), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8865), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8900), 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, + [256973] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7555), 2, + STATE(7598), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507888,40 +509405,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [256992] = 8, + [257002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(10659), 1, - anon_sym_requires, - STATE(5983), 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), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [257025] = 6, + ACTIONS(10752), 1, + sym_identifier, + STATE(6289), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7635), 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, + [257031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7577), 2, + STATE(7681), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507936,15 +509451,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257054] = 6, + [257060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7669), 2, + STATE(7464), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507959,15 +509474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257083] = 6, + [257089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(7280), 2, + STATE(7453), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -507982,95 +509497,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257112] = 9, + [257118] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(9826), 1, anon_sym_LBRACK, - ACTIONS(10935), 1, - anon_sym___asm, - STATE(2989), 1, + ACTIONS(10968), 1, + anon_sym___attribute, + STATE(2917), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6512), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6477), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10933), 7, + ACTIONS(10966), 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, - [257147] = 9, + [257153] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10952), 1, - anon_sym___attribute, - STATE(2902), 1, + ACTIONS(10944), 1, + anon_sym___asm, + STATE(3014), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6430), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10950), 7, + ACTIONS(10942), 7, anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [257182] = 11, + anon_sym_asm, + anon_sym___asm__, + [257188] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10200), 1, + ACTIONS(10248), 1, anon_sym_TILDE, - ACTIONS(10954), 1, + ACTIONS(10950), 1, sym_identifier, - ACTIONS(10956), 1, + ACTIONS(10970), 1, anon_sym_COLON_COLON, - ACTIONS(10958), 1, + ACTIONS(10972), 1, anon_sym_template, - STATE(6446), 1, + STATE(6456), 1, sym__scope_resolution, - STATE(7753), 1, + STATE(8025), 1, sym_operator_name, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - STATE(2553), 4, + STATE(2554), 4, sym_template_method, sym_destructor_name, sym_dependent_field_identifier, sym_qualified_field_identifier, - [257221] = 6, + [257227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(8618), 2, + STATE(8283), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -508085,50 +509600,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257250] = 8, + [257256] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, + ACTIONS(7428), 1, anon_sym_DASH_GT, - ACTIONS(7361), 1, + ACTIONS(9593), 1, anon_sym_requires, - STATE(6015), 1, + STATE(6061), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, + ACTIONS(9388), 6, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, anon_sym_try, - [257283] = 9, + [257289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + STATE(6101), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5950), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(10717), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10719), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [257316] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10933), 1, + anon_sym___asm, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10931), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [257351] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, anon_sym_LBRACK, + ACTIONS(10937), 1, + anon_sym___asm, + STATE(2924), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10935), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [257386] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10956), 1, + sym_identifier, + ACTIONS(10960), 1, + aux_sym_preproc_else_token1, ACTIONS(10962), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10974), 1, + aux_sym_preproc_if_token2, + STATE(6590), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6592), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6862), 1, + sym_enumerator, + ACTIONS(10964), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8305), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8413), 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, + [257425] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9826), 1, + anon_sym_LBRACK, + ACTIONS(10978), 1, anon_sym___attribute, - STATE(2902), 1, + STATE(2917), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6512), 1, sym__function_declarator_seq, - STATE(6430), 2, + STATE(6477), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10960), 7, + ACTIONS(10976), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -508136,15 +509753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [257318] = 6, + [257460] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(8068), 2, + STATE(8090), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -508159,15 +509776,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257347] = 6, + [257489] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7428), 1, + anon_sym_DASH_GT, + ACTIONS(9749), 1, + anon_sym_requires, + STATE(6001), 1, + sym_trailing_return_type, + ACTIONS(9743), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [257522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(8193), 2, + STATE(8217), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -508182,43 +509824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257376] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1850), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10248), 1, - anon_sym_TILDE, - ACTIONS(10788), 1, - sym_identifier, - 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, + [257551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(8266), 2, + STATE(8290), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -508233,15 +509847,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257444] = 6, + [257580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(8708), 2, + STATE(8353), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -508256,15 +509870,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257473] = 6, + [257609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(8329), 2, + STATE(8399), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -508279,15 +509893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257502] = 6, + [257638] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10726), 1, + ACTIONS(10752), 1, sym_identifier, - STATE(6263), 2, + STATE(6289), 2, sym_string_literal, sym_raw_string_literal, - STATE(8375), 2, + STATE(7472), 2, sym__string, sym_concatenated_string, ACTIONS(119), 5, @@ -508302,2143 +509916,2179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [257531] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7357), 1, - anon_sym_DASH_GT, - ACTIONS(7361), 1, - anon_sym_requires, - STATE(6010), 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), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [257564] = 11, + [257667] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10200), 1, - anon_sym_TILDE, - ACTIONS(10954), 1, + ACTIONS(10956), 1, sym_identifier, - ACTIONS(10964), 1, - anon_sym_COLON_COLON, - ACTIONS(10966), 1, - anon_sym_template, - STATE(6447), 1, - sym__scope_resolution, - STATE(7806), 1, - sym_operator_name, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - STATE(2553), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - [257603] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(7447), 1, - anon_sym_requires, - 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), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - [257636] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, - anon_sym_LBRACK, - ACTIONS(10762), 1, - anon_sym___attribute, - STATE(3112), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10760), 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, - [257666] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10666), 1, - anon_sym_LBRACE, - ACTIONS(10968), 1, - anon_sym_SEMI, - ACTIONS(10970), 1, - anon_sym_COLON, - ACTIONS(10972), 1, - anon_sym_EQ, - ACTIONS(10974), 1, - anon_sym_try, - STATE(2108), 1, - sym_compound_statement, - STATE(7964), 1, - sym_field_initializer_list, - ACTIONS(5044), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2109), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [257704] = 7, + ACTIONS(10960), 1, + aux_sym_preproc_else_token1, + ACTIONS(10962), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10980), 1, + aux_sym_preproc_if_token2, + STATE(6563), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6649), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6862), 1, + sym_enumerator, + ACTIONS(10964), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8139), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8143), 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, + [257706] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(9356), 1, anon_sym_requires, - ACTIONS(9150), 1, - anon_sym___attribute, - ACTIONS(7359), 2, + STATE(6184), 1, + sym_trailing_return_type, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(9172), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [257734] = 7, + [257739] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7428), 1, + anon_sym_DASH_GT, + ACTIONS(7474), 1, anon_sym_requires, - ACTIONS(9382), 1, - anon_sym___attribute, - ACTIONS(7359), 2, + STATE(6051), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9172), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [257764] = 7, + anon_sym_EQ, + anon_sym_try, + [257772] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10302), 1, + anon_sym_TILDE, + ACTIONS(10839), 1, + sym_identifier, + ACTIONS(10844), 1, + anon_sym_COLON_COLON, + ACTIONS(10846), 1, + anon_sym_template, + STATE(6458), 1, + sym__scope_resolution, + STATE(7922), 1, + sym_operator_name, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + STATE(3437), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + [257811] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7428), 1, + anon_sym_DASH_GT, + ACTIONS(10673), 1, anon_sym_requires, - ACTIONS(9700), 1, - anon_sym___attribute, - ACTIONS(7359), 2, + STATE(6016), 1, + sym_trailing_return_type, + ACTIONS(10670), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9933), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_GT2, - [257794] = 7, + anon_sym_EQ, + anon_sym_try, + [257844] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10956), 1, + sym_identifier, + ACTIONS(10960), 1, + aux_sym_preproc_else_token1, + ACTIONS(10962), 1, + aux_sym_preproc_elif_token1, + ACTIONS(10982), 1, + aux_sym_preproc_if_token2, + STATE(6574), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(6645), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(6862), 1, + sym_enumerator, + ACTIONS(10964), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8446), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(8468), 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, + [257883] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10752), 1, + sym_identifier, + STATE(6289), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(7683), 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, + [257912] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(9947), 1, + ACTIONS(9945), 1, anon_sym___attribute, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6125), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 6, + ACTIONS(9943), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [257824] = 7, + [257942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7538), 1, + ACTIONS(7594), 1, anon_sym_requires, - ACTIONS(9951), 1, + ACTIONS(9183), 1, anon_sym___attribute, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6190), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9949), 6, + ACTIONS(9172), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [257854] = 8, + [257972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(7538), 1, - anon_sym_requires, - STATE(6295), 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_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [257886] = 8, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6965), 1, + anon_sym_LBRACE, + ACTIONS(9616), 1, + anon_sym_COLON_COLON, + ACTIONS(9690), 1, + sym_identifier, + STATE(2828), 1, + sym_template_type, + STATE(3078), 1, + sym_enumerator_list, + STATE(6729), 1, + sym__scope_resolution, + ACTIONS(10984), 2, + anon_sym_class, + anon_sym_struct, + STATE(2829), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [258012] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(7538), 1, - anon_sym_requires, - STATE(6296), 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), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [257918] = 8, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(6692), 1, + sym_access_specifier, + STATE(6757), 1, + sym__scope_resolution, + STATE(7180), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10678), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [258050] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(7538), 1, - anon_sym_requires, - STATE(6297), 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), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, anon_sym_LBRACK, - anon_sym_GT2, - [257950] = 8, + ACTIONS(10986), 1, + anon_sym_SEMI, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(10990), 1, + anon_sym_EQ, + ACTIONS(10992), 1, + anon_sym_try, + STATE(588), 1, + sym_compound_statement, + STATE(8039), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(609), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [258088] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(7538), 1, - anon_sym_requires, - STATE(6298), 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), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [257982] = 11, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6050), 1, + anon_sym_LBRACE, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(9669), 1, + sym_identifier, + STATE(1966), 1, + sym_template_type, + STATE(2256), 1, + sym_enumerator_list, + STATE(6762), 1, + sym__scope_resolution, + ACTIONS(10994), 2, + anon_sym_class, + anon_sym_struct, + STATE(2367), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [258128] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8010), 1, + anon_sym_LBRACE, + ACTIONS(9554), 1, + anon_sym_COLON_COLON, + ACTIONS(9661), 1, + sym_identifier, + STATE(3603), 1, + sym_template_type, + STATE(4021), 1, + sym_enumerator_list, + STATE(6742), 1, + sym__scope_resolution, + ACTIONS(10996), 2, + anon_sym_class, + anon_sym_struct, + STATE(3663), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [258168] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5236), 1, + anon_sym_COLON_COLON, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2942), 1, + sym_enumerator_list, + STATE(6713), 1, + sym__scope_resolution, + ACTIONS(10998), 2, + anon_sym_class, + anon_sym_struct, + STATE(3125), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [258208] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8123), 1, + ACTIONS(8179), 1, anon_sym_LBRACK, - ACTIONS(10674), 1, + ACTIONS(10660), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10988), 1, anon_sym_COLON, - ACTIONS(10976), 1, + ACTIONS(11000), 1, anon_sym_SEMI, - ACTIONS(10978), 1, + ACTIONS(11002), 1, anon_sym_EQ, - ACTIONS(10980), 1, + ACTIONS(11004), 1, anon_sym_try, - STATE(1763), 1, + STATE(1846), 1, sym_compound_statement, - STATE(7906), 1, + STATE(7804), 1, sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(5052), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(1764), 4, + STATE(1851), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [258020] = 7, + [258246] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9150), 1, - anon_sym___attribute, - ACTIONS(9384), 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), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(8731), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(4495), 1, + sym_enumerator_list, + STATE(6721), 1, + sym__scope_resolution, + ACTIONS(11006), 2, + anon_sym_class, + anon_sym_struct, + STATE(5031), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [258286] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(9679), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(2942), 1, + sym_enumerator_list, + STATE(6759), 1, + sym__scope_resolution, + ACTIONS(11008), 2, + anon_sym_class, + anon_sym_struct, + STATE(3379), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [258326] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, + anon_sym_LBRACK, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(11010), 1, + anon_sym_SEMI, + ACTIONS(11012), 1, + anon_sym_EQ, + ACTIONS(11014), 1, + anon_sym_try, + STATE(719), 1, + sym_compound_statement, + STATE(8005), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + STATE(720), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [258364] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(8731), 1, + anon_sym_LBRACE, + ACTIONS(9667), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(4495), 1, + sym_enumerator_list, + STATE(6716), 1, + sym__scope_resolution, + ACTIONS(11016), 2, + anon_sym_class, + anon_sym_struct, + STATE(4372), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [258404] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8179), 1, anon_sym_LBRACK, - anon_sym_GT2, - [258050] = 7, + ACTIONS(10660), 1, + anon_sym_LBRACE, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(11002), 1, + anon_sym_EQ, + ACTIONS(11004), 1, + anon_sym_try, + ACTIONS(11018), 1, + anon_sym_SEMI, + STATE(1839), 1, + sym_compound_statement, + STATE(7890), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(1850), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [258442] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(6679), 1, + sym_access_specifier, + STATE(6757), 1, + sym__scope_resolution, + STATE(7529), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10678), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [258480] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6880), 1, + anon_sym_LBRACE, + ACTIONS(9504), 1, + anon_sym_COLON_COLON, + ACTIONS(9681), 1, + sym_identifier, + STATE(2713), 1, + sym_template_type, + STATE(2900), 1, + sym_enumerator_list, + STATE(6733), 1, + sym__scope_resolution, + ACTIONS(11020), 2, + anon_sym_class, + anon_sym_struct, + STATE(2714), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [258520] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9382), 1, + ACTIONS(9183), 1, anon_sym___attribute, - ACTIONS(9651), 1, + ACTIONS(9385), 1, anon_sym_requires, - ACTIONS(9488), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 6, + ACTIONS(9172), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [258080] = 7, + [258550] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9700), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(9745), 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), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7145), 1, anon_sym___attribute__, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, anon_sym_LBRACK, - anon_sym_GT2, - [258110] = 7, + ACTIONS(11024), 1, + anon_sym_EQ, + STATE(3151), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + ACTIONS(11022), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6876), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [258590] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9947), 1, + ACTIONS(9399), 1, anon_sym___attribute, - ACTIONS(10943), 1, + ACTIONS(9683), 1, anon_sym_requires, - ACTIONS(10656), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 6, + ACTIONS(9388), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [258140] = 7, + [258620] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9951), 1, + ACTIONS(9712), 1, anon_sym___attribute, - ACTIONS(10982), 1, + ACTIONS(9761), 1, anon_sym_requires, - ACTIONS(10646), 2, + ACTIONS(9743), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6190), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9949), 6, + ACTIONS(9701), 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(113), 1, - anon_sym___asm, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(10071), 1, - anon_sym_LBRACK, - ACTIONS(10644), 1, - anon_sym_SEMI, - 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, - [258212] = 8, + [258650] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(9384), 1, + ACTIONS(9935), 1, + anon_sym___attribute, + ACTIONS(10939), 1, anon_sym_requires, - STATE(6305), 1, - sym_trailing_return_type, - ACTIONS(9327), 2, + ACTIONS(10670), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 5, + ACTIONS(9933), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [258244] = 8, + [258680] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(9651), 1, + ACTIONS(9945), 1, + anon_sym___attribute, + ACTIONS(11026), 1, anon_sym_requires, - STATE(6306), 1, - sym_trailing_return_type, - ACTIONS(9488), 2, + ACTIONS(10693), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6125), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 5, + ACTIONS(9943), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [258276] = 8, + [258710] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(9745), 1, + ACTIONS(7594), 1, anon_sym_requires, - STATE(6307), 1, - sym_trailing_return_type, - ACTIONS(9727), 2, + ACTIONS(9399), 1, + anon_sym___attribute, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6133), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 5, + ACTIONS(9388), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [258308] = 8, + [258740] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 1, - anon_sym_DASH_GT, - ACTIONS(10943), 1, + ACTIONS(7594), 1, anon_sym_requires, - STATE(6308), 1, - sym_trailing_return_type, - ACTIONS(10656), 2, + ACTIONS(9712), 1, + anon_sym___attribute, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 5, + ACTIONS(9701), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [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(8123), 1, - anon_sym_LBRACK, - ACTIONS(10674), 1, - anon_sym_LBRACE, - ACTIONS(10970), 1, - anon_sym_COLON, - ACTIONS(10978), 1, - anon_sym_EQ, - ACTIONS(10980), 1, - anon_sym_try, - ACTIONS(10987), 1, - anon_sym_SEMI, - 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(8123), 1, - anon_sym_LBRACK, - ACTIONS(10970), 1, - anon_sym_COLON, - ACTIONS(10989), 1, - anon_sym_SEMI, - 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, - [258458] = 9, + [258770] = 11, 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(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, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [258492] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(8179), 1, anon_sym_LBRACK, - ACTIONS(10895), 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(10893), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [258526] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, + ACTIONS(10689), 1, anon_sym_LBRACE, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10970), 1, + ACTIONS(10988), 1, anon_sym_COLON, - ACTIONS(10995), 1, + ACTIONS(11029), 1, anon_sym_SEMI, - ACTIONS(10997), 1, + ACTIONS(11031), 1, anon_sym_EQ, - ACTIONS(10999), 1, + ACTIONS(11033), 1, anon_sym_try, - STATE(650), 1, + STATE(2113), 1, sym_compound_statement, - STATE(7881), 1, + STATE(7929), 1, sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(5052), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(503), 4, + STATE(2114), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [258564] = 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(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, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [258598] = 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(10935), 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(10933), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [258632] = 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(10907), 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(10905), 6, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [258666] = 12, + [258808] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6801), 1, + ACTIONS(6826), 1, anon_sym_LBRACE, - ACTIONS(9580), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(2673), 1, + STATE(2671), 1, sym_template_type, - STATE(2808), 1, + STATE(2880), 1, sym_enumerator_list, - STATE(6713), 1, + STATE(6703), 1, sym__scope_resolution, - ACTIONS(11001), 2, + ACTIONS(11035), 2, anon_sym_class, anon_sym_struct, - STATE(2611), 2, + STATE(2665), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [258706] = 12, + [258848] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7594), 1, + anon_sym_requires, + ACTIONS(9935), 1, + anon_sym___attribute, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6122), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [258878] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6070), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9671), 1, sym_identifier, - STATE(1943), 1, + STATE(1835), 1, sym_template_type, - STATE(2228), 1, + STATE(2396), 1, sym_enumerator_list, - STATE(6695), 1, + STATE(6745), 1, sym__scope_resolution, - ACTIONS(11003), 2, + ACTIONS(11037), 2, anon_sym_class, anon_sym_struct, - STATE(2391), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [258746] = 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(6663), 1, - sym_access_specifier, - STATE(6697), 1, - sym__scope_resolution, - STATE(7118), 2, + STATE(3917), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(10684), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [258784] = 11, + [258918] = 8, 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, - ACTIONS(11005), 1, - anon_sym_SEMI, - STATE(803), 1, - sym_compound_statement, - STATE(7945), 1, - sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(9385), 1, + anon_sym_requires, + STATE(6326), 1, + sym_trailing_return_type, + ACTIONS(9346), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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(11011), 1, - anon_sym_try, - STATE(707), 1, - sym_compound_statement, - STATE(7785), 1, - sym_field_initializer_list, - ACTIONS(5044), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(666), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [258860] = 11, + anon_sym_GT2, + [258950] = 8, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(9683), 1, + anon_sym_requires, + STATE(6327), 1, + sym_trailing_return_type, + ACTIONS(9467), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, + anon_sym_GT2, + [258982] = 8, 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, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(9761), 1, + anon_sym_requires, + STATE(6328), 1, + sym_trailing_return_type, + ACTIONS(9743), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 5, + anon_sym_DOT_DOT_DOT, 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(10752), 1, anon_sym_LBRACK, - ACTIONS(10786), 1, - anon_sym___attribute, - STATE(3112), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10784), 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, - [259008] = 7, + [259014] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, - anon_sym_LBRACK, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [259038] = 7, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(3675), 1, + sym_enumerator_list, + STATE(6721), 1, + sym__scope_resolution, + ACTIONS(11039), 2, + anon_sym_class, + anon_sym_struct, + STATE(3424), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [259054] = 8, 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, - anon_sym_EQ, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(10939), 1, + anon_sym_requires, + STATE(6329), 1, + sym_trailing_return_type, + ACTIONS(10670), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [259068] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6122), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [259098] = 7, + [259086] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, - anon_sym_LBRACK, - ACTIONS(10819), 1, + ACTIONS(43), 1, anon_sym___attribute, - STATE(3112), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10817), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [259128] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10754), 1, - anon_sym___attribute, - STATE(3112), 1, + ACTIONS(11041), 1, + anon_sym_EQ, + STATE(3151), 1, sym_parameter_list, - STATE(5959), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10750), 9, + ACTIONS(11022), 2, 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, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6876), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [259126] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9818), 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, + ACTIONS(10039), 1, 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(10047), 1, + anon_sym_LBRACK, + ACTIONS(10709), 1, + anon_sym_SEMI, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7284), 1, + aux_sym_declaration_repeat1, + STATE(7710), 1, + sym_gnu_asm_expression, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [259168] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6070), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1943), 1, + STATE(1946), 1, sym_template_type, - STATE(2228), 1, + STATE(3675), 1, sym_enumerator_list, - STATE(6695), 1, + STATE(6716), 1, sym__scope_resolution, - ACTIONS(11017), 2, + ACTIONS(11043), 2, anon_sym_class, anon_sym_struct, - STATE(2554), 2, + STATE(6641), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [259228] = 3, + [259208] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11019), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6250), 12, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, + anon_sym_LBRACK, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(11045), 1, + anon_sym_SEMI, + ACTIONS(11047), 1, + anon_sym_EQ, + ACTIONS(11049), 1, + anon_sym_try, + STATE(289), 1, + sym_compound_statement, + STATE(7871), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, - 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, + STATE(290), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [259246] = 11, 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, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, anon_sym_LBRACK, - ACTIONS(10678), 1, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(11051), 1, anon_sym_SEMI, - 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__, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [259330] = 11, + ACTIONS(11053), 1, + anon_sym_EQ, + ACTIONS(11055), 1, + anon_sym_try, + STATE(808), 1, + sym_compound_statement, + STATE(7771), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(809), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [259284] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(8179), 1, anon_sym_LBRACK, - ACTIONS(10970), 1, + ACTIONS(10988), 1, anon_sym_COLON, - ACTIONS(11021), 1, - anon_sym_SEMI, - ACTIONS(11023), 1, + ACTIONS(11012), 1, anon_sym_EQ, - ACTIONS(11025), 1, + ACTIONS(11014), 1, anon_sym_try, - STATE(314), 1, + ACTIONS(11057), 1, + anon_sym_SEMI, + STATE(766), 1, sym_compound_statement, - STATE(7959), 1, + STATE(7915), 1, sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(5052), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(315), 4, + STATE(773), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [259368] = 3, + [259322] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5601), 1, - sym_identifier, - ACTIONS(5603), 13, + ACTIONS(6185), 1, + anon_sym___asm, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, + anon_sym_LBRACK, + STATE(6161), 1, + sym_parameter_list, + STATE(6424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6187), 7, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, 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, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [259354] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7314), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(7738), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(5526), 1, + STATE(5565), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 4, + ACTIONS(9172), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [259424] = 9, + [259388] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7314), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(7738), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(5529), 1, + STATE(5567), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 4, + ACTIONS(9388), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [259458] = 9, + [259422] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7314), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(7738), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - STATE(5530), 1, + STATE(5568), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 4, + ACTIONS(9701), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [259492] = 9, + [259456] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7314), 1, + ACTIONS(7160), 1, anon_sym_requires, - ACTIONS(7738), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(9935), 1, anon_sym_LBRACK, - STATE(5531), 1, + STATE(5569), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 4, + ACTIONS(9933), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [259526] = 9, + [259490] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(9311), 1, + ACTIONS(9325), 1, anon_sym_requires, - STATE(5528), 1, + STATE(5526), 1, sym_trailing_return_type, - ACTIONS(9193), 2, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 4, + ACTIONS(9172), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [259560] = 9, + [259524] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9407), 1, + ACTIONS(9423), 1, anon_sym_requires, - STATE(5536), 1, + STATE(5527), 1, sym_trailing_return_type, - ACTIONS(9387), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 4, + ACTIONS(9388), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [259594] = 9, + [259558] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, + ACTIONS(7797), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9935), 1, anon_sym_LBRACK, - ACTIONS(9724), 1, + ACTIONS(9940), 1, anon_sym_requires, - STATE(5537), 1, + STATE(5529), 1, sym_trailing_return_type, - ACTIONS(9702), 2, + ACTIONS(9937), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 4, + ACTIONS(9933), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - [259628] = 9, + [259592] = 8, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(6196), 1, + anon_sym___asm, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, + anon_sym_LBRACK, + STATE(6161), 1, + sym_parameter_list, + STATE(6424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6198), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, - [259662] = 11, + anon_sym_asm, + anon_sym___asm__, + [259624] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(10654), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(8179), 1, + anon_sym_LBRACK, + ACTIONS(10988), 1, anon_sym_COLON, - ACTIONS(11027), 1, - anon_sym_SEMI, - ACTIONS(11029), 1, + ACTIONS(11053), 1, anon_sym_EQ, - ACTIONS(11031), 1, + ACTIONS(11055), 1, anon_sym_try, - STATE(1987), 1, + ACTIONS(11059), 1, + anon_sym_SEMI, + STATE(681), 1, sym_compound_statement, - STATE(7891), 1, + STATE(7919), 1, sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(5052), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2011), 4, + STATE(671), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [259700] = 3, + [259662] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5641), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(5643), 13, + STATE(1946), 1, + sym_template_type, + STATE(6656), 1, + sym_access_specifier, + STATE(6757), 1, + sym__scope_resolution, + STATE(7174), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + ACTIONS(10678), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [259700] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + ACTIONS(10815), 1, + anon_sym___attribute, + STATE(3079), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10813), 9, 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, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259730] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6090), 1, - anon_sym___asm, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10637), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(6113), 1, + ACTIONS(10819), 1, + anon_sym___attribute, + STATE(3079), 1, sym_parameter_list, - STATE(6418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6092), 7, + STATE(5939), 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__, - [259754] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259760] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6198), 1, - anon_sym___asm, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10637), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(6113), 1, + ACTIONS(10823), 1, + anon_sym___attribute, + STATE(3079), 1, sym_parameter_list, - STATE(6418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6200), 7, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10821), 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__, - [259786] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259790] = 7, ACTIONS(3), 1, sym_comment, - 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(2954), 1, - sym_enumerator_list, - STATE(6706), 1, - sym__scope_resolution, - ACTIONS(11033), 2, - anon_sym_class, - anon_sym_struct, - STATE(4117), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [259826] = 8, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + ACTIONS(10827), 1, + anon_sym___attribute, + STATE(3079), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10825), 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, + [259820] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, - anon_sym___asm, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10637), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(6113), 1, + ACTIONS(10831), 1, + anon_sym___attribute, + STATE(3079), 1, sym_parameter_list, - STATE(6418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6204), 7, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10829), 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__, - [259858] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259850] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6112), 1, - anon_sym___asm, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10637), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(6113), 1, + ACTIONS(10765), 1, + anon_sym___attribute, + STATE(3079), 1, sym_parameter_list, - STATE(6418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6114), 7, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10761), 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__, - [259890] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, - anon_sym___asm, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10637), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(6113), 1, + ACTIONS(10769), 1, + anon_sym___attribute, + STATE(3079), 1, sym_parameter_list, - STATE(6418), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6147), 7, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10767), 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__, - [259922] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [259910] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6298), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + ACTIONS(10773), 1, anon_sym___attribute, - 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, + STATE(3079), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10771), 9, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [259948] = 11, + [259940] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3915), 1, + ACTIONS(6259), 1, + anon_sym_LBRACE, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9688), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(6641), 1, - sym_access_specifier, - STATE(6697), 1, + STATE(5135), 1, + sym_enumerator_list, + STATE(6739), 1, sym__scope_resolution, - STATE(7267), 2, + ACTIONS(11061), 2, + anon_sym_class, + anon_sym_struct, + STATE(4921), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - ACTIONS(10684), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [259986] = 12, + [259980] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7027), 1, + ACTIONS(6050), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9669), 1, sym_identifier, - STATE(1922), 1, + STATE(1966), 1, sym_template_type, - STATE(3661), 1, + STATE(2256), 1, sym_enumerator_list, - STATE(6743), 1, + STATE(6762), 1, sym__scope_resolution, - ACTIONS(11039), 2, + ACTIONS(11063), 2, anon_sym_class, anon_sym_struct, - STATE(3412), 2, + STATE(2559), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [260026] = 4, + [260020] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6163), 1, + anon_sym___asm, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, + anon_sym_LBRACK, + STATE(6161), 1, + sym_parameter_list, + STATE(6424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6165), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [260052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5502), 1, + sym_identifier, + ACTIONS(5504), 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, + [260074] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6200), 1, + anon_sym___asm, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, + anon_sym_LBRACK, + STATE(6161), 1, + sym_parameter_list, + STATE(6424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6202), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [260106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11019), 2, + ACTIONS(11065), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11041), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(6300), 10, + ACTIONS(6317), 12, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_LBRACK_LBRACK, 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, - [260050] = 12, + [260128] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10691), 1, + anon_sym_SEMI, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7607), 1, + sym_gnu_asm_expression, + STATE(7608), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [260170] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6175), 1, + anon_sym___asm, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, + anon_sym_LBRACK, + STATE(6161), 1, + sym_parameter_list, + STATE(6424), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6177), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + [260202] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6740), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - ACTIONS(8022), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(9663), 1, sym_identifier, - STATE(2598), 1, + STATE(1835), 1, sym_template_type, - STATE(2613), 1, + STATE(2396), 1, sym_enumerator_list, STATE(6738), 1, sym__scope_resolution, - ACTIONS(11043), 2, + ACTIONS(11067), 2, anon_sym_class, anon_sym_struct, - STATE(4949), 2, + STATE(4946), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [260090] = 11, + [260242] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(8179), 1, anon_sym_LBRACK, - ACTIONS(10970), 1, + ACTIONS(10988), 1, anon_sym_COLON, - ACTIONS(10997), 1, + ACTIONS(10990), 1, anon_sym_EQ, - ACTIONS(10999), 1, + ACTIONS(10992), 1, anon_sym_try, - ACTIONS(11045), 1, + ACTIONS(11069), 1, anon_sym_SEMI, - STATE(572), 1, + STATE(517), 1, sym_compound_statement, - STATE(7802), 1, + STATE(8046), 1, sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(5052), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(573), 4, + STATE(491), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [260128] = 12, + [260280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6740), 1, - anon_sym_LBRACE, - ACTIONS(9612), 1, - anon_sym_COLON_COLON, - ACTIONS(9664), 1, - sym_identifier, - STATE(2598), 1, - sym_template_type, - STATE(2613), 1, - sym_enumerator_list, - 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(6261), 1, + anon_sym___attribute, + ACTIONS(11071), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11073), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6263), 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, + anon_sym_requires, + [260306] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(7007), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10711), 1, + anon_sym_SEMI, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7492), 1, + sym_gnu_asm_expression, + STATE(7493), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [260348] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8179), 1, + anon_sym_LBRACK, + ACTIONS(10689), 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(11049), 2, - anon_sym_class, - anon_sym_struct, - STATE(2863), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [260208] = 12, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(11031), 1, + anon_sym_EQ, + ACTIONS(11033), 1, + anon_sym_try, + ACTIONS(11075), 1, + anon_sym_SEMI, + STATE(2052), 1, + sym_compound_statement, + STATE(7798), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2053), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [260386] = 9, 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, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11053), 1, - anon_sym_EQ, - STATE(3028), 1, + ACTIONS(10933), 1, + anon_sym___asm, + STATE(3098), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(11051), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6081), 2, + STATE(6087), 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(5470), 1, - sym_identifier, - ACTIONS(5472), 13, + ACTIONS(10931), 6, 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, - [260270] = 12, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [260420] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6256), 1, + ACTIONS(6761), 1, anon_sym_LBRACE, - ACTIONS(8088), 1, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(9649), 1, + ACTIONS(9675), 1, sym_identifier, - STATE(1784), 1, + STATE(2611), 1, sym_template_type, - STATE(5189), 1, + STATE(2634), 1, sym_enumerator_list, - STATE(6724), 1, + STATE(6744), 1, sym__scope_resolution, - ACTIONS(11055), 2, + ACTIONS(11077), 2, anon_sym_class, anon_sym_struct, - STATE(4920), 2, + STATE(4109), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [260310] = 12, + [260460] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(8705), 1, + ACTIONS(8179), 1, + anon_sym_LBRACK, + ACTIONS(10685), 1, anon_sym_LBRACE, - 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(10988), 1, + anon_sym_COLON, + ACTIONS(11079), 1, + anon_sym_SEMI, + ACTIONS(11081), 1, + anon_sym_EQ, + ACTIONS(11083), 1, + anon_sym_try, + STATE(2102), 1, + sym_compound_statement, + STATE(7757), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2103), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [260498] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10937), 1, + anon_sym___asm, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10935), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [260532] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6315), 1, + anon_sym___attribute, + ACTIONS(11073), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6317), 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, + [260556] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7027), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(3661), 1, + STATE(3675), 1, sym_enumerator_list, - STATE(6719), 1, + STATE(6716), 1, sym__scope_resolution, - ACTIONS(11059), 2, + ACTIONS(11085), 2, anon_sym_class, anon_sym_struct, - STATE(4231), 2, + STATE(4256), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [260390] = 12, + [260596] = 11, 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, + ACTIONS(8179), 1, anon_sym_LBRACK, - ACTIONS(11061), 1, + ACTIONS(10685), 1, + anon_sym_LBRACE, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(11081), 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(11083), 1, + anon_sym_try, + ACTIONS(11087), 1, + anon_sym_SEMI, + STATE(2131), 1, + sym_compound_statement, + STATE(7895), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2132), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [260634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, + ACTIONS(5617), 1, sym_identifier, - ACTIONS(5479), 13, + ACTIONS(5619), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -510452,891 +512102,876 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [260452] = 12, + [260656] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6852), 1, - anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(8999), 1, + anon_sym_LBRACE, + ACTIONS(9686), 1, sym_identifier, - STATE(2684), 1, + STATE(4398), 1, sym_template_type, - STATE(2881), 1, + STATE(4941), 1, sym_enumerator_list, - STATE(6728), 1, + STATE(6737), 1, sym__scope_resolution, - ACTIONS(11063), 2, + ACTIONS(11089), 2, anon_sym_class, anon_sym_struct, - STATE(2697), 2, + STATE(4606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [260492] = 12, + [260696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(7027), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10925), 1, + anon_sym___asm, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10923), 6, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(9668), 1, - sym_identifier, - STATE(1922), 1, - sym_template_type, - STATE(3661), 1, - sym_enumerator_list, - STATE(6719), 1, - sym__scope_resolution, - ACTIONS(11065), 2, - anon_sym_class, - anon_sym_struct, - STATE(6595), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [260532] = 12, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [260730] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10915), 1, + anon_sym___asm, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10913), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [260764] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10944), 1, + anon_sym___asm, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10942), 6, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [260798] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6256), 1, + ACTIONS(6761), 1, anon_sym_LBRACE, - ACTIONS(9437), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(9673), 1, sym_identifier, - STATE(1784), 1, + STATE(2611), 1, sym_template_type, - STATE(2381), 1, + STATE(2634), 1, sym_enumerator_list, - STATE(6699), 1, + STATE(6758), 1, sym__scope_resolution, - ACTIONS(11067), 2, + ACTIONS(11091), 2, anon_sym_class, anon_sym_struct, - STATE(3868), 2, + STATE(4963), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [260572] = 12, + [260838] = 3, 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, + ACTIONS(5509), 1, sym_identifier, - 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(5511), 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, + [260860] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8000), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9067), 1, - anon_sym_LBRACE, - ACTIONS(9672), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(4461), 1, + STATE(1946), 1, sym_template_type, - STATE(4948), 1, - sym_enumerator_list, - STATE(6731), 1, + STATE(6687), 1, + sym_access_specifier, + STATE(6757), 1, sym__scope_resolution, - ACTIONS(11071), 2, - anon_sym_class, - anon_sym_struct, - STATE(4638), 2, + STATE(7621), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [260652] = 13, + ACTIONS(10678), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + [260898] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(113), 1, anon_sym___asm, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10680), 1, + ACTIONS(10668), 1, anon_sym_SEMI, - STATE(3108), 1, + STATE(3098), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(7404), 1, + STATE(7530), 1, sym_gnu_asm_expression, - STATE(7407), 1, + STATE(7531), 1, aux_sym_declaration_repeat1, - ACTIONS(10075), 2, + ACTIONS(10051), 2, anon_sym_asm, anon_sym___asm__, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [260694] = 11, + [260940] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(8147), 1, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(8360), 1, - anon_sym_COLON, - ACTIONS(8715), 1, - anon_sym_STAR, - ACTIONS(8717), 1, - anon_sym_AMP_AMP, - ACTIONS(8719), 1, - anon_sym_AMP, - STATE(3538), 1, + ACTIONS(11093), 1, + anon_sym_SEMI, + STATE(3098), 1, sym_parameter_list, - STATE(6109), 1, + STATE(6212), 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(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(7965), 1, - anon_sym_LBRACE, - 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(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(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, - STATE(1922), 1, - sym_template_type, - STATE(4633), 1, - sym_enumerator_list, - STATE(6743), 1, - sym__scope_resolution, - ACTIONS(11077), 2, - anon_sym_class, - anon_sym_struct, - STATE(5019), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [260852] = 4, + STATE(7370), 1, + sym_gnu_asm_expression, + STATE(7371), 1, + aux_sym_declaration_repeat1, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [260982] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, - anon_sym___attribute, - ACTIONS(11037), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6250), 11, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(7594), 1, + anon_sym_requires, + STATE(6330), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 5, 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, - [260876] = 11, + [261014] = 4, 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(6652), 1, - sym_access_specifier, - 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, - ACTIONS(10684), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - [260914] = 11, + ACTIONS(11065), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11095), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(6263), 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, + [261038] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(8179), 1, anon_sym_LBRACK, - ACTIONS(10970), 1, + ACTIONS(10988), 1, anon_sym_COLON, - ACTIONS(11023), 1, + ACTIONS(11047), 1, anon_sym_EQ, - ACTIONS(11025), 1, + ACTIONS(11049), 1, anon_sym_try, - ACTIONS(11079), 1, + ACTIONS(11097), 1, anon_sym_SEMI, - STATE(289), 1, + STATE(314), 1, sym_compound_statement, - STATE(7811), 1, + STATE(8073), 1, sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(5052), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(290), 4, + STATE(315), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [260952] = 12, + [261076] = 12, 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(7027), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(9643), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, sym_template_type, - STATE(2954), 1, + STATE(2942), 1, sym_enumerator_list, - STATE(6746), 1, + STATE(6741), 1, sym__scope_resolution, - ACTIONS(11081), 2, + ACTIONS(11099), 2, anon_sym_class, anon_sym_struct, - STATE(3320), 2, + STATE(4171), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [260992] = 11, + [261116] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8123), 1, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(7594), 1, + anon_sym_requires, + STATE(6331), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_LBRACK, - ACTIONS(10654), 1, - anon_sym_LBRACE, - ACTIONS(10970), 1, + anon_sym_GT2, + [261148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5629), 1, + sym_identifier, + ACTIONS(5631), 13, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(11029), 1, - anon_sym_EQ, - 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_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, + [261170] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(7594), 1, + anon_sym_requires, + STATE(6334), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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, + anon_sym_LBRACK, + anon_sym_GT2, + [261202] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, anon_sym_LBRACK, - ACTIONS(10970), 1, + ACTIONS(8378), 1, anon_sym_COLON, - ACTIONS(11009), 1, - anon_sym_EQ, - ACTIONS(11011), 1, - anon_sym_try, - STATE(707), 1, - sym_compound_statement, - STATE(7785), 1, - sym_field_initializer_list, - ACTIONS(5044), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(666), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [261065] = 6, + ACTIONS(8721), 1, + anon_sym_STAR, + ACTIONS(8723), 1, + anon_sym_AMP_AMP, + ACTIONS(8725), 1, + anon_sym_AMP, + STATE(3592), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6983), 1, + sym__abstract_declarator, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [261240] = 8, 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(4934), 3, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(4927), 7, + ACTIONS(7507), 1, + anon_sym_DASH_GT, + ACTIONS(7594), 1, + anon_sym_requires, + STATE(6308), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6122), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_asm, - anon_sym___asm__, - [261092] = 10, + anon_sym_LBRACK, + anon_sym_GT2, + [261272] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(7797), 1, + anon_sym_DASH_GT, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(10970), 1, - anon_sym_COLON, - ACTIONS(10997), 1, - anon_sym_EQ, - ACTIONS(10999), 1, - anon_sym_try, - STATE(650), 1, - sym_compound_statement, - STATE(7881), 1, - sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(9740), 1, + anon_sym_requires, + STATE(5528), 1, + sym_trailing_return_type, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 4, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(503), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [261127] = 9, + anon_sym_LBRACE, + anon_sym_EQ, + [261306] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11091), 1, + ACTIONS(11107), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8019), 2, + STATE(8043), 2, sym_preproc_call, sym_enumerator, - STATE(8828), 2, + STATE(8892), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6403), 3, + STATE(6539), 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(10752), 1, - anon_sym_LBRACK, - STATE(2963), 1, - sym_parameter_list, - 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_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(1850), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(11093), 1, - sym_identifier, - ACTIONS(11095), 1, - anon_sym_COLON_COLON, - ACTIONS(11097), 1, - anon_sym_template, - STATE(2399), 1, - sym_dependent_field_identifier, - STATE(2409), 1, - sym_qualified_field_identifier, - STATE(2438), 1, - sym_template_method, - STATE(6396), 1, - sym__scope_resolution, - STATE(7923), 1, - sym_operator_name, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [261261] = 9, + [261339] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(9150), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(9632), 1, + ACTIONS(9714), 1, anon_sym_requires, - STATE(6575), 1, + STATE(6579), 1, sym_trailing_return_type, - ACTIONS(9193), 2, + ACTIONS(9401), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9388), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [261294] = 9, + [261372] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(9382), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(9708), 1, + ACTIONS(9836), 1, anon_sym_requires, STATE(6580), 1, sym_trailing_return_type, - ACTIONS(9387), 2, + ACTIONS(9725), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 3, + ACTIONS(9701), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [261327] = 9, + [261405] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(9700), 1, + ACTIONS(9935), 1, anon_sym_LBRACK, - ACTIONS(9828), 1, + ACTIONS(11109), 1, anon_sym_requires, - STATE(6596), 1, + STATE(6582), 1, sym_trailing_return_type, - ACTIONS(9702), 2, + ACTIONS(9937), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 3, + ACTIONS(9933), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [261360] = 9, + [261438] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, - anon_sym_DASH_GT, - ACTIONS(9947), 1, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11103), 1, + aux_sym_preproc_if_token1, + ACTIONS(11112), 1, + anon_sym_RBRACE, + ACTIONS(11105), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8077), 2, + sym_preproc_call, + sym_enumerator, + STATE(8601), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6539), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [261471] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(11099), 1, - anon_sym_requires, - STATE(6606), 1, - sym_trailing_return_type, - ACTIONS(9957), 2, + STATE(2934), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10817), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, 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_try, + anon_sym_requires, + [261498] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [261393] = 9, + ACTIONS(113), 1, + anon_sym___asm, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + STATE(3098), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(7807), 1, + sym_gnu_asm_expression, + ACTIONS(10051), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(11114), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [261535] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10935), 1, + ACTIONS(10937), 1, anon_sym___attribute, - STATE(3028), 1, + STATE(3151), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10933), 5, + ACTIONS(10935), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [261426] = 10, + [261568] = 12, 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(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10952), 1, + anon_sym_COLON_COLON, + ACTIONS(10954), 1, + anon_sym_template, + ACTIONS(11116), 1, + sym_identifier, + STATE(2421), 1, + sym_template_method, + STATE(2424), 1, + sym_dependent_field_identifier, + STATE(2427), 1, + sym_qualified_field_identifier, + STATE(6414), 1, + sym__scope_resolution, + STATE(7740), 1, + sym_operator_name, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [261607] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11102), 1, + ACTIONS(11118), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7896), 2, + STATE(7737), 2, sym_preproc_call, sym_enumerator, - STATE(8333), 2, + STATE(8634), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6569), 3, + STATE(6479), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [261494] = 10, + [261640] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(11122), 1, + anon_sym_LT, + STATE(6518), 1, + sym_template_argument_list, + ACTIONS(11124), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10970), 1, + ACTIONS(11120), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(10997), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - ACTIONS(10999), 1, anon_sym_try, - 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, + [261665] = 9, ACTIONS(3), 1, sym_comment, - 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(6109), 1, - sym__function_declarator_seq, - STATE(6811), 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, - [261564] = 12, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11103), 1, + aux_sym_preproc_if_token1, + ACTIONS(11126), 1, + anon_sym_RBRACE, + ACTIONS(11105), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7872), 2, + sym_preproc_call, + sym_enumerator, + STATE(8408), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6465), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [261698] = 9, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11101), 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(11103), 1, + aux_sym_preproc_if_token1, + ACTIONS(11128), 1, + anon_sym_RBRACE, + ACTIONS(11105), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8016), 2, + sym_preproc_call, + sym_enumerator, + STATE(8966), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6475), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [261731] = 7, 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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10815), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3102), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10813), 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, + [261760] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10907), 1, + ACTIONS(10944), 1, anon_sym___attribute, - STATE(3028), 1, + STATE(3151), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(10905), 5, + ACTIONS(10942), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [261673] = 6, + [261793] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, + anon_sym_LBRACK, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(11053), 1, + anon_sym_EQ, + ACTIONS(11055), 1, + anon_sym_try, + STATE(681), 1, + sym_compound_statement, + STATE(7919), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, anon_sym_LPAREN2, - ACTIONS(10752), 1, + anon_sym_LBRACK_LBRACK, + STATE(671), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [261828] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(2963), 1, + STATE(2934), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10784), 9, + ACTIONS(10821), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, @@ -511346,19 +512981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [261700] = 6, + [261855] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - STATE(6052), 1, + STATE(6097), 1, sym_template_argument_list, - ACTIONS(4934), 2, + ACTIONS(8179), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(4927), 8, + ACTIONS(5052), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -511367,111 +513002,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [261727] = 7, + [261882] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10786), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6288), 2, anon_sym_LBRACK, - STATE(3111), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10784), 8, + anon_sym___asm, + STATE(5824), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6290), 8, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [261756] = 7, + anon_sym_asm, + anon_sym___asm__, + [261907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10815), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3111), 1, + STATE(2934), 1, sym_parameter_list, - STATE(6153), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10813), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + 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_GT2, + anon_sym_try, anon_sym_requires, - [261785] = 7, + [261934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10819), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3111), 1, + STATE(2934), 1, sym_parameter_list, - STATE(6153), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10817), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(10825), 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, - [261814] = 10, + [261961] = 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, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, anon_sym_LBRACK, - STATE(3113), 1, - sym_parameter_list, - STATE(6109), 1, - sym__function_declarator_seq, - 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(10988), 1, + anon_sym_COLON, + ACTIONS(11047), 1, + anon_sym_EQ, + ACTIONS(11049), 1, + anon_sym_try, + STATE(289), 1, + sym_compound_statement, + STATE(7871), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(290), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [261996] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10754), 1, + ACTIONS(10827), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3111), 1, + STATE(3102), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10750), 8, + ACTIONS(10825), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -511480,20 +513111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [261878] = 7, + [262025] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10803), 1, + ACTIONS(10831), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3111), 1, + STATE(3102), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10801), 8, + ACTIONS(10829), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -511502,20 +513133,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [261907] = 7, + [262054] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(8175), 1, + anon_sym_LBRACK, + ACTIONS(8509), 1, + anon_sym_STAR, + ACTIONS(8511), 1, + anon_sym_AMP_AMP, + ACTIONS(8513), 1, + anon_sym_AMP, + STATE(3116), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(6839), 1, + sym__abstract_declarator, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [262089] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10807), 1, + ACTIONS(10769), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3111), 1, + STATE(3102), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 8, + ACTIONS(10767), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -511524,617 +513180,566 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [261936] = 5, + [262118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6244), 2, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(2697), 1, + sym_template_argument_list, + ACTIONS(8179), 3, + anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - STATE(5804), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6246), 8, + ACTIONS(5052), 7, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_asm, anon_sym___asm__, - [261961] = 7, + [262145] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10762), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3111), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10760), 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, - [261990] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10833), 1, + ACTIONS(10925), 1, anon_sym___attribute, - ACTIONS(11108), 1, - anon_sym_LBRACK, - STATE(3111), 1, + STATE(3151), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10831), 8, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10923), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [262019] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11085), 1, - sym_identifier, - ACTIONS(11087), 1, - aux_sym_preproc_if_token1, - ACTIONS(11110), 1, - anon_sym_RBRACE, - ACTIONS(11089), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7930), 2, - sym_preproc_call, - sym_enumerator, - STATE(8449), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6443), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [262052] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11085), 1, - sym_identifier, - ACTIONS(11087), 1, - aux_sym_preproc_if_token1, - ACTIONS(11112), 1, - anon_sym_RBRACE, - ACTIONS(11089), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7772), 2, - sym_preproc_call, - sym_enumerator, - STATE(8475), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6424), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [262085] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11085), 1, - sym_identifier, - 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, + [262178] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11116), 1, + ACTIONS(11132), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7827), 2, + STATE(8029), 2, sym_preproc_call, sym_enumerator, - STATE(8104), 2, + STATE(8307), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6569), 3, + STATE(6406), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [262151] = 9, + [262211] = 6, ACTIONS(3), 1, sym_comment, - 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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + STATE(2934), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10829), 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, + [262238] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11120), 1, + ACTIONS(11134), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7982), 2, + STATE(7905), 2, sym_preproc_call, sym_enumerator, - STATE(8626), 2, + STATE(8846), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6429), 3, + STATE(6448), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [262217] = 6, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym___asm, - ACTIONS(5044), 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, - [262244] = 9, + [262271] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(7924), 1, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(9150), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(6598), 1, + STATE(6625), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5927), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9172), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [262277] = 9, + [262304] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(11136), 1, + sym_identifier, + ACTIONS(11138), 1, + anon_sym_COLON_COLON, + ACTIONS(11140), 1, + anon_sym_template, + STATE(2421), 1, + sym_template_method, + STATE(2424), 1, + sym_dependent_field_identifier, + STATE(2427), 1, + sym_qualified_field_identifier, + STATE(6438), 1, + sym__scope_resolution, + STATE(8048), 1, + sym_operator_name, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [262343] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11122), 1, + ACTIONS(11142), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8028), 2, + STATE(7852), 2, sym_preproc_call, sym_enumerator, - STATE(8865), 2, + STATE(8877), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6569), 3, + STATE(6476), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [262310] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11126), 2, - anon_sym___attribute, - anon_sym_LBRACK, - STATE(5804), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(11124), 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, - [262335] = 9, + [262376] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(7924), 1, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - STATE(6600), 1, + STATE(6626), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5934), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 3, + ACTIONS(9388), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [262368] = 9, + [262409] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, + anon_sym_LBRACK, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(11012), 1, + anon_sym_EQ, + ACTIONS(11014), 1, + anon_sym_try, + STATE(719), 1, + sym_compound_statement, + STATE(8005), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(720), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [262444] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(7924), 1, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(9700), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - STATE(6602), 1, + STATE(6627), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 3, + ACTIONS(9701), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [262401] = 9, + [262477] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7923), 1, anon_sym_DASH_GT, - ACTIONS(7924), 1, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(9947), 1, + ACTIONS(9935), 1, anon_sym_LBRACK, - STATE(6603), 1, + STATE(6628), 1, sym_trailing_return_type, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5945), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 3, + ACTIONS(9933), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [262434] = 6, + [262510] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, anon_sym_LBRACK, - STATE(2963), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10750), 9, - anon_sym_SEMI, + ACTIONS(10988), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(11053), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, + ACTIONS(11055), 1, anon_sym_try, - anon_sym_requires, - [262461] = 5, + STATE(808), 1, + sym_compound_statement, + STATE(7771), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(809), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [262545] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10736), 2, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, 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, + ACTIONS(10988), 1, anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(10990), 1, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - [262486] = 10, - 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, - 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, - [262521] = 9, + ACTIONS(10992), 1, + anon_sym_try, + STATE(588), 1, + sym_compound_statement, + STATE(8039), 1, + sym_field_initializer_list, + ACTIONS(5052), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(609), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [262580] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(7923), 1, + anon_sym_DASH_GT, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(10899), 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(10897), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [262554] = 9, + ACTIONS(9651), 1, + anon_sym_requires, + STATE(6578), 1, + sym_trailing_return_type, + ACTIONS(9213), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [262613] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, - anon_sym_LBRACK, - ACTIONS(10895), 1, + ACTIONS(10819), 1, anon_sym___attribute, - STATE(3028), 1, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3102), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6115), 1, sym__function_declarator_seq, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(10893), 5, + ACTIONS(10817), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [262587] = 9, + anon_sym_requires, + [262642] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11130), 1, + ACTIONS(11144), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7727), 2, + STATE(7786), 2, sym_preproc_call, sym_enumerator, - STATE(8886), 2, + STATE(8279), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6440), 3, + STATE(6539), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [262620] = 9, + [262675] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11085), 1, - sym_identifier, - ACTIONS(11087), 1, - aux_sym_preproc_if_token1, - ACTIONS(11132), 1, - anon_sym_RBRACE, - ACTIONS(11089), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7740), 2, - sym_preproc_call, - sym_enumerator, - STATE(8214), 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, - [262653] = 5, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5030), 1, + anon_sym_STAR, + ACTIONS(5032), 1, + anon_sym_AMP_AMP, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3134), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(7055), 1, + sym__abstract_declarator, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [262710] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11136), 1, - anon_sym_LT, - STATE(6475), 1, - sym_template_argument_list, - ACTIONS(11138), 2, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10823), 1, anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - ACTIONS(11134), 9, + STATE(3102), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10821), 8, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_try, - [262678] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [262739] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11140), 1, + ACTIONS(11146), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(8030), 2, + STATE(7744), 2, sym_preproc_call, sym_enumerator, - STATE(8868), 2, + STATE(8327), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6456), 3, + STATE(6454), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [262711] = 9, + [262772] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10765), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3102), 1, + sym_parameter_list, + STATE(6115), 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, + [262801] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_LPAREN2, + ACTIONS(5030), 1, + anon_sym_STAR, + ACTIONS(5032), 1, + anon_sym_AMP_AMP, + ACTIONS(5034), 1, + anon_sym_AMP, + ACTIONS(8175), 1, + anon_sym_LBRACK, + STATE(3134), 1, + sym_parameter_list, + STATE(6134), 1, + sym__function_declarator_seq, + STATE(7013), 1, + sym__abstract_declarator, + STATE(6117), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [262836] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11142), 1, + ACTIONS(11148), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7950), 2, + STATE(7921), 2, sym_preproc_call, sym_enumerator, - STATE(8526), 2, + STATE(8461), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6569), 3, + STATE(6539), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [262744] = 6, + [262869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(2963), 1, + STATE(2934), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10831), 9, + ACTIONS(10771), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, @@ -512144,147 +513749,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, 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, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [262796] = 12, + [262896] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10956), 1, + ACTIONS(10970), 1, anon_sym_COLON_COLON, - ACTIONS(10958), 1, + ACTIONS(10972), 1, anon_sym_template, - ACTIONS(11148), 1, + ACTIONS(11116), 1, sym_identifier, - STATE(2399), 1, + STATE(2421), 1, + sym_template_method, + STATE(2424), 1, sym_dependent_field_identifier, - STATE(2409), 1, + STATE(2427), 1, sym_qualified_field_identifier, - STATE(2438), 1, - sym_template_method, - STATE(6446), 1, + STATE(6456), 1, sym__scope_resolution, - STATE(7753), 1, + STATE(8025), 1, sym_operator_name, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [262835] = 12, + [262935] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10773), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3102), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10771), 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, + [262964] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1850), 1, anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10964), 1, + ACTIONS(10844), 1, anon_sym_COLON_COLON, - ACTIONS(10966), 1, + ACTIONS(10846), 1, anon_sym_template, - ACTIONS(11148), 1, + ACTIONS(11150), 1, sym_identifier, - STATE(2399), 1, + STATE(3465), 1, + sym_template_method, + STATE(3466), 1, sym_dependent_field_identifier, - STATE(2409), 1, + STATE(3467), 1, sym_qualified_field_identifier, - STATE(2438), 1, - sym_template_method, - STATE(6447), 1, + STATE(6458), 1, sym__scope_resolution, - STATE(7806), 1, + STATE(7922), 1, sym_operator_name, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [262874] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11085), 1, - sym_identifier, - ACTIONS(11087), 1, - aux_sym_preproc_if_token1, - ACTIONS(11150), 1, - anon_sym_RBRACE, - ACTIONS(11089), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7735), 2, - sym_preproc_call, - sym_enumerator, - STATE(8180), 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, - [262907] = 10, + [263003] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(8179), 1, anon_sym_LBRACK, - ACTIONS(10970), 1, + ACTIONS(10988), 1, anon_sym_COLON, - ACTIONS(11009), 1, + ACTIONS(10990), 1, anon_sym_EQ, - ACTIONS(11011), 1, + ACTIONS(10992), 1, anon_sym_try, - STATE(718), 1, + STATE(517), 1, sym_compound_statement, - STATE(7821), 1, + STATE(8046), 1, sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(5052), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(719), 4, + STATE(491), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [262942] = 10, + [263038] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(8179), 1, anon_sym_LBRACK, - ACTIONS(10970), 1, + ACTIONS(10988), 1, anon_sym_COLON, - ACTIONS(11023), 1, + ACTIONS(11047), 1, anon_sym_EQ, - ACTIONS(11025), 1, + ACTIONS(11049), 1, anon_sym_try, STATE(314), 1, sym_compound_statement, - STATE(7959), 1, + STATE(8073), 1, sym_field_initializer_list, - ACTIONS(5044), 2, + ACTIONS(5052), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, STATE(315), 4, @@ -512292,87 +513875,70 @@ static const uint16_t ts_small_parse_table[] = { sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [262977] = 9, + [263073] = 10, 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(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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(4589), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10224), 1, + anon_sym_COLON_COLON, + ACTIONS(11152), 1, + sym_identifier, + STATE(5972), 1, + sym__scope_resolution, + ACTIONS(4591), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [263010] = 9, + anon_sym_RBRACK, + STATE(7806), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [263108] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10919), 1, + anon_sym_COLON_COLON, + ACTIONS(10921), 1, + anon_sym_template, + ACTIONS(11154), 1, sym_identifier, - ACTIONS(11087), 1, - aux_sym_preproc_if_token1, - ACTIONS(11152), 1, - anon_sym_RBRACE, - ACTIONS(11089), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(7729), 2, - sym_preproc_call, - sym_enumerator, - STATE(8928), 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, - [263043] = 6, - ACTIONS(3), 1, - sym_comment, - 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(10801), 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, - [263070] = 6, + STATE(3662), 1, + sym_qualified_field_identifier, + STATE(3701), 1, + sym_template_method, + STATE(3702), 1, + sym_dependent_field_identifier, + STATE(6462), 1, + sym__scope_resolution, + STATE(7886), 1, + sym_operator_name, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [263147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(2963), 1, + STATE(2934), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10805), 9, + ACTIONS(10761), 9, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, @@ -512382,171 +513948,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [263097] = 10, + [263174] = 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(11023), 1, - anon_sym_EQ, - ACTIONS(11025), 1, - anon_sym_try, - STATE(289), 1, - sym_compound_statement, - STATE(7811), 1, - sym_field_initializer_list, - ACTIONS(5044), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(290), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [263132] = 9, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(11138), 1, + anon_sym_COLON_COLON, + ACTIONS(11156), 1, + sym_identifier, + STATE(6438), 1, + sym__scope_resolution, + STATE(8012), 1, + sym_field_initializer, + STATE(8048), 1, + sym_operator_name, + STATE(7257), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [263211] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11154), 1, + ACTIONS(11158), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7711), 2, + STATE(7992), 2, sym_preproc_call, sym_enumerator, - STATE(8463), 2, + STATE(8542), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6569), 3, + STATE(6539), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [263165] = 6, + [263244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10748), 2, anon_sym_LBRACK, - STATE(2963), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10813), 9, + anon_sym___asm, + STATE(5824), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10746), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, 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, + anon_sym_asm, + anon_sym___asm__, + [263269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(6097), 1, + sym_template_argument_list, + ACTIONS(4924), 2, anon_sym_LBRACK, - STATE(2963), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10817), 9, + anon_sym___asm, + ACTIONS(4917), 8, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, - 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_try, - anon_sym_requires, - [263219] = 10, + [263296] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(8123), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10970), 1, - anon_sym_COLON, - ACTIONS(10991), 1, + ACTIONS(10915), 1, + anon_sym___attribute, + STATE(3151), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10913), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(10993), 1, - anon_sym_try, - 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, - [263254] = 9, + anon_sym_GT2, + [263329] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11156), 1, + ACTIONS(11160), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7878), 2, + STATE(7867), 2, sym_preproc_call, sym_enumerator, - STATE(8260), 2, + STATE(8122), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6461), 3, + STATE(6539), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [263287] = 9, + [263362] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11158), 1, + ACTIONS(11162), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7981), 2, + STATE(7903), 2, sym_preproc_call, sym_enumerator, - STATE(8619), 2, + STATE(8085), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6569), 3, + STATE(6539), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [263320] = 11, + [263395] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(2697), 1, + sym_template_argument_list, + ACTIONS(4924), 3, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(4917), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_asm, + anon_sym___asm__, + [263422] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, @@ -512555,211 +514141,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(11095), 1, + ACTIONS(11138), 1, anon_sym_COLON_COLON, - ACTIONS(11106), 1, + ACTIONS(11156), 1, sym_identifier, - STATE(6396), 1, + STATE(6438), 1, sym__scope_resolution, - STATE(7774), 1, + STATE(7699), 1, sym_field_initializer, - STATE(7923), 1, + STATE(8048), 1, sym_operator_name, - STATE(7189), 2, + STATE(7257), 2, sym_template_method, sym_qualified_field_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [263357] = 11, + [263459] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(113), 1, - anon_sym___asm, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3108), 1, + ACTIONS(10933), 1, + anon_sym___attribute, + STATE(3151), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 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, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [263394] = 9, + ACTIONS(10931), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [263492] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(8179), 1, + anon_sym_LBRACK, + ACTIONS(10988), 1, + anon_sym_COLON, + ACTIONS(11012), 1, + anon_sym_EQ, + ACTIONS(11014), 1, + anon_sym_try, + STATE(766), 1, + sym_compound_statement, + STATE(7915), 1, + sym_field_initializer_list, + ACTIONS(5052), 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, + [263527] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, - ACTIONS(11162), 1, + ACTIONS(11164), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7810), 2, + STATE(8056), 2, sym_preproc_call, sym_enumerator, - STATE(8895), 2, + STATE(8281), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6423), 3, + STATE(6539), 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, - anon_sym___asm, - ACTIONS(5044), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_asm, - anon_sym___asm__, - [263454] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1850), 1, - anon_sym_operator, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10921), 1, - anon_sym_COLON_COLON, - ACTIONS(10923), 1, - anon_sym_template, - ACTIONS(11164), 1, - sym_identifier, - 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(7702), 1, - sym_operator_name, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [263493] = 9, + [263560] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11087), 1, + ACTIONS(11103), 1, aux_sym_preproc_if_token1, ACTIONS(11166), 1, anon_sym_RBRACE, - ACTIONS(11089), 2, + ACTIONS(11105), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(7991), 2, + STATE(7931), 2, sym_preproc_call, sym_enumerator, - STATE(8677), 2, + STATE(8126), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(6448), 3, + STATE(6539), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [263526] = 3, + [263593] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, ACTIONS(11170), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11168), 10, + STATE(5824), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(11168), 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_try, - [263546] = 6, + [263618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3077), 1, + STATE(2934), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10805), 8, - anon_sym_RPAREN, + ACTIONS(10767), 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, - [263572] = 6, + [263645] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10752), 1, - anon_sym_LBRACK, - STATE(3077), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10784), 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, - [263598] = 3, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11103), 1, + aux_sym_preproc_if_token1, + ACTIONS(11172), 1, + anon_sym_RBRACE, + ACTIONS(11105), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7775), 2, + sym_preproc_call, + sym_enumerator, + STATE(8339), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6539), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [263678] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11103), 1, + aux_sym_preproc_if_token1, + ACTIONS(11174), 1, + anon_sym_RBRACE, + ACTIONS(11105), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7849), 2, + sym_preproc_call, + sym_enumerator, + STATE(8486), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6410), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [263711] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11103), 1, + aux_sym_preproc_if_token1, + ACTIONS(11176), 1, + anon_sym_RBRACE, + ACTIONS(11105), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(7796), 2, + sym_preproc_call, + sym_enumerator, + STATE(8881), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6469), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [263744] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11103), 1, + aux_sym_preproc_if_token1, + ACTIONS(11178), 1, + anon_sym_RBRACE, + ACTIONS(11105), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8034), 2, + sym_preproc_call, + sym_enumerator, + STATE(8629), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(6470), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [263777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11174), 2, + ACTIONS(11122), 1, + anon_sym_LT, + STATE(6513), 1, + sym_template_argument_list, + ACTIONS(11182), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11172), 10, + ACTIONS(11180), 9, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -512768,260 +514412,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [263618] = 11, + [263802] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7027), 1, + ACTIONS(8010), 1, anon_sym_LBRACE, - ACTIONS(8074), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9661), 1, sym_identifier, - STATE(1922), 1, + STATE(3603), 1, sym_template_type, - STATE(3668), 1, + STATE(4036), 1, sym_enumerator_list, - STATE(6743), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(3414), 2, + STATE(3672), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [263654] = 11, + [263838] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6070), 1, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(10758), 1, + anon_sym_requires, + STATE(6667), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6122), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 3, + anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(9530), 1, - anon_sym_COLON_COLON, - ACTIONS(9658), 1, - sym_identifier, - STATE(1943), 1, - sym_template_type, - STATE(2245), 1, - sym_enumerator_list, - STATE(6695), 1, - sym__scope_resolution, - STATE(2342), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [263690] = 11, + anon_sym_LBRACK, + [263868] = 11, 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, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9666), 1, + ACTIONS(8731), 1, + anon_sym_LBRACE, + ACTIONS(9667), 1, sym_identifier, - STATE(2856), 1, + STATE(1946), 1, sym_template_type, - STATE(3143), 1, + STATE(4525), 1, sym_enumerator_list, - STATE(6708), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(2832), 2, + STATE(4346), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [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, + [263904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11146), 2, - anon_sym___attribute, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(6097), 1, + sym_template_argument_list, + ACTIONS(6474), 2, anon_sym_LBRACK, - ACTIONS(11144), 10, + anon_sym___asm, + ACTIONS(6476), 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, - [263766] = 11, + [263928] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6070), 1, + ACTIONS(6050), 1, anon_sym_LBRACE, - ACTIONS(9530), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9658), 1, + ACTIONS(9669), 1, sym_identifier, - STATE(1943), 1, + STATE(1966), 1, sym_template_type, - STATE(2245), 1, + STATE(2258), 1, sym_enumerator_list, - STATE(6695), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(2563), 2, + STATE(2368), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [263802] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9730), 1, - anon_sym_requires, - STATE(6647), 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), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [263832] = 11, + [263964] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8028), 1, - anon_sym_COLON_COLON, - ACTIONS(8705), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - ACTIONS(9668), 1, + ACTIONS(7981), 1, + anon_sym_COLON_COLON, + ACTIONS(9663), 1, sym_identifier, - STATE(1922), 1, + STATE(1835), 1, sym_template_type, - STATE(4600), 1, + STATE(2397), 1, sym_enumerator_list, - STATE(6719), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(4318), 2, + STATE(4949), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [263868] = 5, + [264000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 1, - anon_sym_LT, - STATE(6052), 1, - sym_template_argument_list, - ACTIONS(6426), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6428), 8, - anon_sym_COMMA, + ACTIONS(9818), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [263892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11178), 2, - anon_sym___attribute, + ACTIONS(10763), 1, anon_sym_LBRACK, - ACTIONS(11176), 10, - anon_sym_COMMA, + STATE(3045), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10825), 8, 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, - [263912] = 11, + anon_sym_requires, + [264026] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7027), 1, + ACTIONS(6880), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9681), 1, sym_identifier, - STATE(1922), 1, + STATE(2713), 1, sym_template_type, - STATE(3668), 1, + STATE(2903), 1, sym_enumerator_list, - STATE(6719), 1, + STATE(6733), 1, sym__scope_resolution, - STATE(4233), 2, + STATE(2721), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [263948] = 6, + [264062] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3077), 1, + STATE(3045), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10801), 8, + ACTIONS(10771), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -513030,283 +514618,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [263974] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7424), 1, - anon_sym_DASH_GT, - ACTIONS(9366), 1, - anon_sym_requires, - STATE(6651), 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), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [264004] = 3, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - [264024] = 11, + [264088] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6852), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(9498), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(9670), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(2684), 1, + STATE(1946), 1, sym_template_type, - STATE(2888), 1, + STATE(3680), 1, sym_enumerator_list, - STATE(6728), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(2688), 2, + STATE(3427), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [264060] = 8, - ACTIONS(3), 1, - sym_comment, - 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, - 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, - anon_sym_COLON, - anon_sym_LBRACK, - [264090] = 11, + [264124] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6256), 1, + ACTIONS(6965), 1, anon_sym_LBRACE, - ACTIONS(7984), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(9645), 1, + ACTIONS(9690), 1, sym_identifier, - STATE(1784), 1, + STATE(2828), 1, sym_template_type, - STATE(2386), 1, + STATE(3036), 1, sym_enumerator_list, - STATE(6727), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(4946), 2, + STATE(2837), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [264126] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(6088), 2, - sym_string_literal, - sym_raw_string_literal, - 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, - [264148] = 8, + [264160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7920), 1, + STATE(6495), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + ACTIONS(11186), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + ACTIONS(11184), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, 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, - anon_sym_COLON, - anon_sym_LBRACK, - [264178] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7447), 1, + anon_sym_noexcept, + anon_sym_throw, 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, - 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, + [264182] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6740), 1, - anon_sym_LBRACE, - ACTIONS(9612), 1, + ACTIONS(5036), 1, anon_sym_COLON_COLON, - ACTIONS(9664), 1, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(9679), 1, sym_identifier, - STATE(2598), 1, + STATE(1946), 1, sym_template_type, - STATE(2619), 1, + STATE(2946), 1, sym_enumerator_list, - STATE(6694), 1, + STATE(6759), 1, sym__scope_resolution, - STATE(4086), 2, + STATE(3380), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [264244] = 11, + [264218] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7027), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(9668), 1, + ACTIONS(9667), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(3668), 1, + STATE(3680), 1, sym_enumerator_list, - STATE(6719), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(6605), 2, + STATE(4257), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [264280] = 8, + [264254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_requires, - ACTIONS(7920), 1, + ACTIONS(11191), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11189), 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, + [264274] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7398), 1, anon_sym_DASH_GT, - STATE(6115), 1, + ACTIONS(9746), 1, + anon_sym_requires, + STATE(6659), 1, sym_trailing_return_type, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 3, + ACTIONS(9701), 3, anon_sym_LPAREN2, - anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - [264310] = 11, + [264304] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6740), 1, + ACTIONS(6761), 1, anon_sym_LBRACE, - ACTIONS(8022), 1, + ACTIONS(8096), 1, anon_sym_COLON_COLON, - ACTIONS(9662), 1, + ACTIONS(9673), 1, sym_identifier, - STATE(2598), 1, + STATE(2611), 1, sym_template_type, - STATE(2619), 1, + STATE(2647), 1, sym_enumerator_list, - STATE(6738), 1, + STATE(6758), 1, sym__scope_resolution, - STATE(4954), 2, + STATE(4955), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [264346] = 3, + [264340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11182), 2, + STATE(6101), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(10717), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10719), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [264362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11195), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11180), 10, + ACTIONS(11193), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -513317,112 +514835,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [264366] = 11, + [264382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8000), 1, - anon_sym_COLON_COLON, - ACTIONS(9067), 1, + ACTIONS(11199), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11197), 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, - ACTIONS(9672), 1, - sym_identifier, - STATE(4461), 1, - sym_template_type, - STATE(4953), 1, - sym_enumerator_list, - STATE(6731), 1, - sym__scope_resolution, - STATE(4595), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [264402] = 11, + anon_sym_EQ, + anon_sym_try, + [264402] = 8, 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(7027), 1, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(9470), 1, + anon_sym_requires, + STATE(6668), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 3, + anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(9643), 1, - sym_identifier, - STATE(1922), 1, - sym_template_type, - STATE(2961), 1, - sym_enumerator_list, - STATE(6746), 1, - sym__scope_resolution, - STATE(3322), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [264438] = 8, + anon_sym_LBRACK, + [264432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + STATE(3045), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10829), 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, + [264458] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(9366), 1, + ACTIONS(9356), 1, anon_sym_requires, - STATE(6182), 1, + STATE(6184), 1, sym_trailing_return_type, - ACTIONS(9327), 2, + ACTIONS(9346), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6149), 2, + STATE(6133), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9139), 3, + ACTIONS(9172), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK, - [264468] = 8, + [264488] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(9491), 1, + ACTIONS(9470), 1, anon_sym_requires, - STATE(6111), 1, + STATE(6198), 1, sym_trailing_return_type, - ACTIONS(9488), 2, + ACTIONS(9467), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 3, + ACTIONS(9388), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK, - [264498] = 6, + [264518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3077), 1, + STATE(3045), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10831), 8, + ACTIONS(10821), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -513431,60 +514958,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [264524] = 8, + [264544] = 11, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6951), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [264554] = 11, + ACTIONS(8022), 1, + anon_sym_COLON_COLON, + ACTIONS(9667), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(3680), 1, + sym_enumerator_list, + STATE(6716), 1, + sym__scope_resolution, + STATE(6643), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [264580] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(6259), 1, + anon_sym_LBRACE, + ACTIONS(8044), 1, + anon_sym_COLON_COLON, + ACTIONS(9688), 1, + sym_identifier, + STATE(1835), 1, + sym_template_type, + STATE(5153), 1, + sym_enumerator_list, + STATE(6739), 1, + sym__scope_resolution, + STATE(4951), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [264616] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7965), 1, + ACTIONS(6050), 1, anon_sym_LBRACE, - ACTIONS(9412), 1, + ACTIONS(9475), 1, anon_sym_COLON_COLON, - ACTIONS(9674), 1, + ACTIONS(9669), 1, sym_identifier, - STATE(3638), 1, + STATE(1966), 1, sym_template_type, - STATE(4018), 1, + STATE(2258), 1, sym_enumerator_list, - STATE(6732), 1, + STATE(6762), 1, sym__scope_resolution, - STATE(3719), 2, + STATE(2560), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [264590] = 3, + [264652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11186), 2, + ACTIONS(11203), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11184), 10, + ACTIONS(11201), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -513495,40 +515050,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [264610] = 8, + [264672] = 3, 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, + ACTIONS(6532), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6534), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK, - [264640] = 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [264692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3077), 1, + STATE(3045), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10813), 8, + ACTIONS(10817), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -513537,13 +515087,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [264666] = 3, + [264718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 2, + ACTIONS(11207), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6439), 10, + ACTIONS(11205), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -513554,13 +515104,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [264686] = 3, + [264738] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8120), 1, + anon_sym_COLON_COLON, + ACTIONS(8731), 1, + anon_sym_LBRACE, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(4525), 1, + sym_enumerator_list, + STATE(6721), 1, + sym__scope_resolution, + STATE(5048), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [264774] = 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(8999), 1, + anon_sym_LBRACE, + ACTIONS(9686), 1, + sym_identifier, + STATE(4398), 1, + sym_template_type, + STATE(4931), 1, + sym_enumerator_list, + STATE(6737), 1, + sym__scope_resolution, + STATE(4484), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [264810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11190), 2, + ACTIONS(6330), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11188), 10, + ACTIONS(6332), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -513571,64 +515171,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [264706] = 8, + [264830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7920), 1, + ACTIONS(7930), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(10758), 1, anon_sym_requires, - STATE(6195), 1, + STATE(6202), 1, sym_trailing_return_type, - ACTIONS(10656), 2, + ACTIONS(10670), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6122), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 3, + ACTIONS(9933), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK, - [264736] = 11, + [264860] = 3, 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, + ACTIONS(11211), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11209), 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, - ACTIONS(9647), 1, - sym_identifier, - 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, + anon_sym_EQ, + anon_sym_try, + [264880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - STATE(2705), 1, + STATE(2697), 1, sym_template_argument_list, - ACTIONS(6426), 2, + ACTIONS(6474), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6428), 8, + ACTIONS(6476), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -513637,43 +515229,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_asm, anon_sym___asm__, - [264796] = 11, + [264904] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(7027), 1, + ACTIONS(6951), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, + ACTIONS(9657), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(2961), 1, + STATE(2946), 1, sym_enumerator_list, - STATE(6715), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(3037), 2, + STATE(3088), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [264832] = 6, + [264940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3077), 1, + STATE(3045), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10817), 8, + ACTIONS(10761), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -513682,35 +515274,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [264858] = 8, + [264966] = 6, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(9818), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(10763), 1, anon_sym_LBRACK, - [264888] = 3, + STATE(3045), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10767), 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, + [264992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11194), 2, + ACTIONS(11182), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11192), 10, + ACTIONS(11180), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -513721,68 +515311,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [264908] = 11, + [265012] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6256), 1, + ACTIONS(6259), 1, anon_sym_LBRACE, - ACTIONS(9437), 1, + ACTIONS(9428), 1, anon_sym_COLON_COLON, - ACTIONS(9654), 1, + ACTIONS(9671), 1, sym_identifier, - STATE(1784), 1, + STATE(1835), 1, sym_template_type, - STATE(2386), 1, + STATE(2397), 1, sym_enumerator_list, - STATE(6699), 1, + STATE(6745), 1, sym__scope_resolution, - STATE(3870), 2, + STATE(3919), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [264944] = 11, + [265048] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(6256), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + STATE(6135), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK, + [265078] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + STATE(6219), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6217), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK, + [265108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(11213), 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, - ACTIONS(8088), 1, - anon_sym_COLON_COLON, - ACTIONS(9649), 1, - sym_identifier, - STATE(1784), 1, - sym_template_type, - STATE(5195), 1, - sym_enumerator_list, - STATE(6724), 1, - sym__scope_resolution, - STATE(4926), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, - sym_decltype, - sym_dependent_type_identifier, - [264980] = 6, + anon_sym_EQ, + anon_sym_try, + [265128] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(7494), 1, + anon_sym_requires, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + STATE(6120), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 3, anon_sym_LPAREN2, - ACTIONS(10752), 1, + anon_sym_COLON, anon_sym_LBRACK, - STATE(3077), 1, + [265158] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + STATE(3045), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10760), 8, + ACTIONS(10813), 8, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACK_LBRACK, @@ -513791,457 +515439,447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [265006] = 11, + [265184] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(6801), 1, + ACTIONS(6826), 1, anon_sym_LBRACE, - ACTIONS(9580), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(9656), 1, + ACTIONS(9677), 1, sym_identifier, - STATE(2673), 1, + STATE(2671), 1, sym_template_type, - STATE(2841), 1, + STATE(2884), 1, sym_enumerator_list, - STATE(6713), 1, + STATE(6703), 1, sym__scope_resolution, - STATE(2654), 2, + STATE(2691), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [265042] = 6, + [265220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(8014), 6, + anon_sym_AMP, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(8016), 6, anon_sym_LPAREN2, - ACTIONS(10752), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK, - STATE(3077), 1, - sym_parameter_list, - STATE(5959), 1, - sym__function_declarator_seq, - ACTIONS(10750), 8, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + [265240] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7398), 1, + anon_sym_DASH_GT, + ACTIONS(9356), 1, + anon_sym_requires, + STATE(6661), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - anon_sym_try, - anon_sym_requires, - [265068] = 11, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [265270] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7027), 1, + ACTIONS(6761), 1, anon_sym_LBRACE, - ACTIONS(9641), 1, - sym_identifier, - ACTIONS(9660), 1, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - STATE(1922), 1, + ACTIONS(9675), 1, + sym_identifier, + STATE(2611), 1, sym_template_type, - STATE(2961), 1, + STATE(2647), 1, sym_enumerator_list, - STATE(6706), 1, + STATE(6744), 1, sym__scope_resolution, - STATE(4115), 2, + STATE(4110), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [265104] = 4, + [265306] = 8, 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, + ACTIONS(7494), 1, anon_sym_requires, - [265126] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(9798), 1, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + STATE(6123), 1, + sym_trailing_return_type, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6122), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 3, anon_sym_LPAREN2, - ACTIONS(10071), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(10123), 1, - anon_sym_try, - STATE(759), 1, - sym_compound_statement, - STATE(760), 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, - [265161] = 9, - ACTIONS(3), 1, - sym_comment, - 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, + [265336] = 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, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(9657), 1, sym_identifier, - ACTIONS(11209), 1, - anon_sym_virtual, - STATE(1922), 1, + ACTIONS(9659), 1, + anon_sym_COLON_COLON, + STATE(1946), 1, sym_template_type, - STATE(6697), 1, + STATE(2946), 1, + sym_enumerator_list, + STATE(6741), 1, sym__scope_resolution, - STATE(7118), 2, + STATE(4123), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [265225] = 10, + [265372] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, - anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(7930), 1, + anon_sym_DASH_GT, + ACTIONS(9746), 1, + anon_sym_requires, + STATE(6105), 1, + sym_trailing_return_type, + ACTIONS(9743), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6119), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 3, anon_sym_LPAREN2, - ACTIONS(11211), 1, - anon_sym_COMMA, - ACTIONS(11215), 1, - anon_sym___attribute, - STATE(1942), 1, - sym_parameter_list, - 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, - [265258] = 6, + anon_sym_COLON, + anon_sym_LBRACK, + [265402] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(11217), 1, + sym_identifier, + ACTIONS(11220), 1, + aux_sym_preproc_if_token1, + ACTIONS(11226), 1, + sym_preproc_directive, + ACTIONS(11229), 1, + anon_sym_RBRACE, + ACTIONS(11223), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(8387), 2, + sym_preproc_call, + sym_enumerator, + STATE(6539), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [265431] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10823), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3086), 1, + STATE(3283), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10750), 7, + ACTIONS(10821), 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, - [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, + [265458] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10123), 1, - anon_sym_try, - STATE(713), 1, - sym_compound_statement, - STATE(715), 1, - sym_try_statement, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [265347] = 6, + ACTIONS(10923), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [265487] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10765), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3095), 1, + STATE(3283), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10784), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10761), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [265372] = 9, + [265514] = 7, 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(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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10773), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3283), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10771), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [265541] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11227), 1, + ACTIONS(11231), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8207), 1, + STATE(8510), 1, sym_qualified_identifier, - ACTIONS(11229), 2, + ACTIONS(11233), 2, anon_sym_enum, anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [265434] = 11, + [265572] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11235), 1, + aux_sym_preproc_if_token2, + ACTIONS(11237), 1, + aux_sym_preproc_else_token1, + ACTIONS(11239), 1, + aux_sym_preproc_elif_token1, + STATE(6590), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8305), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [265603] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10980), 1, + aux_sym_preproc_if_token2, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11237), 1, + aux_sym_preproc_else_token1, + ACTIONS(11239), 1, + aux_sym_preproc_elif_token1, + STATE(6563), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8139), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [265634] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(297), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + STATE(3037), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10931), 4, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9798), 1, + anon_sym_try, + [265663] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10081), 1, + ACTIONS(10149), 1, anon_sym_try, - STATE(357), 1, + STATE(788), 1, sym_compound_statement, - STATE(358), 1, + STATE(789), 1, sym_try_statement, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [265469] = 9, + [265698] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11231), 1, + ACTIONS(11243), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8251), 1, + STATE(8547), 1, sym_qualified_identifier, - ACTIONS(11233), 2, + ACTIONS(11245), 2, anon_sym_enum, anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [265500] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(9837), 1, - anon_sym_try, - ACTIONS(10071), 1, - anon_sym_LBRACK, - ACTIONS(10674), 1, - anon_sym_LBRACE, - STATE(1807), 1, - sym_compound_statement, - STATE(1809), 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, - [265535] = 6, + [265729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(4330), 11, anon_sym_LPAREN2, - ACTIONS(11108), 1, - anon_sym_LBRACK, - STATE(3086), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10801), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, + anon_sym_LT, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265560] = 9, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [265746] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11085), 1, + ACTIONS(10956), 1, sym_identifier, - ACTIONS(11203), 1, - aux_sym_preproc_else_token1, - ACTIONS(11205), 1, - aux_sym_preproc_elif_token1, - ACTIONS(11235), 1, + ACTIONS(11247), 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(10909), 1, - sym_identifier, - ACTIONS(11219), 1, + ACTIONS(11249), 1, aux_sym_preproc_else_token1, - ACTIONS(11221), 1, + ACTIONS(11251), 1, aux_sym_preproc_elif_token1, - ACTIONS(11237), 1, - aux_sym_preproc_if_token2, - ACTIONS(11223), 2, + ACTIONS(11253), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(6771), 2, + STATE(6649), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8436), 3, + STATE(8143), 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, + [265775] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3086), 1, + STATE(3058), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 7, + ACTIONS(10825), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -514249,920 +515887,1058 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [265645] = 4, + [265800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, - anon_sym_LBRACK, - ACTIONS(11239), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(6250), 8, + ACTIONS(9818), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_or, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3058), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10829), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, anon_sym_requires, - [265666] = 6, + [265825] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3095), 1, + ACTIONS(10194), 1, + anon_sym_try, + STATE(695), 1, + sym_compound_statement, + STATE(698), 1, + sym_try_statement, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10813), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [265860] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9845), 1, anon_sym_try, - anon_sym_requires, - [265691] = 6, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10689), 1, + anon_sym_LBRACE, + STATE(2039), 1, + sym_compound_statement, + STATE(2040), 1, + sym_try_statement, + STATE(3037), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [265895] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3095), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10817), 7, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10913), 4, + anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [265716] = 9, - ACTIONS(3), 1, - sym_comment, - 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, + [265924] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9837), 1, + ACTIONS(9845), 1, anon_sym_try, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10674), 1, + ACTIONS(10689), 1, anon_sym_LBRACE, - STATE(1836), 1, + STATE(2046), 1, sym_compound_statement, - STATE(1841), 1, + STATE(2047), 1, sym_try_statement, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [265811] = 6, + [265959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(11255), 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, + [265976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11257), 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, + [265993] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3086), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10760), 7, - anon_sym_COMMA, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10942), 4, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [265836] = 6, + anon_sym_try, + [266022] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10149), 1, + anon_sym_try, + STATE(804), 1, + sym_compound_statement, + STATE(805), 1, + sym_try_statement, + STATE(3037), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [266057] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3095), 1, + STATE(3058), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10750), 7, + ACTIONS(10767), 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, - [265861] = 9, + [266082] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11085), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11203), 1, + ACTIONS(11237), 1, aux_sym_preproc_else_token1, - ACTIONS(11205), 1, + ACTIONS(11239), 1, aux_sym_preproc_elif_token1, - ACTIONS(11243), 1, + ACTIONS(11259), 1, aux_sym_preproc_if_token2, - STATE(6821), 1, + STATE(6840), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8369), 1, + STATE(8207), 1, sym_enumerator, - ACTIONS(11207), 2, + ACTIONS(11241), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8515), 3, + STATE(8359), 3, sym_preproc_else_in_enumerator_list, sym_preproc_elif_in_enumerator_list, sym_preproc_elifdef_in_enumerator_list, - [265892] = 8, + [266113] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10909), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 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(11261), 1, + anon_sym_virtual, + STATE(1946), 1, + sym_template_type, + STATE(6757), 1, + sym__scope_resolution, + STATE(7180), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [266146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3086), 1, + STATE(3073), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10831), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10817), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [265946] = 11, + [266171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(4996), 2, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(10138), 1, - anon_sym_try, - STATE(700), 1, - sym_compound_statement, - STATE(701), 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, - [265981] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(4998), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10071), 1, - anon_sym_LBRACK, - 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, - [266010] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, + anon_sym___attribute__, + anon_sym_COLON, 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(2021), 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, - [266045] = 6, + anon_sym_EQ, + anon_sym_try, + [266190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3086), 1, + STATE(3073), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10813), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10821), 7, anon_sym_SEMI, anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [266070] = 9, + [266215] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(11247), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(5926), 1, + ACTIONS(11263), 1, + anon_sym_virtual, + STATE(1946), 1, + sym_template_type, + STATE(6757), 1, sym__scope_resolution, - STATE(8276), 1, - sym_qualified_identifier, - ACTIONS(11249), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8569), 3, + STATE(7529), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [266101] = 2, + [266248] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4322), 11, + ACTIONS(9818), 1, anon_sym_LPAREN2, - anon_sym_LT, + ACTIONS(10827), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3283), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10825), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [266275] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(297), 1, 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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10063), 1, + anon_sym_try, + STATE(334), 1, + sym_compound_statement, + STATE(335), 1, + sym_try_statement, + STATE(3037), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [266310] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(11251), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(5926), 1, + ACTIONS(11265), 1, + anon_sym_virtual, + STATE(1946), 1, + sym_template_type, + STATE(6757), 1, sym__scope_resolution, - STATE(8743), 1, - sym_qualified_identifier, - ACTIONS(11253), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8569), 3, + STATE(7621), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [266149] = 9, + [266343] = 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, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11128), 1, + ACTIONS(11267), 1, sym_identifier, - STATE(5956), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(7916), 2, - sym_identifier_parameter_pack_expansion, + STATE(8658), 1, sym_qualified_identifier, - STATE(8569), 3, + ACTIONS(11269), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [266180] = 9, + [266374] = 7, 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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10831), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3283), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10829), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [266401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10937), 1, - aux_sym_preproc_if_token2, - ACTIONS(11085), 1, + ACTIONS(10956), 1, sym_identifier, - ACTIONS(11203), 1, + ACTIONS(11249), 1, aux_sym_preproc_else_token1, - ACTIONS(11205), 1, + ACTIONS(11251), 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, + ACTIONS(11271), 1, + aux_sym_preproc_if_token2, + ACTIONS(11253), 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, + STATE(6835), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8767), 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, + [266430] = 10, 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, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(10666), 1, - anon_sym_LBRACE, - STATE(2107), 1, - sym_compound_statement, - STATE(2112), 1, - sym_try_statement, - STATE(3044), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11273), 1, + anon_sym_COMMA, + ACTIONS(11277), 1, + anon_sym___attribute, + STATE(1994), 1, sym_parameter_list, - STATE(6203), 1, - sym__function_declarator_seq, - STATE(6081), 2, + STATE(7040), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(11275), 2, + anon_sym_SEMI, + anon_sym___attribute__, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266277] = 7, + [266463] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10786), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - STATE(3371), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10784), 6, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(9651), 1, + anon_sym_requires, + ACTIONS(9213), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [266304] = 9, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5951), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [266490] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11257), 1, + ACTIONS(11279), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8401), 1, + STATE(8777), 1, sym_qualified_identifier, - ACTIONS(11259), 2, + ACTIONS(11281), 2, anon_sym_enum, anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [266335] = 9, + [266521] = 7, 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(11261), 1, - sym_identifier, - STATE(5926), 1, - sym__scope_resolution, - STATE(8807), 1, - sym_qualified_identifier, - ACTIONS(11263), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [266366] = 2, + ACTIONS(9399), 1, + anon_sym_LBRACK, + ACTIONS(9714), 1, + anon_sym_requires, + ACTIONS(9401), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5898), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9388), 3, + anon_sym_LPAREN2, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [266548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11265), 11, + ACTIONS(9712), 1, + anon_sym_LBRACK, + ACTIONS(9836), 1, + anon_sym_requires, + ACTIONS(9725), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5946), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9701), 3, anon_sym_LPAREN2, - anon_sym_LT, + anon_sym_COLON, 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, - [266383] = 11, + [266575] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(9935), 1, + anon_sym_LBRACK, + ACTIONS(11109), 1, + anon_sym_requires, + ACTIONS(9937), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5945), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 3, + anon_sym_LPAREN2, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + [266602] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9826), 1, - anon_sym_try, - ACTIONS(10071), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - ACTIONS(10654), 1, - anon_sym_LBRACE, - STATE(2120), 1, - sym_compound_statement, - STATE(2122), 1, - sym_try_statement, - STATE(3044), 1, + STATE(3073), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6115), 1, sym__function_declarator_seq, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [266418] = 7, + ACTIONS(10761), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [266627] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9945), 1, + anon_sym_LBRACK, + ACTIONS(11283), 1, + anon_sym_requires, + ACTIONS(9947), 2, + anon_sym_final, + anon_sym_override, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5887), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9943), 3, anon_sym_LPAREN2, - ACTIONS(10815), 1, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [266654] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10819), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3371), 1, + STATE(3282), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10813), 6, + ACTIONS(10817), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [266445] = 7, + [266681] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10819), 1, + ACTIONS(10823), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3371), 1, + STATE(3282), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10817), 6, + ACTIONS(10821), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [266472] = 8, + [266708] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11267), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10639), 1, + anon_sym_COLON_COLON, + ACTIONS(11286), 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, + STATE(5973), 1, + sym__scope_resolution, + STATE(8596), 1, + sym_qualified_identifier, + ACTIONS(11288), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [266739] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11281), 1, + ACTIONS(11290), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8303), 1, + STATE(8331), 1, sym_qualified_identifier, - ACTIONS(11283), 2, + ACTIONS(11292), 2, anon_sym_enum, anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [266532] = 11, + [266770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3073), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10813), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [266795] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9826), 1, - anon_sym_try, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10654), 1, - anon_sym_LBRACE, - STATE(2206), 1, + ACTIONS(10194), 1, + anon_sym_try, + STATE(732), 1, sym_compound_statement, - STATE(2207), 1, + STATE(733), 1, sym_try_statement, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [266567] = 7, + [266830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10754), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3371), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10750), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [266594] = 7, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(10935), 4, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_try, + [266859] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9150), 1, - anon_sym_LBRACK, - 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_COLON, - anon_sym_LBRACK_LBRACK, - [266621] = 9, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11237), 1, + aux_sym_preproc_else_token1, + ACTIONS(11239), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11294), 1, + aux_sym_preproc_if_token2, + STATE(6840), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8816), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [266890] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11285), 1, + ACTIONS(11296), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8403), 1, + STATE(8833), 1, sym_qualified_identifier, - ACTIONS(11287), 2, + ACTIONS(11298), 2, anon_sym_enum, anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [266652] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9382), 1, - anon_sym_LBRACK, - 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, + [266921] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10909), 1, + ACTIONS(10956), 1, sym_identifier, - ACTIONS(11219), 1, + ACTIONS(11249), 1, aux_sym_preproc_else_token1, - ACTIONS(11221), 1, + ACTIONS(11251), 1, aux_sym_preproc_elif_token1, - ACTIONS(11289), 1, + ACTIONS(11300), 1, aux_sym_preproc_if_token2, - ACTIONS(11223), 2, + ACTIONS(11253), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(6549), 2, + STATE(6835), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8502), 3, + STATE(8823), 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, - [266708] = 10, + [266950] = 7, 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(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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10769), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3283), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10767), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [266977] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11293), 1, + ACTIONS(11302), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8649), 1, + STATE(8636), 1, sym_qualified_identifier, - ACTIONS(11295), 2, + ACTIONS(11304), 2, anon_sym_enum, anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [266772] = 9, + [267008] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10765), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3282), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10761), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [267035] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9853), 1, + anon_sym_try, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10660), 1, + anon_sym_LBRACE, + STATE(1742), 1, + sym_try_statement, + STATE(1782), 1, + sym_compound_statement, + STATE(3037), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [267070] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3058), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10817), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [267095] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6315), 1, + anon_sym_LBRACK, + ACTIONS(11306), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6317), 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, + [267116] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10819), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3283), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10817), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [267143] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11297), 1, + ACTIONS(11308), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8812), 1, + STATE(8606), 1, sym_qualified_identifier, - ACTIONS(11299), 2, + ACTIONS(11310), 2, anon_sym_enum, anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [266803] = 7, - ACTIONS(3), 1, - sym_comment, - 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_COLON, - anon_sym_LBRACK_LBRACK, - [266830] = 10, + [267174] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3915), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(11312), 1, sym_identifier, - ACTIONS(11301), 1, - anon_sym_virtual, - STATE(1922), 1, - sym_template_type, - STATE(6697), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(7267), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8318), 1, + sym_qualified_identifier, + ACTIONS(11314), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8381), 3, sym_decltype, + sym_template_type, sym_dependent_type_identifier, - [266863] = 7, + [267205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10786), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3378), 1, + STATE(3058), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10784), 6, + ACTIONS(10821), 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, - [266890] = 6, + [267230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3095), 1, + STATE(3073), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10801), 7, + ACTIONS(10825), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -515170,18 +516946,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [266915] = 6, + [267255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3095), 1, + STATE(3073), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 7, + ACTIONS(10829), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -515189,73 +516965,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [266940] = 7, + [267280] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10815), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3378), 1, + ACTIONS(10063), 1, + anon_sym_try, + STATE(358), 1, + sym_compound_statement, + STATE(359), 1, + sym_try_statement, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10813), 6, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [267315] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10639), 1, + anon_sym_COLON_COLON, + ACTIONS(11316), 1, + sym_identifier, + STATE(5973), 1, + sym__scope_resolution, + STATE(8430), 1, + sym_qualified_identifier, + ACTIONS(11318), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [267346] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9853), 1, + anon_sym_try, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10660), 1, + anon_sym_LBRACE, + STATE(1840), 1, + sym_compound_statement, + STATE(1841), 1, + sym_try_statement, + STATE(3037), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [267381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(4986), 9, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [266967] = 7, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [267400] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(11320), 1, + sym_identifier, + ACTIONS(11322), 1, + anon_sym_COLON, + ACTIONS(11324), 1, + sym_system_lib_string, + STATE(7428), 1, + sym_module_name, + STATE(7528), 1, + sym_module_partition, + STATE(7562), 1, + sym_string_literal, + ACTIONS(6874), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [267429] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10819), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3378), 1, + STATE(3058), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10817), 6, + ACTIONS(10761), 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, - [266994] = 2, + [267454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 11, + ACTIONS(4992), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(4994), 9, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_LT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, 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, - [267011] = 6, + anon_sym_EQ, + anon_sym_try, + [267473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3095), 1, + STATE(3073), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 7, + ACTIONS(10767), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -515263,52 +517126,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [267036] = 7, + [267498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10754), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3378), 1, + STATE(3058), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10750), 6, + ACTIONS(10771), 7, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [267063] = 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(10831), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [267088] = 3, + [267523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 2, + ACTIONS(4988), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5008), 9, + ACTIONS(4990), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -515318,466 +517161,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [267107] = 9, + [267542] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11305), 1, + ACTIONS(11326), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8072), 1, + STATE(8078), 1, sym_qualified_identifier, - ACTIONS(11307), 2, + ACTIONS(11328), 2, anon_sym_enum, anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [267138] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7924), 1, - anon_sym_requires, - ACTIONS(9150), 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(5927), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9139), 3, - anon_sym_LPAREN2, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [267165] = 11, + [267573] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(297), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10081), 1, + ACTIONS(10188), 1, anon_sym_try, - STATE(333), 1, + STATE(485), 1, sym_compound_statement, - STATE(334), 1, + STATE(487), 1, sym_try_statement, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [267200] = 9, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [267258] = 7, + [267608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10803), 1, + ACTIONS(10773), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3371), 1, + STATE(3282), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10801), 6, + ACTIONS(10771), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [267285] = 7, + [267635] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7924), 1, - anon_sym_requires, - ACTIONS(9382), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10639), 1, + anon_sym_COLON_COLON, + ACTIONS(11330), 1, + sym_identifier, + STATE(5973), 1, + sym__scope_resolution, + STATE(8370), 1, + sym_qualified_identifier, + ACTIONS(11332), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [267666] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, anon_sym_LBRACK, - ACTIONS(6037), 2, + STATE(3073), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10771), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, 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_try, + anon_sym_requires, + [267691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11334), 11, anon_sym_LPAREN2, - anon_sym_COLON, + anon_sym_LT, anon_sym_LBRACK_LBRACK, - [267312] = 7, + 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, + [267708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10807), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3371), 1, + STATE(3058), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 6, + ACTIONS(10813), 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, - [267339] = 7, + [267733] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7924), 1, + ACTIONS(10956), 1, + sym_identifier, + ACTIONS(11249), 1, + aux_sym_preproc_else_token1, + ACTIONS(11251), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11336), 1, + aux_sym_preproc_if_token2, + ACTIONS(11253), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6651), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8900), 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, + [267762] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(9700), 1, + ACTIONS(9183), 1, anon_sym_LBRACK, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5924), 2, + STATE(5951), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9689), 3, + ACTIONS(9172), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [267366] = 7, + [267789] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10762), 1, + ACTIONS(10815), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3371), 1, + STATE(3283), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 6, + ACTIONS(10813), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [267393] = 7, + [267816] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7924), 1, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(9947), 1, + ACTIONS(9399), 1, anon_sym_LBRACK, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5874), 2, + STATE(5898), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 3, + ACTIONS(9388), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [267420] = 7, + [267843] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7924), 1, + ACTIONS(7934), 1, anon_sym_requires, - ACTIONS(9951), 1, + ACTIONS(9712), 1, anon_sym_LBRACK, - ACTIONS(6037), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5912), 2, + STATE(5946), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9949), 3, + ACTIONS(9701), 3, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [267447] = 7, + [267870] = 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(3371), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10831), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + ACTIONS(7934), 1, anon_sym_requires, - [267474] = 9, - ACTIONS(3), 1, - sym_comment, - 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_GT2, - [267505] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9951), 1, + ACTIONS(9935), 1, anon_sym_LBRACK, - ACTIONS(11311), 1, - anon_sym_requires, - ACTIONS(9963), 2, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - STATE(5593), 2, + STATE(5651), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5912), 2, + STATE(5945), 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, - anon_sym_LBRACK, - ACTIONS(5012), 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, - [267551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4998), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(5000), 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, - [267570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5014), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(5016), 9, - anon_sym_COMMA, + ACTIONS(9933), 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, - [267589] = 7, + [267897] = 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(3378), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10801), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, + ACTIONS(7934), 1, anon_sym_requires, - [267616] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10807), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(9945), 1, anon_sym_LBRACK, - STATE(3378), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10805), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(6026), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [267643] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, + STATE(5651), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5887), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9943), 3, anon_sym_LPAREN2, - ACTIONS(10762), 1, - anon_sym___attribute, - ACTIONS(11108), 1, - anon_sym_LBRACK, - STATE(3378), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10760), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [267670] = 7, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [267924] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10833), 1, + ACTIONS(10815), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3378), 1, + STATE(3282), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10831), 6, + ACTIONS(10813), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [267697] = 2, + [267951] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11314), 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, - [267714] = 3, + ACTIONS(10958), 1, + aux_sym_preproc_if_token2, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11237), 1, + aux_sym_preproc_else_token1, + ACTIONS(11239), 1, + aux_sym_preproc_elif_token1, + STATE(6650), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8865), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [267982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5002), 2, + ACTIONS(5022), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(5004), 9, + ACTIONS(5024), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -515787,13 +517501,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [267733] = 3, + [268001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4976), 2, + ACTIONS(5014), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4978), 9, + ACTIONS(5016), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -515803,13 +517517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [267752] = 3, + [268020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4980), 2, + ACTIONS(5018), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(4982), 9, + ACTIONS(5020), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -515819,138 +517533,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [267771] = 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(10071), 1, - anon_sym_LBRACK, - 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(6203), 1, - sym__function_declarator_seq, - 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, + [268039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6298), 1, + ACTIONS(6261), 1, anon_sym_LBRACK, - ACTIONS(11239), 2, + ACTIONS(11306), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11318), 2, + ACTIONS(11338), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(6300), 6, + ACTIONS(6263), 6, anon_sym_LPAREN2, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [267860] = 8, + [268062] = 11, ACTIONS(3), 1, sym_comment, - 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9830), 1, + anon_sym_try, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10685), 1, + anon_sym_LBRACE, + STATE(2148), 1, + sym_compound_statement, + STATE(2149), 1, + sym_try_statement, + STATE(3037), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [268097] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(4589), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10224), 1, anon_sym_COLON_COLON, - ACTIONS(11326), 1, + ACTIONS(11152), 1, sym_identifier, - STATE(5926), 1, + STATE(5972), 1, sym__scope_resolution, - STATE(8566), 1, + STATE(7806), 2, + sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - ACTIONS(11328), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 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(10071), 1, - anon_sym_LBRACK, - 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(10897), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [267949] = 2, + [268128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11330), 11, + ACTIONS(11340), 11, anon_sym_LPAREN2, anon_sym_LT, anon_sym_LBRACK_LBRACK, @@ -515962,703 +517612,691 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - [267966] = 8, + [268145] = 7, ACTIONS(3), 1, sym_comment, - 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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10827), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3282), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10825), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [268172] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10831), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3086), 1, + STATE(3282), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10784), 7, + ACTIONS(10829), 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, - [268020] = 10, + [268199] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9830), 1, + anon_sym_try, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10685), 1, + anon_sym_LBRACE, + STATE(2160), 1, + sym_compound_statement, + STATE(2161), 1, + sym_try_statement, + STATE(3037), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [268234] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(11342), 1, + anon_sym_COLON, + STATE(2472), 1, + sym_attribute_specifier, + STATE(3561), 1, + sym__enum_base_clause, + STATE(3682), 1, + sym_enumerator_list, + ACTIONS(6348), 4, + anon_sym_COMMA, + sym_auto, 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, + anon_sym_GT2, + [268265] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10769), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3086), 1, + STATE(3282), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10817), 7, + ACTIONS(10767), 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, - [268078] = 9, + [268292] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(6951), 1, + anon_sym_LBRACE, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(11342), 1, + anon_sym_COLON, + STATE(2569), 1, + sym_attribute_specifier, + STATE(3562), 1, + sym__enum_base_clause, + STATE(3686), 1, + sym_enumerator_list, + ACTIONS(6354), 4, + anon_sym_COMMA, + sym_auto, + anon_sym_decltype, + anon_sym_GT2, + [268323] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11336), 1, + ACTIONS(11344), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8829), 1, + STATE(8928), 1, sym_qualified_identifier, - ACTIONS(11338), 2, + ACTIONS(11346), 2, anon_sym_enum, anon_sym_namespace, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [268109] = 8, + [268354] = 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, - 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(10933), 4, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_try, - [268138] = 9, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11237), 1, + aux_sym_preproc_else_token1, + ACTIONS(11239), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11348), 1, + aux_sym_preproc_if_token2, + STATE(6840), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8176), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [268385] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(11340), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(5926), 1, + ACTIONS(11350), 1, + anon_sym_virtual, + STATE(1946), 1, + sym_template_type, + STATE(6757), 1, sym__scope_resolution, - STATE(8254), 1, - sym_qualified_identifier, - ACTIONS(11342), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(8569), 3, + STATE(7174), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - [268169] = 11, + [268418] = 9, 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(10071), 1, - anon_sym_LBRACK, - 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(6203), 1, - sym__function_declarator_seq, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [268204] = 11, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11237), 1, + aux_sym_preproc_else_token1, + ACTIONS(11239), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11352), 1, + aux_sym_preproc_if_token2, + STATE(6645), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8446), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [268449] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10138), 1, + ACTIONS(10188), 1, anon_sym_try, - STATE(688), 1, + STATE(535), 1, sym_compound_statement, - STATE(689), 1, + STATE(536), 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, - [268239] = 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(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 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, + [268484] = 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(3044), 1, - sym_parameter_list, - STATE(6203), 1, - sym__function_declarator_seq, - 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(10956), 1, + sym_identifier, + ACTIONS(11249), 1, + aux_sym_preproc_else_token1, + ACTIONS(11251), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11354), 1, + aux_sym_preproc_if_token2, + ACTIONS(11253), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(6835), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8410), 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, + [268513] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10909), 1, + ACTIONS(11101), 1, sym_identifier, - ACTIONS(11219), 1, + ACTIONS(11237), 1, aux_sym_preproc_else_token1, - ACTIONS(11221), 1, + ACTIONS(11239), 1, aux_sym_preproc_elif_token1, - ACTIONS(11344), 1, + ACTIONS(11356), 1, aux_sym_preproc_if_token2, - ACTIONS(11223), 2, + STATE(6840), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + ACTIONS(11241), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8244), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [268544] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10956), 1, + sym_identifier, + ACTIONS(11249), 1, + aux_sym_preproc_else_token1, + ACTIONS(11251), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11358), 1, + aux_sym_preproc_if_token2, + ACTIONS(11253), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(6771), 2, + STATE(6835), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(8447), 3, + STATE(8270), 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, + [268573] = 8, 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(10817), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [268350] = 6, + ACTIONS(11320), 1, + sym_identifier, + ACTIONS(11322), 1, + anon_sym_COLON, + ACTIONS(11360), 1, + sym_system_lib_string, + STATE(7601), 1, + sym_string_literal, + STATE(7602), 1, + sym_module_name, + STATE(7603), 1, + sym_module_partition, + ACTIONS(6874), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [268602] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3255), 1, + ACTIONS(11362), 1, + anon_sym_EQ, + STATE(3357), 1, sym_parameter_list, - STATE(5959), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10813), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [268374] = 6, + STATE(8618), 1, + sym_initializer_list, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [268634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3255), 1, + STATE(3165), 1, sym_parameter_list, - STATE(5959), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10750), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10829), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [268398] = 6, + [268658] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3255), 1, + STATE(3343), 1, sym_parameter_list, - STATE(5959), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10831), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [268422] = 9, + ACTIONS(11022), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6890), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [268688] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3915), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, - sym_identifier, - 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, - [268452] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(11346), 1, + ACTIONS(9665), 1, sym_identifier, - ACTIONS(11348), 1, - anon_sym_COLON_COLON, - STATE(2775), 1, + STATE(1946), 1, sym_template_type, - STATE(6687), 1, + STATE(6757), 1, sym__scope_resolution, - STATE(2780), 2, + STATE(7063), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [268482] = 10, + [268718] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(3623), 1, - anon_sym_LBRACE, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - ACTIONS(11350), 1, - anon_sym_EQ, - STATE(3394), 1, + STATE(3165), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6115), 1, sym__function_declarator_seq, - STATE(8487), 1, - sym_initializer_list, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [268514] = 5, + ACTIONS(10771), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [268742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11356), 1, + ACTIONS(11368), 1, anon_sym_delete, - ACTIONS(11358), 1, + ACTIONS(11370), 1, anon_sym_new, - ACTIONS(11354), 3, + ACTIONS(11366), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11352), 5, + ACTIONS(11364), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [268536] = 5, + [268764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11360), 1, - anon_sym_delete, - ACTIONS(11362), 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, - [268558] = 6, + ACTIONS(10758), 1, + anon_sym_requires, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6122), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9933), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [268788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11366), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(7060), 1, - sym_gnu_asm_output_operand, - STATE(8394), 1, - sym_string_literal, - ACTIONS(11364), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(119), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [268582] = 6, + STATE(3165), 1, + sym_parameter_list, + STATE(6115), 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, + [268812] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10861), 1, + ACTIONS(9470), 1, anon_sym_requires, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6186), 2, + STATE(6217), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9945), 3, + ACTIONS(9388), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [268606] = 5, + [268836] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11368), 1, - anon_sym_delete, - ACTIONS(11370), 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, - [268628] = 8, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10823), 1, + anon_sym___attribute, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3100), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10821), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [268862] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, ACTIONS(11374), 1, anon_sym___attribute, - STATE(1942), 1, + STATE(1994), 1, sym_parameter_list, - STATE(6165), 2, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, ACTIONS(11372), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [268656] = 5, + [268890] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11376), 1, anon_sym_delete, ACTIONS(11378), 1, anon_sym_new, - ACTIONS(11354), 3, + ACTIONS(11366), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11352), 5, + ACTIONS(11364), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [268678] = 6, + [268912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9491), 1, + ACTIONS(11378), 1, + anon_sym_new, + ACTIONS(11380), 1, + anon_sym_delete, + ACTIONS(11366), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11364), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [268934] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3165), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10821), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [268958] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10888), 1, anon_sym_requires, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6132), 2, + STATE(6125), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9371), 3, + ACTIONS(9943), 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, + [268982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10872), 1, + ACTIONS(9746), 1, anon_sym_requires, - ACTIONS(7359), 2, + ACTIONS(7472), 2, anon_sym_final, anon_sym_override, - STATE(6017), 2, + STATE(5991), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6190), 2, + STATE(6119), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(9949), 3, + ACTIONS(9701), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [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(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10762), 1, - anon_sym___attribute, - ACTIONS(11108), 1, - anon_sym_LBRACK, - 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, + [269006] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11358), 1, - anon_sym_new, - ACTIONS(11380), 1, + ACTIONS(11382), 1, anon_sym_delete, - ACTIONS(11354), 3, + ACTIONS(11384), 1, + anon_sym_new, + ACTIONS(11366), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11352), 5, + ACTIONS(11364), 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, + [269028] = 5, 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(11386), 1, + anon_sym_delete, + ACTIONS(11388), 1, + anon_sym_new, + ACTIONS(11366), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11364), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [269050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11382), 1, + ACTIONS(11390), 1, anon_sym_delete, - ACTIONS(11384), 1, + ACTIONS(11392), 1, anon_sym_new, - ACTIONS(11354), 3, + ACTIONS(11366), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11352), 5, + ACTIONS(11364), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [268908] = 6, + [269072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11388), 1, + ACTIONS(11396), 1, anon_sym_LBRACK, - STATE(7119), 1, + STATE(7151), 1, sym_gnu_asm_input_operand, - STATE(8380), 1, + STATE(8133), 1, sym_string_literal, - ACTIONS(11386), 2, + ACTIONS(11394), 2, anon_sym_RPAREN, anon_sym_COLON, ACTIONS(119), 5, @@ -516667,25602 +518305,25838 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [268932] = 9, + [269096] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3276), 1, + STATE(3165), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(11051), 2, + ACTIONS(10761), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_final, + anon_sym_override, 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, + [269120] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10807), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3109), 1, + STATE(3281), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 5, + ACTIONS(11022), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, anon_sym_GT2, - [269034] = 5, + STATE(6890), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [269150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11392), 1, + ACTIONS(11398), 1, anon_sym_delete, - ACTIONS(11394), 1, + ACTIONS(11400), 1, anon_sym_new, - ACTIONS(11354), 3, + ACTIONS(11366), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11352), 5, + ACTIONS(11364), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [269056] = 5, + [269172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, - anon_sym_delete, - ACTIONS(11398), 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, - [269078] = 6, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + STATE(3359), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10813), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9366), 1, - anon_sym_requires, - ACTIONS(7359), 2, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10763), 1, + anon_sym_LBRACK, + STATE(3359), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10817), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, 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), 3, + anon_sym_requires, + [269220] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(10763), 1, anon_sym_LBRACK, - [269102] = 5, + STATE(3359), 1, + sym_parameter_list, + STATE(5939), 1, + sym__function_declarator_seq, + ACTIONS(10821), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11400), 1, - anon_sym_delete, - ACTIONS(11402), 1, - anon_sym_new, - ACTIONS(11354), 3, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(11352), 5, - anon_sym___based, + ACTIONS(9665), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [269124] = 6, + STATE(1946), 1, + sym_template_type, + STATE(6757), 1, + sym__scope_resolution, + STATE(7707), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [269274] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3198), 1, + STATE(3359), 1, sym_parameter_list, - STATE(6153), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10784), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10825), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [269148] = 6, + [269298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3255), 1, + STATE(3359), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10784), 6, + ACTIONS(10829), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_requires, - [269172] = 6, + [269322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3198), 1, + STATE(3359), 1, sym_parameter_list, - STATE(6153), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10813), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10761), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [269196] = 6, + [269346] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3198), 1, + STATE(3359), 1, sym_parameter_list, - STATE(6153), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10817), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10767), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [269220] = 6, + [269370] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(11402), 1, + sym_identifier, + ACTIONS(11404), 1, + anon_sym_COLON_COLON, + STATE(2776), 1, + sym_template_type, + STATE(6724), 1, + sym__scope_resolution, + STATE(2769), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [269400] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3198), 1, + STATE(3359), 1, sym_parameter_list, - STATE(6153), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10750), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10771), 6, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [269244] = 6, + [269424] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9730), 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(6133), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(9689), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(11408), 1, anon_sym_LBRACK, - [269268] = 9, + STATE(7192), 1, + sym_gnu_asm_output_operand, + STATE(8364), 1, + sym_string_literal, + ACTIONS(11406), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(119), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [269448] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(3915), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(9647), 1, + ACTIONS(9665), 1, sym_identifier, - STATE(1922), 1, + STATE(1946), 1, sym_template_type, - STATE(6697), 1, + STATE(6757), 1, sym__scope_resolution, - STATE(7591), 2, + STATE(7529), 2, sym__class_name, sym_qualified_type_identifier, - STATE(8569), 2, + STATE(8381), 2, sym_decltype, sym_dependent_type_identifier, - [269298] = 6, + [269478] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10819), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3198), 1, + STATE(3100), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10801), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(10817), 5, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - [269322] = 6, + [269504] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10765), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3198), 1, + STATE(3100), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(10761), 5, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - [269346] = 6, + [269530] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10773), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3198), 1, + STATE(3100), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(10771), 5, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, anon_sym_GT2, + [269556] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9356), 1, anon_sym_requires, - [269370] = 5, + ACTIONS(7472), 2, + anon_sym_final, + anon_sym_override, + STATE(5991), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6133), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(9172), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [269580] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11358), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(3923), 1, + anon_sym_COLON_COLON, + ACTIONS(9665), 1, + sym_identifier, + STATE(1946), 1, + sym_template_type, + STATE(6757), 1, + sym__scope_resolution, + STATE(7174), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8381), 2, + sym_decltype, + sym_dependent_type_identifier, + [269610] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11378), 1, anon_sym_new, - ACTIONS(11404), 1, + ACTIONS(11410), 1, anon_sym_delete, - ACTIONS(11354), 3, + ACTIONS(11366), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11352), 5, + ACTIONS(11364), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [269392] = 6, + [269632] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(11412), 1, + anon_sym_delete, + ACTIONS(11414), 1, + anon_sym_new, + ACTIONS(11366), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11364), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [269654] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3198), 1, + STATE(3165), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10831), 6, + ACTIONS(10767), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [269416] = 5, + [269678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11384), 1, - anon_sym_new, - ACTIONS(11406), 1, + ACTIONS(11416), 1, anon_sym_delete, - ACTIONS(11354), 3, + ACTIONS(11418), 1, + anon_sym_new, + ACTIONS(11366), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11352), 5, + ACTIONS(11364), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [269438] = 6, + [269700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(11420), 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, + [269716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3255), 1, + STATE(3165), 1, sym_parameter_list, - STATE(5959), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10801), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10813), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [269462] = 5, + [269740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11378), 1, + ACTIONS(11384), 1, anon_sym_new, - ACTIONS(11408), 1, + ACTIONS(11422), 1, anon_sym_delete, - ACTIONS(11354), 3, + ACTIONS(11366), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11352), 5, + ACTIONS(11364), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [269484] = 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(10805), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [269508] = 5, + [269762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11410), 1, + ACTIONS(11424), 1, anon_sym_delete, - ACTIONS(11412), 1, + ACTIONS(11426), 1, anon_sym_new, - ACTIONS(11354), 3, + ACTIONS(11366), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11352), 5, + ACTIONS(11364), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [269530] = 6, + [269784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3255), 1, + STATE(3165), 1, sym_parameter_list, - STATE(5959), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10825), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [269554] = 10, + [269808] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(11348), 1, + ACTIONS(11392), 1, + anon_sym_new, + ACTIONS(11428), 1, + anon_sym_delete, + ACTIONS(11366), 3, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11414), 1, + ACTIONS(11364), 5, + anon_sym___based, sym_identifier, - ACTIONS(11416), 1, + anon_sym_decltype, 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, + anon_sym_operator, + [269830] = 10, 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, - 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(5232), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11422), 1, + ACTIONS(9444), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, - anon_sym_inline, - ACTIONS(11426), 1, + ACTIONS(11430), 1, sym_identifier, - 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, + ACTIONS(11432), 1, anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10582), 1, - anon_sym_COLON_COLON, - ACTIONS(11428), 1, - sym_identifier, - STATE(5926), 1, + STATE(2621), 1, + sym_dependent_type_identifier, + STATE(2666), 1, + sym_template_type, + STATE(2731), 1, + sym_qualified_type_identifier, + STATE(6703), 1, sym__scope_resolution, - STATE(8095), 1, - sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 1, sym_decltype, - 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, + [269861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3515), 1, + STATE(3528), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10784), 5, + ACTIONS(10817), 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(9612), 1, - anon_sym_COLON_COLON, - ACTIONS(11432), 1, - sym_identifier, - ACTIONS(11434), 1, - anon_sym_template, - STATE(2581), 1, - sym_template_type, - STATE(2582), 1, - sym_dependent_type_identifier, - STATE(2644), 1, - sym_qualified_type_identifier, - STATE(6694), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_decltype, - [269786] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(9530), 1, - anon_sym_COLON_COLON, - ACTIONS(11436), 1, - sym_identifier, - ACTIONS(11438), 1, - anon_sym_template, - STATE(1944), 1, - sym_template_type, - STATE(1955), 1, - sym_dependent_type_identifier, - STATE(2123), 1, - sym_qualified_type_identifier, - STATE(6695), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_decltype, - [269817] = 8, + [269884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3394), 1, + STATE(3528), 1, sym_parameter_list, - STATE(6203), 1, + STATE(5939), 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(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(3915), 1, - anon_sym_COLON_COLON, - ACTIONS(11440), 1, - sym_identifier, - STATE(1919), 1, - sym_template_type, - STATE(1930), 1, - sym_dependent_type_identifier, - STATE(1932), 1, - sym_qualified_type_identifier, - STATE(6697), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_decltype, - [269875] = 8, + ACTIONS(10821), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3394), 1, + STATE(3528), 1, sym_parameter_list, - STATE(6203), 1, + STATE(5939), 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(1978), 1, - anon_sym_decltype, - ACTIONS(9437), 1, - anon_sym_COLON_COLON, - ACTIONS(11442), 1, - sym_identifier, - ACTIONS(11444), 1, - anon_sym_template, - STATE(1805), 1, - sym_template_type, - STATE(1806), 1, - sym_dependent_type_identifier, - STATE(1865), 1, - sym_qualified_type_identifier, - STATE(6699), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_decltype, - [269933] = 6, + ACTIONS(10825), 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3515), 1, + STATE(3528), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10801), 5, + ACTIONS(10829), 5, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [269956] = 6, + [269953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3515), 1, + STATE(3528), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10805), 5, + ACTIONS(10761), 5, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [269979] = 6, + [269976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3515), 1, + STATE(3528), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10813), 5, + ACTIONS(10767), 5, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [270002] = 6, + [269999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10752), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3515), 1, + STATE(3528), 1, sym_parameter_list, - STATE(5959), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10817), 5, + ACTIONS(10771), 5, anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [270025] = 8, + [270022] = 10, 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(11297), 1, + ACTIONS(5248), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11434), 1, sym_identifier, - STATE(5926), 1, - sym__scope_resolution, - STATE(8812), 1, - sym_qualified_identifier, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [270052] = 10, + ACTIONS(11436), 1, + anon_sym_COLON_COLON, + ACTIONS(11438), 1, + anon_sym_inline, + STATE(574), 1, + sym_declaration_list, + STATE(6851), 1, + sym_attribute_declaration, + STATE(7910), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [270053] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(9971), 1, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11446), 1, + ACTIONS(11438), 1, + anon_sym_inline, + ACTIONS(11440), 1, sym_identifier, - 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(8569), 1, - sym_decltype, - [270083] = 10, + STATE(756), 1, + sym_declaration_list, + STATE(6879), 1, + sym_attribute_declaration, + STATE(7942), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [270084] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9660), 1, + ACTIONS(5236), 1, anon_sym_COLON_COLON, - ACTIONS(11450), 1, + ACTIONS(11442), 1, sym_identifier, - ACTIONS(11452), 1, + ACTIONS(11444), 1, anon_sym_template, - STATE(1919), 1, + STATE(1931), 1, sym_template_type, - STATE(1930), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(2905), 1, + STATE(1938), 1, sym_qualified_type_identifier, - STATE(6706), 1, + STATE(6713), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270114] = 10, + [270115] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - ACTIONS(11454), 1, + ACTIONS(11446), 1, sym_identifier, - STATE(603), 1, + STATE(750), 1, sym_declaration_list, - STATE(6847), 1, + STATE(6863), 1, sym_attribute_declaration, - STATE(7986), 1, + STATE(8035), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [270146] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5238), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11436), 1, + anon_sym_COLON_COLON, + ACTIONS(11438), 1, + anon_sym_inline, + ACTIONS(11448), 1, + sym_identifier, + STATE(744), 1, + sym_declaration_list, + STATE(6902), 1, + sym_attribute_declaration, + STATE(7758), 1, sym_nested_namespace_specifier, - STATE(8622), 1, + STATE(8986), 1, sym__namespace_specifier, - [270145] = 10, + [270177] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9459), 1, + ACTIONS(8022), 1, anon_sym_COLON_COLON, - ACTIONS(11456), 1, + ACTIONS(11450), 1, sym_identifier, - ACTIONS(11458), 1, + ACTIONS(11452), 1, anon_sym_template, - STATE(2850), 1, + STATE(1931), 1, sym_template_type, - STATE(2855), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(2907), 1, + STATE(2893), 1, sym_qualified_type_identifier, - STATE(6708), 1, + STATE(6716), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270176] = 5, + [270208] = 8, ACTIONS(3), 1, sym_comment, - 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(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10639), 1, + anon_sym_COLON_COLON, + ACTIONS(11454), 1, + sym_identifier, + STATE(5973), 1, + sym__scope_resolution, + STATE(8172), 1, + sym_qualified_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [270235] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11422), 1, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, - anon_sym_inline, - ACTIONS(11466), 1, + ACTIONS(11456), 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, + STATE(5973), 1, + sym__scope_resolution, + STATE(8994), 1, + sym_qualified_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [270262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11468), 1, + ACTIONS(11458), 1, sym_identifier, - ACTIONS(11470), 1, + ACTIONS(11462), 1, sym_system_lib_string, - STATE(8070), 2, + STATE(8385), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(11462), 5, + ACTIONS(11460), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [270249] = 6, + [270283] = 8, 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(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10639), 1, + anon_sym_COLON_COLON, + ACTIONS(11464), 1, + sym_identifier, + STATE(5973), 1, + sym__scope_resolution, + STATE(8344), 1, + sym_qualified_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [270310] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9580), 1, + ACTIONS(8120), 1, anon_sym_COLON_COLON, - ACTIONS(11472), 1, + ACTIONS(11466), 1, sym_identifier, - ACTIONS(11474), 1, - anon_sym_template, - STATE(2655), 1, + STATE(1931), 1, sym_template_type, - STATE(2656), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(2716), 1, + STATE(2893), 1, sym_qualified_type_identifier, - STATE(6713), 1, + STATE(6721), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270303] = 8, + [270341] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11285), 1, + ACTIONS(11468), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8403), 1, + STATE(8685), 1, sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [270330] = 10, + [270368] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5228), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11450), 1, + ACTIONS(11302), 1, sym_identifier, - ACTIONS(11452), 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(6715), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8636), 1, + sym_qualified_identifier, + STATE(8381), 3, sym_decltype, - [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, + sym_template_type, + sym_dependent_type_identifier, + [270395] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11422), 1, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(11404), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, - anon_sym_inline, - ACTIONS(11476), 1, + ACTIONS(11470), 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(11472), 1, + anon_sym_template, + STATE(2771), 1, + sym_template_type, + STATE(2772), 1, + sym_dependent_type_identifier, + STATE(2781), 1, + sym_qualified_type_identifier, + STATE(6724), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + [270426] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11478), 1, + ACTIONS(11344), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8542), 1, + STATE(8928), 1, sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [270442] = 10, + [270453] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8028), 1, + ACTIONS(9965), 1, anon_sym_COLON_COLON, - ACTIONS(11480), 1, + ACTIONS(11474), 1, sym_identifier, - ACTIONS(11482), 1, + ACTIONS(11476), 1, anon_sym_template, - STATE(1919), 1, + STATE(1749), 1, sym_template_type, - STATE(1930), 1, + STATE(1765), 1, sym_dependent_type_identifier, - STATE(2905), 1, + STATE(1905), 1, sym_qualified_type_identifier, - STATE(6719), 1, + STATE(6726), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270473] = 6, + [270484] = 8, 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(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10639), 1, + anon_sym_COLON_COLON, + ACTIONS(11478), 1, + sym_identifier, + STATE(5973), 1, + sym__scope_resolution, + STATE(8679), 1, + sym_qualified_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [270511] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11484), 1, + ACTIONS(11243), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8551), 1, + STATE(8547), 1, sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [270523] = 10, + [270538] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9883), 1, + ACTIONS(9616), 1, anon_sym_COLON_COLON, - ACTIONS(11486), 1, + ACTIONS(11480), 1, sym_identifier, - ACTIONS(11488), 1, + ACTIONS(11482), 1, anon_sym_template, - STATE(1805), 1, + STATE(2865), 1, sym_template_type, - STATE(1806), 1, + STATE(2874), 1, sym_dependent_type_identifier, - STATE(1865), 1, + STATE(2902), 1, sym_qualified_type_identifier, - STATE(6722), 1, + STATE(6729), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270554] = 8, + [270569] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11261), 1, + ACTIONS(11316), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8807), 1, + STATE(8430), 1, sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [270581] = 10, + [270596] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8088), 1, + ACTIONS(9983), 1, anon_sym_COLON_COLON, - ACTIONS(11490), 1, + ACTIONS(11484), 1, sym_identifier, - ACTIONS(11492), 1, + ACTIONS(11486), 1, anon_sym_template, - STATE(1805), 1, + STATE(2272), 1, + sym_qualified_type_identifier, + STATE(2301), 1, sym_template_type, - STATE(1806), 1, + STATE(2302), 1, sym_dependent_type_identifier, - STATE(1865), 1, - sym_qualified_type_identifier, - STATE(6724), 1, + STATE(6731), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270612] = 8, + [270627] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11494), 1, + ACTIONS(11330), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8963), 1, + STATE(8370), 1, sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [270639] = 8, + [270654] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(9504), 1, anon_sym_COLON_COLON, - ACTIONS(11496), 1, + ACTIONS(11488), 1, sym_identifier, - STATE(5926), 1, + ACTIONS(11490), 1, + anon_sym_template, + STATE(2706), 1, + sym_template_type, + STATE(2707), 1, + sym_dependent_type_identifier, + STATE(2767), 1, + sym_qualified_type_identifier, + STATE(6733), 1, sym__scope_resolution, - STATE(8831), 1, - sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 1, sym_decltype, + [270685] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + STATE(3357), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + ACTIONS(10931), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [270712] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + STATE(3357), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + ACTIONS(10935), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [270739] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8106), 1, + anon_sym_COLON_COLON, + ACTIONS(11450), 1, + sym_identifier, + ACTIONS(11452), 1, + anon_sym_template, + STATE(1931), 1, sym_template_type, + STATE(1937), 1, sym_dependent_type_identifier, - [270666] = 10, + STATE(1938), 1, + sym_qualified_type_identifier, + STATE(6736), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + [270770] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(7984), 1, + ACTIONS(8074), 1, anon_sym_COLON_COLON, - ACTIONS(11444), 1, - anon_sym_template, - ACTIONS(11498), 1, + ACTIONS(11492), 1, sym_identifier, - STATE(1805), 1, + ACTIONS(11494), 1, + anon_sym_template, + STATE(4450), 1, sym_template_type, - STATE(1806), 1, + STATE(4454), 1, sym_dependent_type_identifier, - STATE(1865), 1, + STATE(4508), 1, sym_qualified_type_identifier, - STATE(6727), 1, + STATE(6737), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270697] = 10, + [270801] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9498), 1, + ACTIONS(7981), 1, anon_sym_COLON_COLON, - ACTIONS(11500), 1, + ACTIONS(11496), 1, sym_identifier, - ACTIONS(11502), 1, + ACTIONS(11498), 1, anon_sym_template, - STATE(2699), 1, + STATE(1749), 1, sym_template_type, - STATE(2700), 1, + STATE(1765), 1, sym_dependent_type_identifier, - STATE(2800), 1, + STATE(1905), 1, sym_qualified_type_identifier, - STATE(6728), 1, + STATE(6738), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270728] = 10, + [270832] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8060), 1, + ACTIONS(8044), 1, anon_sym_COLON_COLON, - ACTIONS(11480), 1, + ACTIONS(11500), 1, sym_identifier, - ACTIONS(11482), 1, + ACTIONS(11502), 1, anon_sym_template, - STATE(1919), 1, + STATE(1749), 1, sym_template_type, - STATE(1930), 1, + STATE(1765), 1, sym_dependent_type_identifier, - STATE(1932), 1, + STATE(1905), 1, sym_qualified_type_identifier, - STATE(6729), 1, + STATE(6739), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270759] = 8, + [270863] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3394), 1, + STATE(3357), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10897), 2, + ACTIONS(10923), 2, anon_sym_LBRACE, anon_sym_EQ, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [270786] = 10, + [270890] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(8000), 1, + ACTIONS(9659), 1, anon_sym_COLON_COLON, - ACTIONS(11504), 1, + ACTIONS(11442), 1, sym_identifier, - ACTIONS(11506), 1, + ACTIONS(11444), 1, anon_sym_template, - STATE(4387), 1, + STATE(1931), 1, sym_template_type, - STATE(4403), 1, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(4479), 1, + STATE(2893), 1, sym_qualified_type_identifier, - STATE(6731), 1, + STATE(6741), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270817] = 10, + [270921] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(9412), 1, + ACTIONS(9554), 1, anon_sym_COLON_COLON, - ACTIONS(11508), 1, + ACTIONS(11504), 1, sym_identifier, - ACTIONS(11510), 1, + ACTIONS(11506), 1, anon_sym_template, - STATE(3643), 1, + STATE(3708), 1, sym_template_type, - STATE(3648), 1, + STATE(3721), 1, sym_dependent_type_identifier, - STATE(3746), 1, + STATE(3755), 1, sym_qualified_type_identifier, - STATE(6732), 1, + STATE(6742), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [270848] = 5, + [270952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, + ACTIONS(11508), 1, sym_identifier, - ACTIONS(11514), 1, + ACTIONS(11510), 1, sym_system_lib_string, - STATE(8930), 2, + STATE(8563), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(11462), 5, + ACTIONS(11460), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [270869] = 8, + [270973] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(9598), 1, anon_sym_COLON_COLON, - ACTIONS(11251), 1, + ACTIONS(11512), 1, sym_identifier, - STATE(5926), 1, + ACTIONS(11514), 1, + anon_sym_template, + STATE(2590), 1, + sym_dependent_type_identifier, + STATE(2608), 1, + sym_template_type, + STATE(2682), 1, + sym_qualified_type_identifier, + STATE(6744), 1, sym__scope_resolution, - STATE(8743), 1, - sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 1, sym_decltype, + [271004] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(9428), 1, + anon_sym_COLON_COLON, + ACTIONS(11498), 1, + anon_sym_template, + ACTIONS(11516), 1, + sym_identifier, + STATE(1749), 1, sym_template_type, + STATE(1765), 1, sym_dependent_type_identifier, - [270896] = 8, + STATE(1905), 1, + sym_qualified_type_identifier, + STATE(6745), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + [271035] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3394), 1, + STATE(3357), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10893), 2, + ACTIONS(10913), 2, anon_sym_LBRACE, anon_sym_EQ, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [270923] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11516), 1, - sym_identifier, - 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, + [271062] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - anon_sym_template, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(5240), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11305), 1, + ACTIONS(11438), 1, + anon_sym_inline, + ACTIONS(11518), 1, sym_identifier, - STATE(5926), 1, - sym__scope_resolution, - STATE(8072), 1, - sym_qualified_identifier, - STATE(8569), 3, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - [270971] = 10, + STATE(301), 1, + sym_declaration_list, + STATE(6853), 1, + sym_attribute_declaration, + STATE(8074), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [271093] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 1, - anon_sym_decltype, - ACTIONS(8022), 1, + ACTIONS(5238), 1, + anon_sym_LBRACE, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11434), 1, - anon_sym_template, + ACTIONS(11438), 1, + anon_sym_inline, ACTIONS(11520), 1, sym_identifier, - STATE(2581), 1, - sym_template_type, - STATE(2582), 1, - sym_dependent_type_identifier, - STATE(2644), 1, - sym_qualified_type_identifier, - STATE(6738), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_decltype, - [271002] = 8, + STATE(718), 1, + sym_declaration_list, + STATE(6881), 1, + sym_attribute_declaration, + STATE(7986), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [271124] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11326), 1, + ACTIONS(11522), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8566), 1, + STATE(8649), 1, sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [271029] = 10, + [271151] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5240), 1, anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - ACTIONS(11522), 1, + ACTIONS(11524), 1, sym_identifier, - STATE(301), 1, + STATE(288), 1, sym_declaration_list, - STATE(6836), 1, + STATE(6861), 1, sym_attribute_declaration, - STATE(7867), 1, + STATE(8042), 1, sym_nested_namespace_specifier, - STATE(8622), 1, + STATE(8986), 1, sym__namespace_specifier, - [271060] = 8, + [271182] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_template, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(10639), 1, + anon_sym_COLON_COLON, + ACTIONS(11526), 1, + sym_identifier, + STATE(5973), 1, + sym__scope_resolution, + STATE(8612), 1, + sym_qualified_identifier, + STATE(8381), 3, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + [271209] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3394), 1, + STATE(3357), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10901), 2, + ACTIONS(10942), 2, anon_sym_LBRACE, anon_sym_EQ, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271087] = 8, + [271236] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11227), 1, + ACTIONS(11296), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8207), 1, + STATE(8833), 1, sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [271114] = 10, - 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(11440), 1, - sym_identifier, - STATE(1919), 1, - sym_template_type, - STATE(1930), 1, - sym_dependent_type_identifier, - STATE(2905), 1, - sym_qualified_type_identifier, - STATE(6743), 1, - sym__scope_resolution, - STATE(8569), 1, - sym_decltype, - [271145] = 10, + [271263] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5248), 1, anon_sym_LBRACE, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - ACTIONS(11524), 1, + ACTIONS(11528), 1, sym_identifier, - STATE(796), 1, + STATE(611), 1, sym_declaration_list, - STATE(6844), 1, + STATE(6867), 1, sym_attribute_declaration, - STATE(7953), 1, + STATE(8076), 1, sym_nested_namespace_specifier, - STATE(8622), 1, + STATE(8986), 1, sym__namespace_specifier, - [271176] = 8, + [271294] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1268), 1, anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(10582), 1, + ACTIONS(10639), 1, anon_sym_COLON_COLON, - ACTIONS(11526), 1, + ACTIONS(11279), 1, sym_identifier, - STATE(5926), 1, + STATE(5973), 1, sym__scope_resolution, - STATE(8159), 1, + STATE(8777), 1, sym_qualified_identifier, - STATE(8569), 3, + STATE(8381), 3, sym_decltype, sym_template_type, sym_dependent_type_identifier, - [271203] = 10, + [271321] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11530), 1, + sym_identifier, + ACTIONS(11532), 1, + sym_system_lib_string, + STATE(8984), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11460), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [271342] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(1268), 1, + anon_sym_template, ACTIONS(1978), 1, anon_sym_decltype, - ACTIONS(5028), 1, + ACTIONS(3923), 1, anon_sym_COLON_COLON, - ACTIONS(11528), 1, + ACTIONS(11466), 1, sym_identifier, - ACTIONS(11530), 1, + STATE(1931), 1, + sym_template_type, + STATE(1937), 1, + sym_dependent_type_identifier, + STATE(1938), 1, + sym_qualified_type_identifier, + STATE(6757), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + [271373] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(8096), 1, + anon_sym_COLON_COLON, + ACTIONS(11514), 1, anon_sym_template, - STATE(1919), 1, + ACTIONS(11534), 1, + sym_identifier, + STATE(2590), 1, + sym_dependent_type_identifier, + STATE(2608), 1, sym_template_type, - STATE(1930), 1, + STATE(2682), 1, + sym_qualified_type_identifier, + STATE(6758), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + [271404] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(5036), 1, + anon_sym_COLON_COLON, + ACTIONS(11536), 1, + sym_identifier, + ACTIONS(11538), 1, + anon_sym_template, + STATE(1931), 1, + sym_template_type, + STATE(1937), 1, sym_dependent_type_identifier, - STATE(1932), 1, + STATE(1938), 1, sym_qualified_type_identifier, - STATE(6746), 1, + STATE(6759), 1, sym__scope_resolution, - STATE(8569), 1, + STATE(8381), 1, sym_decltype, - [271234] = 6, + [271435] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(11540), 1, + sym_identifier, + ACTIONS(11542), 1, + sym_system_lib_string, + STATE(8595), 2, + sym_preproc_call_expression, + sym_string_literal, + ACTIONS(11460), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [271456] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10763), 1, anon_sym_LBRACK, - STATE(3551), 1, + STATE(3528), 1, sym_parameter_list, - STATE(6153), 1, + STATE(5939), 1, sym__function_declarator_seq, - ACTIONS(10817), 4, + ACTIONS(10813), 5, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_final, anon_sym_override, anon_sym_requires, - [271256] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10762), 1, - anon_sym___attribute, - ACTIONS(11108), 1, - anon_sym_LBRACK, - STATE(3276), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10760), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [271280] = 6, + [271479] = 10, ACTIONS(3), 1, sym_comment, - 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(10805), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [271302] = 8, + ACTIONS(1978), 1, + anon_sym_decltype, + ACTIONS(9475), 1, + anon_sym_COLON_COLON, + ACTIONS(11544), 1, + sym_identifier, + ACTIONS(11546), 1, + anon_sym_template, + STATE(1973), 1, + sym_dependent_type_identifier, + STATE(1998), 1, + sym_template_type, + STATE(2063), 1, + sym_qualified_type_identifier, + STATE(6762), 1, + sym__scope_resolution, + STATE(8381), 1, + sym_decltype, + [271510] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(9826), 1, anon_sym_LBRACK, - ACTIONS(11532), 1, - anon_sym_SEMI, - STATE(3044), 1, + ACTIONS(10909), 1, + anon_sym_RPAREN, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6512), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6934), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [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, + [271536] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11534), 1, + ACTIONS(11548), 1, anon_sym_RPAREN, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [271376] = 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(6797), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271402] = 6, + [271562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3113), 1, + STATE(3116), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10761), 4, anon_sym_SEMI, anon_sym_LBRACE, - [271424] = 8, + anon_sym_EQ, + anon_sym_try, + [271584] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10765), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - ACTIONS(11538), 1, - anon_sym_RPAREN, - STATE(3044), 1, + STATE(3281), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6115), 1, sym__function_declarator_seq, - STATE(6910), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [271450] = 6, + ACTIONS(10761), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [271608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10819), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3113), 1, + STATE(3343), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10813), 4, + ACTIONS(10817), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - [271472] = 8, + anon_sym___attribute__, + [271632] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10939), 1, - anon_sym_RPAREN, - STATE(3044), 1, + ACTIONS(10923), 1, + anon_sym_COLON, + STATE(3559), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6212), 1, sym__function_declarator_seq, - 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, - STATE(7351), 1, - sym_trailing_return_type, - STATE(8155), 1, - sym_requires_clause, - STATE(4831), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271524] = 8, + [271658] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(49), 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(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10833), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3276), 1, + ACTIONS(11550), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10831), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [271574] = 7, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271684] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10807), 1, + ACTIONS(10823), 1, anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3357), 1, + STATE(3343), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 3, + ACTIONS(10821), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [271598] = 7, + [271708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10762), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3357), 1, + STATE(3134), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 3, + ACTIONS(10771), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - [271622] = 8, + anon_sym_SEMI, + anon_sym_LBRACE, + [271730] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(10499), 1, + anon_sym_DASH_GT, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(11552), 1, + anon_sym_LBRACE, + STATE(7590), 1, + sym_trailing_return_type, + STATE(8474), 1, + sym_requires_clause, + STATE(6782), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271756] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10897), 1, - anon_sym_COLON, - STATE(3545), 1, + ACTIONS(11554), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6435), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271648] = 8, + [271782] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(49), 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(4831), 2, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(11556), 1, + anon_sym_SEMI, + ACTIONS(11558), 1, + anon_sym_EQ, + STATE(1635), 1, + sym_template_argument_list, + STATE(7242), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271674] = 8, + [271808] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3134), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10761), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + [271830] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10534), 1, + ACTIONS(10499), 1, anon_sym_DASH_GT, - ACTIONS(10536), 1, + ACTIONS(10501), 1, anon_sym_requires, - ACTIONS(11542), 1, + ACTIONS(10627), 1, anon_sym_LBRACE, - STATE(7422), 1, + STATE(7655), 1, sym_trailing_return_type, - STATE(8918), 1, + STATE(8736), 1, sym_requires_clause, - STATE(6758), 2, + STATE(6816), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271700] = 6, + [271856] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10819), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3551), 1, + STATE(3281), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10784), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [271722] = 8, + ACTIONS(10817), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [271880] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11544), 1, + ACTIONS(10931), 1, anon_sym_COLON, - STATE(3545), 1, + STATE(3559), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6435), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271748] = 6, + [271906] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3551), 1, + ACTIONS(11560), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10813), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [271770] = 8, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271932] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - ACTIONS(11546), 1, + ACTIONS(11562), 1, anon_sym_SEMI, - ACTIONS(11548), 1, + ACTIONS(11564), 1, anon_sym_EQ, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - STATE(7163), 2, + STATE(7245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271958] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(10935), 1, + anon_sym_COLON, + STATE(3559), 1, + sym_parameter_list, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6466), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [271984] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10499), 1, + anon_sym_DASH_GT, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(11566), 1, + anon_sym_LBRACE, + STATE(7347), 1, + sym_trailing_return_type, + STATE(8785), 1, + sym_requires_clause, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271796] = 8, + [272010] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11408), 1, + anon_sym_LBRACK, + STATE(7427), 1, + sym_gnu_asm_output_operand, + STATE(8364), 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, + [272030] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - ACTIONS(11550), 1, + ACTIONS(11568), 1, anon_sym_SEMI, - ACTIONS(11552), 1, + ACTIONS(11570), 1, anon_sym_EQ, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - STATE(7227), 2, + STATE(7240), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271822] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11554), 1, - sym_identifier, - ACTIONS(11559), 1, - aux_sym_preproc_elif_token1, - 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, - [271842] = 6, + [272056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3551), 1, + STATE(3544), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10750), 4, + ACTIONS(10817), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [271864] = 8, + [272078] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(9826), 1, anon_sym_LBRACK, - ACTIONS(10933), 1, - anon_sym_COLON, - STATE(3545), 1, + ACTIONS(11572), 1, + anon_sym_RPAREN, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6512), 1, sym__function_declarator_seq, - STATE(6435), 2, + STATE(6934), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271890] = 8, + [272104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10773), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - ACTIONS(10927), 1, - anon_sym_RPAREN, - STATE(3044), 1, + STATE(3281), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6115), 1, sym__function_declarator_seq, - STATE(6910), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [271916] = 8, + ACTIONS(10771), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [272128] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - 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(6764), 2, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9826), 1, + anon_sym_LBRACK, + ACTIONS(10946), 1, + anon_sym_RPAREN, + STATE(3037), 1, + sym_parameter_list, + STATE(6512), 1, + sym__function_declarator_seq, + STATE(6934), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [271942] = 3, + [272154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11563), 3, + ACTIONS(11576), 3, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, - ACTIONS(11561), 5, + ACTIONS(11574), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [271958] = 6, + [272170] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3021), 1, + ACTIONS(11578), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10831), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [271980] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - 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, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272006] = 8, + [272196] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11396), 1, + anon_sym_LBRACK, + STATE(7406), 1, + sym_gnu_asm_input_operand, + STATE(8133), 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, + [272216] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11569), 1, + ACTIONS(11580), 1, anon_sym_SEMI, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272032] = 8, + [272242] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10950), 1, - anon_sym_RPAREN, - STATE(3044), 1, + ACTIONS(11582), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6910), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272058] = 5, + [272268] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11388), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10773), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(7670), 1, - sym_gnu_asm_input_operand, - STATE(8380), 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, - [272078] = 9, + STATE(3343), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10771), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [272292] = 6, ACTIONS(3), 1, sym_comment, - 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, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3116), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10821), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - STATE(1623), 1, - sym_template_argument_list, - STATE(7542), 1, - aux_sym_structured_binding_declarator_repeat1, - [272106] = 7, + anon_sym_try, + [272314] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10803), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3276), 1, + ACTIONS(11584), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10801), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [272130] = 8, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272340] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10534), 1, + ACTIONS(10499), 1, anon_sym_DASH_GT, - ACTIONS(10536), 1, + ACTIONS(10501), 1, anon_sym_requires, - ACTIONS(10564), 1, + ACTIONS(11586), 1, anon_sym_LBRACE, - STATE(7464), 1, + STATE(7576), 1, sym_trailing_return_type, - STATE(8163), 1, + STATE(8431), 1, sym_requires_clause, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272156] = 7, + [272366] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(11588), 1, + anon_sym_SEMI, + ACTIONS(11590), 1, + anon_sym_EQ, + STATE(1635), 1, + sym_template_argument_list, + STATE(7229), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272392] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10807), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3276), 1, + STATE(3544), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 3, + ACTIONS(10821), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [272414] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6219), 1, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [272180] = 8, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(11592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11594), 1, + anon_sym_RBRACK, + ACTIONS(11597), 1, + anon_sym_EQ, + STATE(1635), 1, + sym_template_argument_list, + STATE(7626), 1, + aux_sym_structured_binding_declarator_repeat1, + [272442] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(11599), 1, + anon_sym_SEMI, + ACTIONS(11601), 1, + anon_sym_EQ, + STATE(1635), 1, + sym_template_argument_list, + STATE(7202), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272468] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10905), 1, - anon_sym_COLON, - STATE(3545), 1, + ACTIONS(11603), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6435), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272206] = 6, + [272494] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3021), 1, + STATE(3544), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10801), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [272228] = 6, + ACTIONS(10825), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [272516] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3551), 1, + ACTIONS(11605), 1, + anon_sym_COLON, + STATE(3559), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10801), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [272250] = 6, + STATE(6466), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3551), 1, + STATE(3544), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 4, + ACTIONS(10829), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [272272] = 6, + [272564] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(11607), 1, + anon_sym_SEMI, + ACTIONS(11609), 1, + anon_sym_EQ, + STATE(1635), 1, + sym_template_argument_list, + STATE(7148), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272590] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3551), 1, + STATE(3544), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 4, + ACTIONS(10813), 4, anon_sym_COLON, anon_sym_final, anon_sym_override, anon_sym_requires, - [272294] = 6, + [272612] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3551), 1, + ACTIONS(10913), 1, + anon_sym_COLON, + STATE(3559), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10831), 4, - anon_sym_COLON, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [272316] = 6, + STATE(6466), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(11613), 3, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + ACTIONS(11611), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [272654] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3113), 1, + STATE(3134), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10801), 4, + ACTIONS(10817), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - [272338] = 8, + [272676] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11578), 1, + ACTIONS(11615), 1, anon_sym_SEMI, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272364] = 3, + [272702] = 6, ACTIONS(3), 1, sym_comment, - 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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3544), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10761), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [272724] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10833), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - STATE(3357), 1, + ACTIONS(11617), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10831), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [272404] = 6, + STATE(6087), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [272750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3113), 1, + STATE(3134), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 4, + ACTIONS(10813), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_LBRACE, - [272426] = 8, + [272772] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3544), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10771), 4, + anon_sym_COLON, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [272794] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10534), 1, + ACTIONS(10499), 1, anon_sym_DASH_GT, - ACTIONS(10536), 1, + ACTIONS(10501), 1, anon_sym_requires, - ACTIONS(11584), 1, + ACTIONS(11619), 1, anon_sym_LBRACE, - STATE(7559), 1, + STATE(7543), 1, sym_trailing_return_type, - STATE(8474), 1, + STATE(8716), 1, sym_requires_clause, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272452] = 8, + [272820] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10534), 1, + ACTIONS(10499), 1, anon_sym_DASH_GT, - ACTIONS(10536), 1, + ACTIONS(10501), 1, anon_sym_requires, - ACTIONS(11536), 1, + ACTIONS(11619), 1, anon_sym_LBRACE, - STATE(7352), 1, + STATE(7543), 1, sym_trailing_return_type, - STATE(8166), 1, + STATE(8716), 1, sym_requires_clause, - STATE(4831), 2, + STATE(6797), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272478] = 8, + [272846] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11586), 1, + ACTIONS(11621), 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, - [272504] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(11108), 1, - anon_sym_LBRACK, - STATE(3113), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6212), 1, sym__function_declarator_seq, - ACTIONS(10784), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - [272526] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - 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, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272552] = 8, + [272872] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(9826), 1, anon_sym_LBRACK, - ACTIONS(10946), 1, + ACTIONS(10966), 1, anon_sym_RPAREN, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6512), 1, sym__function_declarator_seq, - STATE(6910), 2, + STATE(6934), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272578] = 6, + [272898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10823), 1, + anon_sym___attribute, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3113), 1, + STATE(3281), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10831), 4, + ACTIONS(10821), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_LBRACE, - [272600] = 8, + anon_sym___attribute__, + anon_sym_GT2, + [272922] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11592), 1, + ACTIONS(11623), 1, anon_sym_SEMI, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272626] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + [272948] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(9826), 1, anon_sym_LBRACK, - ACTIONS(11594), 1, + ACTIONS(10927), 1, anon_sym_RPAREN, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6512), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6934), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272672] = 8, + [272974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3134), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10825), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + [272996] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - ACTIONS(11596), 1, + ACTIONS(11625), 1, anon_sym_SEMI, - ACTIONS(11598), 1, + ACTIONS(11627), 1, anon_sym_EQ, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - STATE(7225), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [272698] = 8, - 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(10893), 1, - anon_sym_COLON, - STATE(3545), 1, - sym_parameter_list, - STATE(6203), 1, - sym__function_declarator_seq, - STATE(6435), 2, + STATE(7233), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272724] = 8, + [273022] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10532), 1, - anon_sym_LBRACE, - ACTIONS(10534), 1, + ACTIONS(10499), 1, anon_sym_DASH_GT, - ACTIONS(10536), 1, + ACTIONS(10501), 1, anon_sym_requires, - STATE(7426), 1, + ACTIONS(10627), 1, + anon_sym_LBRACE, + STATE(7655), 1, sym_trailing_return_type, - STATE(8062), 1, + STATE(8736), 1, sym_requires_clause, - STATE(4831), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272750] = 6, + [273048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3113), 1, + STATE(3116), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10817), 4, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10771), 4, anon_sym_SEMI, anon_sym_LBRACE, - [272772] = 6, + anon_sym_EQ, + anon_sym_try, + [273070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3021), 1, + STATE(3116), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(11600), 4, + ACTIONS(10817), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [272794] = 4, + [273092] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9826), 1, + anon_sym_LBRACK, + ACTIONS(11629), 1, + anon_sym_RPAREN, + STATE(3037), 1, + sym_parameter_list, + STATE(6512), 1, + sym__function_declarator_seq, + STATE(6934), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [273118] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(10499), 1, + anon_sym_DASH_GT, + ACTIONS(10501), 1, + anon_sym_requires, + STATE(7648), 1, + sym_trailing_return_type, + STATE(8271), 1, + sym_requires_clause, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [273144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11633), 1, aux_sym_preproc_elif_token1, - ACTIONS(11606), 1, + ACTIONS(11635), 1, anon_sym_EQ, - ACTIONS(11602), 6, + ACTIONS(11631), 6, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, sym_identifier, - [272812] = 8, + [273162] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(11608), 1, - anon_sym_SEMI, - ACTIONS(11610), 1, - anon_sym_EQ, - STATE(1623), 1, - sym_template_argument_list, - STATE(7194), 2, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(9826), 1, + anon_sym_LBRACK, + ACTIONS(10976), 1, + anon_sym_RPAREN, + STATE(3037), 1, + sym_parameter_list, + STATE(6512), 1, + sym__function_declarator_seq, + STATE(6934), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272838] = 8, + [273188] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(11612), 1, - anon_sym_SEMI, - ACTIONS(11614), 1, - anon_sym_EQ, - STATE(1623), 1, - sym_template_argument_list, - STATE(7223), 2, + ACTIONS(10499), 1, + anon_sym_DASH_GT, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(11552), 1, + anon_sym_LBRACE, + STATE(7590), 1, + sym_trailing_return_type, + STATE(8474), 1, + sym_requires_clause, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272864] = 8, + [273214] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(9806), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(10960), 1, - anon_sym_RPAREN, - STATE(3044), 1, + ACTIONS(11637), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6468), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6910), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272890] = 8, + [273240] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - ACTIONS(10901), 1, + STATE(3544), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10767), 4, anon_sym_COLON, - STATE(3545), 1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [273262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11639), 1, + sym_identifier, + ACTIONS(11644), 1, + aux_sym_preproc_elif_token1, + STATE(6835), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(11642), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [273282] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3134), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6115), 1, sym__function_declarator_seq, - STATE(6435), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [272916] = 8, + ACTIONS(10821), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACE, + [273304] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11616), 1, + ACTIONS(11646), 1, anon_sym_SEMI, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272942] = 8, + [273330] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11618), 1, - anon_sym_SEMI, - STATE(3044), 1, + ACTIONS(10942), 1, + anon_sym_COLON, + STATE(3559), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [272968] = 6, + [273356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3021), 1, + STATE(3116), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 4, + ACTIONS(11648), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [272990] = 8, + [273378] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11650), 1, + sym_identifier, + ACTIONS(11655), 1, + aux_sym_preproc_elif_token1, + STATE(6840), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + ACTIONS(11653), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [273400] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(10499), 1, + anon_sym_DASH_GT, + ACTIONS(10501), 1, + anon_sym_requires, + STATE(7648), 1, + sym_trailing_return_type, + STATE(8271), 1, + sym_requires_clause, + STATE(6832), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [273426] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11620), 1, + ACTIONS(11657), 1, anon_sym_SEMI, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273016] = 6, - ACTIONS(3), 1, - sym_comment, - 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, + [273452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10803), 1, - anon_sym___attribute, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3357), 1, + STATE(3134), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10801), 3, + ACTIONS(10829), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - [273062] = 8, + anon_sym_SEMI, + anon_sym_LBRACE, + [273474] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10071), 1, + ACTIONS(10047), 1, anon_sym_LBRACK, - ACTIONS(11629), 1, + ACTIONS(11659), 1, anon_sym_SEMI, - STATE(3044), 1, + STATE(3037), 1, sym_parameter_list, - STATE(6203), 1, + STATE(6212), 1, sym__function_declarator_seq, - STATE(6081), 2, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11631), 1, - anon_sym_LPAREN2, - 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, + [273500] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6098), 1, - anon_sym_LBRACK, - ACTIONS(6147), 1, - anon_sym_COLON, - ACTIONS(7918), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - STATE(1942), 1, + ACTIONS(10047), 1, + anon_sym_LBRACK, + ACTIONS(11661), 1, + anon_sym_SEMI, + STATE(3037), 1, sym_parameter_list, - STATE(6920), 2, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273128] = 8, + [273526] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3134), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10767), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(11422), 1, - anon_sym_COLON_COLON, - ACTIONS(11424), 1, - anon_sym_inline, - ACTIONS(11635), 1, - sym_identifier, - STATE(586), 1, - sym_declaration_list, - STATE(7696), 1, - sym_nested_namespace_specifier, - STATE(8622), 1, - sym__namespace_specifier, - [273153] = 5, + [273548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10765), 1, anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - STATE(4306), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(11637), 3, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3343), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10761), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT2, - [273172] = 8, + anon_sym___attribute__, + [273572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(11663), 1, + anon_sym_LPAREN2, + STATE(6874), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11665), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [273589] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, anon_sym_LBRACE, - ACTIONS(11422), 1, + ACTIONS(4178), 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(6536), 1, + anon_sym_LT, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(2357), 1, + sym_template_argument_list, + STATE(7444), 2, + sym_argument_list, + sym_initializer_list, + [273612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3195), 1, + STATE(3239), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10817), 3, + ACTIONS(10767), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [273218] = 7, - 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(2972), 1, - sym_parameter_list, - STATE(6203), 1, - sym__function_declarator_seq, - STATE(6081), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [273241] = 8, + [273633] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5248), 1, anon_sym_LBRACE, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - ACTIONS(11639), 1, + ACTIONS(11667), 1, sym_identifier, - STATE(682), 1, + STATE(615), 1, sym_declaration_list, - STATE(7721), 1, + STATE(7980), 1, sym_nested_namespace_specifier, - STATE(8622), 1, + STATE(8986), 1, sym__namespace_specifier, - [273266] = 5, - ACTIONS(3), 1, - sym_comment, - 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(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, - anon_sym_LBRACK, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(11641), 1, - anon_sym_RPAREN, - STATE(1942), 1, - sym_parameter_list, - STATE(6165), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [273308] = 6, + [273658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3195), 1, + STATE(3239), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 3, + ACTIONS(10817), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [273329] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, - anon_sym_LBRACK, - 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, + [273679] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5240), 1, anon_sym_LBRACE, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - ACTIONS(11645), 1, + ACTIONS(11669), 1, sym_identifier, - STATE(324), 1, + STATE(326), 1, sym_declaration_list, - STATE(7973), 1, + STATE(7764), 1, sym_nested_namespace_specifier, - STATE(8622), 1, + STATE(8986), 1, sym__namespace_specifier, - [273377] = 6, + [273704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3195), 1, + STATE(3239), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10784), 3, + ACTIONS(10821), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [273398] = 7, + [273725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6092), 1, - anon_sym_COLON, - ACTIONS(6098), 1, + ACTIONS(11671), 1, anon_sym_LBRACK, - ACTIONS(7918), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(11673), 1, + anon_sym_EQ, + ACTIONS(11675), 1, + anon_sym_DOT, + STATE(6896), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [273744] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - STATE(1942), 1, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3239), 1, sym_parameter_list, - STATE(6920), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [273421] = 8, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10761), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [273765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(11422), 1, - anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11677), 1, + anon_sym_LPAREN2, + STATE(6905), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11665), 4, anon_sym_inline, - ACTIONS(11426), 1, - sym_identifier, - STATE(785), 1, - sym_declaration_list, - STATE(8027), 1, - sym_nested_namespace_specifier, - STATE(8622), 1, - sym__namespace_specifier, - [273446] = 7, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [273782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(11571), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3239), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10771), 3, 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, + anon_sym_GT2, + [273803] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11647), 1, + ACTIONS(11679), 1, anon_sym_RPAREN, - STATE(1942), 1, + STATE(1994), 1, sym_parameter_list, - STATE(6165), 2, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273492] = 7, + [273826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6098), 1, - anon_sym_LBRACK, - ACTIONS(6114), 1, - anon_sym_COLON, - ACTIONS(7918), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(6171), 1, + anon_sym_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - STATE(1942), 1, + ACTIONS(11681), 1, + anon_sym_RPAREN, + STATE(1994), 1, sym_parameter_list, - STATE(6920), 2, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273515] = 4, + [273849] = 8, 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, + ACTIONS(5240), 1, + anon_sym_LBRACE, + ACTIONS(11436), 1, + anon_sym_COLON_COLON, + ACTIONS(11438), 1, anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [273532] = 8, + ACTIONS(11518), 1, + sym_identifier, + STATE(301), 1, + sym_declaration_list, + STATE(8074), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [273874] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11685), 1, + anon_sym_COMMA, + ACTIONS(11687), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11683), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [273891] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - ACTIONS(11476), 1, + ACTIONS(11440), 1, sym_identifier, - STATE(804), 1, + STATE(756), 1, sym_declaration_list, - STATE(8025), 1, + STATE(7942), 1, sym_nested_namespace_specifier, - STATE(8622), 1, + STATE(8986), 1, sym__namespace_specifier, - [273557] = 4, + [273916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11651), 1, + ACTIONS(11689), 1, anon_sym_LPAREN2, - STATE(6848), 2, + STATE(6889), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [273574] = 4, + [273933] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10611), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6171), 1, + anon_sym_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11691), 1, + anon_sym_RPAREN, + STATE(1994), 1, + sym_parameter_list, + STATE(6192), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [273956] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(11653), 1, + ACTIONS(11693), 1, anon_sym_EQ, - ACTIONS(10609), 5, + ACTIONS(10575), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [273591] = 8, + [273973] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5248), 1, anon_sym_LBRACE, - ACTIONS(11420), 1, + ACTIONS(11434), 1, sym_identifier, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - STATE(565), 1, + STATE(574), 1, sym_declaration_list, - STATE(7947), 1, + STATE(7910), 1, sym_nested_namespace_specifier, - STATE(8622), 1, + STATE(8986), 1, sym__namespace_specifier, - [273616] = 4, + [273998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11655), 1, + ACTIONS(11695), 1, anon_sym_LPAREN2, - STATE(6848), 2, + STATE(6871), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11657), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [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, + [274015] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11666), 1, + ACTIONS(11697), 1, anon_sym_RPAREN, - STATE(1942), 1, + STATE(1994), 1, sym_parameter_list, - STATE(6165), 2, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273717] = 6, + [274038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3195), 1, + STATE(3239), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10813), 3, + ACTIONS(10825), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [273738] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - STATE(4306), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(11668), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [273757] = 4, + [274059] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11670), 1, + ACTIONS(11699), 1, anon_sym_LPAREN2, - STATE(6856), 2, + STATE(6874), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [273774] = 4, + [274076] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6171), 1, + anon_sym_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11701), 1, + anon_sym_RPAREN, + STATE(1994), 1, + sym_parameter_list, + STATE(6192), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11672), 1, + ACTIONS(11703), 1, anon_sym_LPAREN2, STATE(6848), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [273791] = 4, + [274116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11674), 1, + ACTIONS(11705), 1, anon_sym_LPAREN2, - STATE(6858), 2, + STATE(6874), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11707), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [273808] = 4, + [274133] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11676), 1, + ACTIONS(6171), 1, + anon_sym_LBRACK, + ACTIONS(6177), 1, + anon_sym_COLON, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 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__, - [273825] = 4, + STATE(1994), 1, + sym_parameter_list, + STATE(6956), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11680), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + STATE(4325), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(11710), 3, 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, + anon_sym_RPAREN, + anon_sym_GT2, + [274175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11684), 1, + ACTIONS(11712), 1, anon_sym_LPAREN2, - STATE(6861), 2, + STATE(6878), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [273859] = 4, + [274192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11686), 1, + ACTIONS(11714), 1, anon_sym_LPAREN2, - STATE(6848), 2, + STATE(6874), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [273876] = 4, + [274209] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11688), 1, - anon_sym_LPAREN2, - STATE(6864), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(11436), 1, + anon_sym_COLON_COLON, + ACTIONS(11438), 1, anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [273893] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11690), 1, - anon_sym_LBRACK, - ACTIONS(11693), 1, - anon_sym_EQ, - ACTIONS(11695), 1, - anon_sym_DOT, - STATE(6863), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [273912] = 4, + ACTIONS(11716), 1, + sym_identifier, + STATE(776), 1, + sym_declaration_list, + STATE(8040), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [274234] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11698), 1, + ACTIONS(11718), 1, anon_sym_LPAREN2, - STATE(6848), 2, + STATE(6882), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [273929] = 7, + [274251] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(5238), 1, anon_sym_LBRACE, - ACTIONS(4187), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - STATE(2361), 1, - sym_template_argument_list, - STATE(7361), 2, - sym_argument_list, - sym_initializer_list, - [273952] = 4, + ACTIONS(11438), 1, + anon_sym_inline, + ACTIONS(11448), 1, + sym_identifier, + STATE(744), 1, + sym_declaration_list, + STATE(7758), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [274276] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11700), 1, + ACTIONS(11720), 1, anon_sym_LPAREN2, - STATE(6868), 2, + STATE(6874), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [273969] = 7, + [274293] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11702), 1, + ACTIONS(11722), 1, anon_sym_RPAREN, - STATE(1942), 1, + STATE(1994), 1, sym_parameter_list, - STATE(6165), 2, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [273992] = 4, + [274316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11704), 1, + ACTIONS(11724), 1, anon_sym_LPAREN2, - STATE(6848), 2, + STATE(6885), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11665), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [274333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11726), 1, + anon_sym_LPAREN2, + STATE(6874), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [274009] = 7, + [274350] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(11728), 1, + anon_sym_EQ, + ACTIONS(10575), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [274367] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, - anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11706), 1, - anon_sym_RPAREN, - STATE(1942), 1, + ACTIONS(10047), 1, + anon_sym_LBRACK, + STATE(3016), 1, sym_parameter_list, - STATE(6165), 2, + STATE(6212), 1, + sym__function_declarator_seq, + STATE(6087), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274032] = 6, + [274390] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(5493), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7299), 1, - anon_sym___attribute__, - STATE(5453), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5539), 2, + ACTIONS(6171), 1, + anon_sym_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11730), 1, + anon_sym_RPAREN, + STATE(1994), 1, + sym_parameter_list, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274053] = 4, + [274413] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11708), 1, + ACTIONS(11732), 1, anon_sym_LPAREN2, - STATE(6848), 2, + STATE(6874), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(11633), 4, + ACTIONS(11665), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [274070] = 7, + [274430] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + STATE(4325), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(11710), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [274449] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6098), 1, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(6204), 1, + ACTIONS(6202), 1, anon_sym_COLON, - ACTIONS(7918), 1, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - STATE(1942), 1, + STATE(1994), 1, sym_parameter_list, - STATE(6920), 2, + STATE(6956), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274093] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(11422), 1, - anon_sym_COLON_COLON, - ACTIONS(11424), 1, - anon_sym_inline, - ACTIONS(11710), 1, - sym_identifier, - STATE(680), 1, - sym_declaration_list, - STATE(7710), 1, - sym_nested_namespace_specifier, - STATE(8622), 1, - sym__namespace_specifier, - [274118] = 7, + [274472] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(6187), 1, + anon_sym_COLON, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11712), 1, - anon_sym_RPAREN, - STATE(1942), 1, + STATE(1994), 1, sym_parameter_list, - STATE(6165), 2, + STATE(6956), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274141] = 6, + [274495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3195), 1, + STATE(3239), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10750), 3, + ACTIONS(10829), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [274162] = 7, + [274516] = 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(11714), 1, - anon_sym_EQ, - STATE(1623), 1, - sym_template_argument_list, - ACTIONS(6268), 2, + ACTIONS(6171), 1, + anon_sym_LBRACK, + ACTIONS(6198), 1, + anon_sym_COLON, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + STATE(1994), 1, + sym_parameter_list, + STATE(6956), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274539] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + STATE(4325), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(11734), 3, anon_sym_COMMA, - anon_sym_RBRACK, - [274185] = 7, + anon_sym_RPAREN, + anon_sym_GT2, + [274558] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11736), 1, + anon_sym_LBRACK, + ACTIONS(11739), 1, + anon_sym_EQ, + ACTIONS(11741), 1, + anon_sym_DOT, + STATE(6896), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [274577] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7162), 1, + anon_sym___attribute__, + ACTIONS(7164), 1, + anon_sym___attribute, + ACTIONS(7928), 1, + anon_sym_LBRACK_LBRACK, + STATE(5553), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274598] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6098), 1, + ACTIONS(6171), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11716), 1, + ACTIONS(11744), 1, anon_sym_RPAREN, - STATE(1942), 1, + STATE(1994), 1, sym_parameter_list, - STATE(6165), 2, + STATE(6192), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274208] = 6, + [274621] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(11592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11746), 1, + anon_sym_EQ, + STATE(1635), 1, + sym_template_argument_list, + ACTIONS(6237), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [274644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3195), 1, + STATE(3239), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 3, + ACTIONS(10813), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [274229] = 7, + [274665] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(11592), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11597), 1, + anon_sym_EQ, + STATE(1635), 1, + sym_template_argument_list, + ACTIONS(6281), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [274688] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5238), 1, + anon_sym_LBRACE, + ACTIONS(11436), 1, + anon_sym_COLON_COLON, + ACTIONS(11438), 1, + anon_sym_inline, + ACTIONS(11748), 1, + sym_identifier, + STATE(799), 1, + sym_declaration_list, + STATE(7858), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [274713] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6098), 1, - anon_sym_LBRACK, - ACTIONS(6200), 1, + ACTIONS(6165), 1, anon_sym_COLON, - ACTIONS(7918), 1, + ACTIONS(6171), 1, + anon_sym_LBRACK, + ACTIONS(7928), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - STATE(1942), 1, + STATE(1994), 1, sym_parameter_list, - STATE(6920), 2, + STATE(6956), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274252] = 6, + [274736] = 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(43), 1, + anon_sym___attribute, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7145), 1, + anon_sym___attribute__, + STATE(5467), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(5564), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [274757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10611), 1, - anon_sym___attribute, - ACTIONS(11718), 1, - anon_sym_EQ, - ACTIONS(10609), 5, - anon_sym_COMMA, + ACTIONS(11750), 1, anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [274290] = 7, + STATE(6874), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(11665), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [274774] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11720), 1, + ACTIONS(11752), 1, anon_sym_SEMI, - STATE(6938), 1, + STATE(6955), 1, aux_sym_field_declaration_repeat1, - STATE(8596), 1, + STATE(8858), 1, sym_attribute_specifier, - [274312] = 7, + [274796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(11182), 1, + anon_sym_LBRACK, + STATE(6513), 1, + sym_template_argument_list, + ACTIONS(11180), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [274814] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11722), 1, + ACTIONS(11754), 1, anon_sym_SEMI, - STATE(7033), 1, + STATE(6953), 1, aux_sym_field_declaration_repeat1, - STATE(8719), 1, + STATE(8915), 1, sym_attribute_specifier, - [274334] = 6, + [274836] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 1, - anon_sym_try, - ACTIONS(10654), 1, - anon_sym_LBRACE, - ACTIONS(11724), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(11756), 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, + STATE(6963), 1, + aux_sym_field_declaration_repeat1, + STATE(8541), 1, + sym_attribute_specifier, + [274858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11728), 2, + ACTIONS(11758), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11730), 4, + ACTIONS(11760), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [274382] = 6, + [274872] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(11762), 1, + anon_sym_SEMI, + STATE(6952), 1, + aux_sym_field_declaration_repeat1, + STATE(8426), 1, + sym_attribute_specifier, + [274894] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(11732), 1, + ACTIONS(11764), 1, anon_sym_LBRACE, - STATE(8262), 1, + STATE(8148), 1, sym_trailing_return_type, - STATE(4831), 2, + STATE(6966), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274402] = 6, + [274914] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - ACTIONS(10123), 1, - anon_sym_try, - ACTIONS(11734), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(11766), 1, anon_sym_SEMI, - ACTIONS(11736), 1, - anon_sym_EQ, - STATE(776), 2, - sym_compound_statement, - sym_try_statement, - [274422] = 6, + STATE(7018), 1, + aux_sym_field_declaration_repeat1, + STATE(8277), 1, + sym_attribute_specifier, + [274936] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3432), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10825), 2, + anon_sym_LBRACE, + anon_sym_requires, + [274956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(10738), 1, + ACTIONS(10725), 1, anon_sym_LBRACE, - STATE(8225), 1, + STATE(8860), 1, sym_trailing_return_type, - STATE(4831), 2, + STATE(6920), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274442] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9837), 1, - anon_sym_try, - ACTIONS(10674), 1, - anon_sym_LBRACE, - ACTIONS(11738), 1, - anon_sym_SEMI, - ACTIONS(11740), 1, - anon_sym_EQ, - STATE(1767), 2, - sym_compound_statement, - sym_try_statement, - [274462] = 6, + [274976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9837), 1, + ACTIONS(9845), 1, anon_sym_try, - ACTIONS(10674), 1, + ACTIONS(10689), 1, anon_sym_LBRACE, - ACTIONS(11742), 1, + ACTIONS(11768), 1, anon_sym_SEMI, - ACTIONS(11744), 1, + ACTIONS(11770), 1, anon_sym_EQ, - STATE(1792), 2, + STATE(2116), 2, sym_compound_statement, sym_try_statement, - [274482] = 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(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, + [274996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11752), 2, + ACTIONS(11772), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11754), 4, + ACTIONS(11774), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [274532] = 6, + [275010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3510), 1, + STATE(3432), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10813), 2, + ACTIONS(10821), 2, anon_sym_LBRACE, anon_sym_requires, - [274552] = 6, + [275030] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 1, - anon_sym_try, - ACTIONS(10654), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11756), 1, + ACTIONS(10188), 1, + anon_sym_try, + ACTIONS(11776), 1, anon_sym_SEMI, - ACTIONS(11758), 1, + ACTIONS(11778), 1, anon_sym_EQ, - STATE(2002), 2, + STATE(549), 2, sym_compound_statement, sym_try_statement, - [274572] = 6, + [275050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(10738), 1, + ACTIONS(11764), 1, anon_sym_LBRACE, - STATE(8225), 1, + STATE(8148), 1, sym_trailing_return_type, - STATE(6917), 2, + STATE(4713), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274592] = 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(11760), 1, - anon_sym_SEMI, - STATE(7033), 1, - aux_sym_field_declaration_repeat1, - STATE(8792), 1, - sym_attribute_specifier, - [274614] = 6, + [275070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3510), 1, + STATE(3432), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10817), 2, + ACTIONS(10829), 2, anon_sym_LBRACE, anon_sym_requires, - [274634] = 6, + [275090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3510), 1, + STATE(3432), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10760), 2, + ACTIONS(10767), 2, anon_sym_LBRACE, anon_sym_requires, - [274654] = 7, + [275110] = 3, ACTIONS(3), 1, sym_comment, - 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(11655), 1, + aux_sym_preproc_elif_token1, + ACTIONS(11653), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [275124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11764), 2, + ACTIONS(11780), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11766), 4, + ACTIONS(11782), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [274690] = 6, + [275138] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9810), 1, - anon_sym_try, - ACTIONS(10666), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3432), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10813), 2, anon_sym_LBRACE, - ACTIONS(11768), 1, - anon_sym_SEMI, - ACTIONS(11770), 1, - anon_sym_EQ, - STATE(2148), 2, - sym_compound_statement, - sym_try_statement, - [274710] = 7, + anon_sym_requires, + [275158] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11772), 1, + ACTIONS(11784), 1, anon_sym_SEMI, - STATE(7033), 1, + STATE(6946), 1, aux_sym_field_declaration_repeat1, - STATE(8215), 1, + STATE(8493), 1, sym_attribute_specifier, - [274732] = 7, + [275180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(8521), 1, - anon_sym_COMMA, - ACTIONS(11774), 1, - anon_sym_SEMI, - STATE(7033), 1, - aux_sym_field_declaration_repeat1, - STATE(8806), 1, - sym_attribute_specifier, - [274754] = 3, + STATE(8428), 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, + [275194] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(10725), 1, + anon_sym_LBRACE, + STATE(8860), 1, + sym_trailing_return_type, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [275214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11776), 2, + ACTIONS(11772), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11778), 4, + ACTIONS(11774), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [274768] = 7, + [275228] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(11786), 1, + anon_sym_SEMI, + STATE(7018), 1, + aux_sym_field_declaration_repeat1, + STATE(8504), 1, + sym_attribute_specifier, + [275250] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11780), 1, + ACTIONS(11788), 1, anon_sym_SEMI, - STATE(6948), 1, + STATE(6938), 1, aux_sym_field_declaration_repeat1, - STATE(8605), 1, + STATE(8265), 1, sym_attribute_specifier, - [274790] = 6, + [275272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10081), 1, + ACTIONS(10188), 1, anon_sym_try, - ACTIONS(11782), 1, + ACTIONS(11790), 1, anon_sym_SEMI, - ACTIONS(11784), 1, + ACTIONS(11792), 1, anon_sym_EQ, - STATE(317), 2, + STATE(657), 2, sym_compound_statement, sym_try_statement, - [274810] = 7, + [275292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(8521), 1, - anon_sym_COMMA, - ACTIONS(11786), 1, + ACTIONS(9830), 1, + anon_sym_try, + ACTIONS(10685), 1, + anon_sym_LBRACE, + ACTIONS(11794), 1, anon_sym_SEMI, - STATE(7033), 1, - aux_sym_field_declaration_repeat1, - STATE(8875), 1, - sym_attribute_specifier, - [274832] = 5, + ACTIONS(11796), 1, + anon_sym_EQ, + STATE(2107), 2, + sym_compound_statement, + sym_try_statement, + [275312] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11126), 1, + ACTIONS(11170), 1, anon_sym_LBRACK, - ACTIONS(11124), 2, + ACTIONS(11168), 2, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5943), 2, + STATE(5892), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [274850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11788), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11790), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [274864] = 3, + [275330] = 7, ACTIONS(3), 1, sym_comment, - 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(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(11798), 1, + anon_sym_SEMI, + STATE(7018), 1, + aux_sym_field_declaration_repeat1, + STATE(8560), 1, + sym_attribute_specifier, + [275352] = 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, + ACTIONS(9845), 1, + anon_sym_try, + ACTIONS(10689), 1, anon_sym_LBRACE, - anon_sym_requires, - [274898] = 7, + ACTIONS(11800), 1, + anon_sym_SEMI, + ACTIONS(11802), 1, + anon_sym_EQ, + STATE(2059), 2, + sym_compound_statement, + sym_try_statement, + [275372] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11792), 1, + ACTIONS(11804), 1, anon_sym_SEMI, - STATE(6898), 1, + STATE(7018), 1, aux_sym_field_declaration_repeat1, - STATE(8149), 1, + STATE(8373), 1, sym_attribute_specifier, - [274920] = 7, + [275394] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11794), 1, + ACTIONS(11806), 1, anon_sym_SEMI, - STATE(7033), 1, + STATE(7018), 1, aux_sym_field_declaration_repeat1, - STATE(8636), 1, + STATE(8392), 1, sym_attribute_specifier, - [274942] = 7, + [275416] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11796), 1, + ACTIONS(11808), 1, anon_sym_SEMI, - STATE(7033), 1, + STATE(6930), 1, aux_sym_field_declaration_repeat1, - STATE(8292), 1, + STATE(8527), 1, sym_attribute_specifier, - [274964] = 6, + [275438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9843), 1, - anon_sym_DASH_GT, - ACTIONS(11798), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3432), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10761), 2, anon_sym_LBRACE, - STATE(8076), 1, - sym_trailing_return_type, - STATE(4831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [274984] = 7, + anon_sym_requires, + [275458] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6474), 1, + anon_sym_LBRACK, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(4037), 1, + sym_template_argument_list, + ACTIONS(6476), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [275476] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11800), 1, + ACTIONS(11810), 1, anon_sym_SEMI, - STATE(7033), 1, + STATE(7018), 1, aux_sym_field_declaration_repeat1, - STATE(8237), 1, + STATE(8391), 1, sym_attribute_specifier, - [275006] = 5, + [275498] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_LBRACK, - ACTIONS(7483), 1, - anon_sym_LT, - STATE(3998), 1, - sym_template_argument_list, - ACTIONS(6428), 3, - anon_sym_RPAREN, + ACTIONS(9818), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [275024] = 5, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3432), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + ACTIONS(10817), 2, + anon_sym_LBRACE, + anon_sym_requires, + [275518] = 3, ACTIONS(3), 1, sym_comment, - 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(11812), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11814), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [275532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11816), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11818), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [275546] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11802), 1, + ACTIONS(11820), 1, anon_sym_SEMI, - STATE(6909), 1, + STATE(7018), 1, aux_sym_field_declaration_repeat1, - STATE(8579), 1, + STATE(8443), 1, sym_attribute_specifier, - [275064] = 7, + [275568] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11804), 1, + ACTIONS(11822), 1, anon_sym_SEMI, - STATE(6904), 1, + STATE(6962), 1, aux_sym_field_declaration_repeat1, - STATE(8336), 1, + STATE(8079), 1, sym_attribute_specifier, - [275086] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10182), 1, - anon_sym_try, - ACTIONS(11806), 1, - anon_sym_SEMI, - ACTIONS(11808), 1, - anon_sym_EQ, - STATE(508), 2, - sym_compound_statement, - sym_try_statement, - [275106] = 6, + [275590] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(11124), 1, anon_sym_LBRACK, - STATE(3510), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - ACTIONS(10801), 2, - anon_sym_LBRACE, - anon_sym_requires, - [275126] = 3, + STATE(6518), 1, + sym_template_argument_list, + ACTIONS(11120), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [275608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11764), 2, + ACTIONS(11812), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11766), 4, + ACTIONS(11814), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [275140] = 6, + [275622] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(10138), 1, - anon_sym_try, - ACTIONS(11810), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(11824), 1, anon_sym_SEMI, - ACTIONS(11812), 1, - anon_sym_EQ, - STATE(721), 2, - sym_compound_statement, - sym_try_statement, - [275160] = 6, + STATE(6957), 1, + aux_sym_field_declaration_repeat1, + STATE(8379), 1, + sym_attribute_specifier, + [275644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - ACTIONS(10081), 1, + ACTIONS(10194), 1, anon_sym_try, - ACTIONS(11814), 1, + ACTIONS(11826), 1, anon_sym_SEMI, - ACTIONS(11816), 1, + ACTIONS(11828), 1, anon_sym_EQ, - STATE(293), 2, + STATE(778), 2, sym_compound_statement, sym_try_statement, - [275180] = 7, + [275664] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11818), 1, + ACTIONS(11830), 1, anon_sym_SEMI, - STATE(6941), 1, + STATE(7018), 1, aux_sym_field_declaration_repeat1, - STATE(8249), 1, + STATE(8105), 1, sym_attribute_specifier, - [275202] = 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(10831), 2, - anon_sym_LBRACE, - anon_sym_requires, - [275222] = 5, + [275686] = 7, ACTIONS(3), 1, sym_comment, - 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(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(11832), 1, + anon_sym_SEMI, + STATE(7018), 1, + aux_sym_field_declaration_repeat1, + STATE(8545), 1, + sym_attribute_specifier, + [275708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11728), 2, + ACTIONS(11834), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11730), 4, + ACTIONS(11836), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [275254] = 6, + [275722] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_SEMI, + STATE(7018), 1, + aux_sym_field_declaration_repeat1, + STATE(8293), 1, + sym_attribute_specifier, + [275744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(6288), 1, + anon_sym_LBRACK, + ACTIONS(7928), 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, + ACTIONS(6290), 2, + anon_sym_LPAREN2, + anon_sym_COLON, + STATE(5824), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275274] = 6, + [275762] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - ACTIONS(10138), 1, - anon_sym_try, - ACTIONS(11820), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(8527), 1, + anon_sym_COMMA, + ACTIONS(11840), 1, anon_sym_SEMI, - ACTIONS(11822), 1, - anon_sym_EQ, - STATE(709), 2, - sym_compound_statement, - sym_try_statement, - [275294] = 6, + STATE(7018), 1, + aux_sym_field_declaration_repeat1, + STATE(8433), 1, + sym_attribute_specifier, + [275784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - ACTIONS(10123), 1, + ACTIONS(10149), 1, anon_sym_try, - ACTIONS(11824), 1, + ACTIONS(11842), 1, anon_sym_SEMI, - ACTIONS(11826), 1, + ACTIONS(11844), 1, anon_sym_EQ, - STATE(807), 2, + STATE(811), 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, + [275804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3510), 1, + STATE(3432), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10805), 2, + ACTIONS(10771), 2, anon_sym_LBRACE, anon_sym_requires, - [275352] = 3, + [275824] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9853), 1, + anon_sym_try, + ACTIONS(10660), 1, + anon_sym_LBRACE, + ACTIONS(11846), 1, + anon_sym_SEMI, + ACTIONS(11848), 1, + anon_sym_EQ, + STATE(1860), 2, + sym_compound_statement, + sym_try_statement, + [275844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11279), 2, + ACTIONS(11229), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(11828), 4, + ACTIONS(11850), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [275366] = 7, + [275858] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11830), 1, + ACTIONS(11852), 1, anon_sym_SEMI, - STATE(7033), 1, + STATE(7018), 1, aux_sym_field_declaration_repeat1, - STATE(8348), 1, + STATE(8294), 1, sym_attribute_specifier, - [275388] = 7, + [275880] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11832), 1, + ACTIONS(11854), 1, anon_sym_SEMI, - STATE(6946), 1, + STATE(7018), 1, aux_sym_field_declaration_repeat1, - STATE(8327), 1, + STATE(8987), 1, sym_attribute_specifier, - [275410] = 7, + [275902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(8521), 1, - anon_sym_COMMA, - ACTIONS(11834), 1, + ACTIONS(6474), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(4037), 1, + sym_template_argument_list, + ACTIONS(6476), 3, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(6918), 1, - aux_sym_field_declaration_repeat1, - STATE(8503), 1, - sym_attribute_specifier, - [275432] = 7, + anon_sym_LBRACK_LBRACK, + [275920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11856), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11858), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [275934] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5496), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(11860), 1, + anon_sym_LBRACE, + STATE(8571), 1, + sym_trailing_return_type, + STATE(4713), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [275954] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 1, + anon_sym_LBRACE, + ACTIONS(10063), 1, + anon_sym_try, + ACTIONS(11862), 1, + anon_sym_SEMI, + ACTIONS(11864), 1, + anon_sym_EQ, + STATE(317), 2, + sym_compound_statement, + sym_try_statement, + [275974] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11836), 1, + ACTIONS(11866), 1, anon_sym_SEMI, - STATE(7033), 1, + STATE(7018), 1, aux_sym_field_declaration_repeat1, - STATE(8206), 1, + STATE(8538), 1, sym_attribute_specifier, - [275454] = 6, + [275996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9810), 1, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(10149), 1, anon_sym_try, - ACTIONS(10666), 1, + ACTIONS(11868), 1, + anon_sym_SEMI, + ACTIONS(11870), 1, + anon_sym_EQ, + STATE(673), 2, + sym_compound_statement, + sym_try_statement, + [276016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 1, anon_sym_LBRACE, - ACTIONS(11838), 1, + ACTIONS(10063), 1, + anon_sym_try, + ACTIONS(11872), 1, anon_sym_SEMI, - ACTIONS(11840), 1, + ACTIONS(11874), 1, anon_sym_EQ, - STATE(2118), 2, + STATE(293), 2, sym_compound_statement, sym_try_statement, - [275474] = 5, + [276036] = 3, ACTIONS(3), 1, sym_comment, - 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, + STATE(8315), 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, + [276050] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, + anon_sym_LBRACE, + ACTIONS(10194), 1, + anon_sym_try, + ACTIONS(11876), 1, + anon_sym_SEMI, + ACTIONS(11878), 1, + anon_sym_EQ, + STATE(723), 2, + sym_compound_statement, + sym_try_statement, + [276070] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9830), 1, + anon_sym_try, + ACTIONS(10685), 1, + anon_sym_LBRACE, + ACTIONS(11880), 1, + anon_sym_SEMI, + ACTIONS(11882), 1, + anon_sym_EQ, + STATE(2134), 2, + sym_compound_statement, + sym_try_statement, + [276090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11884), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(11886), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [276104] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5493), 1, + ACTIONS(5496), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9843), 1, + ACTIONS(9859), 1, anon_sym_DASH_GT, - ACTIONS(10603), 1, + ACTIONS(10619), 1, anon_sym_LBRACE, - STATE(8531), 1, + STATE(8418), 1, sym_trailing_return_type, - STATE(6889), 2, + STATE(6928), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [275512] = 7, + [276124] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(8521), 1, - anon_sym_COMMA, - ACTIONS(11842), 1, + ACTIONS(9853), 1, + anon_sym_try, + ACTIONS(10660), 1, + anon_sym_LBRACE, + ACTIONS(11888), 1, anon_sym_SEMI, - STATE(6916), 1, - aux_sym_field_declaration_repeat1, - STATE(8198), 1, - sym_attribute_specifier, - [275534] = 7, + ACTIONS(11890), 1, + anon_sym_EQ, + STATE(1858), 2, + sym_compound_statement, + sym_try_statement, + [276144] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, + ACTIONS(8527), 1, anon_sym_COMMA, - ACTIONS(11844), 1, + ACTIONS(11892), 1, anon_sym_SEMI, - STATE(7033), 1, + STATE(7018), 1, aux_sym_field_declaration_repeat1, - STATE(8234), 1, + STATE(8092), 1, sym_attribute_specifier, - [275556] = 7, + [276166] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, - anon_sym_COMMA, - ACTIONS(11846), 1, + ACTIONS(11894), 1, anon_sym_SEMI, - STATE(7033), 1, - aux_sym_field_declaration_repeat1, - STATE(8913), 1, + STATE(6994), 2, sym_attribute_specifier, - [275578] = 7, + aux_sym_type_definition_repeat1, + [276183] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(8521), 1, - anon_sym_COMMA, - ACTIONS(11848), 1, + ACTIONS(11896), 1, anon_sym_SEMI, - STATE(7033), 1, - aux_sym_field_declaration_repeat1, - STATE(8537), 1, + STATE(6986), 2, sym_attribute_specifier, - [275600] = 6, + aux_sym_type_definition_repeat1, + [276200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3510), 1, + ACTIONS(11898), 1, + anon_sym_RPAREN, + STATE(3134), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - ACTIONS(10784), 2, - anon_sym_LBRACE, - anon_sym_requires, - [275620] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10182), 1, - anon_sym_try, - ACTIONS(11850), 1, - anon_sym_SEMI, - ACTIONS(11852), 1, - anon_sym_EQ, - STATE(610), 2, - sym_compound_statement, - sym_try_statement, - [275640] = 3, + [276219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11854), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(11856), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [275654] = 3, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10817), 1, + anon_sym_COLON, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3592), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + [276238] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11858), 2, - anon_sym_RBRACE, + ACTIONS(10956), 1, sym_identifier, - ACTIONS(11860), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [275668] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(8819), 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, - [275682] = 6, + ACTIONS(11900), 1, + aux_sym_preproc_if_token2, + STATE(6862), 1, + sym_enumerator, + STATE(7206), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(7211), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [276257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(11108), 1, + ACTIONS(10821), 1, + anon_sym_COLON, + ACTIONS(11130), 1, anon_sym_LBRACK, - ACTIONS(11862), 1, - anon_sym_RPAREN, - STATE(3113), 1, + STATE(3592), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - [275701] = 5, + [276276] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11902), 1, + anon_sym_COMMA, + ACTIONS(11907), 1, + anon_sym___attribute, + STATE(6984), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(11905), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [276293] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11864), 1, + ACTIONS(11909), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(6988), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275718] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + [276310] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11868), 1, + ACTIONS(11911), 1, anon_sym_SEMI, - STATE(6967), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275752] = 5, + [276327] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10761), 1, + anon_sym_COLON, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3592), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + [276346] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11870), 1, + ACTIONS(11913), 1, anon_sym_SEMI, - STATE(7015), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275769] = 5, + [276363] = 6, ACTIONS(3), 1, sym_comment, - 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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(10771), 1, + anon_sym_COLON, + ACTIONS(11130), 1, + anon_sym_LBRACK, + STATE(3592), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + [276382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6474), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(3764), 1, + sym_template_argument_list, + ACTIONS(6476), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [276399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + ACTIONS(11915), 1, + anon_sym_RPAREN, + STATE(3134), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + [276418] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11876), 1, + ACTIONS(11917), 1, anon_sym_SEMI, - STATE(7002), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275803] = 6, + [276435] = 5, ACTIONS(3), 1, sym_comment, - 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(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(11919), 1, + anon_sym_SEMI, + STATE(6995), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [276452] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11880), 1, + ACTIONS(11921), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275839] = 5, + [276469] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11882), 1, + ACTIONS(11923), 1, anon_sym_SEMI, - STATE(6977), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275856] = 5, + [276486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(11886), 1, + ACTIONS(11927), 1, anon_sym_COLON_COLON, - STATE(7846), 1, + STATE(7984), 1, sym_argument_list, - ACTIONS(11884), 2, + ACTIONS(11925), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [275873] = 5, + [276503] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11888), 1, + ACTIONS(11929), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(6999), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275890] = 5, + [276520] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11890), 1, + ACTIONS(11931), 1, anon_sym_SEMI, - STATE(6965), 2, + STATE(7001), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275907] = 5, + [276537] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11892), 1, + ACTIONS(11933), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275924] = 2, + [276554] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11894), 5, - anon_sym_LPAREN2, + ACTIONS(11436), 1, + anon_sym_COLON_COLON, + ACTIONS(11438), 1, anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [275935] = 5, + ACTIONS(11935), 1, + sym_identifier, + STATE(8162), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [276573] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11896), 1, + ACTIONS(11937), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [275952] = 4, + [276590] = 6, 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(1850), 1, + anon_sym_operator, + ACTIONS(11939), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2412), 1, + sym_template_method, + STATE(7740), 1, + sym_operator_name, + [276609] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11904), 1, - anon_sym_DOT, - STATE(6971), 1, - aux_sym_module_name_repeat1, - ACTIONS(11902), 3, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(11941), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [275982] = 6, + STATE(6992), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [276626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11422), 1, + ACTIONS(11943), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(6317), 3, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_or, + [276639] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - ACTIONS(11907), 1, + ACTIONS(11945), 1, sym_identifier, - STATE(8608), 1, - sym_nested_namespace_specifier, - STATE(8622), 1, + STATE(7352), 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, + STATE(7970), 1, + sym_nested_namespace_specifier, + [276658] = 5, 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(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(11947), 1, + anon_sym_SEMI, + STATE(7012), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [276675] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11915), 1, + ACTIONS(11949), 1, anon_sym_SEMI, - STATE(7001), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276052] = 6, + [276692] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11953), 1, + anon_sym_DOT, + STATE(7049), 1, + aux_sym_module_name_repeat1, + ACTIONS(11951), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [276707] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11436), 1, + anon_sym_COLON_COLON, + ACTIONS(11438), 1, + anon_sym_inline, + ACTIONS(11955), 1, + sym_identifier, + STATE(8222), 1, + sym_nested_namespace_specifier, + STATE(8986), 1, + sym__namespace_specifier, + [276726] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1850), 1, anon_sym_operator, - ACTIONS(11913), 1, + ACTIONS(11957), 1, sym_identifier, - STATE(1923), 1, + STATE(1947), 1, sym_template_type, - STATE(2423), 1, + STATE(3600), 1, sym_template_method, - STATE(7806), 1, + STATE(7886), 1, sym_operator_name, - [276071] = 5, + [276745] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11917), 1, + ACTIONS(11959), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(7014), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276088] = 5, + [276762] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11919), 1, + ACTIONS(11961), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276105] = 5, + [276779] = 6, ACTIONS(3), 1, sym_comment, - 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(9818), 1, + anon_sym_LPAREN2, + ACTIONS(11130), 1, + anon_sym_LBRACK, + ACTIONS(11963), 1, + anon_sym_RPAREN, + STATE(3134), 1, + sym_parameter_list, + STATE(6115), 1, + sym__function_declarator_seq, + [276798] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11923), 1, + ACTIONS(11965), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276139] = 5, + [276815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - ACTIONS(11927), 1, + ACTIONS(11969), 1, anon_sym_COLON_COLON, - STATE(7946), 1, + STATE(7747), 1, sym_argument_list, - ACTIONS(11925), 2, + ACTIONS(11967), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [276156] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(11929), 1, - anon_sym_SEMI, - STATE(6969), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [276173] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9321), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(9325), 1, - anon_sym_EQ, - ACTIONS(11931), 1, - sym_identifier, - ACTIONS(9323), 2, - anon_sym_COMMA, - anon_sym_GT2, - [276190] = 5, + [276832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - STATE(1624), 1, + STATE(1636), 1, sym_template_argument_list, - ACTIONS(4927), 2, + ACTIONS(4917), 2, anon_sym_COMMA, anon_sym_RBRACK, - [276207] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + [276849] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11935), 1, + ACTIONS(11971), 1, anon_sym_SEMI, - STATE(7006), 2, + STATE(7042), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276237] = 6, + [276866] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1850), 1, - anon_sym_operator, - ACTIONS(11937), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(3576), 1, - sym_template_method, - STATE(7928), 1, - sym_operator_name, - [276256] = 6, + ACTIONS(11973), 1, + anon_sym_COMMA, + ACTIONS(11978), 1, + anon_sym___attribute, + STATE(7018), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(11976), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [276883] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11322), 1, + anon_sym_COLON, + ACTIONS(11980), 1, + anon_sym_SEMI, + STATE(7623), 1, + sym_module_partition, + STATE(8590), 1, + sym_attribute_declaration, + [276902] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10760), 1, + ACTIONS(10813), 1, anon_sym_COLON, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3538), 1, + STATE(3592), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - [276275] = 5, + [276921] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11939), 1, + ACTIONS(11982), 1, anon_sym_SEMI, - STATE(6998), 2, + STATE(7030), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276292] = 6, + [276938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(10801), 1, - anon_sym_COLON, - ACTIONS(11108), 1, - anon_sym_LBRACK, - STATE(3538), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - [276311] = 5, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(11984), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(3471), 1, + sym_template_method, + STATE(7922), 1, + sym_operator_name, + [276957] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11941), 1, + ACTIONS(11986), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(7038), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276328] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11322), 1, - anon_sym_COLON, - ACTIONS(11943), 1, - anon_sym_SEMI, - STATE(7549), 1, - sym_module_partition, - STATE(8419), 1, - sym_attribute_declaration, - [276347] = 6, + [276974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - ACTIONS(11945), 1, + ACTIONS(11988), 1, sym_identifier, - STATE(8622), 1, - sym__namespace_specifier, - STATE(8750), 1, + STATE(8489), 1, sym_nested_namespace_specifier, - [276366] = 5, + STATE(8986), 1, + sym__namespace_specifier, + [276993] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11947), 1, + ACTIONS(11990), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(7035), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276383] = 6, + [277010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11422), 1, + ACTIONS(11994), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, - anon_sym_inline, - ACTIONS(11949), 1, + ACTIONS(11992), 4, + anon_sym_virtual, sym_identifier, - STATE(7600), 1, - sym__namespace_specifier, - STATE(7969), 1, - sym_nested_namespace_specifier, - [276402] = 6, + anon_sym_decltype, + anon_sym_template, + [277023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10831), 1, + ACTIONS(10825), 1, anon_sym_COLON, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3538), 1, + STATE(3592), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - [276421] = 5, - ACTIONS(3), 1, - sym_comment, - 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(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, + [277042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10750), 1, + ACTIONS(10829), 1, anon_sym_COLON, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3538), 1, + STATE(3592), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - [276474] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11422), 1, - anon_sym_COLON_COLON, - ACTIONS(11424), 1, - anon_sym_inline, - ACTIONS(11949), 1, - sym_identifier, - STATE(7635), 1, - sym__namespace_specifier, - STATE(7999), 1, - sym_nested_namespace_specifier, - [276493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(11955), 1, - anon_sym_SEMI, - STATE(4306), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [276510] = 5, + [277061] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11957), 1, + ACTIONS(11996), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(7033), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276527] = 5, + [277078] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11959), 1, + ACTIONS(11998), 1, anon_sym_SEMI, - STATE(7011), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276544] = 6, + [277095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10784), 1, + ACTIONS(10767), 1, anon_sym_COLON, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3538), 1, + STATE(3592), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - [276563] = 3, + [277114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11963), 1, - anon_sym_COLON_COLON, - ACTIONS(11961), 4, - anon_sym_virtual, - sym_identifier, + ACTIONS(8274), 1, + sym_auto, + ACTIONS(8276), 1, anon_sym_decltype, - anon_sym_template, - [276576] = 5, + STATE(2549), 1, + sym_decltype_auto, + ACTIONS(12000), 2, + anon_sym_COMMA, + anon_sym_GT2, + [277131] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11965), 1, + ACTIONS(12002), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276593] = 6, - ACTIONS(3), 1, - sym_comment, - 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, + [277148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11422), 1, + ACTIONS(11436), 1, anon_sym_COLON_COLON, - ACTIONS(11424), 1, + ACTIONS(11438), 1, anon_sym_inline, - ACTIONS(11967), 1, + ACTIONS(12004), 1, sym_identifier, - STATE(8534), 1, + STATE(8316), 1, sym_nested_namespace_specifier, - STATE(8622), 1, + STATE(8986), 1, sym__namespace_specifier, - [276631] = 5, + [277167] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11969), 1, + ACTIONS(12006), 1, anon_sym_SEMI, - STATE(6978), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276648] = 5, + [277184] = 6, ACTIONS(3), 1, sym_comment, - 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(7299), 1, - anon_sym___attribute__, - ACTIONS(11971), 1, - anon_sym_SEMI, - STATE(4306), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [276682] = 5, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(12008), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2412), 1, + sym_template_method, + STATE(8048), 1, + sym_operator_name, + [277203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8242), 1, + ACTIONS(8274), 1, sym_auto, - ACTIONS(8244), 1, + ACTIONS(8276), 1, anon_sym_decltype, - STATE(2483), 1, + STATE(2549), 1, sym_decltype_auto, - ACTIONS(11973), 2, + ACTIONS(12010), 2, anon_sym_COMMA, anon_sym_GT2, - [276699] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11975), 1, - anon_sym_COMMA, - ACTIONS(11980), 1, - anon_sym___attribute, - STATE(7013), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(11978), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [276716] = 5, + [277220] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11982), 1, + ACTIONS(12012), 1, anon_sym_SEMI, - STATE(6994), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276733] = 5, + [277237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(11984), 1, + ACTIONS(12016), 1, + anon_sym_DOT, + STATE(7039), 1, + aux_sym_module_name_repeat1, + ACTIONS(12014), 3, anon_sym_SEMI, - STATE(4306), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [276750] = 5, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [277252] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(11273), 1, + anon_sym_COMMA, + ACTIONS(12021), 1, anon_sym___attribute, - ACTIONS(7299), 1, - anon_sym___attribute__, - ACTIONS(11986), 1, + STATE(6984), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(12019), 2, anon_sym_SEMI, - STATE(4306), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [276767] = 5, + anon_sym___attribute__, + [277269] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11988), 1, + ACTIONS(12023), 1, anon_sym_SEMI, - STATE(4306), 2, + STATE(7053), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276784] = 5, + [277286] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(11990), 1, + ACTIONS(12025), 1, anon_sym_SEMI, - STATE(7016), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276801] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(11108), 1, - anon_sym_LBRACK, - ACTIONS(11992), 1, - anon_sym_RPAREN, - STATE(3113), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - [276820] = 4, - ACTIONS(3), 1, - sym_comment, - 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, - anon_sym_LBRACK_LBRACK, - [276852] = 6, + [277303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(11108), 1, - anon_sym_LBRACK, - ACTIONS(11996), 1, - anon_sym_RPAREN, - STATE(3113), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - [276871] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - ACTIONS(11108), 1, - anon_sym_LBRACK, - ACTIONS(11998), 1, - anon_sym_RPAREN, - STATE(3113), 1, - sym_parameter_list, - STATE(6153), 1, - sym__function_declarator_seq, - [276890] = 5, + ACTIONS(12027), 2, + anon_sym_class, + anon_sym_typename, + STATE(7989), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [277316] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(11436), 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(1850), 1, - anon_sym_operator, - ACTIONS(12000), 1, + ACTIONS(11438), 1, + anon_sym_inline, + ACTIONS(11945), 1, sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(2423), 1, - sym_template_method, - STATE(7923), 1, - sym_operator_name, - [276926] = 5, + STATE(7522), 1, + sym__namespace_specifier, + STATE(7741), 1, + sym_nested_namespace_specifier, + [277335] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(12002), 1, + ACTIONS(12029), 1, anon_sym_SEMI, - STATE(6991), 2, + STATE(7051), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [276943] = 6, - ACTIONS(3), 1, - sym_comment, - 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, + [277352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11422), 1, - anon_sym_COLON_COLON, - ACTIONS(11424), 1, - anon_sym_inline, - ACTIONS(12004), 1, + ACTIONS(1850), 1, + anon_sym_operator, + ACTIONS(11939), 1, sym_identifier, - STATE(8622), 1, - sym__namespace_specifier, - STATE(8699), 1, - sym_nested_namespace_specifier, - [276981] = 6, + STATE(1947), 1, + sym_template_type, + STATE(2412), 1, + sym_template_method, + STATE(8025), 1, + sym_operator_name, + [277371] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, ACTIONS(11322), 1, anon_sym_COLON, - ACTIONS(12006), 1, + ACTIONS(12031), 1, anon_sym_SEMI, - STATE(7386), 1, + STATE(7565), 1, sym_module_partition, - STATE(8540), 1, + STATE(8382), 1, sym_attribute_declaration, - [277000] = 5, + [277390] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9379), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(9383), 1, + anon_sym_EQ, + ACTIONS(12033), 1, + sym_identifier, + ACTIONS(9381), 2, + anon_sym_COMMA, + anon_sym_GT2, + [277407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11953), 1, + anon_sym_DOT, + STATE(7039), 1, + aux_sym_module_name_repeat1, + ACTIONS(12035), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [277422] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(12008), 1, + ACTIONS(12037), 1, anon_sym_SEMI, - STATE(7017), 2, + STATE(7052), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [277017] = 6, + [277439] = 5, 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(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(12039), 1, + anon_sym_SEMI, + STATE(4325), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [277456] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(7299), 1, + ACTIONS(7145), 1, anon_sym___attribute__, - ACTIONS(12012), 1, + ACTIONS(12041), 1, anon_sym_SEMI, - STATE(6980), 2, + STATE(4325), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [277053] = 5, + [277473] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12014), 1, - anon_sym_COMMA, - ACTIONS(12019), 1, + ACTIONS(43), 1, anon_sym___attribute, - STATE(7033), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(12017), 2, - anon_sym_SEMI, + ACTIONS(7145), 1, anon_sym___attribute__, - [277070] = 3, + ACTIONS(12043), 1, + anon_sym_SEMI, + STATE(4325), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [277490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11911), 2, + ACTIONS(6263), 1, + anon_sym_LBRACE, + ACTIONS(11943), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(6250), 3, + ACTIONS(12045), 2, anon_sym_PIPE_PIPE, - anon_sym_LBRACE, anon_sym_or, - [277083] = 6, + [277505] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(10805), 1, - anon_sym_COLON, - ACTIONS(11108), 1, + ACTIONS(11130), 1, anon_sym_LBRACK, - STATE(3538), 1, + ACTIONS(12047), 1, + anon_sym_RPAREN, + STATE(3134), 1, sym_parameter_list, - STATE(6153), 1, + STATE(6115), 1, sym__function_declarator_seq, - [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, + [277524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(12025), 1, - anon_sym_SEMI, - STATE(1623), 1, - sym_template_argument_list, - [277132] = 5, + ACTIONS(12049), 5, + anon_sym_LPAREN2, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [277535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6474), 1, + anon_sym_LBRACK, + ACTIONS(6536), 1, anon_sym_LT, - ACTIONS(12027), 1, - anon_sym_SEMI, - STATE(1623), 1, + STATE(4315), 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(6476), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [277552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12035), 1, - anon_sym_COMMA, - STATE(7041), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12038), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [277194] = 5, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(7145), 1, + anon_sym___attribute__, + ACTIONS(12051), 1, + anon_sym_SEMI, + STATE(7007), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [277569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(2357), 1, + sym_template_argument_list, + ACTIONS(6381), 2, + anon_sym_LPAREN2, 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, + [277586] = 5, + ACTIONS(10143), 1, sym_comment, - 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(12053), 1, + aux_sym_preproc_include_token2, + ACTIONS(12055), 1, + anon_sym_LPAREN, + ACTIONS(12057), 1, + sym_preproc_arg, + STATE(7877), 1, + sym_preproc_params, + [277602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(6588), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(2897), 1, - sym_field_declaration_list, - STATE(7833), 1, - sym_base_class_clause, - [277272] = 5, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + ACTIONS(12061), 1, + anon_sym_EQ, + STATE(763), 1, + sym_declaration_list, + [277618] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12052), 1, + ACTIONS(12065), 1, anon_sym_GT2, - STATE(7653), 1, + STATE(7693), 1, aux_sym_template_argument_list_repeat1, - [277288] = 4, + [277634] = 5, ACTIONS(3), 1, sym_comment, - 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(5563), 1, - anon_sym_COLON, - ACTIONS(6035), 1, + ACTIONS(12067), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12069), 1, + anon_sym_COMMA, + ACTIONS(12071), 1, anon_sym_LBRACE, - STATE(2366), 1, - sym_field_declaration_list, - STATE(7746), 1, - sym_base_class_clause, - [277318] = 5, - ACTIONS(10057), 1, + STATE(7326), 1, + aux_sym_base_class_clause_repeat1, + [277650] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12056), 1, + ACTIONS(12073), 1, anon_sym_DQUOTE, - ACTIONS(12058), 1, + ACTIONS(12075), 1, aux_sym_string_literal_token1, - ACTIONS(12060), 1, + ACTIONS(12077), 1, sym_escape_sequence, - STATE(7052), 1, + STATE(7065), 1, aux_sym_string_literal_repeat1, - [277334] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + [277666] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12079), 1, + anon_sym_DQUOTE, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12062), 1, - anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [277366] = 5, + [277682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12064), 1, - anon_sym_LPAREN2, - ACTIONS(12066), 1, + ACTIONS(9792), 1, anon_sym_LBRACE, - STATE(6004), 1, + ACTIONS(12085), 1, + anon_sym_LPAREN2, + STATE(4321), 1, sym_requirement_seq, - STATE(7929), 1, + STATE(7878), 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, - STATE(7316), 1, - aux_sym_template_argument_list_repeat1, - [277414] = 5, + [277698] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12070), 1, + ACTIONS(12087), 1, anon_sym_GT2, - STATE(7368), 1, + STATE(7270), 1, aux_sym_template_argument_list_repeat1, - [277430] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12072), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [277440] = 5, - ACTIONS(3), 1, + [277714] = 4, + ACTIONS(10143), 1, sym_comment, - 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, + ACTIONS(12089), 1, + anon_sym_SQUOTE, + STATE(7184), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12091), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [277728] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12080), 1, + ACTIONS(12093), 1, anon_sym_DQUOTE, - ACTIONS(12082), 1, + ACTIONS(12095), 1, aux_sym_string_literal_token1, - ACTIONS(12084), 1, + ACTIONS(12097), 1, sym_escape_sequence, - STATE(7063), 1, + STATE(7071), 1, aux_sym_string_literal_repeat1, - [277472] = 4, + [277744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12086), 1, + ACTIONS(12099), 1, anon_sym_COMMA, - STATE(7110), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12088), 2, + STATE(7070), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12102), 2, anon_sym_RPAREN, anon_sym_COLON, - [277486] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + [277758] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12092), 1, + ACTIONS(12104), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [277532] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(7543), 1, - anon_sym_LBRACE, - STATE(4019), 1, - sym_field_declaration_list, - STATE(7744), 1, - sym_base_class_clause, - [277548] = 5, + [277774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12094), 1, + ACTIONS(12106), 1, anon_sym_GT2, - STATE(7381), 1, + STATE(7281), 1, aux_sym_template_argument_list_repeat1, - [277564] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6580), 1, - anon_sym_LT, - STATE(1624), 1, - sym_template_argument_list, - ACTIONS(6428), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [277578] = 5, - ACTIONS(10057), 1, + [277790] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12096), 1, - anon_sym_DQUOTE, - ACTIONS(12098), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12100), 1, + ACTIONS(12083), 1, sym_escape_sequence, - STATE(7069), 1, + ACTIONS(12108), 1, + anon_sym_DQUOTE, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [277594] = 4, - ACTIONS(10057), 1, + [277806] = 5, + ACTIONS(10143), 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, + ACTIONS(12110), 1, + anon_sym_DQUOTE, + ACTIONS(12112), 1, + aux_sym_string_literal_token1, + ACTIONS(12114), 1, sym_escape_sequence, - [277608] = 5, - ACTIONS(10057), 1, + STATE(7075), 1, + aux_sym_string_literal_repeat1, + [277822] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12104), 1, + ACTIONS(12116), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [277624] = 5, + [277838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12106), 1, + ACTIONS(12118), 1, anon_sym_GT2, - STATE(7431), 1, + STATE(7290), 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, + [277854] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12114), 1, + ACTIONS(12120), 1, anon_sym_DQUOTE, - ACTIONS(12116), 1, + ACTIONS(12122), 1, aux_sym_string_literal_token1, - ACTIONS(12118), 1, + ACTIONS(12124), 1, sym_escape_sequence, - STATE(7075), 1, + STATE(7078), 1, aux_sym_string_literal_repeat1, - [277672] = 2, - ACTIONS(3), 1, - sym_comment, - 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, + [277870] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12122), 1, + ACTIONS(12126), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [277712] = 5, + [277886] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12124), 1, + ACTIONS(12128), 1, anon_sym_GT2, - STATE(7495), 1, + STATE(7299), 1, aux_sym_template_argument_list_repeat1, - [277728] = 5, - ACTIONS(10057), 1, + [277902] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12126), 1, + ACTIONS(12130), 1, anon_sym_DQUOTE, - ACTIONS(12128), 1, + ACTIONS(12132), 1, aux_sym_string_literal_token1, - ACTIONS(12130), 1, + ACTIONS(12134), 1, sym_escape_sequence, - STATE(7079), 1, + STATE(7081), 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, + [277918] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12138), 1, + ACTIONS(12136), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [277776] = 5, + [277934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12140), 1, + ACTIONS(12138), 1, anon_sym_GT2, - STATE(7518), 1, + STATE(7308), 1, aux_sym_template_argument_list_repeat1, - [277792] = 5, - ACTIONS(10057), 1, + [277950] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12142), 1, + ACTIONS(12140), 1, anon_sym_DQUOTE, + ACTIONS(12142), 1, + aux_sym_string_literal_token1, ACTIONS(12144), 1, + sym_escape_sequence, + STATE(7084), 1, + aux_sym_string_literal_repeat1, + [277966] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12081), 1, aux_sym_string_literal_token1, + ACTIONS(12083), 1, + sym_escape_sequence, ACTIONS(12146), 1, + anon_sym_DQUOTE, + STATE(7193), 1, + aux_sym_string_literal_repeat1, + [277982] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12148), 1, + anon_sym_DQUOTE, + ACTIONS(12150), 1, + aux_sym_string_literal_token1, + ACTIONS(12152), 1, sym_escape_sequence, - STATE(7082), 1, + STATE(7086), 1, aux_sym_string_literal_repeat1, - [277808] = 5, - ACTIONS(10057), 1, + [277998] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12148), 1, + ACTIONS(12154), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [277824] = 5, + [278014] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(12050), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12150), 1, - anon_sym_GT2, - STATE(7560), 1, - aux_sym_template_argument_list_repeat1, - [277840] = 5, + ACTIONS(9774), 1, + anon_sym_LBRACE, + ACTIONS(12085), 1, + anon_sym_LPAREN2, + STATE(3710), 1, + sym_requirement_seq, + STATE(7799), 1, + sym_requires_parameter_list, + [278030] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10956), 1, + sym_identifier, + ACTIONS(12156), 1, + aux_sym_preproc_if_token2, + STATE(7211), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [278044] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(5607), 1, anon_sym_COLON, - ACTIONS(6035), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - STATE(2389), 1, + STATE(2911), 1, sym_field_declaration_list, - STATE(7908), 1, + STATE(7941), 1, sym_base_class_clause, - [277856] = 5, + [278060] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12158), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [278076] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12160), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [278092] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12162), 1, + anon_sym___except, + ACTIONS(12164), 1, + anon_sym___finally, + STATE(576), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [278106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6516), 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, + STATE(2888), 1, + sym_field_declaration_list, + STATE(7769), 1, + sym_base_class_clause, + [278122] = 5, + ACTIONS(3), 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, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(5609), 1, + anon_sym_LBRACE, + STATE(2257), 1, + sym_field_declaration_list, + STATE(7729), 1, + sym_base_class_clause, + [278138] = 5, + ACTIONS(3), 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(57), 1, + anon_sym_LBRACE, + ACTIONS(10988), 1, + anon_sym_COLON, + STATE(7474), 1, + sym_compound_statement, + STATE(7904), 1, + sym_field_initializer_list, + [278154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12160), 1, + ACTIONS(12166), 1, anon_sym_GT2, - STATE(7610), 1, + STATE(7367), 1, aux_sym_template_argument_list_repeat1, - [277920] = 5, - ACTIONS(10057), 1, + [278170] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12162), 1, - anon_sym_DQUOTE, - ACTIONS(12164), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12166), 1, + ACTIONS(12083), 1, sym_escape_sequence, - STATE(7115), 1, - aux_sym_string_literal_repeat1, - [277936] = 5, - ACTIONS(10057), 1, - sym_comment, ACTIONS(12168), 1, anon_sym_DQUOTE, + STATE(7193), 1, + aux_sym_string_literal_repeat1, + [278186] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(12170), 1, - aux_sym_string_literal_token1, + anon_sym___except, ACTIONS(12172), 1, + anon_sym___finally, + STATE(593), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [278200] = 4, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12174), 1, + anon_sym_SQUOTE, + STATE(7184), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12091), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - STATE(7091), 1, - aux_sym_string_literal_repeat1, - [277952] = 5, - ACTIONS(10057), 1, + [278214] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12174), 1, + ACTIONS(12176), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [277968] = 5, + [278230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(5042), 1, + anon_sym_LT, + ACTIONS(12178), 1, + sym_identifier, + STATE(858), 1, + sym_template_parameter_list, + STATE(1947), 1, + sym_template_type, + [278246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12176), 1, + ACTIONS(12180), 1, anon_sym_GT2, - STATE(7630), 1, + STATE(7356), 1, aux_sym_template_argument_list_repeat1, - [277984] = 5, - ACTIONS(10057), 1, + [278262] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12178), 1, - anon_sym_DQUOTE, - ACTIONS(12180), 1, - aux_sym_string_literal_token1, + ACTIONS(11101), 1, + sym_identifier, + ACTIONS(11900), 1, + aux_sym_preproc_if_token2, + STATE(7206), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + [278278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6024), 1, + anon_sym_LBRACE, + STATE(2391), 1, + sym_field_declaration_list, + STATE(8026), 1, + sym_base_class_clause, + [278294] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1636), 1, + sym_template_argument_list, + ACTIONS(6476), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [278308] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11609), 1, + anon_sym_EQ, + STATE(7148), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [278322] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, ACTIONS(12182), 1, - sym_escape_sequence, - STATE(7094), 1, - aux_sym_string_literal_repeat1, - [278000] = 5, - ACTIONS(10057), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [278338] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12044), 1, - aux_sym_string_literal_token1, - ACTIONS(12046), 1, - sym_escape_sequence, + ACTIONS(5240), 1, + anon_sym_LBRACE, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, ACTIONS(12184), 1, + anon_sym_EQ, + STATE(309), 1, + sym_declaration_list, + [278354] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(8669), 1, + anon_sym_LBRACE, + STATE(4483), 1, + sym_field_declaration_list, + STATE(7864), 1, + sym_base_class_clause, + [278370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12186), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [278386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9808), 1, + anon_sym_LBRACE, + ACTIONS(12085), 1, + anon_sym_LPAREN2, + STATE(2574), 1, + sym_requirement_seq, + STATE(7840), 1, + sym_requires_parameter_list, + [278402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12188), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [278412] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12190), 1, anon_sym_DQUOTE, - STATE(7124), 1, + ACTIONS(12192), 1, + aux_sym_string_literal_token1, + ACTIONS(12194), 1, + sym_escape_sequence, + STATE(7100), 1, aux_sym_string_literal_repeat1, - [278016] = 5, + [278428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(12196), 1, + anon_sym_SEMI, + ACTIONS(12198), 1, + anon_sym_noexcept, + STATE(8390), 1, + sym_trailing_return_type, + [278444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12200), 1, + anon_sym___except, + ACTIONS(12202), 1, + anon_sym___finally, + STATE(593), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [278458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(12204), 1, anon_sym_COMMA, - ACTIONS(12050), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12186), 1, - anon_sym_GT2, - STATE(7649), 1, - aux_sym_template_argument_list_repeat1, - [278032] = 5, - ACTIONS(10057), 1, + STATE(7116), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12207), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [278472] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12188), 1, + ACTIONS(12209), 1, anon_sym_DQUOTE, - ACTIONS(12190), 1, + ACTIONS(12211), 1, aux_sym_string_literal_token1, - ACTIONS(12192), 1, + ACTIONS(12213), 1, sym_escape_sequence, - STATE(7097), 1, + STATE(7137), 1, aux_sym_string_literal_repeat1, - [278048] = 5, - ACTIONS(10057), 1, + [278488] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12215), 1, + anon_sym_DQUOTE, + ACTIONS(12217), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12219), 1, sym_escape_sequence, - ACTIONS(12194), 1, - anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7129), 1, aux_sym_string_literal_repeat1, - [278064] = 5, - ACTIONS(10057), 1, + [278504] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12196), 1, + ACTIONS(12221), 1, anon_sym_DQUOTE, - ACTIONS(12198), 1, + ACTIONS(12223), 1, aux_sym_string_literal_token1, - ACTIONS(12200), 1, + ACTIONS(12225), 1, sym_escape_sequence, - STATE(7099), 1, + STATE(7246), 1, aux_sym_string_literal_repeat1, - [278080] = 5, - ACTIONS(10057), 1, + [278520] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12227), 1, + anon_sym___except, + ACTIONS(12229), 1, + anon_sym___finally, + STATE(423), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [278534] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12231), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [278550] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12055), 1, + anon_sym_LPAREN, + ACTIONS(12233), 1, + aux_sym_preproc_include_token2, + ACTIONS(12235), 1, + sym_preproc_arg, + STATE(7783), 1, + sym_preproc_params, + [278566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12237), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [278582] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2507), 1, + anon_sym_LBRACE, + ACTIONS(6953), 1, + anon_sym_LPAREN2, + STATE(3640), 1, + sym_argument_list, + STATE(3642), 1, + sym_initializer_list, + [278598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12239), 1, + anon_sym___except, + ACTIONS(12241), 1, + anon_sym___finally, + STATE(273), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [278612] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12243), 1, + anon_sym_DQUOTE, + ACTIONS(12245), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12247), 1, sym_escape_sequence, - ACTIONS(12202), 1, - anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7097), 1, aux_sym_string_literal_repeat1, - [278096] = 5, + [278628] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(5607), 1, anon_sym_COLON, - ACTIONS(5565), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - STATE(2216), 1, + STATE(2653), 1, sym_field_declaration_list, - STATE(7693), 1, + STATE(7874), 1, sym_base_class_clause, - [278112] = 5, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(12204), 1, - anon_sym_DQUOTE, - ACTIONS(12206), 1, - aux_sym_string_literal_token1, - ACTIONS(12208), 1, - sym_escape_sequence, - STATE(7112), 1, - aux_sym_string_literal_repeat1, - [278128] = 4, - ACTIONS(10057), 1, + [278644] = 4, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12210), 1, + ACTIONS(12249), 1, anon_sym_SQUOTE, - STATE(7120), 1, + STATE(7184), 1, aux_sym_char_literal_repeat1, - ACTIONS(12023), 2, + ACTIONS(12091), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [278142] = 5, - ACTIONS(10057), 1, + [278658] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12212), 1, + ACTIONS(12251), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [278158] = 5, - ACTIONS(3), 1, - sym_comment, - 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(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(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, + [278674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(5607), 1, anon_sym_COLON, - STATE(7523), 1, - sym_compound_statement, - STATE(8026), 1, - sym_field_initializer_list, - [278220] = 5, + ACTIONS(8757), 1, + anon_sym_LBRACE, + STATE(4930), 1, + sym_field_declaration_list, + STATE(7907), 1, + sym_base_class_clause, + [278690] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12220), 1, - sym_identifier, - ACTIONS(12222), 1, - anon_sym_SEMI, - ACTIONS(12224), 1, + ACTIONS(5607), 1, anon_sym_COLON, - STATE(7029), 1, - sym_module_name, - [278236] = 4, + ACTIONS(6516), 1, + anon_sym_LBRACE, + STATE(2871), 1, + sym_field_declaration_list, + STATE(7797), 1, + sym_base_class_clause, + [278706] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(12085), 1, anon_sym_LPAREN2, - STATE(7743), 1, - sym_argument_list, - ACTIONS(12226), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [278250] = 4, + ACTIONS(12253), 1, + anon_sym_LBRACE, + STATE(1651), 1, + sym_requirement_seq, + STATE(8031), 1, + sym_requires_parameter_list, + [278722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12086), 1, + ACTIONS(12255), 1, anon_sym_COMMA, - STATE(7180), 1, + STATE(7133), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12228), 2, + ACTIONS(12258), 2, anon_sym_RPAREN, anon_sym_COLON, - [278264] = 4, - ACTIONS(10057), 1, + [278736] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12085), 1, + anon_sym_LPAREN2, + ACTIONS(12260), 1, + anon_sym_LBRACE, + STATE(5634), 1, + sym_requirement_seq, + STATE(7971), 1, + sym_requires_parameter_list, + [278752] = 4, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12230), 1, + ACTIONS(12262), 1, anon_sym_SQUOTE, - STATE(7120), 1, + STATE(7184), 1, aux_sym_char_literal_repeat1, - ACTIONS(12023), 2, + ACTIONS(12091), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [278278] = 5, - ACTIONS(10057), 1, + [278766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12264), 1, + anon_sym_GT2, + STATE(7578), 1, + aux_sym_template_argument_list_repeat1, + [278782] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12232), 1, + ACTIONS(12266), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [278294] = 5, + [278798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - ACTIONS(12234), 1, + ACTIONS(12268), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - [278310] = 4, + [278814] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12236), 1, + ACTIONS(12270), 1, anon_sym___except, - ACTIONS(12238), 1, + ACTIONS(12272), 1, anon_sym___finally, - STATE(511), 2, + STATE(949), 2, sym_seh_except_clause, sym_seh_finally_clause, - [278324] = 5, - ACTIONS(10057), 1, + [278828] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12044), 1, - aux_sym_string_literal_token1, - ACTIONS(12046), 1, - sym_escape_sequence, - ACTIONS(12240), 1, - anon_sym_DQUOTE, - STATE(7124), 1, - aux_sym_string_literal_repeat1, - [278340] = 5, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(10988), 1, + anon_sym_COLON, + STATE(7482), 1, + sym_compound_statement, + STATE(7876), 1, + sym_field_initializer_list, + [278844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(12274), 1, + anon_sym_COMMA, + STATE(7070), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12276), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [278858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12280), 1, + anon_sym___attribute, + ACTIONS(12278), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [278870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12085), 1, + anon_sym_LPAREN2, + ACTIONS(12282), 1, + anon_sym_LBRACE, + STATE(5993), 1, + sym_requirement_seq, + STATE(7822), 1, + sym_requires_parameter_list, + [278886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(12048), 1, + ACTIONS(12178), 1, sym_identifier, - STATE(848), 1, + STATE(856), 1, sym_template_parameter_list, - STATE(1923), 1, + STATE(1947), 1, sym_template_type, - [278356] = 4, + [278902] = 5, 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(5607), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + STATE(2982), 1, + sym_field_declaration_list, + STATE(7727), 1, + sym_base_class_clause, + [278918] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6410), 1, + anon_sym_LBRACE, + STATE(2663), 1, + sym_field_declaration_list, + STATE(7932), 1, + sym_base_class_clause, + [278934] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12246), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12248), 1, - anon_sym_LBRACE, - STATE(7261), 1, - aux_sym_base_class_clause_repeat1, - [278386] = 4, + ACTIONS(12284), 1, + anon_sym_GT2, + STATE(7487), 1, + aux_sym_template_argument_list_repeat1, + [278950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12286), 1, + anon_sym_EQ, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [278964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12250), 1, + ACTIONS(12288), 1, anon_sym_COMMA, - STATE(7183), 1, + STATE(7133), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12290), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [278978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12294), 1, + anon_sym___attribute, + ACTIONS(12292), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [278990] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12296), 1, + anon_sym_COMMA, + STATE(7165), 1, aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12252), 2, + ACTIONS(12298), 2, anon_sym_RPAREN, anon_sym_COLON, - [278400] = 4, - ACTIONS(10057), 1, + [279004] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12254), 1, - anon_sym_SQUOTE, - STATE(7120), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12256), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [278414] = 5, + ACTIONS(12055), 1, + anon_sym_LPAREN, + ACTIONS(12300), 1, + aux_sym_preproc_include_token2, + ACTIONS(12302), 1, + sym_preproc_arg, + STATE(7817), 1, + sym_preproc_params, + [279020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(12069), 1, + anon_sym_COMMA, + ACTIONS(12304), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12306), 1, + anon_sym_LBRACE, + STATE(7552), 1, + aux_sym_base_class_clause_repeat1, + [279036] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, anon_sym_COLON, - ACTIONS(5565), 1, + ACTIONS(8757), 1, anon_sym_LBRACE, - STATE(2230), 1, + STATE(4938), 1, sym_field_declaration_list, - STATE(7714), 1, + STATE(7995), 1, sym_base_class_clause, - [278430] = 4, + [279052] = 5, 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(8767), 1, + anon_sym_COMMA, + ACTIONS(12063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12308), 1, + anon_sym_GT2, + STATE(7504), 1, + aux_sym_template_argument_list_repeat1, + [279068] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12259), 1, + ACTIONS(12310), 1, anon_sym_GT2, - STATE(7327), 1, + STATE(7477), 1, aux_sym_template_argument_list_repeat1, - [278460] = 5, - ACTIONS(10057), 1, + [279084] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12261), 1, + ACTIONS(12312), 1, anon_sym_DQUOTE, - ACTIONS(12263), 1, + ACTIONS(12314), 1, aux_sym_string_literal_token1, - ACTIONS(12266), 1, - sym_escape_sequence, - STATE(7124), 1, - aux_sym_string_literal_repeat1, - [278476] = 5, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(12269), 1, - anon_sym_DQUOTE, - ACTIONS(12271), 1, - aux_sym_string_literal_token1, - ACTIONS(12273), 1, + ACTIONS(12316), 1, sym_escape_sequence, - STATE(7143), 1, + STATE(7073), 1, aux_sym_string_literal_repeat1, - [278492] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(6530), 1, - anon_sym_LBRACE, - STATE(2918), 1, - sym_field_declaration_list, - STATE(7965), 1, - sym_base_class_clause, - [278508] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - ACTIONS(12275), 1, - anon_sym_EQ, - STATE(793), 1, - sym_declaration_list, - [278524] = 5, + [279100] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - ACTIONS(12277), 1, + ACTIONS(12318), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - [278540] = 5, - ACTIONS(3), 1, - sym_comment, - 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(12134), 1, - anon_sym_LPAREN, - ACTIONS(12283), 1, - aux_sym_preproc_include_token2, - ACTIONS(12285), 1, - sym_preproc_arg, - STATE(7840), 1, - sym_preproc_params, - [278572] = 5, + [279116] = 4, ACTIONS(3), 1, sym_comment, - 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12320), 1, + anon_sym_using, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [279130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, + ACTIONS(12063), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12287), 1, + ACTIONS(12322), 1, anon_sym_GT2, - STATE(7535), 1, + STATE(7459), 1, aux_sym_template_argument_list_repeat1, - [278604] = 5, - ACTIONS(3), 1, - sym_comment, - 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, + [279146] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10988), 1, anon_sym_COLON, - STATE(7566), 1, + STATE(7349), 1, sym_compound_statement, - STATE(7942), 1, + STATE(8020), 1, sym_field_initializer_list, - [278636] = 5, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(12289), 1, - anon_sym_DQUOTE, - ACTIONS(12291), 1, - aux_sym_string_literal_token1, - ACTIONS(12293), 1, - sym_escape_sequence, - STATE(7145), 1, - aux_sym_string_literal_repeat1, - [278652] = 4, + [279162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(3869), 1, + anon_sym_LBRACE, + ACTIONS(6953), 1, anon_sym_LPAREN2, - STATE(7937), 1, + STATE(3640), 1, sym_argument_list, - ACTIONS(12295), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [278666] = 5, + STATE(4900), 1, + sym_initializer_list, + [279178] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(12048), 1, + ACTIONS(12178), 1, sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(6985), 1, + STATE(862), 1, sym_template_parameter_list, - [278682] = 5, - ACTIONS(10057), 1, + STATE(1947), 1, + sym_template_type, + [279194] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12134), 1, + ACTIONS(12055), 1, anon_sym_LPAREN, - ACTIONS(12297), 1, + ACTIONS(12324), 1, aux_sym_preproc_include_token2, - ACTIONS(12299), 1, + ACTIONS(12326), 1, sym_preproc_arg, - STATE(7796), 1, + STATE(7947), 1, sym_preproc_params, - [278698] = 5, + [279210] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(12296), 1, + anon_sym_COMMA, + STATE(7116), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(12328), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6526), 1, - anon_sym_LBRACE, - STATE(2877), 1, - sym_field_declaration_list, - STATE(7886), 1, - sym_base_class_clause, - [278714] = 5, - ACTIONS(3), 1, + [279224] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(6935), 1, - anon_sym_LPAREN2, - STATE(3585), 1, - sym_argument_list, - STATE(3618), 1, - sym_initializer_list, - [278730] = 5, + ACTIONS(12330), 1, + anon_sym_DQUOTE, + ACTIONS(12332), 1, + aux_sym_string_literal_token1, + ACTIONS(12334), 1, + sym_escape_sequence, + STATE(7170), 1, + aux_sym_string_literal_repeat1, + [279240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(5607), 1, anon_sym_COLON, - ACTIONS(6363), 1, + ACTIONS(7512), 1, anon_sym_LBRACE, - STATE(2623), 1, + STATE(3992), 1, sym_field_declaration_list, - STATE(7814), 1, + STATE(7836), 1, sym_base_class_clause, - [278746] = 4, - ACTIONS(10057), 1, + [279256] = 4, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12301), 1, + ACTIONS(12336), 1, anon_sym_SQUOTE, - STATE(7120), 1, + STATE(7184), 1, aux_sym_char_literal_repeat1, - ACTIONS(12023), 2, + ACTIONS(12091), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [278760] = 5, - ACTIONS(10057), 1, + [279270] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12338), 1, + sym_identifier, + ACTIONS(12340), 1, + anon_sym_SEMI, + ACTIONS(12342), 1, + anon_sym_COLON, + STATE(7019), 1, + sym_module_name, + [279286] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12303), 1, + ACTIONS(12344), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [278776] = 4, - ACTIONS(10057), 1, + [279302] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(12305), 1, - anon_sym_SQUOTE, - STATE(7120), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12023), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [278790] = 5, - ACTIONS(10057), 1, + ACTIONS(12274), 1, + anon_sym_COMMA, + STATE(7141), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(12346), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [279316] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12307), 1, + ACTIONS(12348), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [278806] = 5, + [279332] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12064), 1, - anon_sym_LPAREN2, - ACTIONS(12309), 1, + ACTIONS(12014), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_DOT, + [279342] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12069), 1, + anon_sym_COMMA, + ACTIONS(12350), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12352), 1, anon_sym_LBRACE, - STATE(1638), 1, - sym_requirement_seq, - STATE(8000), 1, - sym_requires_parameter_list, - [278822] = 5, + STATE(7532), 1, + aux_sym_base_class_clause_repeat1, + [279358] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(5042), 1, + anon_sym_LT, + ACTIONS(12178), 1, + sym_identifier, + STATE(860), 1, + sym_template_parameter_list, + STATE(1947), 1, + sym_template_type, + [279374] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6672), 1, + anon_sym_LBRACE, + STATE(2906), 1, + sym_field_declaration_list, + STATE(7790), 1, + sym_base_class_clause, + [279390] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(7512), 1, + anon_sym_LBRACE, + STATE(4010), 1, + sym_field_declaration_list, + STATE(7868), 1, + sym_base_class_clause, + [279406] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12188), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - ACTIONS(12311), 1, anon_sym_EQ, - STATE(309), 1, - sym_declaration_list, - [278838] = 5, + anon_sym_try, + [279416] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12354), 1, + anon_sym_DQUOTE, + ACTIONS(12356), 1, + aux_sym_string_literal_token1, + ACTIONS(12358), 1, + sym_escape_sequence, + STATE(7191), 1, + aux_sym_string_literal_repeat1, + [279432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(12069), 1, anon_sym_COMMA, - ACTIONS(12313), 1, + ACTIONS(12360), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12315), 1, + ACTIONS(12362), 1, anon_sym_LBRACE, - STATE(7259), 1, + STATE(7554), 1, aux_sym_base_class_clause_repeat1, - [278854] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3623), 1, - anon_sym_LBRACE, - ACTIONS(5845), 1, - anon_sym_LPAREN2, - STATE(2452), 1, - sym_argument_list, - STATE(3883), 1, - sym_initializer_list, - [278870] = 5, - ACTIONS(10057), 1, + [279448] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12134), 1, + ACTIONS(12055), 1, anon_sym_LPAREN, - ACTIONS(12317), 1, + ACTIONS(12364), 1, aux_sym_preproc_include_token2, - ACTIONS(12319), 1, + ACTIONS(12366), 1, sym_preproc_arg, - STATE(7983), 1, + STATE(7811), 1, sym_preproc_params, - [278886] = 5, + [279464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12368), 1, + anon_sym_GT2, + STATE(7605), 1, + aux_sym_template_argument_list_repeat1, + [279480] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9784), 1, + ACTIONS(2619), 1, anon_sym_LBRACE, - ACTIONS(12064), 1, + ACTIONS(6913), 1, anon_sym_LPAREN2, - STATE(2486), 1, - sym_requirement_seq, - STATE(7805), 1, - sym_requires_parameter_list, - [278902] = 5, + STATE(3585), 1, + sym_argument_list, + STATE(3974), 1, + sym_initializer_list, + [279496] = 4, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12370), 1, + anon_sym_SQUOTE, + STATE(7184), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12372), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [279510] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(10988), 1, anon_sym_COLON, - STATE(7553), 1, + STATE(7613), 1, sym_compound_statement, - STATE(7812), 1, + STATE(7776), 1, sym_field_initializer_list, - [278918] = 5, + [279526] = 5, ACTIONS(3), 1, sym_comment, - 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(5607), 1, + anon_sym_COLON, + ACTIONS(5609), 1, + anon_sym_LBRACE, + STATE(2233), 1, + sym_field_declaration_list, + STATE(7743), 1, + sym_base_class_clause, + [279542] = 3, ACTIONS(3), 1, sym_comment, - 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(12375), 1, + sym_identifier, + ACTIONS(12377), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [279554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(12048), 1, + ACTIONS(12178), 1, sym_identifier, - STATE(850), 1, + STATE(861), 1, sym_template_parameter_list, - STATE(1923), 1, + STATE(1947), 1, sym_template_type, - [278964] = 5, + [279570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(5607), 1, anon_sym_COLON, - ACTIONS(6363), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - STATE(2626), 1, + STATE(3056), 1, sym_field_declaration_list, - STATE(7831), 1, + STATE(7861), 1, sym_base_class_clause, - [278980] = 5, - ACTIONS(3), 1, + [279586] = 4, + ACTIONS(10143), 1, sym_comment, - 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(12379), 1, + anon_sym_SQUOTE, + STATE(7184), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12091), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [279600] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12081), 1, + aux_sym_string_literal_token1, + ACTIONS(12083), 1, + sym_escape_sequence, + ACTIONS(12381), 1, + anon_sym_DQUOTE, + STATE(7193), 1, + aux_sym_string_literal_repeat1, + [279616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12331), 1, - anon_sym___attribute, - ACTIONS(12329), 3, + ACTIONS(12288), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [279008] = 3, + STATE(7149), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(12383), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [279630] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12385), 1, + anon_sym_DQUOTE, + ACTIONS(12387), 1, + aux_sym_string_literal_token1, + ACTIONS(12390), 1, + sym_escape_sequence, + STATE(7193), 1, + aux_sym_string_literal_repeat1, + [279646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12335), 1, - anon_sym___attribute, - ACTIONS(12333), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [279020] = 5, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(10988), 1, + anon_sym_COLON, + STATE(7336), 1, + sym_compound_statement, + STATE(7805), 1, + sym_field_initializer_list, + [279662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(5248), 1, + anon_sym_LBRACE, + ACTIONS(12059), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(12393), 1, + anon_sym_EQ, + STATE(559), 1, + sym_declaration_list, + [279678] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9766), 1, + anon_sym_LBRACE, + ACTIONS(12085), 1, + anon_sym_LPAREN2, + STATE(3859), 1, + sym_requirement_seq, + STATE(7765), 1, + sym_requires_parameter_list, + [279694] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 1, anon_sym_LT, - ACTIONS(12337), 1, - anon_sym_SEMI, - STATE(1623), 1, - sym_template_argument_list, - [279036] = 5, + ACTIONS(12178), 1, + sym_identifier, + STATE(857), 1, + sym_template_parameter_list, + STATE(1947), 1, + sym_template_type, + [279710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, + ACTIONS(4178), 1, anon_sym_COLON_COLON, - ACTIONS(6580), 1, + ACTIONS(6536), 1, anon_sym_LT, - ACTIONS(12339), 1, + ACTIONS(12395), 1, anon_sym_SEMI, - STATE(1623), 1, + STATE(1635), 1, sym_template_argument_list, - [279052] = 5, - ACTIONS(10057), 1, + [279726] = 4, + ACTIONS(3), 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(8193), 1, + anon_sym_LPAREN2, + STATE(7863), 1, + sym_argument_list, + ACTIONS(12397), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [279740] = 5, 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(8767), 1, + anon_sym_COMMA, + ACTIONS(12063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12399), 1, + anon_sym_GT2, + STATE(7432), 1, + aux_sym_template_argument_list_repeat1, + [279756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9782), 1, + anon_sym_LBRACE, + ACTIONS(12085), 1, + anon_sym_LPAREN2, + STATE(3378), 1, + sym_requirement_seq, + STATE(7855), 1, + sym_requires_parameter_list, + [279772] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12347), 1, + ACTIONS(12401), 1, anon_sym_EQ, - STATE(7218), 2, + STATE(5892), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279096] = 5, + [279786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10970), 1, + ACTIONS(5607), 1, anon_sym_COLON, - STATE(7308), 1, - sym_compound_statement, - STATE(7856), 1, - sym_field_initializer_list, - [279112] = 5, + ACTIONS(6836), 1, + anon_sym_LBRACE, + STATE(3085), 1, + sym_field_declaration_list, + STATE(7918), 1, + sym_base_class_clause, + [279802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(12349), 1, - anon_sym_SEMI, - STATE(1623), 1, - sym_template_argument_list, - [279128] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12403), 1, + anon_sym_using, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [279816] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12405), 1, + anon_sym_DQUOTE, + ACTIONS(12407), 1, + aux_sym_string_literal_token1, + ACTIONS(12409), 1, + sym_escape_sequence, + STATE(7227), 1, + aux_sym_string_literal_repeat1, + [279832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_LT, - ACTIONS(12048), 1, + ACTIONS(11101), 1, sym_identifier, - STATE(853), 1, - sym_template_parameter_list, - STATE(1923), 1, - sym_template_type, - [279144] = 5, + ACTIONS(12411), 1, + aux_sym_preproc_if_token2, + STATE(6840), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8207), 1, + sym_enumerator, + [279848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(6530), 1, - anon_sym_LBRACE, - STATE(2982), 1, - sym_field_declaration_list, - STATE(7832), 1, - sym_base_class_clause, - [279160] = 5, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12413), 1, + anon_sym_GT2, + STATE(7638), 1, + aux_sym_template_argument_list_repeat1, + [279864] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12415), 1, + anon_sym_DQUOTE, + ACTIONS(12417), 1, + aux_sym_string_literal_token1, + ACTIONS(12419), 1, + sym_escape_sequence, + STATE(7216), 1, + aux_sym_string_literal_repeat1, + [279880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(12351), 1, + ACTIONS(8745), 1, + anon_sym___attribute, + ACTIONS(8743), 3, + anon_sym_COMMA, anon_sym_SEMI, - STATE(1623), 1, - sym_template_argument_list, - [279176] = 4, + anon_sym___attribute__, + [279892] = 4, ACTIONS(3), 1, sym_comment, - 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12421), 1, + anon_sym_EQ, + STATE(7238), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [279906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10970), 1, - anon_sym_COLON, - STATE(7437), 1, - sym_compound_statement, - STATE(7873), 1, - sym_field_initializer_list, - [279206] = 4, - ACTIONS(3), 1, + ACTIONS(10956), 1, + sym_identifier, + ACTIONS(12423), 1, + aux_sym_preproc_if_token2, + STATE(6835), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [279920] = 4, + ACTIONS(10143), 1, sym_comment, - 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(12425), 1, + anon_sym_SQUOTE, + STATE(7184), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12091), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [279934] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12055), 1, + anon_sym_LPAREN, + ACTIONS(12427), 1, + aux_sym_preproc_include_token2, + ACTIONS(12429), 1, + sym_preproc_arg, + STATE(8037), 1, + sym_preproc_params, + [279950] = 4, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12431), 1, + anon_sym_SQUOTE, + STATE(7184), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12091), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [279964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_LT, - ACTIONS(12048), 1, - sym_identifier, - STATE(852), 1, - sym_template_parameter_list, - STATE(1923), 1, - sym_template_type, - [279236] = 5, - ACTIONS(10057), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12433), 1, + anon_sym_EQ, + STATE(7235), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [279978] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12361), 1, - anon_sym_DQUOTE, - ACTIONS(12363), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12365), 1, + ACTIONS(12083), 1, sym_escape_sequence, - STATE(7185), 1, + ACTIONS(12435), 1, + anon_sym_DQUOTE, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [279252] = 5, + [279994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(6526), 1, - anon_sym_LBRACE, - STATE(2811), 1, - sym_field_declaration_list, - STATE(7985), 1, - sym_base_class_clause, - [279268] = 5, - ACTIONS(10057), 1, - sym_comment, - 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(8767), 1, + anon_sym_COMMA, + ACTIONS(12063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12437), 1, + anon_sym_GT2, + STATE(7669), 1, + aux_sym_template_argument_list_repeat1, + [280010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(1954), 1, anon_sym_LBRACE, - ACTIONS(6886), 1, + ACTIONS(5850), 1, anon_sym_LPAREN2, - STATE(3409), 1, + STATE(2520), 1, sym_argument_list, - STATE(3904), 1, + STATE(2552), 1, sym_initializer_list, - [279300] = 5, + [280026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10970), 1, - anon_sym_COLON, - STATE(7567), 1, - sym_compound_statement, - STATE(7890), 1, - sym_field_initializer_list, - [279316] = 5, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12439), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [280042] = 5, ACTIONS(3), 1, sym_comment, - 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(5607), 1, + anon_sym_COLON, + ACTIONS(6024), 1, + anon_sym_LBRACE, + STATE(5160), 1, + sym_field_declaration_list, + STATE(7937), 1, + sym_base_class_clause, + [280058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12371), 1, - anon_sym_COMMA, - STATE(7180), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(12374), 2, - anon_sym_RPAREN, + ACTIONS(5607), 1, anon_sym_COLON, - [279346] = 5, + ACTIONS(6024), 1, + anon_sym_LBRACE, + STATE(5173), 1, + sym_field_declaration_list, + STATE(7939), 1, + sym_base_class_clause, + [280074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(12050), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12376), 1, - anon_sym_GT2, - STATE(7634), 1, - aux_sym_template_argument_list_repeat1, - [279362] = 5, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12441), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [280090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(5607), 1, anon_sym_COLON, - ACTIONS(6795), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - STATE(3150), 1, + STATE(2377), 1, sym_field_declaration_list, - STATE(7932), 1, + STATE(7991), 1, sym_base_class_clause, - [279378] = 4, + [280106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12250), 1, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(7800), 1, + sym_argument_list, + ACTIONS(12443), 2, anon_sym_COMMA, - STATE(7235), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12378), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [279392] = 4, - ACTIONS(10057), 1, + anon_sym_RBRACK_RBRACK, + [280120] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12445), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [280136] = 4, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12380), 1, + ACTIONS(12447), 1, anon_sym_SQUOTE, - STATE(7120), 1, + STATE(7184), 1, aux_sym_char_literal_repeat1, - ACTIONS(12023), 2, + ACTIONS(12091), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [279406] = 5, - ACTIONS(10057), 1, + [280150] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12382), 1, + ACTIONS(12449), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [279422] = 4, + [280166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12384), 1, - anon_sym_COMMA, - STATE(7237), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12386), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [279436] = 5, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12451), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [280182] = 4, ACTIONS(3), 1, sym_comment, - 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12453), 1, + anon_sym_EQ, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280196] = 4, ACTIONS(3), 1, sym_comment, - 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12455), 1, + anon_sym_using, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280210] = 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, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11601), 1, + anon_sym_EQ, + STATE(7202), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280224] = 4, + ACTIONS(10143), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(12388), 1, - anon_sym_SEMI, - STATE(1623), 1, - sym_template_argument_list, - [279498] = 5, + ACTIONS(12457), 1, + anon_sym_SQUOTE, + STATE(7184), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12091), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [280238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(12390), 1, - anon_sym_SEMI, - STATE(1623), 1, - sym_template_argument_list, - [279514] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12459), 1, + anon_sym_EQ, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(6795), 1, - anon_sym_LBRACE, - STATE(3047), 1, - sym_field_declaration_list, - STATE(7951), 1, - sym_base_class_clause, - [279530] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11590), 1, + anon_sym_EQ, + STATE(7229), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280266] = 4, 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12461), 1, + anon_sym_EQ, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280280] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12394), 1, + ACTIONS(11627), 1, anon_sym_EQ, - STATE(5943), 2, + STATE(7233), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279560] = 4, + [280294] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5238), 1, + anon_sym_LBRACE, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + ACTIONS(12463), 1, + anon_sym_EQ, + STATE(757), 1, + sym_declaration_list, + [280310] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12396), 1, - anon_sym_using, - STATE(5943), 2, + ACTIONS(12465), 1, + anon_sym_EQ, + STATE(5892), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279574] = 2, + [280324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11902), 4, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - anon_sym_DOT, - [279584] = 4, + ACTIONS(11570), 1, + anon_sym_EQ, + STATE(7240), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280338] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12398), 1, + ACTIONS(12467), 1, anon_sym_EQ, - STATE(7221), 2, + STATE(5892), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [279598] = 5, + [280352] = 4, ACTIONS(3), 1, sym_comment, - 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11558), 1, + anon_sym_EQ, + STATE(7242), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280366] = 4, ACTIONS(3), 1, sym_comment, - 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12469), 1, + anon_sym_EQ, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280380] = 4, ACTIONS(3), 1, sym_comment, - 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11564), 1, + anon_sym_EQ, + STATE(7245), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280394] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 1, + ACTIONS(9800), 1, anon_sym_LBRACE, - ACTIONS(5845), 1, + ACTIONS(12085), 1, anon_sym_LPAREN2, - STATE(2452), 1, - sym_argument_list, - STATE(2460), 1, - sym_initializer_list, - [279662] = 5, + STATE(3584), 1, + sym_requirement_seq, + STATE(7999), 1, + sym_requires_parameter_list, + [280410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, - anon_sym_LBRACE, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - ACTIONS(12404), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12471), 1, anon_sym_EQ, - STATE(505), 1, - sym_declaration_list, - [279678] = 5, + STATE(5892), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [280424] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12081), 1, + aux_sym_string_literal_token1, + ACTIONS(12083), 1, + sym_escape_sequence, + ACTIONS(12473), 1, + anon_sym_DQUOTE, + STATE(7193), 1, + aux_sym_string_literal_repeat1, + [280440] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(5607), 1, anon_sym_COLON, - ACTIONS(6035), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - STATE(5199), 1, + STATE(3685), 1, sym_field_declaration_list, - STATE(7977), 1, + STATE(8009), 1, sym_base_class_clause, - [279694] = 5, + [280456] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_LBRACE, + ACTIONS(6913), 1, + anon_sym_LPAREN2, + STATE(3585), 1, + sym_argument_list, + STATE(3590), 1, + sym_initializer_list, + [280472] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5042), 1, + anon_sym_LT, + ACTIONS(12178), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(7043), 1, + sym_template_parameter_list, + [280488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(5607), 1, anon_sym_COLON, - ACTIONS(6035), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - STATE(5205), 1, + STATE(3689), 1, sym_field_declaration_list, - STATE(7979), 1, + STATE(8010), 1, sym_base_class_clause, - [279710] = 5, - ACTIONS(10057), 1, + [280504] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(5850), 1, + anon_sym_LPAREN2, + STATE(2520), 1, + sym_argument_list, + STATE(3918), 1, + sym_initializer_list, + [280520] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12406), 1, + ACTIONS(12475), 1, anon_sym_DQUOTE, - ACTIONS(12408), 1, + ACTIONS(12477), 1, aux_sym_string_literal_token1, - ACTIONS(12410), 1, + ACTIONS(12479), 1, sym_escape_sequence, - STATE(7217), 1, + STATE(7172), 1, aux_sym_string_literal_repeat1, - [279726] = 3, + [280536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12412), 1, + ACTIONS(5042), 1, + anon_sym_LT, + ACTIONS(12178), 1, sym_identifier, - ACTIONS(12414), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [279738] = 5, - ACTIONS(10057), 1, + STATE(859), 1, + sym_template_parameter_list, + STATE(1947), 1, + sym_template_type, + [280552] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(12134), 1, + ACTIONS(5607), 1, + anon_sym_COLON, + ACTIONS(6666), 1, + anon_sym_LBRACE, + STATE(2933), 1, + sym_field_declaration_list, + STATE(7925), 1, + sym_base_class_clause, + [280568] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12481), 1, + anon_sym_DQUOTE, + ACTIONS(12483), 1, + aux_sym_string_literal_token1, + ACTIONS(12485), 1, + sym_escape_sequence, + STATE(7264), 1, + aux_sym_string_literal_repeat1, + [280584] = 5, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12055), 1, anon_sym_LPAREN, - ACTIONS(12416), 1, + ACTIONS(12487), 1, aux_sym_preproc_include_token2, - ACTIONS(12418), 1, + ACTIONS(12489), 1, sym_preproc_arg, - STATE(8006), 1, + STATE(7881), 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(12424), 1, - anon_sym_EQ, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279782] = 4, + [280600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12426), 1, - anon_sym_using, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279796] = 4, + ACTIONS(3631), 1, + anon_sym_LBRACE, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(7452), 2, + sym_argument_list, + sym_initializer_list, + [280614] = 5, ACTIONS(3), 1, sym_comment, - 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(57), 1, + anon_sym_LBRACE, + ACTIONS(10988), 1, + anon_sym_COLON, + STATE(7550), 1, + sym_compound_statement, + STATE(7795), 1, + sym_field_initializer_list, + [280630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8723), 1, - anon_sym___attribute, - ACTIONS(8721), 3, - anon_sym_COMMA, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(4917), 1, anon_sym_SEMI, - anon_sym___attribute__, - [279822] = 5, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1736), 1, + sym_template_argument_list, + [280646] = 4, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12491), 1, + anon_sym_SQUOTE, + STATE(7184), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12091), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [280660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(5607), 1, anon_sym_COLON, - ACTIONS(8630), 1, + ACTIONS(8669), 1, anon_sym_LBRACE, - STATE(4516), 1, + STATE(4564), 1, sym_field_declaration_list, - STATE(8022), 1, + STATE(7998), 1, sym_base_class_clause, - [279838] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12428), 1, - anon_sym_EQ, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279852] = 4, + [280676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11590), 1, - anon_sym_EQ, - STATE(7209), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279866] = 4, - ACTIONS(10057), 1, + ACTIONS(4178), 1, + anon_sym_COLON_COLON, + ACTIONS(6536), 1, + anon_sym_LT, + ACTIONS(12493), 1, + anon_sym_SEMI, + STATE(1635), 1, + sym_template_argument_list, + [280692] = 4, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12430), 1, + ACTIONS(12495), 1, anon_sym_SQUOTE, - STATE(7120), 1, + STATE(7184), 1, aux_sym_char_literal_repeat1, - ACTIONS(12023), 2, + ACTIONS(12091), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [279880] = 5, - ACTIONS(10057), 1, + [280706] = 5, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12044), 1, + ACTIONS(12081), 1, aux_sym_string_literal_token1, - ACTIONS(12046), 1, + ACTIONS(12083), 1, sym_escape_sequence, - ACTIONS(12432), 1, + ACTIONS(12497), 1, anon_sym_DQUOTE, - STATE(7124), 1, + STATE(7193), 1, aux_sym_string_literal_repeat1, - [279896] = 4, + [280722] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12434), 1, - anon_sym_EQ, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279910] = 4, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(10988), 1, + anon_sym_COLON, + STATE(7473), 1, + sym_compound_statement, + STATE(7736), 1, + sym_field_initializer_list, + [280738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11567), 1, - anon_sym_EQ, - STATE(7214), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279924] = 5, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(12499), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [280751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12064), 1, - anon_sym_LPAREN2, - ACTIONS(12436), 1, + ACTIONS(12069), 1, + anon_sym_COMMA, + ACTIONS(12501), 1, anon_sym_LBRACE, - 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(12438), 1, - anon_sym_EQ, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279954] = 4, + STATE(7278), 1, + aux_sym_base_class_clause_repeat1, + [280764] = 4, ACTIONS(3), 1, sym_comment, - 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(8767), 1, + anon_sym_COMMA, + ACTIONS(12503), 1, + anon_sym_GT2, + STATE(7271), 1, + aux_sym_template_argument_list_repeat1, + [280777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12440), 1, - anon_sym_EQ, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279982] = 4, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12505), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [280790] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11598), 1, - anon_sym_EQ, - STATE(7225), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [279996] = 4, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12507), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [280803] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12442), 1, - anon_sym_EQ, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [280010] = 4, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12509), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [280816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11552), 1, - anon_sym_EQ, - STATE(7227), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [280024] = 4, + ACTIONS(12511), 1, + anon_sym_RPAREN, + ACTIONS(12513), 1, + anon_sym_COLON, + STATE(7275), 1, + sym_gnu_asm_clobber_list, + [280829] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12444), 1, - anon_sym_EQ, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [280038] = 5, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(12515), 1, + anon_sym_SEMI, + STATE(7346), 1, + aux_sym_declaration_repeat1, + [280842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(6530), 1, - anon_sym_LBRACE, - STATE(3673), 1, - sym_field_declaration_list, - STATE(8012), 1, - sym_base_class_clause, - [280054] = 5, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12517), 1, + anon_sym_GT2, + STATE(7499), 1, + aux_sym_template_argument_list_repeat1, + [280855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5563), 1, + ACTIONS(12519), 1, + anon_sym_RPAREN, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(6530), 1, - anon_sym_LBRACE, - STATE(3677), 1, - sym_field_declaration_list, - STATE(8013), 1, - sym_base_class_clause, - [280070] = 5, + STATE(8551), 1, + sym_gnu_asm_goto_list, + [280868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4187), 1, - anon_sym_COLON_COLON, - ACTIONS(6580), 1, - anon_sym_LT, - ACTIONS(12446), 1, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(12523), 1, anon_sym_SEMI, - STATE(1623), 1, - sym_template_argument_list, - [280086] = 5, + STATE(7341), 1, + aux_sym_declaration_repeat1, + [280881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11085), 1, + ACTIONS(12525), 1, sym_identifier, - ACTIONS(12448), 1, - aux_sym_preproc_if_token2, - STATE(6821), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8369), 1, - sym_enumerator, - [280102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5563), 1, - anon_sym_COLON, - ACTIONS(8630), 1, - anon_sym_LBRACE, - STATE(4605), 1, - sym_field_declaration_list, - STATE(7715), 1, - sym_base_class_clause, - [280118] = 5, + STATE(1947), 1, + sym_template_type, + STATE(2495), 1, + sym_template_function, + [280894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(12527), 1, anon_sym_COMMA, - ACTIONS(12450), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12452), 1, + ACTIONS(12530), 1, anon_sym_LBRACE, - STATE(7399), 1, + STATE(7278), 1, aux_sym_base_class_clause_repeat1, - [280134] = 5, + [280907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12050), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12454), 1, + ACTIONS(12532), 1, anon_sym_GT2, - STATE(7379), 1, + STATE(7282), 1, aux_sym_template_argument_list_repeat1, - [280150] = 4, + [280920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12456), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - STATE(7235), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(12459), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [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(12534), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [280933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12384), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - STATE(7041), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(12463), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [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(12465), 1, - anon_sym_using, - STATE(5943), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [280222] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9766), 1, - anon_sym_LBRACE, - ACTIONS(12064), 1, - anon_sym_LPAREN2, - STATE(3268), 1, - sym_requirement_seq, - STATE(7742), 1, - sym_requires_parameter_list, - [280238] = 5, - ACTIONS(3), 1, - sym_comment, - 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(12536), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [280946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12467), 1, + ACTIONS(12538), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [280267] = 4, + [280959] = 3, ACTIONS(3), 1, sym_comment, - 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, - [280291] = 4, + ACTIONS(12540), 1, + anon_sym_catch, + STATE(1873), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [280970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12475), 1, - anon_sym_RPAREN, + ACTIONS(12542), 1, + anon_sym_SEMI, STATE(7344), 1, - aux_sym_generic_expression_repeat1, - [280304] = 3, + aux_sym_declaration_repeat1, + [280983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12477), 1, - anon_sym_catch, - STATE(364), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [280315] = 4, + ACTIONS(12544), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2654), 1, + sym_template_function, + [280996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12479), 1, + ACTIONS(12546), 1, sym_identifier, - STATE(1923), 1, + STATE(1947), 1, sym_template_type, - STATE(2675), 1, + STATE(2654), 1, sym_template_function, - [280328] = 2, + [281009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12481), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [280337] = 4, + ACTIONS(12548), 1, + sym_identifier, + STATE(2602), 1, + sym_template_type, + STATE(3607), 1, + sym_template_function, + [281022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12483), 1, - anon_sym_RPAREN, - ACTIONS(12485), 1, - anon_sym_COLON, - STATE(7269), 1, - sym_gnu_asm_clobber_list, - [280350] = 4, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12550), 1, + anon_sym_GT2, + STATE(7291), 1, + aux_sym_template_argument_list_repeat1, + [281035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12487), 1, - anon_sym_SEMI, - STATE(7304), 1, - aux_sym_declaration_repeat1, - [280363] = 4, + ACTIONS(12552), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12248), 1, - anon_sym_LBRACE, - STATE(7261), 1, - aux_sym_base_class_clause_repeat1, - [280376] = 2, + ACTIONS(12554), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12489), 3, + ACTIONS(8767), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(12556), 1, anon_sym_GT2, - [280385] = 4, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12491), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(2675), 1, - sym_template_function, - [280398] = 4, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(12560), 1, + anon_sym_RBRACK_RBRACK, + STATE(7416), 1, + aux_sym_attribute_declaration_repeat1, + [281087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12493), 1, + ACTIONS(12562), 1, anon_sym_SEMI, - STATE(7683), 1, + STATE(7266), 1, aux_sym_declaration_repeat1, - [280411] = 4, + [281100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12495), 1, - anon_sym_RPAREN, - ACTIONS(12497), 1, - anon_sym_COLON, - STATE(7271), 1, - sym_gnu_asm_input_operand_list, - [280424] = 4, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(10627), 1, + anon_sym_LBRACE, + STATE(8736), 1, + sym_requires_clause, + [281113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12499), 1, - anon_sym_default, - ACTIONS(12501), 1, - anon_sym_delete, - ACTIONS(12503), 1, - aux_sym_pure_virtual_clause_token1, - [280437] = 4, + ACTIONS(12564), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2654), 1, + sym_template_function, + [281126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12505), 1, - anon_sym_default, - ACTIONS(12507), 1, - anon_sym_delete, - ACTIONS(12509), 1, - aux_sym_pure_virtual_clause_token1, - [280450] = 4, + ACTIONS(12566), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(6159), 1, + sym_template_function, + [281139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8937), 1, - anon_sym_RBRACE, - ACTIONS(12511), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - STATE(7258), 1, - aux_sym_initializer_list_repeat1, - [280463] = 4, + ACTIONS(12568), 1, + anon_sym_GT2, + STATE(7300), 1, + aux_sym_template_argument_list_repeat1, + [281152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12248), 1, - anon_sym_LBRACE, - STATE(7309), 1, - aux_sym_base_class_clause_repeat1, - [280476] = 4, + ACTIONS(12570), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12514), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12517), 1, + ACTIONS(12572), 1, anon_sym_GT2, - STATE(7260), 1, - aux_sym_template_parameter_list_repeat1, - [280489] = 4, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12078), 1, - anon_sym_LBRACE, - STATE(7309), 1, - aux_sym_base_class_clause_repeat1, - [280502] = 4, + ACTIONS(12574), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, - anon_sym_COMMA, - ACTIONS(12078), 1, - anon_sym_LBRACE, - STATE(7393), 1, - aux_sym_base_class_clause_repeat1, - [280515] = 4, + ACTIONS(12576), 1, + sym_identifier, + ACTIONS(12578), 1, + anon_sym_using, + STATE(7831), 1, + sym_attribute, + [281204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12519), 1, + ACTIONS(12580), 1, anon_sym_COMMA, - ACTIONS(12522), 1, - anon_sym_RBRACK_RBRACK, - STATE(7263), 1, - aux_sym_attribute_declaration_repeat1, - [280528] = 4, + ACTIONS(12582), 1, + anon_sym_RPAREN, + STATE(7373), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [281217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12524), 1, + ACTIONS(12584), 1, sym_identifier, - STATE(1923), 1, + STATE(1947), 1, sym_template_type, - STATE(2675), 1, + STATE(3484), 1, sym_template_function, - [280541] = 4, + [281230] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12526), 1, + ACTIONS(12586), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [280554] = 4, + [281243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12528), 1, + ACTIONS(12588), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7525), 1, aux_sym_declaration_repeat1, - [280567] = 3, + [281256] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12530), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12532), 2, + ACTIONS(8767), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [280578] = 4, + ACTIONS(12590), 1, + anon_sym_GT2, + STATE(7309), 1, + aux_sym_template_argument_list_repeat1, + [281269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12534), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [280591] = 4, + ACTIONS(12592), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, - anon_sym_COLON, - ACTIONS(12536), 1, - anon_sym_RPAREN, - STATE(8680), 1, - sym_gnu_asm_goto_list, - [280604] = 4, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12594), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2607), 1, - anon_sym_while, - ACTIONS(12538), 1, - anon_sym_else, - STATE(350), 1, - sym_else_clause, - [280617] = 4, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12596), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, - anon_sym_COLON, - ACTIONS(12540), 1, + ACTIONS(8747), 1, + anon_sym_COMMA, + ACTIONS(8921), 1, anon_sym_RPAREN, - STATE(7278), 1, - sym_gnu_asm_clobber_list, - [280630] = 4, + STATE(7355), 1, + aux_sym_argument_list_repeat1, + [281321] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12542), 1, - anon_sym_RPAREN, - STATE(7403), 1, - aux_sym_argument_list_repeat1, - [280643] = 4, + ACTIONS(12598), 1, + anon_sym_RBRACK_RBRACK, + STATE(7580), 1, + aux_sym_attribute_declaration_repeat1, + [281334] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12544), 1, + ACTIONS(12600), 1, sym_identifier, - STATE(1923), 1, + STATE(1947), 1, sym_template_type, - STATE(3542), 1, + STATE(2654), 1, sym_template_function, - [280656] = 4, + [281347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(12602), 1, + anon_sym_EQ, + ACTIONS(11631), 2, anon_sym_COMMA, - ACTIONS(12548), 1, - anon_sym_RBRACK_RBRACK, - STATE(7263), 1, - aux_sym_attribute_declaration_repeat1, - [280669] = 3, + anon_sym_RBRACE, + [281358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, - anon_sym___attribute, - ACTIONS(6696), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [280680] = 4, + ACTIONS(12604), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(3607), 1, + sym_template_function, + [281371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(8786), 1, - anon_sym_RPAREN, - STATE(7318), 1, - aux_sym_argument_list_repeat1, - [280693] = 3, + ACTIONS(12606), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [281384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 1, - anon_sym___attribute, - ACTIONS(6700), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [280704] = 4, + ACTIONS(12608), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2495), 1, + sym_template_function, + [281397] = 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(12610), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2654), 1, + sym_template_function, + [281410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - STATE(679), 1, - sym_declaration_list, - [280730] = 4, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(12612), 1, + anon_sym_RBRACK_RBRACK, + STATE(7580), 1, + aux_sym_attribute_declaration_repeat1, + [281423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12552), 1, - anon_sym_RPAREN, - ACTIONS(12554), 1, - anon_sym_COLON, - STATE(7255), 1, - sym_gnu_asm_output_operand_list, - [280743] = 4, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(12614), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [281436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12556), 1, - anon_sym_COMMA, - ACTIONS(12559), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_structured_binding_declarator_repeat1, - [280756] = 4, + ACTIONS(12576), 1, + sym_identifier, + ACTIONS(12578), 1, + anon_sym_using, + STATE(7630), 1, + sym_attribute, + [281449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8819), 1, anon_sym_COMMA, - ACTIONS(12561), 1, - anon_sym_GT2, - STATE(7320), 1, - aux_sym_template_argument_list_repeat1, - [280769] = 4, + ACTIONS(12616), 1, + anon_sym_RPAREN, + STATE(7676), 1, + aux_sym_generic_expression_repeat1, + [281462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8788), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(8790), 1, - anon_sym_RBRACE, - STATE(7321), 1, - aux_sym_initializer_list_repeat1, - [280782] = 4, + ACTIONS(12618), 1, + anon_sym_RBRACK_RBRACK, + STATE(7580), 1, + aux_sym_attribute_declaration_repeat1, + [281475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12563), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(12565), 1, - anon_sym_RBRACK, - STATE(7436), 1, - aux_sym_lambda_capture_specifier_repeat1, - [280795] = 4, + ACTIONS(8899), 1, + anon_sym_RPAREN, + STATE(7358), 1, + aux_sym_argument_list_repeat1, + [281488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12567), 1, - anon_sym_COMMA, - ACTIONS(12570), 1, - anon_sym_RBRACK, - STATE(7285), 1, - aux_sym_lambda_capture_specifier_repeat1, - [280808] = 3, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + ACTIONS(12622), 1, + anon_sym_constexpr, + STATE(180), 1, + sym_condition_clause, + [281501] = 3, + ACTIONS(10143), 1, + sym_comment, + STATE(7226), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12624), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [281512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12572), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12574), 2, + ACTIONS(12069), 1, anon_sym_COMMA, + ACTIONS(12626), 1, anon_sym_LBRACE, - [280819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12554), 1, - anon_sym_COLON, - ACTIONS(12576), 1, - anon_sym_RPAREN, - STATE(7363), 1, - sym_gnu_asm_output_operand_list, - [280832] = 4, + STATE(7278), 1, + aux_sym_base_class_clause_repeat1, + [281525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12578), 1, - anon_sym_RPAREN, - STATE(7344), 1, - aux_sym_generic_expression_repeat1, - [280845] = 4, + ACTIONS(12628), 1, + anon_sym_GT2, + STATE(7357), 1, + aux_sym_template_argument_list_repeat1, + [281538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - ACTIONS(12214), 1, + ACTIONS(12059), 1, anon_sym_COLON_COLON, - STATE(502), 1, + STATE(775), 1, sym_declaration_list, - [280858] = 3, + [281551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12580), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12582), 2, + ACTIONS(10039), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [280869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6532), 1, - anon_sym___attribute, - ACTIONS(6534), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [280880] = 4, + ACTIONS(12630), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [281564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, - anon_sym_COLON, - ACTIONS(12584), 1, - anon_sym_RPAREN, - STATE(7324), 1, - sym_gnu_asm_output_operand_list, - [280893] = 4, + ACTIONS(8901), 1, + anon_sym_COMMA, + ACTIONS(8903), 1, + anon_sym_RBRACE, + STATE(7361), 1, + aux_sym_initializer_list_repeat1, + [281577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12586), 1, + ACTIONS(12632), 1, anon_sym_GT2, - STATE(7369), 1, + STATE(7461), 1, aux_sym_template_argument_list_repeat1, - [280906] = 3, + [281590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6536), 1, - anon_sym___attribute, - ACTIONS(6538), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [280917] = 4, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(12634), 1, + anon_sym_SEMI, + STATE(7380), 1, + aux_sym_declaration_repeat1, + [281603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8812), 1, - anon_sym_COMMA, - ACTIONS(8814), 1, - anon_sym_RBRACE, - STATE(7337), 1, - aux_sym_initializer_list_repeat1, - [280930] = 4, + ACTIONS(12636), 1, + anon_sym_default, + ACTIONS(12638), 1, + anon_sym_delete, + ACTIONS(12640), 1, + aux_sym_pure_virtual_clause_token1, + [281616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12588), 1, - anon_sym_GT2, - STATE(7328), 1, - aux_sym_template_argument_list_repeat1, - [280943] = 4, + ACTIONS(12642), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [281629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12590), 1, - anon_sym_COMMA, - ACTIONS(12592), 1, + ACTIONS(12644), 1, anon_sym_RPAREN, - STATE(7688), 1, - aux_sym_parameter_list_repeat1, - [280956] = 4, + ACTIONS(12646), 1, + anon_sym_COLON, + STATE(7364), 1, + sym_gnu_asm_output_operand_list, + [281642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12540), 1, + anon_sym_catch, + STATE(1926), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [281653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12594), 1, + ACTIONS(12648), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7368), 1, aux_sym_template_argument_list_repeat1, - [280969] = 4, + [281666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(12650), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2654), 1, + sym_template_function, + [281679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(12596), 1, + ACTIONS(12652), 1, anon_sym_RPAREN, - STATE(8360), 1, + STATE(8355), 1, sym_gnu_asm_goto_list, - [280982] = 3, + [281692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 1, - anon_sym___attribute, - ACTIONS(6546), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [280993] = 3, + ACTIONS(12513), 1, + anon_sym_COLON, + ACTIONS(12654), 1, + anon_sym_RPAREN, + STATE(7381), 1, + sym_gnu_asm_clobber_list, + [281705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12598), 1, - anon_sym_catch, - STATE(417), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [281004] = 4, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(12656), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [281718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + ACTIONS(12658), 1, + anon_sym_constexpr, + STATE(212), 1, + sym_condition_clause, + [281731] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12600), 1, + ACTIONS(12660), 1, + anon_sym_SEMI, + STATE(7372), 1, + aux_sym_declaration_repeat1, + [281744] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12662), 1, + anon_sym_COMMA, + ACTIONS(12665), 1, anon_sym_SEMI, - STATE(7331), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [281017] = 4, + [281757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12602), 1, + ACTIONS(12667), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [281030] = 4, + [281770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12604), 1, + ACTIONS(12669), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [281043] = 3, + [281783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6548), 1, - anon_sym___attribute, - ACTIONS(6550), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [281054] = 4, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(12671), 1, + anon_sym_LBRACE, + STATE(8869), 1, + sym_requires_clause, + [281796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12590), 1, + ACTIONS(12673), 1, anon_sym_COMMA, - ACTIONS(12606), 1, + ACTIONS(12675), 1, anon_sym_RPAREN, - STATE(7333), 1, + STATE(7375), 1, aux_sym_parameter_list_repeat1, - [281067] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12608), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [281076] = 3, + [281809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12610), 1, + ACTIONS(12677), 1, anon_sym_catch, - STATE(1910), 2, + STATE(1886), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [281087] = 4, + [281820] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12574), 1, - anon_sym_LBRACE, - ACTIONS(12612), 1, + ACTIONS(12069), 1, anon_sym_COMMA, - STATE(7309), 1, + ACTIONS(12362), 1, + anon_sym_LBRACE, + STATE(7554), 1, aux_sym_base_class_clause_repeat1, - [281100] = 3, + [281833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6556), 1, - anon_sym___attribute, - ACTIONS(6558), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [281111] = 4, + ACTIONS(12673), 1, + anon_sym_COMMA, + ACTIONS(12679), 1, + anon_sym_RPAREN, + STATE(7591), 1, + aux_sym_parameter_list_repeat1, + [281846] = 3, 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(12683), 1, + anon_sym_COLON_COLON, + ACTIONS(12681), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [281857] = 3, 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(12685), 1, + anon_sym_catch, + STATE(227), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [281868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12621), 1, - anon_sym_RBRACK_RBRACK, - STATE(7465), 1, - aux_sym_attribute_declaration_repeat1, - [281150] = 4, + ACTIONS(12687), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4496), 1, - anon_sym_RBRACE, - ACTIONS(12623), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - STATE(7258), 1, - aux_sym_initializer_list_repeat1, - [281163] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12625), 1, - sym_identifier, - ACTIONS(12627), 1, - anon_sym_using, - STATE(7313), 1, - sym_attribute, - [281176] = 4, + ACTIONS(12689), 1, + anon_sym_RPAREN, + STATE(7437), 1, + aux_sym_argument_list_repeat1, + [281894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12629), 1, + ACTIONS(12691), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [281189] = 3, + [281907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7577), 1, - anon_sym_EQ, - ACTIONS(7575), 2, + ACTIONS(8767), 1, anon_sym_COMMA, + ACTIONS(12693), 1, anon_sym_GT2, - [281200] = 4, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [281920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(12631), 1, + ACTIONS(12695), 1, anon_sym_RPAREN, - STATE(7403), 1, + STATE(7437), 1, aux_sym_argument_list_repeat1, - [281213] = 4, + [281933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - ACTIONS(12214), 1, + ACTIONS(12059), 1, anon_sym_COLON_COLON, - STATE(693), 1, + STATE(794), 1, sym_declaration_list, - [281226] = 4, + [281946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(12633), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [281239] = 4, + ACTIONS(12699), 1, + anon_sym_RPAREN, + ACTIONS(12697), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [281957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 1, + ACTIONS(4527), 1, anon_sym_RBRACE, - ACTIONS(12635), 1, + ACTIONS(12701), 1, anon_sym_COMMA, - STATE(7258), 1, + STATE(7616), 1, aux_sym_initializer_list_repeat1, - [281252] = 4, + [281970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12637), 1, - anon_sym_RPAREN, - STATE(7403), 1, - aux_sym_argument_list_repeat1, - [281265] = 4, + ACTIONS(12703), 1, + anon_sym_SEMI, + STATE(7399), 1, + aux_sym_declaration_repeat1, + [281983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - STATE(745), 1, - sym_declaration_list, - [281278] = 4, + ACTIONS(8747), 1, + anon_sym_COMMA, + ACTIONS(8883), 1, + anon_sym_RPAREN, + STATE(7588), 1, + aux_sym_argument_list_repeat1, + [281996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, - anon_sym_COLON, - ACTIONS(12639), 1, + ACTIONS(12705), 1, anon_sym_RPAREN, - STATE(7341), 1, + ACTIONS(12707), 1, + anon_sym_COLON, + STATE(7385), 1, sym_gnu_asm_input_operand_list, - [281291] = 4, + [282009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, + ACTIONS(12646), 1, anon_sym_COLON, - ACTIONS(12641), 1, + ACTIONS(12709), 1, anon_sym_RPAREN, - STATE(7342), 1, + STATE(7386), 1, sym_gnu_asm_output_operand_list, - [281304] = 4, + [282022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12643), 1, + ACTIONS(12711), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [281317] = 4, + [282035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12645), 1, + ACTIONS(12713), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [281330] = 4, + [282048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12647), 1, + ACTIONS(12715), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [281343] = 4, + [282061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10298), 1, + anon_sym_RPAREN, + ACTIONS(12717), 1, + anon_sym_COMMA, + STATE(7369), 1, + aux_sym_preproc_argument_list_repeat1, + [282074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12649), 1, + ACTIONS(12720), 1, anon_sym_SEMI, - STATE(7343), 1, + STATE(7387), 1, aux_sym_declaration_repeat1, - [281356] = 4, + [282087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12651), 1, + ACTIONS(12722), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [281369] = 4, + [282100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12653), 1, + ACTIONS(12724), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [281382] = 4, + [282113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(12726), 1, anon_sym_COMMA, - ACTIONS(12655), 1, - anon_sym_RBRACK_RBRACK, - STATE(7599), 1, - aux_sym_attribute_declaration_repeat1, - [281395] = 4, + ACTIONS(12729), 1, + anon_sym_RPAREN, + STATE(7373), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [282126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12590), 1, + ACTIONS(5238), 1, + anon_sym_LBRACE, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + STATE(716), 1, + sym_declaration_list, + [282139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12673), 1, anon_sym_COMMA, - ACTIONS(12657), 1, + ACTIONS(12731), 1, anon_sym_RPAREN, - STATE(7359), 1, + STATE(7591), 1, aux_sym_parameter_list_repeat1, - [281408] = 3, + [282152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12610), 1, + ACTIONS(12677), 1, anon_sym_catch, - STATE(1869), 2, + STATE(1924), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [281419] = 4, + [282163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(12733), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [282176] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12707), 1, anon_sym_COLON, - ACTIONS(12659), 1, + ACTIONS(12735), 1, anon_sym_RPAREN, - STATE(7625), 1, - sym_gnu_asm_clobber_list, - [281432] = 4, + STATE(7604), 1, + sym_gnu_asm_input_operand_list, + [282189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12661), 1, + ACTIONS(12737), 3, anon_sym_COMMA, - ACTIONS(12664), 1, anon_sym_RPAREN, - STATE(7336), 1, - aux_sym_requires_parameter_list_repeat1, - [281445] = 4, + anon_sym_COLON, + [282198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 1, - anon_sym_RBRACE, - ACTIONS(12666), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - STATE(7258), 1, - aux_sym_initializer_list_repeat1, - [281458] = 3, - ACTIONS(10057), 1, + ACTIONS(12739), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [282211] = 4, + ACTIONS(3), 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(12521), 1, + anon_sym_COLON, + ACTIONS(12741), 1, + anon_sym_RPAREN, + STATE(8395), 1, + sym_gnu_asm_goto_list, + [282224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9843), 1, - anon_sym_DASH_GT, - ACTIONS(12670), 1, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(12743), 1, anon_sym_SEMI, - STATE(8393), 1, - sym_trailing_return_type, - [281482] = 4, - ACTIONS(10057), 1, + STATE(7471), 1, + aux_sym_declaration_repeat1, + [282237] = 2, + ACTIONS(3), 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(12745), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [282246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, + ACTIONS(12747), 1, + anon_sym_COMMA, + ACTIONS(12750), 1, + anon_sym_RPAREN, + STATE(7384), 1, + aux_sym_requires_parameter_list_repeat1, + [282259] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12513), 1, anon_sym_COLON, - ACTIONS(12676), 1, + ACTIONS(12752), 1, anon_sym_RPAREN, - STATE(7346), 1, + STATE(7391), 1, sym_gnu_asm_clobber_list, - [281508] = 4, + [282272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, + ACTIONS(12707), 1, anon_sym_COLON, - ACTIONS(12678), 1, + ACTIONS(12754), 1, anon_sym_RPAREN, - STATE(7347), 1, + STATE(7392), 1, sym_gnu_asm_input_operand_list, - [281521] = 4, + [282285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12680), 1, + ACTIONS(12756), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [281534] = 4, + [282298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12682), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12685), 1, + ACTIONS(12758), 1, + anon_sym_RBRACK_RBRACK, + STATE(7318), 1, + aux_sym_attribute_declaration_repeat1, + [282311] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8819), 1, + anon_sym_COMMA, + ACTIONS(12760), 1, anon_sym_RPAREN, - STATE(7344), 1, + STATE(7676), 1, aux_sym_generic_expression_repeat1, - [281547] = 4, + [282324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(8819), 1, anon_sym_COMMA, - ACTIONS(12687), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [281560] = 4, + ACTIONS(12762), 1, + anon_sym_RPAREN, + STATE(7676), 1, + aux_sym_generic_expression_repeat1, + [282337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(12689), 1, + ACTIONS(12764), 1, anon_sym_RPAREN, - STATE(8126), 1, + STATE(8409), 1, sym_gnu_asm_goto_list, - [281573] = 4, + [282350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, + ACTIONS(12513), 1, anon_sym_COLON, - ACTIONS(12691), 1, + ACTIONS(12766), 1, anon_sym_RPAREN, - STATE(7348), 1, + STATE(7394), 1, sym_gnu_asm_clobber_list, - [281586] = 4, + [282363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(12768), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [282372] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(12693), 1, + ACTIONS(12770), 1, anon_sym_RPAREN, - STATE(8136), 1, + STATE(8415), 1, sym_gnu_asm_goto_list, - [281599] = 4, + [282385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(8819), 1, anon_sym_COMMA, - ACTIONS(12695), 1, + ACTIONS(12772), 1, anon_sym_RPAREN, - STATE(7344), 1, + STATE(7676), 1, aux_sym_generic_expression_repeat1, - [281612] = 4, + [282398] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12697), 1, + ACTIONS(12774), 1, anon_sym_COMMA, - ACTIONS(12700), 1, + ACTIONS(12777), 1, anon_sym_RPAREN, - STATE(7350), 1, - aux_sym_throw_specifier_repeat1, - [281625] = 4, - ACTIONS(3), 1, - sym_comment, - 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(10536), 1, - anon_sym_requires, - ACTIONS(11584), 1, - anon_sym_LBRACE, - STATE(8474), 1, - sym_requires_clause, - [281651] = 4, + STATE(7396), 1, + aux_sym_preproc_params_repeat1, + [282411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, + ACTIONS(4541), 1, + anon_sym_RBRACE, + ACTIONS(12779), 1, anon_sym_COMMA, - ACTIONS(8939), 1, - anon_sym_RBRACK, - STATE(7463), 1, - aux_sym_subscript_argument_list_repeat1, - [281664] = 4, + STATE(7616), 1, + aux_sym_initializer_list_repeat1, + [282424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, - anon_sym_COLON, - ACTIONS(12704), 1, + ACTIONS(12781), 3, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(7637), 1, - sym_gnu_asm_input_operand_list, - [281677] = 4, + anon_sym_COLON, + [282433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6173), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12706), 1, - anon_sym_RBRACK, - STATE(7542), 1, - aux_sym_structured_binding_declarator_repeat1, - [281690] = 4, + ACTIONS(12783), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [282446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12708), 1, - anon_sym_GT2, - STATE(7539), 1, - aux_sym_template_argument_list_repeat1, - [281703] = 4, + ACTIONS(12785), 1, + anon_sym_SEMI, + STATE(7536), 1, + aux_sym_declaration_repeat1, + [282459] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_while, - ACTIONS(12538), 1, - anon_sym_else, - STATE(385), 1, - sym_else_clause, - [281716] = 4, + ACTIONS(12787), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2495), 1, + sym_template_function, + [282472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12710), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [281729] = 4, + ACTIONS(12789), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [282485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12712), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12715), 1, - anon_sym_RPAREN, - STATE(7359), 1, - aux_sym_parameter_list_repeat1, - [281742] = 4, + ACTIONS(12791), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [282498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, - anon_sym_COMMA, - ACTIONS(12717), 1, - anon_sym_RBRACK_RBRACK, - STATE(7480), 1, - aux_sym_attribute_declaration_repeat1, - [281755] = 3, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(12793), 1, + anon_sym_RPAREN, + STATE(7634), 1, + sym_gnu_asm_output_operand_list, + [282511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12719), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12721), 2, + ACTIONS(12673), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [281766] = 2, + ACTIONS(12795), 1, + anon_sym_RPAREN, + STATE(7351), 1, + aux_sym_parameter_list_repeat1, + [282524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12723), 3, + ACTIONS(12797), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [281775] = 4, + [282533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, - anon_sym_COLON, - ACTIONS(12725), 1, - anon_sym_RPAREN, - STATE(7534), 1, - sym_gnu_asm_input_operand_list, - [281788] = 2, + ACTIONS(12799), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2654), 1, + sym_template_function, + [282546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12727), 3, + ACTIONS(10039), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [281797] = 4, + ACTIONS(12801), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [282559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, + ACTIONS(12513), 1, anon_sym_COLON, - ACTIONS(12729), 1, + ACTIONS(12803), 1, anon_sym_RPAREN, - STATE(7545), 1, - sym_gnu_asm_output_operand_list, - [281810] = 4, + STATE(7339), 1, + sym_gnu_asm_clobber_list, + [282572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12731), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(3388), 1, - sym_template_function, - [281823] = 4, + ACTIONS(12707), 1, + anon_sym_COLON, + ACTIONS(12805), 1, + anon_sym_RPAREN, + STATE(7340), 1, + sym_gnu_asm_input_operand_list, + [282585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(12807), 3, anon_sym_COMMA, - ACTIONS(12733), 1, + anon_sym_RPAREN, anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [281836] = 4, + [282594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(12807), 3, anon_sym_COMMA, - ACTIONS(12735), 1, + anon_sym_RPAREN, anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [281849] = 4, + [282603] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(12673), 1, anon_sym_COMMA, - ACTIONS(12737), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [281862] = 4, + ACTIONS(12809), 1, + anon_sym_RPAREN, + STATE(7539), 1, + aux_sym_parameter_list_repeat1, + [282616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(8941), 1, anon_sym_COMMA, - ACTIONS(12739), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [281875] = 4, + ACTIONS(8943), 1, + anon_sym_RBRACE, + STATE(7397), 1, + aux_sym_initializer_list_repeat1, + [282629] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(12741), 1, - anon_sym_SEMI, - STATE(7418), 1, - aux_sym_declaration_repeat1, - [281888] = 4, + ACTIONS(12576), 1, + sym_identifier, + ACTIONS(12578), 1, + anon_sym_using, + STATE(7388), 1, + sym_attribute, + [282642] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12743), 1, + ACTIONS(12811), 1, anon_sym_RBRACK_RBRACK, - STATE(7524), 1, + STATE(7580), 1, aux_sym_attribute_declaration_repeat1, - [281901] = 4, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(12674), 1, - anon_sym_LPAREN2, - ACTIONS(12745), 1, - aux_sym_preproc_include_token2, - STATE(8517), 1, - sym_preproc_argument_list, - [281914] = 4, + [282655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(12747), 1, - anon_sym_GT2, - STATE(7385), 1, - aux_sym_template_argument_list_repeat1, - [281927] = 2, + ACTIONS(8935), 1, + anon_sym_RPAREN, + STATE(7544), 1, + aux_sym_argument_list_repeat1, + [282668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12749), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [281936] = 4, + ACTIONS(12059), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [282677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, - anon_sym_COLON, - ACTIONS(12751), 1, - anon_sym_RPAREN, - STATE(7299), 1, - sym_gnu_asm_clobber_list, - [281949] = 4, + ACTIONS(5240), 1, + anon_sym_LBRACE, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + STATE(325), 1, + sym_declaration_list, + [282690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12753), 1, + ACTIONS(12813), 1, anon_sym_RBRACK_RBRACK, - STATE(7414), 1, + STATE(7447), 1, aux_sym_attribute_declaration_repeat1, - [281962] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12755), 1, - anon_sym_SEMI, - STATE(8199), 1, - sym_attribute_declaration, - [281975] = 4, + [282703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(12757), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [281988] = 4, - ACTIONS(3), 1, + ACTIONS(2625), 1, + anon_sym_while, + ACTIONS(12815), 1, + anon_sym_else, + STATE(351), 1, + sym_else_clause, + [282716] = 3, + ACTIONS(10143), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(12759), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [282001] = 4, + STATE(7212), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12817), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [282727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12761), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [282014] = 4, + ACTIONS(12819), 1, + anon_sym_SEMI, + STATE(7319), 1, + aux_sym_declaration_repeat1, + [282740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12763), 1, - anon_sym_SEMI, - STATE(8488), 1, - sym_attribute_declaration, - [282027] = 4, + ACTIONS(2607), 1, + anon_sym_while, + ACTIONS(12815), 1, + anon_sym_else, + STATE(387), 1, + sym_else_clause, + [282753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12765), 1, + ACTIONS(12823), 1, + anon_sym_RPAREN, + ACTIONS(12821), 2, + anon_sym_COMMA, anon_sym_SEMI, - STATE(8359), 1, - sym_attribute_declaration, - [282040] = 4, + [282764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12767), 1, + ACTIONS(8937), 1, anon_sym_COMMA, - ACTIONS(12770), 1, - anon_sym_LBRACE, - STATE(7384), 1, - aux_sym_field_initializer_list_repeat1, - [282053] = 4, + ACTIONS(8939), 1, + anon_sym_RBRACE, + STATE(7551), 1, + aux_sym_initializer_list_repeat1, + [282777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(12825), 3, anon_sym_COMMA, - ACTIONS(12772), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [282066] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [282786] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12774), 1, + ACTIONS(12827), 1, anon_sym_SEMI, - STATE(8589), 1, + STATE(8680), 1, sym_attribute_declaration, - [282079] = 3, + [282799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12610), 1, - anon_sym_catch, - STATE(1862), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [282090] = 3, + ACTIONS(12829), 1, + sym_identifier, + ACTIONS(12831), 2, + anon_sym_COMMA, + anon_sym_GT2, + [282810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12776), 1, + ACTIONS(12677), 1, anon_sym_catch, - STATE(226), 2, + STATE(1916), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [282101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12778), 1, - anon_sym_COMMA, - ACTIONS(12780), 1, - anon_sym_RPAREN, - STATE(7662), 1, - aux_sym_requires_parameter_list_repeat1, - [282114] = 4, + [282821] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(8767), 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(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(12625), 1, - sym_identifier, - ACTIONS(12627), 1, - anon_sym_using, - STATE(7360), 1, - sym_attribute, - [282153] = 4, + ACTIONS(12833), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [282834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12786), 1, - anon_sym_LBRACE, - STATE(7309), 1, - aux_sym_base_class_clause_repeat1, - [282166] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - ACTIONS(12788), 1, - anon_sym_constexpr, - STATE(177), 1, - sym_condition_clause, - [282179] = 3, - ACTIONS(10057), 1, - sym_comment, - STATE(7142), 1, - aux_sym_char_literal_repeat1, - ACTIONS(12790), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [282190] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - ACTIONS(12792), 1, - anon_sym_constexpr, - STATE(223), 1, - sym_condition_clause, - [282203] = 4, + ACTIONS(12835), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [282847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(12837), 1, anon_sym_COMMA, - ACTIONS(12315), 1, - anon_sym_LBRACE, - STATE(7259), 1, - aux_sym_base_class_clause_repeat1, - [282216] = 3, + ACTIONS(12839), 1, + anon_sym_RPAREN, + STATE(7714), 1, + aux_sym_requires_parameter_list_repeat1, + [282860] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12794), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12796), 2, + ACTIONS(10039), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [282227] = 4, + ACTIONS(12841), 1, + anon_sym_SEMI, + STATE(7469), 1, + aux_sym_declaration_repeat1, + [282873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(12315), 1, - anon_sym_LBRACE, - STATE(7309), 1, - aux_sym_base_class_clause_repeat1, - [282240] = 4, + ACTIONS(12843), 1, + anon_sym_RPAREN, + STATE(7437), 1, + aux_sym_argument_list_repeat1, + [282886] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12798), 1, + ACTIONS(12845), 1, sym_identifier, - STATE(1923), 1, + STATE(1947), 1, sym_template_type, - STATE(2675), 1, + STATE(2654), 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(8947), 1, - anon_sym_RBRACK, - ACTIONS(12800), 1, - anon_sym_COMMA, - STATE(7402), 1, - aux_sym_subscript_argument_list_repeat1, - [282277] = 4, + [282899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9009), 1, + ACTIONS(9051), 1, anon_sym_RPAREN, - ACTIONS(12803), 1, + ACTIONS(12847), 1, anon_sym_COMMA, - STATE(7403), 1, + STATE(7437), 1, aux_sym_argument_list_repeat1, - [282290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(12806), 1, - anon_sym_SEMI, - STATE(7571), 1, - aux_sym_declaration_repeat1, - [282303] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12076), 1, - anon_sym_COMMA, - ACTIONS(12786), 1, - anon_sym_LBRACE, - STATE(7594), 1, - aux_sym_base_class_clause_repeat1, - [282316] = 3, + [282912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12050), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12808), 2, + ACTIONS(8767), 1, anon_sym_COMMA, + ACTIONS(12850), 1, anon_sym_GT2, - [282327] = 4, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [282925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(12810), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [282340] = 4, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(12852), 1, + anon_sym_RPAREN, + STATE(7569), 1, + sym_gnu_asm_output_operand_list, + [282938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(12812), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [282353] = 4, + ACTIONS(12707), 1, + anon_sym_COLON, + ACTIONS(12854), 1, + anon_sym_RPAREN, + STATE(7409), 1, + sym_gnu_asm_input_operand_list, + [282951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(12814), 1, - anon_sym_SEMI, - STATE(7408), 1, - aux_sym_declaration_repeat1, - [282366] = 4, + ACTIONS(12576), 1, + sym_identifier, + ACTIONS(12578), 1, + anon_sym_using, + STATE(7292), 1, + sym_attribute, + [282964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12816), 1, - anon_sym_default, - ACTIONS(12818), 1, - anon_sym_delete, - ACTIONS(12820), 1, - aux_sym_pure_virtual_clause_token1, - [282379] = 3, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + ACTIONS(12856), 1, + anon_sym_constexpr, + STATE(177), 1, + sym_condition_clause, + [282977] = 3, + ACTIONS(10143), 1, + sym_comment, + STATE(7099), 1, + aux_sym_char_literal_repeat1, + ACTIONS(12858), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [282988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12824), 1, - anon_sym_RPAREN, - ACTIONS(12822), 2, + ACTIONS(12860), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12862), 2, anon_sym_COMMA, - anon_sym_SEMI, - [282390] = 4, + anon_sym_LBRACE, + [282999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12826), 1, + ACTIONS(12864), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7582), 1, aux_sym_template_argument_list_repeat1, - [282403] = 4, + [283012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12828), 1, + ACTIONS(12866), 1, anon_sym_COMMA, - ACTIONS(12830), 1, - anon_sym_RPAREN, - STATE(7421), 1, - aux_sym_throw_specifier_repeat1, - [282416] = 4, + ACTIONS(12868), 1, + anon_sym_LBRACE, + STATE(7697), 1, + aux_sym_field_initializer_list_repeat1, + [283025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12832), 1, + ACTIONS(12870), 1, anon_sym_RBRACK_RBRACK, - STATE(7263), 1, + STATE(7580), 1, aux_sym_attribute_declaration_repeat1, - [282429] = 4, + [283038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12872), 1, + anon_sym_COMMA, + ACTIONS(12874), 1, + anon_sym_RBRACK, + STATE(7553), 1, + aux_sym_lambda_capture_specifier_repeat1, + [283051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(8882), 1, + ACTIONS(8957), 1, anon_sym_RPAREN, - STATE(7443), 1, + STATE(7480), 1, aux_sym_argument_list_repeat1, - [282442] = 4, + [283064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(12834), 1, - anon_sym_SEMI, - STATE(7541), 1, - aux_sym_declaration_repeat1, - [282455] = 4, + ACTIONS(6674), 1, + anon_sym___attribute, + ACTIONS(6676), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [283075] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12836), 1, + ACTIONS(12876), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [282468] = 4, + [283088] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(12878), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12880), 2, anon_sym_COMMA, - ACTIONS(12838), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [282481] = 4, + anon_sym_LBRACE, + [283099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12590), 1, - anon_sym_COMMA, - ACTIONS(12840), 1, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(12882), 1, anon_sym_RPAREN, - STATE(7359), 1, - aux_sym_parameter_list_repeat1, - [282494] = 4, + STATE(7410), 1, + sym_gnu_asm_output_operand_list, + [283112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8884), 1, - anon_sym_COMMA, - ACTIONS(8886), 1, - anon_sym_RBRACE, - STATE(7445), 1, - aux_sym_initializer_list_repeat1, - [282507] = 4, + ACTIONS(12884), 1, + anon_sym_default, + ACTIONS(12886), 1, + anon_sym_delete, + ACTIONS(12888), 1, + aux_sym_pure_virtual_clause_token1, + [283125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12828), 1, + ACTIONS(8885), 1, anon_sym_COMMA, - ACTIONS(12842), 1, - anon_sym_RPAREN, - STATE(7350), 1, - aux_sym_throw_specifier_repeat1, - [282520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10536), 1, - anon_sym_requires, - ACTIONS(11540), 1, - anon_sym_LBRACE, - STATE(8155), 1, - sym_requires_clause, - [282533] = 4, + ACTIONS(8887), 1, + anon_sym_RBRACE, + STATE(7481), 1, + aux_sym_initializer_list_repeat1, + [283138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12844), 1, + ACTIONS(12890), 1, sym_identifier, - STATE(1808), 1, + STATE(1947), 1, sym_template_type, - STATE(3542), 1, + STATE(3484), 1, sym_template_function, - [282546] = 3, + [283151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12598), 1, - anon_sym_catch, - STATE(453), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [282557] = 4, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12892), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [283164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, + ACTIONS(12707), 1, anon_sym_COLON, - ACTIONS(12846), 1, + ACTIONS(12894), 1, anon_sym_RPAREN, - STATE(7447), 1, - sym_gnu_asm_output_operand_list, - [282570] = 4, + STATE(7585), 1, + sym_gnu_asm_input_operand_list, + [283177] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10536), 1, - anon_sym_requires, - ACTIONS(11536), 1, - anon_sym_LBRACE, - STATE(8166), 1, - sym_requires_clause, - [282583] = 4, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12896), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [283190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(12848), 1, - anon_sym_SEMI, - STATE(7265), 1, - aux_sym_declaration_repeat1, - [282596] = 4, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(12898), 1, + anon_sym_RPAREN, + STATE(7484), 1, + sym_gnu_asm_output_operand_list, + [283203] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12850), 1, + ACTIONS(12900), 1, anon_sym_GT2, - STATE(7453), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [282609] = 4, + [283216] = 4, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12902), 1, + aux_sym_preproc_include_token2, + ACTIONS(12904), 1, + anon_sym_LPAREN2, + STATE(8213), 1, + sym_preproc_argument_list, + [283229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12852), 1, + ACTIONS(12906), 1, anon_sym_GT2, - STATE(7440), 1, + STATE(7489), 1, aux_sym_template_argument_list_repeat1, - [282622] = 4, + [283242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(12908), 1, + anon_sym_RPAREN, + STATE(7594), 1, + sym_gnu_asm_output_operand_list, + [283255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12854), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [282635] = 4, + ACTIONS(12910), 1, + anon_sym_SEMI, + STATE(7609), 1, + aux_sym_declaration_repeat1, + [283268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12856), 1, + ACTIONS(12912), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [282648] = 4, + [283281] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12858), 1, - anon_sym_RBRACK, - STATE(7402), 1, - aux_sym_subscript_argument_list_repeat1, - [282661] = 4, + ACTIONS(12914), 1, + anon_sym_SEMI, + STATE(7494), 1, + aux_sym_declaration_repeat1, + [283294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12860), 1, + ACTIONS(12916), 1, anon_sym_SEMI, - STATE(7458), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [282674] = 4, + [283307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12862), 1, + ACTIONS(12918), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [282687] = 4, + [283320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12864), 1, + ACTIONS(12920), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [282700] = 4, + [283333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12563), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12866), 1, - anon_sym_RBRACK, - STATE(7285), 1, - aux_sym_lambda_capture_specifier_repeat1, - [282713] = 3, + ACTIONS(12922), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [283346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12477), 1, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(12924), 1, + anon_sym_RPAREN, + STATE(7378), 1, + sym_gnu_asm_output_operand_list, + [283359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12926), 1, anon_sym_catch, - STATE(449), 2, + STATE(450), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [282724] = 4, - ACTIONS(10057), 1, + [283370] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12674), 1, - anon_sym_LPAREN2, - ACTIONS(12868), 1, - aux_sym_preproc_include_token2, - STATE(8517), 1, - sym_preproc_argument_list, - [282737] = 4, + ACTIONS(12928), 1, + anon_sym_catch, + STATE(452), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [283381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, + ACTIONS(6104), 1, anon_sym_COMMA, - ACTIONS(12872), 1, + ACTIONS(12930), 1, + anon_sym_RBRACK, + STATE(7626), 1, + aux_sym_structured_binding_declarator_repeat1, + [283394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12673), 1, + anon_sym_COMMA, + ACTIONS(12932), 1, anon_sym_RPAREN, - STATE(7511), 1, - aux_sym_preproc_params_repeat1, - [282750] = 4, + STATE(7614), 1, + aux_sym_parameter_list_repeat1, + [283407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12874), 1, + ACTIONS(12934), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [282763] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12876), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(2504), 1, - sym_template_function, - [282776] = 4, + [283420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12590), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12878), 1, - anon_sym_RPAREN, - STATE(7419), 1, - aux_sym_parameter_list_repeat1, - [282789] = 4, + ACTIONS(12936), 1, + anon_sym_GT2, + STATE(7510), 1, + aux_sym_template_argument_list_repeat1, + [283433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(12880), 1, - anon_sym_RPAREN, - STATE(7403), 1, - aux_sym_argument_list_repeat1, - [282802] = 4, + ACTIONS(12938), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [283442] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(12882), 1, + ACTIONS(12940), 1, anon_sym_RPAREN, - STATE(7488), 1, - aux_sym_preproc_argument_list_repeat1, - [282815] = 4, + STATE(7437), 1, + aux_sym_argument_list_repeat1, + [283455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4539), 1, + ACTIONS(4545), 1, anon_sym_RBRACE, - ACTIONS(12884), 1, + ACTIONS(12942), 1, anon_sym_COMMA, - STATE(7258), 1, + STATE(7616), 1, aux_sym_initializer_list_repeat1, - [282828] = 4, + [283468] = 3, 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(12685), 1, + anon_sym_catch, + STATE(231), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [283479] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(12891), 1, + ACTIONS(12944), 1, anon_sym_RPAREN, - STATE(7468), 1, + STATE(8393), 1, + sym_gnu_asm_goto_list, + [283492] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12707), 1, + anon_sym_COLON, + ACTIONS(12946), 1, + anon_sym_RPAREN, + STATE(7503), 1, sym_gnu_asm_input_operand_list, - [282854] = 4, + [283505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, + ACTIONS(12646), 1, anon_sym_COLON, - ACTIONS(12893), 1, + ACTIONS(12948), 1, anon_sym_RPAREN, - STATE(7469), 1, + STATE(7505), 1, sym_gnu_asm_output_operand_list, - [282867] = 4, + [283518] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12895), 1, + ACTIONS(12950), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [283531] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12952), 1, + anon_sym_GT2, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [282880] = 4, + [283544] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12625), 1, + ACTIONS(12576), 1, sym_identifier, - ACTIONS(12627), 1, + ACTIONS(12578), 1, anon_sym_using, - STATE(7621), 1, + STATE(7535), 1, sym_attribute, - [282893] = 4, + [283557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12897), 1, + ACTIONS(12954), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [282906] = 4, + [283570] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(12620), 1, anon_sym_LPAREN2, - ACTIONS(12899), 1, + ACTIONS(12956), 1, anon_sym_constexpr, - STATE(187), 1, + STATE(189), 1, sym_condition_clause, - [282919] = 4, - ACTIONS(3), 1, + [283583] = 3, + ACTIONS(10143), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - 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, + STATE(7232), 1, aux_sym_char_literal_repeat1, - ACTIONS(12903), 2, + ACTIONS(12958), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [282943] = 4, + [283594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12905), 1, + ACTIONS(12960), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7506), 1, aux_sym_declaration_repeat1, - [282956] = 4, + [283607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12907), 1, + ACTIONS(12962), 1, anon_sym_SEMI, - STATE(7470), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [282969] = 4, + [283620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12909), 1, + ACTIONS(12964), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [282982] = 4, + [283633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(12580), 1, anon_sym_COMMA, - ACTIONS(12911), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [282995] = 3, + ACTIONS(12966), 1, + anon_sym_RPAREN, + STATE(7302), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [283646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12477), 1, + ACTIONS(12968), 1, + anon_sym_COMMA, + ACTIONS(12971), 1, + anon_sym_GT2, + STATE(7496), 1, + aux_sym_template_parameter_list_repeat1, + [283659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12926), 1, anon_sym_catch, STATE(451), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [283006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12625), 1, - sym_identifier, - ACTIONS(12627), 1, - anon_sym_using, - STATE(7992), 1, - sym_attribute, - [283019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12913), 1, - anon_sym_default, - ACTIONS(12915), 1, - anon_sym_delete, - ACTIONS(12917), 1, - aux_sym_pure_virtual_clause_token1, - [283032] = 4, + [283670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12563), 1, - anon_sym_COMMA, - ACTIONS(12919), 1, - anon_sym_RBRACK, - STATE(7558), 1, - aux_sym_lambda_capture_specifier_repeat1, - [283045] = 4, + ACTIONS(12513), 1, + anon_sym_COLON, + ACTIONS(12973), 1, + anon_sym_RPAREN, + STATE(7586), 1, + sym_gnu_asm_clobber_list, + [283683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12921), 1, - anon_sym_RBRACK, - STATE(7402), 1, - aux_sym_subscript_argument_list_repeat1, - [283058] = 4, + ACTIONS(12975), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [283696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10536), 1, - anon_sym_requires, - ACTIONS(11542), 1, - anon_sym_LBRACE, - STATE(8918), 1, - sym_requires_clause, - [283071] = 4, + ACTIONS(12977), 1, + anon_sym_default, + ACTIONS(12979), 1, + anon_sym_delete, + ACTIONS(12981), 1, + aux_sym_pure_virtual_clause_token1, + [283709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(7518), 1, + anon_sym_EQ, + ACTIONS(7516), 2, anon_sym_COMMA, - ACTIONS(12923), 1, - anon_sym_RBRACK_RBRACK, - STATE(7263), 1, - aux_sym_attribute_declaration_repeat1, - [283084] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12925), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [283093] = 4, + anon_sym_GT2, + [283720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12927), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(12929), 1, + ACTIONS(12983), 1, anon_sym_GT2, - STATE(7619), 1, - aux_sym_template_parameter_list_repeat1, - [283106] = 4, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [283733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, + ACTIONS(12513), 1, anon_sym_COLON, - ACTIONS(12931), 1, + ACTIONS(12985), 1, anon_sym_RPAREN, - STATE(7473), 1, + STATE(7508), 1, sym_gnu_asm_clobber_list, - [283119] = 4, + [283746] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12987), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [283759] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12707), 1, anon_sym_COLON, - ACTIONS(12933), 1, + ACTIONS(12989), 1, anon_sym_RPAREN, - STATE(7474), 1, + STATE(7509), 1, sym_gnu_asm_input_operand_list, - [283132] = 4, + [283772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12935), 1, + ACTIONS(12991), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [283145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12937), 1, - anon_sym_catch, - STATE(1868), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [283156] = 4, + [283785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12939), 1, - sym_identifier, - STATE(1808), 1, - sym_template_type, - STATE(3388), 1, - sym_template_function, - [283169] = 4, + ACTIONS(12872), 1, + anon_sym_COMMA, + ACTIONS(12993), 1, + anon_sym_RBRACK, + STATE(7657), 1, + aux_sym_lambda_capture_specifier_repeat1, + [283798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(12941), 1, + ACTIONS(12995), 1, anon_sym_RPAREN, - STATE(8197), 1, + STATE(8211), 1, sym_gnu_asm_goto_list, - [283182] = 4, + [283811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, + ACTIONS(12513), 1, anon_sym_COLON, - ACTIONS(12943), 1, + ACTIONS(12997), 1, anon_sym_RPAREN, - STATE(7475), 1, + STATE(7511), 1, sym_gnu_asm_clobber_list, - [283195] = 4, + [283824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(12999), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [283837] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(12945), 1, + ACTIONS(13001), 1, anon_sym_RPAREN, - STATE(8200), 1, + STATE(8216), 1, sym_gnu_asm_goto_list, - [283208] = 4, + [283850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(8819), 1, anon_sym_COMMA, - ACTIONS(12947), 1, + ACTIONS(13003), 1, anon_sym_RPAREN, - STATE(7344), 1, + STATE(7676), 1, aux_sym_generic_expression_repeat1, - [283221] = 4, + [283863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(13005), 1, + anon_sym_catch, + STATE(396), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [283874] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8843), 1, + anon_sym_COMMA, + ACTIONS(8869), 1, + anon_sym_RBRACK, + STATE(7619), 1, + aux_sym_subscript_argument_list_repeat1, + [283887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13005), 1, + anon_sym_catch, + STATE(234), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [283898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(13007), 1, + anon_sym_SEMI, + STATE(7597), 1, + aux_sym_declaration_repeat1, + [283911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12949), 1, + ACTIONS(13009), 1, anon_sym_SEMI, - STATE(7268), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [283234] = 4, + [283924] = 4, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12904), 1, + anon_sym_LPAREN2, + ACTIONS(13011), 1, + aux_sym_preproc_include_token2, + STATE(8213), 1, + sym_preproc_argument_list, + [283937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12625), 1, + ACTIONS(12576), 1, sym_identifier, - ACTIONS(12627), 1, + ACTIONS(12578), 1, anon_sym_using, - STATE(7377), 1, + STATE(7420), 1, sym_attribute, - [283247] = 3, - ACTIONS(10057), 1, + [283950] = 3, + ACTIONS(10143), 1, sym_comment, - STATE(7144), 1, + STATE(7128), 1, aux_sym_char_literal_repeat1, - ACTIONS(12951), 2, + ACTIONS(13013), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [283258] = 4, + [283961] = 4, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12904), 1, + anon_sym_LPAREN2, + ACTIONS(13015), 1, + aux_sym_preproc_include_token2, + STATE(8213), 1, + sym_preproc_argument_list, + [283974] = 3, 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(12683), 1, + anon_sym_COLON_COLON, + ACTIONS(13017), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [283985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(8843), 1, anon_sym_COMMA, - ACTIONS(8874), 1, - anon_sym_RPAREN, - STATE(7605), 1, - aux_sym_argument_list_repeat1, - [283284] = 4, + ACTIONS(8879), 1, + anon_sym_RBRACK, + STATE(7524), 1, + aux_sym_subscript_argument_list_repeat1, + [283998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(8843), 1, anon_sym_COMMA, - ACTIONS(8784), 1, - anon_sym_RPAREN, - STATE(7272), 1, - aux_sym_argument_list_repeat1, - [283297] = 4, + ACTIONS(13019), 1, + anon_sym_RBRACK, + STATE(7675), 1, + aux_sym_subscript_argument_list_repeat1, + [284011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12955), 1, + ACTIONS(13021), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [283310] = 4, + [284024] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12957), 1, + ACTIONS(13023), 1, anon_sym_default, - ACTIONS(12959), 1, + ACTIONS(13025), 1, anon_sym_delete, - ACTIONS(12961), 1, + ACTIONS(13027), 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(10023), 1, - anon_sym_COMMA, - ACTIONS(12965), 1, - anon_sym_RPAREN, - 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, + [284037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12972), 1, + ACTIONS(12540), 1, anon_sym_catch, - STATE(231), 2, + STATE(1908), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [283399] = 4, + [284048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8792), 1, - anon_sym_COMMA, - ACTIONS(8794), 1, - anon_sym_RBRACE, - STATE(7607), 1, - aux_sym_initializer_list_repeat1, - [283412] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13029), 1, + anon_sym_SEMI, + STATE(8819), 1, + sym_attribute_declaration, + [284061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(13031), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13033), 2, anon_sym_COMMA, - 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, + [284072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(10039), 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, + ACTIONS(13035), 1, anon_sym_SEMI, - STATE(8467), 1, - sym_attribute_declaration, - [283514] = 4, + STATE(7451), 1, + aux_sym_declaration_repeat1, + [284085] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(12990), 1, + ACTIONS(13037), 1, anon_sym_SEMI, - STATE(7618), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [283527] = 4, + [284098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(12069), 1, anon_sym_COMMA, - ACTIONS(12992), 1, + ACTIONS(12071), 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, + STATE(7278), 1, + aux_sym_base_class_clause_repeat1, + [284111] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(12069), 1, anon_sym_COMMA, - ACTIONS(13002), 1, - anon_sym_RBRACK_RBRACK, - STATE(7543), 1, - aux_sym_attribute_declaration_repeat1, - [283579] = 4, + ACTIONS(12071), 1, + anon_sym_LBRACE, + STATE(7326), 1, + aux_sym_base_class_clause_repeat1, + [284124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13004), 1, + ACTIONS(13039), 1, anon_sym_COMMA, - ACTIONS(13006), 1, + ACTIONS(13041), 1, anon_sym_RPAREN, - STATE(7528), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [283592] = 2, + STATE(7687), 1, + aux_sym_preproc_params_repeat1, + [284137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13008), 3, + ACTIONS(12558), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [283601] = 4, - ACTIONS(3), 1, - sym_comment, - 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(12554), 1, - anon_sym_COLON, - ACTIONS(13012), 1, - anon_sym_RPAREN, - STATE(7626), 1, - sym_gnu_asm_output_operand_list, - [283627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13014), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(2675), 1, - sym_template_function, - [283640] = 4, + ACTIONS(13043), 1, + anon_sym_RBRACK_RBRACK, + STATE(7322), 1, + aux_sym_attribute_declaration_repeat1, + [284150] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13016), 1, - anon_sym_GT2, - STATE(7639), 1, - aux_sym_template_argument_list_repeat1, - [283653] = 4, + ACTIONS(13045), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [284163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12870), 1, + ACTIONS(13047), 1, anon_sym_COMMA, - ACTIONS(13018), 1, + ACTIONS(13049), 1, anon_sym_RPAREN, - STATE(7690), 1, - aux_sym_preproc_params_repeat1, - [283666] = 4, + STATE(7574), 1, + aux_sym_throw_specifier_repeat1, + [284176] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, - anon_sym_COLON, - ACTIONS(13020), 1, - anon_sym_RPAREN, - STATE(7376), 1, - sym_gnu_asm_input_operand_list, - [283679] = 4, + ACTIONS(12069), 1, + anon_sym_COMMA, + ACTIONS(12626), 1, + anon_sym_LBRACE, + STATE(7267), 1, + aux_sym_base_class_clause_repeat1, + [284189] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(12673), 1, anon_sym_COMMA, - ACTIONS(13022), 1, - anon_sym_GT2, - STATE(7520), 1, - aux_sym_template_argument_list_repeat1, - [283692] = 4, + ACTIONS(13051), 1, + anon_sym_RPAREN, + STATE(7591), 1, + aux_sym_parameter_list_repeat1, + [284202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(10089), 1, anon_sym_COMMA, - ACTIONS(13024), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [283705] = 4, + ACTIONS(13053), 1, + anon_sym_RPAREN, + STATE(7369), 1, + aux_sym_preproc_argument_list_repeat1, + [284215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12625), 1, + ACTIONS(12576), 1, sym_identifier, - ACTIONS(12627), 1, + ACTIONS(12578), 1, anon_sym_using, - STATE(7622), 1, + STATE(7548), 1, sym_attribute, - [283718] = 3, - ACTIONS(10057), 1, + [284228] = 3, + ACTIONS(10143), 1, sym_comment, - STATE(7216), 1, + STATE(7190), 1, aux_sym_char_literal_repeat1, - ACTIONS(13026), 2, + ACTIONS(13055), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [283729] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12554), 1, - anon_sym_COLON, - ACTIONS(13028), 1, - anon_sym_RPAREN, - STATE(7391), 1, - sym_gnu_asm_output_operand_list, - [283742] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(13030), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [283755] = 4, + [284239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13032), 1, - anon_sym_SEMI, - STATE(8484), 1, - sym_attribute_declaration, - [283768] = 4, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(11586), 1, + anon_sym_LBRACE, + STATE(8431), 1, + sym_requires_clause, + [284252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(13034), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [283781] = 3, + ACTIONS(13057), 1, + anon_sym_RPAREN, + STATE(7437), 1, + aux_sym_argument_list_repeat1, + [284265] = 4, 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(5240), 1, + anon_sym_LBRACE, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + STATE(346), 1, + sym_declaration_list, + [284278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13038), 1, + ACTIONS(13059), 1, anon_sym_default, - ACTIONS(13040), 1, + ACTIONS(13061), 1, anon_sym_delete, - ACTIONS(13042), 1, + ACTIONS(13063), 1, aux_sym_pure_virtual_clause_token1, - [283805] = 3, + [284291] = 4, 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(12069), 1, + anon_sym_COMMA, + ACTIONS(12352), 1, + anon_sym_LBRACE, + STATE(7532), 1, + aux_sym_base_class_clause_repeat1, + [284304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(13044), 1, + ACTIONS(13065), 1, anon_sym_RBRACK_RBRACK, - STATE(7263), 1, + STATE(7584), 1, aux_sym_attribute_declaration_repeat1, - [283829] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13046), 1, - anon_sym_SEMI, - STATE(8498), 1, - sym_attribute_declaration, - [283842] = 4, + [284317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(13048), 1, - anon_sym_SEMI, - STATE(7563), 1, - aux_sym_declaration_repeat1, - [283855] = 4, + ACTIONS(13067), 1, + anon_sym_RBRACK_RBRACK, + STATE(7580), 1, + aux_sym_attribute_declaration_repeat1, + [284330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, - anon_sym_COLON, - ACTIONS(13050), 1, - anon_sym_RPAREN, - STATE(8964), 1, - sym_gnu_asm_goto_list, - [283868] = 4, + ACTIONS(13005), 1, + anon_sym_catch, + STATE(378), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [284341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13052), 1, + ACTIONS(4537), 1, + anon_sym_RBRACE, + ACTIONS(13069), 1, anon_sym_COMMA, - ACTIONS(13055), 1, - anon_sym_RPAREN, - STATE(7528), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [283881] = 4, + STATE(7616), 1, + aux_sym_initializer_list_repeat1, + [284354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(12069), 1, anon_sym_COMMA, - ACTIONS(13057), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [283894] = 4, + ACTIONS(12362), 1, + anon_sym_LBRACE, + STATE(7278), 1, + aux_sym_base_class_clause_repeat1, + [284367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13059), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(2675), 1, - sym_template_function, - [283907] = 2, + ACTIONS(12872), 1, + anon_sym_COMMA, + ACTIONS(13071), 1, + anon_sym_RBRACK, + STATE(7657), 1, + aux_sym_lambda_capture_specifier_repeat1, + [284380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13061), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [283916] = 4, + ACTIONS(12069), 1, + anon_sym_COMMA, + ACTIONS(12352), 1, + anon_sym_LBRACE, + STATE(7278), 1, + aux_sym_base_class_clause_repeat1, + [284393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12625), 1, + ACTIONS(12576), 1, sym_identifier, - ACTIONS(12627), 1, + ACTIONS(12578), 1, anon_sym_using, - STATE(7372), 1, + STATE(7705), 1, sym_attribute, - [283929] = 3, - ACTIONS(10057), 1, + [284406] = 3, + ACTIONS(10143), 1, sym_comment, - STATE(7043), 1, + STATE(7263), 1, aux_sym_char_literal_repeat1, - ACTIONS(13063), 2, + ACTIONS(13073), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [283940] = 4, + [284417] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, - anon_sym_COLON, - ACTIONS(13065), 1, - anon_sym_RPAREN, - STATE(7616), 1, - sym_gnu_asm_clobber_list, - [283953] = 4, + ACTIONS(13075), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(3317), 1, + sym_template_function, + [284430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(13067), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [283966] = 4, + ACTIONS(13077), 1, + anon_sym_catch, + STATE(892), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [284441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(13069), 1, - anon_sym_SEMI, - STATE(7657), 1, - aux_sym_declaration_repeat1, - [283979] = 4, + ACTIONS(6562), 1, + anon_sym___attribute, + ACTIONS(6564), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [284452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(13071), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [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(6566), 1, + anon_sym___attribute, + ACTIONS(6568), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [284463] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(13075), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [284016] = 4, + ACTIONS(13079), 1, + anon_sym_default, + ACTIONS(13081), 1, + anon_sym_delete, + ACTIONS(13083), 1, + aux_sym_pure_virtual_clause_token1, + [284476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13077), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(2504), 1, - sym_template_function, - [284029] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13085), 1, + anon_sym_SEMI, + STATE(8652), 1, + sym_attribute_declaration, + [284489] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(9859), 1, + anon_sym_DASH_GT, + ACTIONS(13087), 1, + anon_sym_SEMI, + STATE(8484), 1, + sym_trailing_return_type, + [284502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13079), 1, + ACTIONS(13089), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7612), 1, aux_sym_declaration_repeat1, - [284042] = 4, + [284515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6173), 1, - anon_sym_COMMA, - ACTIONS(13081), 1, - anon_sym_RBRACK, - STATE(7281), 1, - aux_sym_structured_binding_declarator_repeat1, - [284055] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13091), 1, + anon_sym_SEMI, + STATE(8524), 1, + sym_attribute_declaration, + [284528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, - anon_sym_COMMA, - ACTIONS(13083), 1, - anon_sym_RBRACK_RBRACK, - STATE(7263), 1, - aux_sym_attribute_declaration_repeat1, - [284068] = 3, - ACTIONS(10057), 1, + ACTIONS(13093), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2654), 1, + sym_template_function, + [284541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12576), 1, + sym_identifier, + ACTIONS(12578), 1, + anon_sym_using, + STATE(7709), 1, + sym_attribute, + [284554] = 3, + ACTIONS(10143), 1, sym_comment, - STATE(7062), 1, + STATE(7068), 1, aux_sym_char_literal_repeat1, - ACTIONS(13085), 2, + ACTIONS(13095), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [284079] = 4, + [284565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, + ACTIONS(12707), 1, anon_sym_COLON, - ACTIONS(13087), 1, + ACTIONS(13097), 1, anon_sym_RPAREN, - STATE(7617), 1, + STATE(7690), 1, sym_gnu_asm_input_operand_list, - [284092] = 4, + [284578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8910), 1, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(13099), 1, anon_sym_RPAREN, - STATE(7573), 1, - aux_sym_argument_list_repeat1, - [284105] = 3, - ACTIONS(10057), 1, + STATE(7694), 1, + sym_gnu_asm_output_operand_list, + [284591] = 4, + ACTIONS(3), 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, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(13101), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [284604] = 2, + ACTIONS(3), 1, sym_comment, - STATE(7074), 1, + ACTIONS(8805), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + [284613] = 3, + ACTIONS(10143), 1, + sym_comment, + STATE(7135), 1, aux_sym_char_literal_repeat1, - ACTIONS(13091), 2, + ACTIONS(13103), 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, + [284624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12590), 1, + ACTIONS(13105), 1, anon_sym_COMMA, - ACTIONS(13095), 1, + ACTIONS(13108), 1, anon_sym_RPAREN, - 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, + STATE(7574), 1, + aux_sym_throw_specifier_repeat1, + [284637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8912), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(8914), 1, - anon_sym_RBRACE, - STATE(7574), 1, - aux_sym_initializer_list_repeat1, - [284177] = 3, + ACTIONS(8759), 1, + anon_sym_RPAREN, + STATE(7435), 1, + aux_sym_argument_list_repeat1, + [284650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12776), 1, - anon_sym_catch, - STATE(229), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [284188] = 4, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(13110), 1, + anon_sym_LBRACE, + STATE(8111), 1, + sym_requires_clause, + [284663] = 3, + ACTIONS(10143), 1, + sym_comment, + STATE(7168), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13112), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [284674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13097), 1, + ACTIONS(13114), 1, anon_sym_GT2, - STATE(7564), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [284201] = 4, + [284687] = 3, + ACTIONS(10143), 1, + sym_comment, + STATE(7214), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13116), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [284698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, - anon_sym_COLON, - ACTIONS(13099), 1, - anon_sym_RPAREN, - STATE(7576), 1, - sym_gnu_asm_output_operand_list, - [284214] = 4, + ACTIONS(13118), 1, + anon_sym_COMMA, + ACTIONS(13121), 1, + anon_sym_RBRACK_RBRACK, + STATE(7580), 1, + aux_sym_attribute_declaration_repeat1, + [284711] = 3, + ACTIONS(10143), 1, + sym_comment, + STATE(7260), 1, + aux_sym_char_literal_repeat1, + ACTIONS(13123), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [284722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13101), 1, + ACTIONS(13125), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [284227] = 4, + [284735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13103), 1, + ACTIONS(13127), 1, anon_sym_GT2, - STATE(7580), 1, + STATE(7438), 1, aux_sym_template_argument_list_repeat1, - [284240] = 4, + [284748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12563), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(13105), 1, - anon_sym_RBRACK, - STATE(7285), 1, - aux_sym_lambda_capture_specifier_repeat1, - [284253] = 4, + ACTIONS(13129), 1, + anon_sym_RBRACK_RBRACK, + STATE(7580), 1, + aux_sym_attribute_declaration_repeat1, + [284761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10536), 1, - anon_sym_requires, - ACTIONS(13107), 1, - anon_sym_LBRACE, - STATE(8663), 1, - sym_requires_clause, - [284266] = 4, + ACTIONS(12513), 1, + anon_sym_COLON, + ACTIONS(13131), 1, + anon_sym_RPAREN, + STATE(7624), 1, + sym_gnu_asm_clobber_list, + [284774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(13109), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [284279] = 4, + ACTIONS(12521), 1, + anon_sym_COLON, + ACTIONS(13133), 1, + anon_sym_RPAREN, + STATE(8774), 1, + sym_gnu_asm_goto_list, + [284787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(13111), 1, - anon_sym_SEMI, - STATE(7584), 1, - aux_sym_declaration_repeat1, - [284292] = 4, + ACTIONS(8749), 1, + anon_sym_RPAREN, + STATE(7625), 1, + aux_sym_argument_list_repeat1, + [284800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(13113), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [284305] = 4, + ACTIONS(13135), 1, + anon_sym_RPAREN, + STATE(7437), 1, + aux_sym_argument_list_repeat1, + [284813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(8761), 1, anon_sym_COMMA, - ACTIONS(13115), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [284318] = 4, + ACTIONS(8763), 1, + anon_sym_RBRACE, + STATE(7627), 1, + aux_sym_initializer_list_repeat1, + [284826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(13117), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [284331] = 4, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(11566), 1, + anon_sym_LBRACE, + STATE(8785), 1, + sym_requires_clause, + [284839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, - anon_sym_LBRACE, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - STATE(584), 1, - sym_declaration_list, - [284344] = 3, + ACTIONS(13137), 1, + anon_sym_COMMA, + ACTIONS(13140), 1, + anon_sym_RPAREN, + STATE(7591), 1, + aux_sym_parameter_list_repeat1, + [284852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12972), 1, - anon_sym_catch, - STATE(376), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [284355] = 3, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + ACTIONS(13142), 1, + anon_sym_constexpr, + STATE(174), 1, + sym_condition_clause, + [284865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13119), 1, + ACTIONS(12928), 1, anon_sym_catch, - STATE(1698), 2, + STATE(454), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [284366] = 4, + [284876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, + ACTIONS(12707), 1, anon_sym_COLON, - ACTIONS(13121), 1, + ACTIONS(13144), 1, anon_sym_RPAREN, - STATE(7249), 1, + STATE(7643), 1, sym_gnu_asm_input_operand_list, - [284379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10536), 1, - anon_sym_requires, - ACTIONS(10564), 1, - anon_sym_LBRACE, - STATE(8163), 1, - sym_requires_clause, - [284392] = 4, + [284889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13123), 1, + ACTIONS(13146), 1, anon_sym_GT2, - STATE(7656), 1, + STATE(7606), 1, aux_sym_template_argument_list_repeat1, - [284405] = 4, + [284902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(8843), 1, anon_sym_COMMA, - ACTIONS(13125), 1, + ACTIONS(13148), 1, + anon_sym_RBRACK, + STATE(7675), 1, + aux_sym_subscript_argument_list_repeat1, + [284915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(13150), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [284418] = 4, + [284928] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, - anon_sym_COMMA, - ACTIONS(8856), 1, - anon_sym_RBRACK, - STATE(7666), 1, - aux_sym_subscript_argument_list_repeat1, - [284431] = 4, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(13152), 1, + anon_sym_RPAREN, + STATE(7633), 1, + sym_gnu_asm_output_operand_list, + [284941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13127), 1, - anon_sym_RPAREN, - STATE(7403), 1, - aux_sym_argument_list_repeat1, - [284444] = 4, + ACTIONS(13154), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [284954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4533), 1, - anon_sym_RBRACE, - ACTIONS(13129), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - STATE(7258), 1, - aux_sym_initializer_list_repeat1, - [284457] = 3, + ACTIONS(13156), 1, + anon_sym_GT2, + STATE(7639), 1, + aux_sym_template_argument_list_repeat1, + [284967] = 4, 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(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13158), 1, + anon_sym_SEMI, + STATE(8252), 1, + sym_attribute_declaration, + [284980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, - anon_sym_COLON, - ACTIONS(13131), 1, - anon_sym_RPAREN, - STATE(7588), 1, - sym_gnu_asm_input_operand_list, - [284481] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13160), 1, + anon_sym_SEMI, + STATE(8520), 1, + sym_attribute_declaration, + [284993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13162), 1, + anon_sym_SEMI, + STATE(8702), 1, + sym_attribute_declaration, + [285006] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12513), 1, anon_sym_COLON, - ACTIONS(13133), 1, + ACTIONS(13164), 1, anon_sym_RPAREN, - STATE(7589), 1, - sym_gnu_asm_output_operand_list, - [284494] = 4, + STATE(7483), 1, + sym_gnu_asm_clobber_list, + [285019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13135), 1, + ACTIONS(13166), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [284507] = 4, + [285032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13137), 1, + ACTIONS(13168), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [284520] = 4, + [285045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13139), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [284533] = 3, + ACTIONS(13170), 1, + anon_sym_SEMI, + STATE(7700), 1, + aux_sym_declaration_repeat1, + [285058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13143), 1, - anon_sym_RPAREN, - ACTIONS(13141), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [284544] = 4, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(13172), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [285071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13145), 1, + ACTIONS(13174), 1, anon_sym_SEMI, - STATE(7590), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [284557] = 4, + [285084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13147), 1, + ACTIONS(13176), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7644), 1, aux_sym_declaration_repeat1, - [284570] = 4, + [285097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, + anon_sym_COMMA, + ACTIONS(13178), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [285110] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13149), 1, + ACTIONS(13180), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [284583] = 3, + [285123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13119), 1, + ACTIONS(13182), 1, anon_sym_catch, - STATE(1710), 2, + STATE(1725), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [284594] = 2, + [285134] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13151), 3, + ACTIONS(12673), 1, anon_sym_COMMA, + ACTIONS(13184), 1, anon_sym_RPAREN, - anon_sym_COLON, - [284603] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8878), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - [284612] = 4, - ACTIONS(3), 1, + STATE(7591), 1, + aux_sym_parameter_list_repeat1, + [285147] = 4, + ACTIONS(10143), 1, sym_comment, - ACTIONS(12485), 1, - anon_sym_COLON, - ACTIONS(13153), 1, - anon_sym_RPAREN, - STATE(7592), 1, - sym_gnu_asm_clobber_list, - [284625] = 4, + ACTIONS(12904), 1, + anon_sym_LPAREN2, + ACTIONS(13186), 1, + aux_sym_preproc_include_token2, + STATE(8213), 1, + sym_preproc_argument_list, + [285160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, - anon_sym_COLON, - ACTIONS(13155), 1, - anon_sym_RPAREN, - STATE(7593), 1, - sym_gnu_asm_input_operand_list, - [284638] = 4, + ACTIONS(8931), 1, + anon_sym_RBRACE, + ACTIONS(13188), 1, + anon_sym_COMMA, + STATE(7616), 1, + aux_sym_initializer_list_repeat1, + [285173] = 3, 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(12685), 1, + anon_sym_catch, + STATE(230), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [285184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13159), 1, + ACTIONS(13191), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13161), 2, + ACTIONS(12530), 2, anon_sym_COMMA, anon_sym_LBRACE, - [284662] = 4, + [285195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, - anon_sym_COLON, - ACTIONS(13163), 1, - anon_sym_RPAREN, - STATE(8573), 1, - sym_gnu_asm_goto_list, - [284675] = 4, + ACTIONS(8843), 1, + anon_sym_COMMA, + ACTIONS(13193), 1, + anon_sym_RBRACK, + STATE(7675), 1, + aux_sym_subscript_argument_list_repeat1, + [285208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, - anon_sym_COLON, - ACTIONS(13165), 1, - anon_sym_RPAREN, - STATE(7595), 1, - sym_gnu_asm_clobber_list, - [284688] = 4, + ACTIONS(6640), 1, + anon_sym___attribute, + ACTIONS(6642), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [285219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12076), 1, + ACTIONS(13195), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13197), 2, anon_sym_COMMA, - ACTIONS(13167), 1, anon_sym_LBRACE, - STATE(7309), 1, - aux_sym_base_class_clause_repeat1, - [284701] = 4, + [285230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(6652), 1, + anon_sym___attribute, + ACTIONS(6654), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [285241] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13199), 1, + anon_sym_SEMI, + STATE(8642), 1, + sym_attribute_declaration, + [285254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(13169), 1, + ACTIONS(13201), 1, anon_sym_RPAREN, - STATE(8576), 1, + STATE(8956), 1, sym_gnu_asm_goto_list, - [284714] = 4, + [285267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(8747), 1, anon_sym_COMMA, - ACTIONS(13171), 1, + ACTIONS(13203), 1, anon_sym_RPAREN, - STATE(7344), 1, - aux_sym_generic_expression_repeat1, - [284727] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13173), 1, - sym_identifier, - STATE(2583), 1, - sym_template_type, - STATE(3634), 1, - sym_template_function, - [284740] = 2, + STATE(7437), 1, + aux_sym_argument_list_repeat1, + [285280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [284749] = 4, + ACTIONS(6104), 1, + anon_sym_COMMA, + ACTIONS(13205), 1, + anon_sym_RBRACK, + STATE(7632), 1, + aux_sym_structured_binding_declarator_repeat1, + [285293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, + ACTIONS(4543), 1, + anon_sym_RBRACE, + ACTIONS(13207), 1, anon_sym_COMMA, - ACTIONS(13175), 1, - anon_sym_RBRACK_RBRACK, - STATE(7263), 1, - aux_sym_attribute_declaration_repeat1, - [284762] = 3, + STATE(7616), 1, + aux_sym_initializer_list_repeat1, + [285306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13179), 1, - anon_sym_COLON_COLON, - ACTIONS(13177), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [284773] = 4, + ACTIONS(13209), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [285315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, - anon_sym_COMMA, - ACTIONS(13181), 1, - anon_sym_RPAREN, - STATE(7488), 1, - aux_sym_preproc_argument_list_repeat1, - [284786] = 3, + ACTIONS(6546), 1, + anon_sym___attribute, + ACTIONS(6548), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [285326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13183), 1, - sym_identifier, - ACTIONS(13185), 2, + ACTIONS(12558), 1, anon_sym_COMMA, - anon_sym_GT2, - [284797] = 4, + ACTIONS(13211), 1, + anon_sym_RBRACK_RBRACK, + STATE(7713), 1, + aux_sym_attribute_declaration_repeat1, + [285339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(13187), 1, - anon_sym_SEMI, - STATE(7675), 1, - aux_sym_declaration_repeat1, - [284810] = 4, + ACTIONS(6550), 1, + anon_sym___attribute, + ACTIONS(6552), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [285350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, + ACTIONS(13213), 1, anon_sym_COMMA, - ACTIONS(8800), 1, - anon_sym_RPAREN, - STATE(7322), 1, - aux_sym_argument_list_repeat1, - [284823] = 4, + ACTIONS(13216), 1, + anon_sym_RBRACK, + STATE(7632), 1, + aux_sym_structured_binding_declarator_repeat1, + [285363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(13189), 1, + ACTIONS(12707), 1, + anon_sym_COLON, + ACTIONS(13218), 1, anon_sym_RPAREN, - STATE(7403), 1, - aux_sym_argument_list_repeat1, - [284836] = 4, + STATE(7660), 1, + sym_gnu_asm_input_operand_list, + [285376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_LBRACE, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - STATE(345), 1, - sym_declaration_list, - [284849] = 4, + ACTIONS(12707), 1, + anon_sym_COLON, + ACTIONS(13220), 1, + anon_sym_RPAREN, + STATE(7498), 1, + sym_gnu_asm_input_operand_list, + [285389] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 1, - anon_sym_RBRACE, - ACTIONS(13191), 1, - anon_sym_COMMA, - STATE(7258), 1, - aux_sym_initializer_list_repeat1, - [284862] = 4, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(13222), 1, + anon_sym_RPAREN, + STATE(7661), 1, + sym_gnu_asm_output_operand_list, + [285402] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13193), 1, + ACTIONS(13224), 1, anon_sym_GT2, - STATE(7611), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [284875] = 4, + [285415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(13195), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [284888] = 4, + ACTIONS(6598), 1, + anon_sym___attribute, + ACTIONS(6600), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [285426] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13197), 1, + ACTIONS(13226), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [284901] = 4, + [285439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13199), 1, + ACTIONS(13228), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [284914] = 4, + [285452] = 4, ACTIONS(3), 1, sym_comment, - 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(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13201), 1, + ACTIONS(13230), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7663), 1, aux_sym_declaration_repeat1, - [284940] = 2, + [285465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13203), 3, + ACTIONS(10039), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [284949] = 2, + ACTIONS(13232), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [285478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13203), 3, + ACTIONS(13234), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13236), 1, anon_sym_GT2, - [284958] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12471), 1, - anon_sym_COLON, - ACTIONS(13205), 1, - anon_sym_RPAREN, - STATE(8512), 1, - sym_gnu_asm_goto_list, - [284971] = 4, + STATE(7496), 1, + aux_sym_template_parameter_list_repeat1, + [285491] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, + ACTIONS(12513), 1, anon_sym_COLON, - ACTIONS(13207), 1, + ACTIONS(13238), 1, anon_sym_RPAREN, - STATE(7641), 1, + STATE(7649), 1, sym_gnu_asm_clobber_list, - [284984] = 4, + [285504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13209), 1, + ACTIONS(13240), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [284997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12927), 1, - anon_sym_COMMA, - ACTIONS(13211), 1, - anon_sym_GT2, - STATE(7260), 1, - aux_sym_template_parameter_list_repeat1, - [285010] = 3, + [285517] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13213), 1, - anon_sym_EQ, - ACTIONS(11602), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [285021] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12546), 1, + ACTIONS(12872), 1, anon_sym_COMMA, - ACTIONS(13215), 1, - anon_sym_RBRACK_RBRACK, - STATE(7274), 1, - aux_sym_attribute_declaration_repeat1, - [285034] = 4, + ACTIONS(13242), 1, + anon_sym_RBRACK, + STATE(7507), 1, + aux_sym_lambda_capture_specifier_repeat1, + [285530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, - anon_sym_COMMA, - ACTIONS(13217), 1, - anon_sym_RBRACK_RBRACK, - STATE(7659), 1, - aux_sym_attribute_declaration_repeat1, - [285047] = 2, + ACTIONS(6602), 1, + anon_sym___attribute, + ACTIONS(6604), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [285541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13219), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [285056] = 4, + ACTIONS(13182), 1, + anon_sym_catch, + STATE(1721), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [285552] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13221), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(2675), 1, - sym_template_function, - [285069] = 4, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(11552), 1, + anon_sym_LBRACE, + STATE(8474), 1, + sym_requires_clause, + [285565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(13223), 1, + ACTIONS(13244), 1, anon_sym_RPAREN, - STATE(8269), 1, + STATE(8101), 1, sym_gnu_asm_goto_list, - [285082] = 4, + [285578] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12497), 1, - anon_sym_COLON, - ACTIONS(13225), 1, + ACTIONS(10089), 1, + anon_sym_COMMA, + ACTIONS(13246), 1, anon_sym_RPAREN, - STATE(7335), 1, - sym_gnu_asm_input_operand_list, - [285095] = 4, + STATE(7369), 1, + aux_sym_preproc_argument_list_repeat1, + [285591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, - anon_sym_COLON, - ACTIONS(13227), 1, - anon_sym_RPAREN, - STATE(7354), 1, - sym_gnu_asm_output_operand_list, - [285108] = 4, + ACTIONS(6614), 1, + anon_sym___attribute, + ACTIONS(6616), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [285602] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(13047), 1, anon_sym_COMMA, - ACTIONS(13229), 1, - anon_sym_GT2, - STATE(7631), 1, - aux_sym_template_argument_list_repeat1, - [285121] = 4, + ACTIONS(13248), 1, + anon_sym_RPAREN, + STATE(7537), 1, + aux_sym_throw_specifier_repeat1, + [285615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(12063), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13250), 2, anon_sym_COMMA, - ACTIONS(13231), 1, anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [285134] = 4, + [285626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(13233), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [285147] = 4, + ACTIONS(13252), 1, + sym_identifier, + STATE(1788), 1, + sym_template_type, + STATE(3484), 1, + sym_template_function, + [285639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(13235), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [285160] = 3, + ACTIONS(10501), 1, + anon_sym_requires, + ACTIONS(11619), 1, + anon_sym_LBRACE, + STATE(8716), 1, + sym_requires_clause, + [285652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym___attribute, - ACTIONS(6608), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [285171] = 4, + ACTIONS(13254), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [285661] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(13256), 1, anon_sym_COMMA, - ACTIONS(13237), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [285184] = 4, + ACTIONS(13259), 1, + anon_sym_RBRACK, + STATE(7657), 1, + aux_sym_lambda_capture_specifier_repeat1, + [285674] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13239), 1, + ACTIONS(13261), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7670), 1, aux_sym_template_argument_list_repeat1, - [285197] = 3, + [285687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13179), 1, - anon_sym_COLON_COLON, - ACTIONS(13241), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [285208] = 3, + ACTIONS(12521), 1, + anon_sym_COLON, + ACTIONS(13263), 1, + anon_sym_RPAREN, + STATE(8328), 1, + sym_gnu_asm_goto_list, + [285700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 1, - anon_sym___attribute, - ACTIONS(6612), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [285219] = 4, + ACTIONS(12513), 1, + anon_sym_COLON, + ACTIONS(13265), 1, + anon_sym_RPAREN, + STATE(7665), 1, + sym_gnu_asm_clobber_list, + [285713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12485), 1, + ACTIONS(12707), 1, anon_sym_COLON, - ACTIONS(13243), 1, + ACTIONS(13267), 1, anon_sym_RPAREN, - STATE(7243), 1, - sym_gnu_asm_clobber_list, - [285232] = 3, + STATE(7666), 1, + sym_gnu_asm_input_operand_list, + [285726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13119), 1, + ACTIONS(12928), 1, anon_sym_catch, - STATE(1709), 2, + STATE(419), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [285243] = 4, + [285737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13245), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [285256] = 4, + ACTIONS(13269), 1, + anon_sym_SEMI, + STATE(7344), 1, + aux_sym_declaration_repeat1, + [285750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, - anon_sym_SEMI, - ACTIONS(6580), 1, - anon_sym_LT, - STATE(1724), 1, - sym_template_argument_list, - [285269] = 4, + ACTIONS(5248), 1, + anon_sym_LBRACE, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + STATE(508), 1, + sym_declaration_list, + [285763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(12521), 1, anon_sym_COLON, - ACTIONS(13247), 1, + ACTIONS(13271), 1, anon_sym_RPAREN, - STATE(8154), 1, + STATE(8740), 1, sym_gnu_asm_goto_list, - [285282] = 4, + [285776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, - anon_sym_COMMA, - ACTIONS(8900), 1, - anon_sym_RBRACK, - STATE(7432), 1, - aux_sym_subscript_argument_list_repeat1, - [285295] = 4, + ACTIONS(12513), 1, + anon_sym_COLON, + ACTIONS(13273), 1, + anon_sym_RPAREN, + STATE(7671), 1, + sym_gnu_asm_clobber_list, + [285789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13249), 1, + ACTIONS(13275), 1, anon_sym_SEMI, - STATE(7680), 1, + STATE(7329), 1, aux_sym_declaration_repeat1, - [285308] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13251), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(3542), 1, - sym_template_function, - [285321] = 4, + [285802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13253), 1, + ACTIONS(13277), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [285334] = 4, + [285815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13255), 1, + ACTIONS(13279), 1, anon_sym_GT2, - STATE(7650), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [285347] = 4, + [285828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13257), 1, + ACTIONS(13281), 1, anon_sym_GT2, - STATE(7446), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [285360] = 4, + [285841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13259), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(2675), 1, - sym_template_function, - [285373] = 4, + ACTIONS(12521), 1, + anon_sym_COLON, + ACTIONS(13283), 1, + anon_sym_RPAREN, + STATE(8752), 1, + sym_gnu_asm_goto_list, + [285854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8819), 1, anon_sym_COMMA, - ACTIONS(13261), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [285386] = 4, + ACTIONS(13285), 1, + anon_sym_RPAREN, + STATE(7676), 1, + aux_sym_generic_expression_repeat1, + [285867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8737), 1, + anon_sym_RBRACE, + ACTIONS(8913), 1, anon_sym_COMMA, - ACTIONS(13263), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [285399] = 4, + STATE(7695), 1, + aux_sym_initializer_list_repeat1, + [285880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, - anon_sym_LBRACE, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - STATE(678), 1, - sym_declaration_list, - [285412] = 4, + ACTIONS(10089), 1, + anon_sym_COMMA, + ACTIONS(13287), 1, + anon_sym_RPAREN, + STATE(7369), 1, + aux_sym_preproc_argument_list_repeat1, + [285893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - ACTIONS(13265), 1, - anon_sym_constexpr, - STATE(190), 1, - sym_condition_clause, - [285425] = 4, + ACTIONS(9029), 1, + anon_sym_RBRACK, + ACTIONS(13289), 1, + anon_sym_COMMA, + STATE(7675), 1, + aux_sym_subscript_argument_list_repeat1, + [285906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(13292), 1, anon_sym_COMMA, - ACTIONS(13267), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [285438] = 4, + ACTIONS(13295), 1, + anon_sym_RPAREN, + STATE(7676), 1, + aux_sym_generic_expression_repeat1, + [285919] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(13269), 1, - anon_sym_SEMI, - STATE(7370), 1, - aux_sym_declaration_repeat1, - [285451] = 4, + ACTIONS(5248), 1, + anon_sym_LBRACE, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + STATE(597), 1, + sym_declaration_list, + [285932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(13271), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [285464] = 4, + ACTIONS(12926), 1, + anon_sym_catch, + STATE(366), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [285943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, - anon_sym_COMMA, - ACTIONS(13273), 1, - anon_sym_GT2, - STATE(7446), 1, - aux_sym_template_argument_list_repeat1, - [285477] = 4, + ACTIONS(5238), 1, + anon_sym_LBRACE, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + STATE(798), 1, + sym_declaration_list, + [285956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13275), 1, + ACTIONS(13297), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7408), 1, aux_sym_declaration_repeat1, - [285490] = 4, + [285969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13277), 1, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(13299), 1, + anon_sym_RPAREN, + STATE(7458), 1, + sym_gnu_asm_output_operand_list, + [285982] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13301), 1, sym_identifier, - STATE(1923), 1, + STATE(1788), 1, sym_template_type, - STATE(2675), 1, + STATE(2495), 1, sym_template_function, - [285503] = 4, + [285995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12546), 1, - anon_sym_COMMA, - ACTIONS(13279), 1, - anon_sym_RBRACK_RBRACK, - STATE(7263), 1, - aux_sym_attribute_declaration_repeat1, - [285516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8782), 1, - anon_sym_COMMA, - ACTIONS(8932), 1, + ACTIONS(12646), 1, + anon_sym_COLON, + ACTIONS(13303), 1, anon_sym_RPAREN, - STATE(7493), 1, - aux_sym_argument_list_repeat1, - [285529] = 4, + STATE(7440), 1, + sym_gnu_asm_output_operand_list, + [286008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8820), 1, + ACTIONS(13234), 1, anon_sym_COMMA, - ACTIONS(13281), 1, - anon_sym_RPAREN, - STATE(7344), 1, - aux_sym_generic_expression_repeat1, - [285542] = 4, + ACTIONS(13305), 1, + anon_sym_GT2, + STATE(7642), 1, + aux_sym_template_parameter_list_repeat1, + [286021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12778), 1, - anon_sym_COMMA, - ACTIONS(13283), 1, - anon_sym_RPAREN, - STATE(7336), 1, - aux_sym_requires_parameter_list_repeat1, - [285555] = 4, + ACTIONS(6476), 1, + anon_sym_SEMI, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1736), 1, + sym_template_argument_list, + [286034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12590), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13285), 1, - anon_sym_RPAREN, - STATE(7359), 1, - aux_sym_parameter_list_repeat1, - [285568] = 2, + ACTIONS(13307), 1, + anon_sym_GT2, + STATE(7696), 1, + aux_sym_template_argument_list_repeat1, + [286047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13287), 3, + ACTIONS(13039), 1, anon_sym_COMMA, + ACTIONS(13309), 1, anon_sym_RPAREN, - anon_sym_COLON, - [285577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12776), 1, - anon_sym_catch, - STATE(230), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [285588] = 4, + STATE(7396), 1, + aux_sym_preproc_params_repeat1, + [286060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, + ACTIONS(8843), 1, anon_sym_COMMA, - ACTIONS(13289), 1, + ACTIONS(8909), 1, anon_sym_RBRACK, - STATE(7402), 1, + STATE(7596), 1, aux_sym_subscript_argument_list_repeat1, - [285601] = 4, + [286073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(13311), 1, anon_sym_COMMA, - ACTIONS(13291), 1, - anon_sym_SEMI, + ACTIONS(13314), 1, + anon_sym_GT2, STATE(7689), 1, - aux_sym_declaration_repeat1, - [285614] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10532), 1, - anon_sym_LBRACE, - ACTIONS(10536), 1, - anon_sym_requires, - STATE(8062), 1, - sym_requires_clause, - [285627] = 4, + aux_sym_template_argument_list_repeat1, + [286086] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, + ACTIONS(12513), 1, anon_sym_COLON, - ACTIONS(13293), 1, + ACTIONS(13316), 1, anon_sym_RPAREN, - STATE(7568), 1, - sym_gnu_asm_output_operand_list, - [285640] = 2, + STATE(7659), 1, + sym_gnu_asm_clobber_list, + [286099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13295), 3, + ACTIONS(8767), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13318), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [286112] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13320), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [286121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8767), 1, + anon_sym_COMMA, + ACTIONS(13322), 1, + anon_sym_GT2, + STATE(7689), 1, + aux_sym_template_argument_list_repeat1, + [286134] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12707), 1, anon_sym_COLON, - [285649] = 4, + ACTIONS(13324), 1, + anon_sym_RPAREN, + STATE(7272), 1, + sym_gnu_asm_input_operand_list, + [286147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(4358), 1, + anon_sym_RBRACE, + ACTIONS(13326), 1, anon_sym_COMMA, - ACTIONS(13297), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [285662] = 4, + STATE(7616), 1, + aux_sym_initializer_list_repeat1, + [286160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(8767), 1, anon_sym_COMMA, - ACTIONS(13299), 1, + ACTIONS(13328), 1, anon_sym_GT2, - STATE(7412), 1, + STATE(7689), 1, aux_sym_template_argument_list_repeat1, - [285675] = 4, + [286173] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13301), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(3634), 1, - sym_template_function, - [285688] = 4, + ACTIONS(13330), 1, + anon_sym_COMMA, + ACTIONS(13333), 1, + anon_sym_LBRACE, + STATE(7697), 1, + aux_sym_field_initializer_list_repeat1, + [286186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(13335), 1, + anon_sym_default, + ACTIONS(13337), 1, + anon_sym_delete, + ACTIONS(13339), 1, + aux_sym_pure_virtual_clause_token1, + [286199] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12866), 1, anon_sym_COMMA, - ACTIONS(13303), 1, - anon_sym_SEMI, - STATE(7345), 1, - aux_sym_declaration_repeat1, - [285701] = 4, + ACTIONS(13341), 1, + anon_sym_LBRACE, + STATE(7446), 1, + aux_sym_field_initializer_list_repeat1, + [286212] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13305), 1, + ACTIONS(13343), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7344), 1, aux_sym_declaration_repeat1, - [285714] = 4, + [286225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13307), 1, + ACTIONS(13345), 1, sym_identifier, - STATE(1923), 1, + STATE(1788), 1, sym_template_type, - STATE(2504), 1, + STATE(3317), 1, sym_template_function, - [285727] = 4, + [286238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(13347), 3, anon_sym_COMMA, - ACTIONS(13309), 1, - anon_sym_SEMI, - STATE(7483), 1, - aux_sym_declaration_repeat1, - [285740] = 4, + anon_sym_RPAREN, + anon_sym_GT2, + [286247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(13349), 3, anon_sym_COMMA, - ACTIONS(13311), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [285753] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [286256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, - anon_sym_COMMA, - ACTIONS(13313), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [285766] = 4, + ACTIONS(13182), 1, + anon_sym_catch, + STATE(1724), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [286267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(13315), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [285779] = 4, + ACTIONS(13351), 1, + anon_sym_RBRACK_RBRACK, + STATE(7549), 1, + aux_sym_attribute_declaration_repeat1, + [286280] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + ACTIONS(13353), 1, + anon_sym_constexpr, + STATE(192), 1, + sym_condition_clause, + [286293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13004), 1, + ACTIONS(13355), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13357), 2, anon_sym_COMMA, - ACTIONS(13317), 1, - anon_sym_RPAREN, - STATE(7505), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [285792] = 4, + anon_sym_LBRACE, + [286304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13319), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - STATE(2675), 1, - sym_template_function, - [285805] = 4, + ACTIONS(13359), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [286313] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(13321), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [285818] = 4, + ACTIONS(13361), 1, + anon_sym_RBRACK_RBRACK, + STATE(7311), 1, + aux_sym_attribute_declaration_repeat1, + [286326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13323), 1, + ACTIONS(10039), 1, anon_sym_COMMA, - ACTIONS(13326), 1, + ACTIONS(13363), 1, anon_sym_SEMI, - STATE(7684), 1, + STATE(7402), 1, aux_sym_declaration_repeat1, - [285831] = 3, + [286339] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12937), 1, - anon_sym_catch, - STATE(1871), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [285842] = 4, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(10501), 1, + anon_sym_requires, + STATE(8271), 1, + sym_requires_clause, + [286352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12554), 1, - anon_sym_COLON, - ACTIONS(13328), 1, - anon_sym_RPAREN, - STATE(7512), 1, - sym_gnu_asm_output_operand_list, - [285855] = 4, + ACTIONS(13365), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + STATE(2654), 1, + sym_template_function, + [286365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12625), 1, - sym_identifier, - ACTIONS(12627), 1, - anon_sym_using, - STATE(7332), 1, - sym_attribute, - [285868] = 4, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(13367), 1, + anon_sym_RBRACK_RBRACK, + STATE(7580), 1, + aux_sym_attribute_declaration_repeat1, + [286378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12590), 1, + ACTIONS(12837), 1, anon_sym_COMMA, - ACTIONS(13330), 1, + ACTIONS(13369), 1, anon_sym_RPAREN, - STATE(7359), 1, - aux_sym_parameter_list_repeat1, - [285881] = 4, + STATE(7384), 1, + aux_sym_requires_parameter_list_repeat1, + [286391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10063), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(436), 1, + sym_compound_statement, + [286401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13033), 2, anon_sym_COMMA, - ACTIONS(13332), 1, - anon_sym_SEMI, - STATE(7684), 1, - aux_sym_declaration_repeat1, - [285894] = 4, + anon_sym_LBRACE, + [286409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7139), 1, + sym_compound_statement, + [286419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(506), 1, + sym_compound_statement, + [286429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3631), 1, + anon_sym_LBRACE, + STATE(3918), 1, + sym_initializer_list, + [286439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + STATE(206), 1, + sym_condition_clause, + [286449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13334), 1, + ACTIONS(13140), 2, anon_sym_COMMA, - ACTIONS(13337), 1, anon_sym_RPAREN, - STATE(7690), 1, - aux_sym_preproc_params_repeat1, - [285907] = 3, + [286457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + STATE(218), 1, + sym_condition_clause, + [286467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7115), 1, + sym_compound_statement, + [286477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12178), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + [286487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(3312), 1, - sym_compound_statement, - [285917] = 3, + ACTIONS(12338), 1, + sym_identifier, + STATE(7047), 1, + sym_module_name, + [286497] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13371), 1, + aux_sym_preproc_include_token2, + ACTIONS(13373), 1, + sym_preproc_arg, + [286507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - STATE(2230), 1, + STATE(3020), 1, sym_field_declaration_list, - [285927] = 3, + [286517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13375), 1, + sym_identifier, + STATE(2642), 1, + sym_template_type, + [286527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - STATE(2231), 1, + STATE(2253), 1, sym_field_declaration_list, - [285937] = 3, + [286537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13339), 1, + ACTIONS(13377), 1, anon_sym_LPAREN2, - STATE(7864), 1, + STATE(8136), 1, sym_parenthesized_expression, - [285947] = 3, + [286547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9865), 1, anon_sym_LBRACE, - STATE(3265), 1, + STATE(3352), 1, sym_compound_statement, - [285957] = 3, + [286557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + STATE(7957), 1, + sym_parameter_list, + [286567] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12750), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [286575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6666), 1, anon_sym_LBRACE, - STATE(504), 1, - sym_declaration_list, - [285967] = 3, + STATE(2933), 1, + sym_field_declaration_list, + [286585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - STATE(7490), 1, - sym_compound_statement, - [285977] = 3, + STATE(2653), 1, + sym_field_declaration_list, + [286595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12220), 1, - sym_identifier, - STATE(6992), 1, - sym_module_name, - [285987] = 2, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7497), 1, + sym_compound_statement, + [286605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4591), 2, + ACTIONS(11172), 1, + anon_sym_RBRACE, + ACTIONS(13379), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [285995] = 3, + [286615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8804), 1, - anon_sym_RPAREN, - ACTIONS(8806), 1, - anon_sym_SEMI, - [286005] = 3, + ACTIONS(1668), 1, + anon_sym_LBRACE, + STATE(950), 1, + sym_compound_statement, + [286625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13341), 1, - anon_sym_LT, - STATE(2361), 1, - sym_template_argument_list, - [286015] = 3, + ACTIONS(13377), 1, + anon_sym_LPAREN2, + STATE(7996), 1, + sym_parenthesized_expression, + [286635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13343), 1, + ACTIONS(13381), 1, anon_sym_LT, - STATE(3720), 1, + STATE(2449), 1, sym_template_argument_list, - [286025] = 3, + [286645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9863), 1, + ACTIONS(13017), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4301), 1, - sym_compound_statement, - [286035] = 3, + [286653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10666), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - STATE(2200), 1, - sym_compound_statement, - [286045] = 3, + STATE(2257), 1, + sym_field_declaration_list, + [286663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - STATE(213), 1, - sym_condition_clause, - [286055] = 3, + ACTIONS(5609), 1, + anon_sym_LBRACE, + STATE(2239), 1, + sym_field_declaration_list, + [286673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13345), 1, - sym_identifier, - STATE(4451), 1, - sym_template_type, - [286065] = 3, + ACTIONS(11148), 1, + anon_sym_RBRACE, + ACTIONS(13379), 1, + anon_sym_COMMA, + [286683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3623), 1, + ACTIONS(2507), 1, anon_sym_LBRACE, - STATE(3883), 1, + STATE(3642), 1, sym_initializer_list, - [286075] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13347), 1, - aux_sym_preproc_include_token2, - ACTIONS(13349), 1, - sym_preproc_arg, - [286085] = 3, + [286693] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(297), 1, anon_sym_LBRACE, - STATE(243), 1, + STATE(282), 1, sym_compound_statement, - [286095] = 3, + [286703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - STATE(694), 1, - sym_declaration_list, - [286105] = 3, + ACTIONS(13383), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [286711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13351), 1, - anon_sym_COMMA, - ACTIONS(13353), 1, - anon_sym_RBRACE, - [286115] = 3, + ACTIONS(13385), 1, + sym_identifier, + ACTIONS(13387), 1, + anon_sym_LPAREN2, + [286721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 1, + ACTIONS(9871), 1, anon_sym_LBRACE, - STATE(2918), 1, - sym_field_declaration_list, - [286125] = 2, + STATE(1647), 1, + sym_compound_statement, + [286731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12664), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [286133] = 3, + ACTIONS(13389), 1, + sym_identifier, + STATE(2306), 1, + sym_template_type, + [286741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - anon_sym_LBRACE, - STATE(2227), 1, - sym_field_declaration_list, - [286143] = 3, + ACTIONS(13391), 2, + anon_sym_COMMA, + anon_sym_GT2, + [286749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8630), 1, - anon_sym_LBRACE, - STATE(4544), 1, - sym_field_declaration_list, - [286153] = 3, + ACTIONS(13393), 1, + sym_identifier, + STATE(4394), 1, + sym_template_type, + [286759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(481), 1, sym_compound_statement, - [286163] = 3, + [286769] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 1, - anon_sym_LBRACE, - STATE(4006), 1, - sym_field_declaration_list, - [286173] = 3, + ACTIONS(9051), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [286777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12436), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5704), 1, - sym_requirement_seq, - [286183] = 3, + STATE(7558), 1, + sym_compound_statement, + [286787] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13395), 1, + aux_sym_preproc_include_token2, + ACTIONS(13397), 1, + sym_preproc_arg, + [286797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(10685), 1, anon_sym_LBRACE, - STATE(462), 1, + STATE(2128), 1, sym_compound_statement, - [286193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - ACTIONS(13355), 1, - anon_sym_SEMI, - [286203] = 3, + [286807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5238), 1, anon_sym_LBRACE, - STATE(746), 1, + STATE(800), 1, sym_declaration_list, - [286213] = 3, + [286817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 1, - anon_sym_LT, - STATE(1623), 1, - sym_template_argument_list, - [286223] = 3, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(8420), 1, + sym_argument_list, + [286827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(8757), 1, anon_sym_LBRACE, - STATE(1632), 1, - sym_compound_statement, - [286233] = 3, + STATE(4930), 1, + sym_field_declaration_list, + [286837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6803), 1, + ACTIONS(8569), 1, anon_sym_LT, - STATE(2801), 1, + STATE(4428), 1, sym_template_argument_list, - [286243] = 3, + [286847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13343), 1, - anon_sym_LT, - STATE(3518), 1, - sym_template_argument_list, - [286253] = 3, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + ACTIONS(13399), 1, + anon_sym_SEMI, + [286857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9863), 1, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + STATE(215), 1, + sym_condition_clause, + [286867] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5240), 1, anon_sym_LBRACE, - STATE(4274), 1, - sym_compound_statement, - [286263] = 3, + STATE(347), 1, + sym_declaration_list, + [286877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11132), 1, - anon_sym_RBRACE, - ACTIONS(13351), 1, - anon_sym_COMMA, - [286273] = 3, + ACTIONS(9766), 1, + anon_sym_LBRACE, + STATE(3893), 1, + sym_requirement_seq, + [286887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - STATE(2460), 1, - sym_initializer_list, - [286283] = 3, + STATE(2871), 1, + sym_field_declaration_list, + [286897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13351), 1, - anon_sym_COMMA, - ACTIONS(13357), 1, - anon_sym_RBRACE, - [286293] = 3, + ACTIONS(13381), 1, + anon_sym_LT, + STATE(2357), 1, + sym_template_argument_list, + [286907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(9867), 1, anon_sym_LBRACE, - STATE(255), 1, + STATE(4301), 1, sym_compound_statement, - [286303] = 3, + [286917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - STATE(4019), 1, + STATE(2830), 1, sym_field_declaration_list, - [286313] = 3, + [286927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 1, + ACTIONS(7512), 1, anon_sym_LBRACE, - STATE(4023), 1, + STATE(3992), 1, sym_field_declaration_list, - [286323] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13359), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [286331] = 3, + [286937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13361), 1, - sym_identifier, - STATE(2659), 1, - sym_template_type, - [286341] = 3, + ACTIONS(1002), 1, + anon_sym_LBRACE, + STATE(806), 1, + sym_compound_statement, + [286947] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13351), 1, + ACTIONS(12777), 2, anon_sym_COMMA, - ACTIONS(13363), 1, - anon_sym_RBRACE, - [286351] = 3, + anon_sym_RPAREN, + [286955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9839), 1, - anon_sym_LBRACE, - STATE(5566), 1, - sym_compound_statement, - [286361] = 3, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + STATE(7930), 1, + sym_parameter_list, + [286965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9881), 1, anon_sym_LBRACE, - STATE(1630), 1, + STATE(3901), 1, sym_compound_statement, - [286371] = 2, + [286975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12700), 2, + ACTIONS(13379), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [286379] = 3, + ACTIONS(13401), 1, + anon_sym_RBRACE, + [286985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(794), 1, - sym_declaration_list, - [286389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13351), 1, - anon_sym_COMMA, - ACTIONS(13365), 1, - anon_sym_RBRACE, - [286399] = 2, + STATE(7647), 1, + sym_compound_statement, + [286995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11160), 2, + ACTIONS(4591), 2, anon_sym_COMMA, - anon_sym_SEMI, - [286407] = 3, + anon_sym_RBRACK, + [287003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9766), 1, + ACTIONS(1954), 1, anon_sym_LBRACE, - STATE(3314), 1, - sym_requirement_seq, - [286417] = 2, + STATE(2552), 1, + sym_initializer_list, + [287013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13367), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [286425] = 3, + ACTIONS(13377), 1, + anon_sym_LPAREN2, + STATE(7964), 1, + sym_parenthesized_expression, + [287023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - STATE(4000), 1, + STATE(3056), 1, sym_field_declaration_list, - [286435] = 3, + [287033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2457), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - STATE(3411), 1, - sym_initializer_list, - [286445] = 3, + STATE(2911), 1, + sym_field_declaration_list, + [287043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6035), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2373), 1, - sym_field_declaration_list, - [286455] = 3, - ACTIONS(3), 1, + STATE(1646), 1, + sym_compound_statement, + [287053] = 3, + ACTIONS(10143), 1, sym_comment, - ACTIONS(13369), 1, - sym_identifier, - STATE(1808), 1, - sym_template_type, - [286465] = 3, + ACTIONS(13403), 1, + aux_sym_preproc_include_token2, + ACTIONS(13405), 1, + sym_preproc_arg, + [287063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(13407), 1, anon_sym_LT, - STATE(2578), 1, + STATE(2687), 1, sym_template_argument_list, - [286475] = 3, + [287073] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(436), 1, + STATE(7704), 1, sym_compound_statement, - [286485] = 2, + [287083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12715), 2, + ACTIONS(13379), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [286493] = 3, + ACTIONS(13409), 1, + anon_sym_RBRACE, + [287093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6797), 1, anon_sym_LT, - STATE(1623), 1, + STATE(2768), 1, sym_template_argument_list, - [286503] = 3, + [287103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(1634), 1, - sym_compound_statement, - [286513] = 3, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(8343), 1, + sym_argument_list, + [287113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13371), 1, + ACTIONS(9039), 1, anon_sym_LT, - STATE(2411), 1, + STATE(2594), 1, sym_template_argument_list, - [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(9750), 1, - anon_sym_LBRACE, - STATE(3488), 1, - sym_requirement_seq, - [286543] = 3, + [287123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - STATE(3904), 1, - sym_initializer_list, - [286553] = 3, + STATE(2912), 1, + sym_field_declaration_list, + [287133] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13377), 1, + ACTIONS(13411), 2, + anon_sym_DOT_DOT_DOT, sym_identifier, - STATE(3699), 1, - sym_template_type, - [286563] = 3, - ACTIONS(10057), 1, + [287141] = 3, + ACTIONS(10143), 1, sym_comment, - ACTIONS(13379), 1, + ACTIONS(13413), 1, aux_sym_preproc_include_token2, - ACTIONS(13381), 1, + ACTIONS(13415), 1, sym_preproc_arg, - [286573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13383), 1, - sym_identifier, - STATE(2583), 1, - sym_template_type, - [286583] = 2, + [287151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13385), 2, + ACTIONS(8839), 2, anon_sym_COMMA, - anon_sym_GT2, - [286591] = 3, + anon_sym_SEMI, + [287159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12919), 1, - anon_sym_RBRACK, - ACTIONS(13387), 1, - anon_sym_COMMA, - [286601] = 3, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + ACTIONS(13417), 1, + anon_sym_SEMI, + [287169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2877), 1, - sym_field_declaration_list, - [286611] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9009), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [286619] = 2, + STATE(7513), 1, + sym_compound_statement, + [287179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13389), 2, + ACTIONS(11160), 1, + anon_sym_RBRACE, + ACTIONS(13379), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [286627] = 3, + [287189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - STATE(2982), 1, + STATE(2834), 1, sym_field_declaration_list, - [286637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - STATE(217), 1, - sym_condition_clause, - [286647] = 3, + [287199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(10689), 1, anon_sym_LBRACE, - STATE(249), 1, + STATE(2110), 1, sym_compound_statement, - [286657] = 3, + [287209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(9774), 1, anon_sym_LBRACE, - STATE(471), 1, - sym_compound_statement, - [286667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12220), 1, - sym_identifier, - STATE(7778), 1, - sym_module_name, - [286677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - ACTIONS(13391), 1, - anon_sym_SEMI, - [286687] = 2, + STATE(3605), 1, + sym_requirement_seq, + [287219] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13393), 2, + ACTIONS(13419), 2, anon_sym_COMMA, - anon_sym_LBRACE, - [286695] = 3, + anon_sym_RBRACK_RBRACK, + [287227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11116), 1, - anon_sym_RBRACE, - ACTIONS(13351), 1, - anon_sym_COMMA, - [286705] = 3, - ACTIONS(3), 1, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + STATE(7990), 1, + sym_parameter_list, + [287237] = 3, + ACTIONS(10143), 1, sym_comment, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2623), 1, - sym_field_declaration_list, - [286715] = 2, + ACTIONS(13421), 1, + aux_sym_preproc_include_token2, + ACTIONS(13423), 1, + sym_preproc_arg, + [287247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12770), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [286723] = 3, + ACTIONS(13425), 1, + sym_identifier, + ACTIONS(13427), 1, + anon_sym_RPAREN, + [287257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9853), 1, + ACTIONS(10660), 1, anon_sym_LBRACE, - STATE(5977), 1, + STATE(1770), 1, sym_compound_statement, - [286733] = 3, + [287267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(913), 1, + STATE(7527), 1, sym_compound_statement, - [286743] = 3, + [287277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8725), 1, - anon_sym_LT, - STATE(2745), 1, - sym_template_argument_list, - [286753] = 2, + ACTIONS(6237), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [287285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13395), 2, + ACTIONS(13429), 2, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [286761] = 2, + [287293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13397), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [286769] = 3, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + STATE(7746), 1, + sym_condition_clause, + [287303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(9873), 1, anon_sym_LBRACE, - STATE(802), 1, + STATE(3597), 1, sym_compound_statement, - [286779] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8947), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [286787] = 3, + [287313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(12620), 1, anon_sym_LPAREN2, - STATE(197), 1, + STATE(178), 1, sym_condition_clause, - [286797] = 3, + [287323] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13431), 1, + aux_sym_preproc_include_token2, + ACTIONS(13433), 1, + sym_preproc_arg, + [287333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9774), 1, - anon_sym_LBRACE, - STATE(3846), 1, - sym_requirement_seq, - [286807] = 3, + ACTIONS(13435), 1, + anon_sym_LT, + STATE(3494), 1, + sym_template_argument_list, + [287343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9853), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(6009), 1, + STATE(7353), 1, sym_compound_statement, - [286817] = 3, + [287353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(717), 1, + STATE(7283), 1, sym_compound_statement, - [286827] = 3, + [287363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 1, - anon_sym_LBRACE, - STATE(2897), 1, - sym_field_declaration_list, - [286837] = 3, + ACTIONS(13381), 1, + anon_sym_LT, + STATE(1975), 1, + sym_template_argument_list, + [287373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 1, + ACTIONS(9867), 1, anon_sym_LBRACE, - STATE(2879), 1, - sym_field_declaration_list, - [286847] = 3, + STATE(4313), 1, + sym_compound_statement, + [287383] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13437), 1, + aux_sym_preproc_include_token2, + ACTIONS(13439), 1, + sym_preproc_arg, + [287393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - STATE(7767), 1, - sym_condition_clause, - [286857] = 2, + STATE(8566), 1, + sym_argument_list, + [287403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12796), 2, + ACTIONS(13108), 2, anon_sym_COMMA, - anon_sym_LBRACE, - [286865] = 3, + anon_sym_RPAREN, + [287411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13441), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + [287421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - STATE(178), 1, - sym_condition_clause, - [286875] = 3, + STATE(8001), 1, + sym_parameter_list, + [287431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(12282), 1, anon_sym_LBRACE, - STATE(7388), 1, - sym_compound_statement, - [286885] = 3, + STATE(6052), 1, + sym_requirement_seq, + [287441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9853), 1, + ACTIONS(9871), 1, anon_sym_LBRACE, - STATE(6036), 1, + STATE(1646), 1, sym_compound_statement, - [286895] = 3, + [287451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9865), 1, + ACTIONS(3869), 1, anon_sym_LBRACE, - STATE(3854), 1, - sym_compound_statement, - [286905] = 3, + STATE(4900), 1, + sym_initializer_list, + [287461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13399), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - [286915] = 3, + ACTIONS(11114), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [287469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(8383), 1, + sym_argument_list, + [287479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 1, anon_sym_LBRACE, - STATE(310), 1, - sym_declaration_list, - [286925] = 3, - ACTIONS(10057), 1, + STATE(4010), 1, + sym_field_declaration_list, + [287489] = 3, + ACTIONS(10143), 1, sym_comment, - ACTIONS(13401), 1, + ACTIONS(13443), 1, aux_sym_preproc_include_token2, - ACTIONS(13403), 1, + ACTIONS(13445), 1, sym_preproc_arg, - [286935] = 3, + [287499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13405), 1, - anon_sym_LT, - STATE(2661), 1, - sym_template_argument_list, - [286945] = 3, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(8540), 1, + sym_argument_list, + [287509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - STATE(8203), 1, + STATE(8844), 1, sym_argument_list, - [286955] = 2, + [287519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8937), 2, + ACTIONS(13121), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [286963] = 3, + anon_sym_RBRACK_RBRACK, + [287527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13447), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [287535] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7170), 1, + STATE(7125), 1, sym_compound_statement, - [286973] = 3, + [287545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(12620), 1, anon_sym_LPAREN2, - STATE(180), 1, + STATE(207), 1, sym_condition_clause, - [286983] = 3, + [287555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + STATE(181), 1, + sym_condition_clause, + [287565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7512), 1, anon_sym_LBRACE, - STATE(489), 1, - sym_compound_statement, - [286993] = 3, + STATE(4011), 1, + sym_field_declaration_list, + [287575] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(866), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(545), 1, sym_compound_statement, - [287003] = 3, + [287585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10674), 1, + ACTIONS(9861), 1, anon_sym_LBRACE, - STATE(1726), 1, + STATE(5692), 1, sym_compound_statement, - [287013] = 3, + [287595] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13449), 1, + aux_sym_preproc_include_token2, + ACTIONS(13451), 1, + sym_preproc_arg, + [287605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9784), 1, + ACTIONS(9808), 1, anon_sym_LBRACE, - STATE(2548), 1, + STATE(2492), 1, sym_requirement_seq, - [287023] = 3, + [287615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13341), 1, - anon_sym_LT, - STATE(2411), 1, - sym_template_argument_list, - [287033] = 3, + ACTIONS(9861), 1, + anon_sym_LBRACE, + STATE(5667), 1, + sym_compound_statement, + [287625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13343), 1, - anon_sym_LT, - STATE(2740), 1, - sym_template_argument_list, - [287043] = 3, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + STATE(7951), 1, + sym_condition_clause, + [287635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13339), 1, + ACTIONS(12620), 1, anon_sym_LPAREN2, - STATE(8645), 1, - sym_parenthesized_expression, - [287053] = 3, + STATE(186), 1, + sym_condition_clause, + [287645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - STATE(8001), 1, - sym_parameter_list, - [287063] = 3, + ACTIONS(297), 1, + anon_sym_LBRACE, + STATE(237), 1, + sym_compound_statement, + [287655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11114), 1, - anon_sym_RBRACE, - ACTIONS(13351), 1, - anon_sym_COMMA, - [287073] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(3329), 1, + sym_compound_statement, + [287665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + ACTIONS(13453), 1, + anon_sym_SEMI, + [287675] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(297), 1, anon_sym_LBRACE, - STATE(313), 1, + STATE(254), 1, sym_compound_statement, - [287083] = 3, + [287685] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7665), 1, + STATE(7098), 1, sym_compound_statement, - [287093] = 3, + [287695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2626), 1, - sym_field_declaration_list, - [287103] = 3, + ACTIONS(11112), 1, + anon_sym_RBRACE, + ACTIONS(13379), 1, + anon_sym_COMMA, + [287705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6363), 1, - anon_sym_LBRACE, - STATE(2627), 1, - sym_field_declaration_list, - [287113] = 3, + ACTIONS(8003), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [287713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13339), 1, + ACTIONS(13377), 1, anon_sym_LPAREN2, - STATE(7749), 1, + STATE(7837), 1, sym_parenthesized_expression, - [287123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3879), 1, - anon_sym_LBRACE, - STATE(4852), 1, - sym_initializer_list, - [287133] = 3, + [287723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9839), 1, - anon_sym_LBRACE, - STATE(5577), 1, - sym_compound_statement, - [287143] = 3, + ACTIONS(11166), 1, + anon_sym_RBRACE, + ACTIONS(13379), 1, + anon_sym_COMMA, + [287733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13405), 1, - anon_sym_LT, - STATE(3373), 1, - sym_template_argument_list, - [287153] = 3, + ACTIONS(12971), 2, + anon_sym_COMMA, + anon_sym_GT2, + [287741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9855), 1, + ACTIONS(866), 1, anon_sym_LBRACE, - STATE(3559), 1, + STATE(506), 1, sym_compound_statement, - [287163] = 3, + [287751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9865), 1, + ACTIONS(9782), 1, anon_sym_LBRACE, - STATE(3859), 1, - sym_compound_statement, - [287173] = 3, + STATE(3302), 1, + sym_requirement_seq, + [287761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(9861), 1, anon_sym_LBRACE, - STATE(737), 1, + STATE(5685), 1, sym_compound_statement, - [287183] = 3, + [287771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8628), 1, + ACTIONS(13455), 1, anon_sym_LT, - STATE(4456), 1, + STATE(2702), 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, + [287781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9857), 1, + ACTIONS(5238), 1, anon_sym_LBRACE, - STATE(2561), 1, - sym_compound_statement, - [287213] = 3, + STATE(717), 1, + sym_declaration_list, + [287791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(12620), 1, anon_sym_LPAREN2, - STATE(8616), 1, - sym_argument_list, - [287223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(894), 1, - anon_sym_LBRACE, - STATE(580), 1, - sym_compound_statement, - [287233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13351), 1, - anon_sym_COMMA, - ACTIONS(13411), 1, - anon_sym_RBRACE, - [287243] = 3, - ACTIONS(3), 1, - sym_comment, - 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, + STATE(179), 1, + sym_condition_clause, + [287801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6363), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - STATE(2629), 1, + STATE(3085), 1, sym_field_declaration_list, - [287283] = 3, + [287811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - STATE(2944), 1, + STATE(3086), 1, sym_field_declaration_list, - [287293] = 3, + [287821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2884), 1, - sym_field_declaration_list, - [287303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13417), 1, - sym_identifier, - STATE(1966), 1, - sym_template_type, - [287313] = 3, + STATE(1654), 1, + sym_compound_statement, + [287831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - STATE(214), 1, - sym_condition_clause, - [287323] = 3, + ACTIONS(13457), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [287839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - STATE(7926), 1, - sym_condition_clause, - [287333] = 3, + ACTIONS(8669), 1, + anon_sym_LBRACE, + STATE(4542), 1, + sym_field_declaration_list, + [287849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(13377), 1, anon_sym_LPAREN2, - STATE(188), 1, - sym_condition_clause, - [287343] = 3, + STATE(8389), 1, + sym_parenthesized_expression, + [287859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10666), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - STATE(1945), 1, - sym_compound_statement, - [287353] = 3, + STATE(2233), 1, + sym_field_declaration_list, + [287869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7246), 1, - sym_compound_statement, - [287363] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13419), 1, - aux_sym_preproc_include_token2, - ACTIONS(13421), 1, - sym_preproc_arg, - [287373] = 3, + ACTIONS(13379), 1, + anon_sym_COMMA, + ACTIONS(13459), 1, + anon_sym_RBRACE, + [287879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13423), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - [287383] = 3, + ACTIONS(7512), 1, + anon_sym_LBRACE, + STATE(4026), 1, + sym_field_declaration_list, + [287889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13425), 1, - sym_identifier, - ACTIONS(13427), 1, - anon_sym_LPAREN2, - [287393] = 3, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + [287899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - STATE(8725), 1, - sym_argument_list, - [287403] = 3, + STATE(7844), 1, + sym_parameter_list, + [287909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - STATE(7117), 1, + STATE(313), 1, sym_compound_statement, - [287413] = 3, + [287919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - STATE(193), 1, - sym_condition_clause, - [287423] = 2, + ACTIONS(11158), 1, + anon_sym_RBRACE, + ACTIONS(13379), 1, + anon_sym_COMMA, + [287929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13429), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [287431] = 3, + ACTIONS(6410), 1, + anon_sym_LBRACE, + STATE(2663), 1, + sym_field_declaration_list, + [287939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9865), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - STATE(3906), 1, - sym_compound_statement, - [287441] = 3, + STATE(2664), 1, + sym_field_declaration_list, + [287949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13431), 1, + ACTIONS(8727), 1, anon_sym_LT, - STATE(1863), 1, + STATE(1920), 1, sym_template_argument_list, - [287451] = 3, + [287959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10654), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(1964), 1, + STATE(7617), 1, sym_compound_statement, - [287461] = 3, + [287969] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13461), 1, + aux_sym_preproc_include_token2, + ACTIONS(13463), 1, + sym_preproc_arg, + [287979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 1, - anon_sym_LT, - STATE(2756), 1, - sym_template_argument_list, - [287471] = 3, + ACTIONS(9792), 1, + anon_sym_LBRACE, + STATE(4319), 1, + sym_requirement_seq, + [287989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13339), 1, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + STATE(213), 1, + sym_condition_clause, + [287999] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13377), 1, anon_sym_LPAREN2, - STATE(8530), 1, + STATE(7993), 1, sym_parenthesized_expression, - [287481] = 3, + [288009] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13465), 1, + aux_sym_preproc_include_token2, + ACTIONS(13467), 1, + sym_preproc_arg, + [288019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9871), 1, anon_sym_LBRACE, - STATE(7172), 1, + STATE(1654), 1, sym_compound_statement, - [287491] = 3, + [288029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - STATE(7719), 1, - sym_parameter_list, - [287501] = 3, + ACTIONS(9865), 1, + anon_sym_LBRACE, + STATE(3329), 1, + sym_compound_statement, + [288039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11152), 1, - anon_sym_RBRACE, - ACTIONS(13351), 1, + ACTIONS(13216), 2, anon_sym_COMMA, - [287511] = 3, + anon_sym_RBRACK, + [288047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(605), 1, + STATE(1647), 1, sym_compound_statement, - [287521] = 3, + [288057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7334), 1, - sym_compound_statement, - [287531] = 3, + ACTIONS(13435), 1, + anon_sym_LT, + STATE(3621), 1, + sym_template_argument_list, + [288067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9855), 1, + ACTIONS(2457), 1, anon_sym_LBRACE, - STATE(3580), 1, - sym_compound_statement, - [287541] = 3, + STATE(3590), 1, + sym_initializer_list, + [288077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13339), 1, + ACTIONS(13377), 1, anon_sym_LPAREN2, - STATE(7730), 1, + STATE(8646), 1, sym_parenthesized_expression, - [287551] = 3, + [288087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9839), 1, + ACTIONS(9873), 1, anon_sym_LBRACE, - STATE(5595), 1, + STATE(3703), 1, sym_compound_statement, - [287561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13433), 1, - sym_identifier, - STATE(1808), 1, - sym_template_type, - [287571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - STATE(7776), 1, - sym_condition_clause, - [287581] = 3, + [288097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(10660), 1, anon_sym_LBRACE, - STATE(7387), 1, + STATE(1827), 1, sym_compound_statement, - [287591] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - STATE(191), 1, - sym_condition_clause, - [287601] = 3, + [288107] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(540), 1, + STATE(7662), 1, sym_compound_statement, - [287611] = 3, + [288117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - STATE(8794), 1, - sym_argument_list, - [287621] = 3, + STATE(7985), 1, + sym_parameter_list, + [288127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7154), 1, - sym_compound_statement, - [287631] = 3, + ACTIONS(13469), 1, + sym_identifier, + ACTIONS(13471), 1, + anon_sym_LPAREN2, + [288137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, + ACTIONS(8757), 1, anon_sym_LBRACE, - STATE(325), 1, - sym_declaration_list, - [287641] = 3, + STATE(4938), 1, + sym_field_declaration_list, + [288147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(10685), 1, anon_sym_LBRACE, - STATE(3265), 1, + STATE(2154), 1, sym_compound_statement, - [287651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13339), 1, - anon_sym_LPAREN2, - STATE(8116), 1, - sym_parenthesized_expression, - [287661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - STATE(7838), 1, - sym_parameter_list, - [287671] = 2, + [288157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13337), 2, + ACTIONS(13473), 2, anon_sym_COMMA, anon_sym_RPAREN, - [287679] = 3, + [288165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6035), 1, - anon_sym_LBRACE, - STATE(2389), 1, - sym_field_declaration_list, - [287689] = 3, + ACTIONS(13407), 1, + anon_sym_LT, + STATE(3327), 1, + sym_template_argument_list, + [288175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9879), 1, anon_sym_LBRACE, - STATE(7459), 1, + STATE(3503), 1, sym_compound_statement, - [287699] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13435), 1, - aux_sym_preproc_include_token2, - ACTIONS(13437), 1, - sym_preproc_arg, - [287709] = 3, + [288185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13439), 1, - anon_sym_LPAREN2, - ACTIONS(13441), 1, - sym_raw_string_delimiter, - [287719] = 3, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(2357), 1, + sym_template_argument_list, + [288195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13443), 1, + ACTIONS(13475), 1, sym_identifier, - ACTIONS(13445), 1, - anon_sym_LPAREN2, - [287729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13339), 1, - anon_sym_LPAREN2, - STATE(7855), 1, - sym_parenthesized_expression, - [287739] = 3, + STATE(1788), 1, + sym_template_type, + [288205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11158), 1, - anon_sym_RBRACE, - ACTIONS(13351), 1, - anon_sym_COMMA, - [287749] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13447), 1, - aux_sym_preproc_include_token2, - ACTIONS(13449), 1, - sym_preproc_arg, - [287759] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13451), 1, - aux_sym_preproc_include_token2, - ACTIONS(13453), 1, - sym_preproc_arg, - [287769] = 3, + ACTIONS(9855), 1, + anon_sym_LBRACE, + STATE(2543), 1, + sym_compound_statement, + [288215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - STATE(542), 1, + STATE(550), 1, sym_compound_statement, - [287779] = 3, + [288225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - STATE(174), 1, - sym_condition_clause, - [287789] = 3, + ACTIONS(13379), 1, + anon_sym_COMMA, + ACTIONS(13477), 1, + anon_sym_RBRACE, + [288235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2493), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3618), 1, - sym_initializer_list, - [287799] = 3, + STATE(7593), 1, + sym_compound_statement, + [288245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13455), 1, - sym_identifier, - STATE(2293), 1, - sym_template_type, - [287809] = 3, + ACTIONS(11144), 1, + anon_sym_RBRACE, + ACTIONS(13379), 1, + anon_sym_COMMA, + [288255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - STATE(2811), 1, + STATE(2391), 1, sym_field_declaration_list, - [287819] = 3, + [288265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, + ACTIONS(8757), 1, anon_sym_LBRACE, - STATE(2840), 1, + STATE(4956), 1, sym_field_declaration_list, - [287829] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7521), 1, - sym_compound_statement, - [287839] = 3, + [288275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - STATE(8396), 1, - sym_argument_list, - [287849] = 3, + ACTIONS(13479), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [288283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - STATE(7955), 1, - sym_parameter_list, - [287859] = 3, + ACTIONS(8945), 1, + anon_sym_RPAREN, + ACTIONS(8947), 1, + anon_sym_SEMI, + [288293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(5248), 1, anon_sym_LBRACE, - STATE(7585), 1, - sym_compound_statement, - [287869] = 3, + STATE(640), 1, + sym_declaration_list, + [288303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10654), 1, + ACTIONS(1668), 1, anon_sym_LBRACE, - STATE(2142), 1, + STATE(922), 1, sym_compound_statement, - [287879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13339), 1, - anon_sym_LPAREN2, - STATE(7961), 1, - sym_parenthesized_expression, - [287889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12048), 1, - sym_identifier, - STATE(1923), 1, - sym_template_type, - [287899] = 3, + [288313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - STATE(3150), 1, + STATE(2982), 1, sym_field_declaration_list, - [287909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8725), 1, - anon_sym_LT, - STATE(1623), 1, - sym_template_argument_list, - [287919] = 3, + [288323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13351), 1, + ACTIONS(13481), 2, anon_sym_COMMA, - ACTIONS(13457), 1, - anon_sym_RBRACE, - [287929] = 3, + anon_sym_RBRACK, + [288331] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7638), 1, + STATE(417), 1, sym_compound_statement, - [287939] = 3, + [288341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - STATE(8810), 1, - sym_argument_list, - [287949] = 3, + ACTIONS(866), 1, + anon_sym_LBRACE, + STATE(708), 1, + sym_compound_statement, + [288351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6035), 1, + ACTIONS(9881), 1, anon_sym_LBRACE, - STATE(2366), 1, - sym_field_declaration_list, - [287959] = 3, + STATE(3960), 1, + sym_compound_statement, + [288361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13459), 1, + ACTIONS(13483), 1, sym_identifier, - STATE(2720), 1, + STATE(3619), 1, sym_template_type, - [287969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - STATE(7988), 1, - sym_parameter_list, - [287979] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13461), 2, - anon_sym_COMMA, - anon_sym_GT2, - [287987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13463), 1, - sym_identifier, - ACTIONS(13465), 1, - anon_sym_RPAREN, - [287997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9758), 1, - anon_sym_LBRACE, - STATE(3735), 1, - sym_requirement_seq, - [288007] = 3, + [288371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - STATE(7804), 1, - sym_parameter_list, - [288017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10674), 1, + ACTIONS(6836), 1, anon_sym_LBRACE, - STATE(1783), 1, - sym_compound_statement, - [288027] = 3, + STATE(3097), 1, + sym_field_declaration_list, + [288381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - STATE(7551), 1, + STATE(685), 1, sym_compound_statement, - [288037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6035), 1, - anon_sym_LBRACE, - STATE(2392), 1, - sym_field_declaration_list, - [288047] = 3, + [288391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(9867), 1, anon_sym_LBRACE, - STATE(3627), 1, + STATE(4303), 1, sym_compound_statement, - [288057] = 2, + [288401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13467), 2, + ACTIONS(13379), 1, anon_sym_COMMA, - anon_sym_GT2, - [288065] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13469), 1, - aux_sym_preproc_include_token2, - ACTIONS(13471), 1, - sym_preproc_arg, - [288075] = 3, + ACTIONS(13485), 1, + anon_sym_RBRACE, + [288411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13341), 1, + ACTIONS(13407), 1, anon_sym_LT, - STATE(1972), 1, + STATE(3469), 1, sym_template_argument_list, - [288085] = 3, + [288421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(13487), 1, + anon_sym_LPAREN2, + ACTIONS(13489), 1, + sym_raw_string_delimiter, + [288431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9855), 1, anon_sym_LBRACE, - STATE(577), 1, + STATE(2557), 1, sym_compound_statement, - [288095] = 3, + [288441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6666), 1, + anon_sym_LBRACE, + STATE(3001), 1, + sym_field_declaration_list, + [288451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13473), 1, + ACTIONS(13491), 1, sym_identifier, - STATE(2773), 1, + STATE(1974), 1, sym_template_type, - [288105] = 3, + [288461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(12821), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [288469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 1, anon_sym_LBRACE, - STATE(7471), 1, + STATE(591), 1, sym_compound_statement, - [288115] = 2, + [288479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [288123] = 3, + ACTIONS(10689), 1, + anon_sym_LBRACE, + STATE(2215), 1, + sym_compound_statement, + [288489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - STATE(8326), 1, - sym_argument_list, - [288133] = 2, + ACTIONS(1668), 1, + anon_sym_LBRACE, + STATE(914), 1, + sym_compound_statement, + [288499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13475), 2, + ACTIONS(13379), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [288141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - STATE(7849), 1, - sym_parameter_list, - [288151] = 3, + ACTIONS(13493), 1, + anon_sym_RBRACE, + [288509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8906), 1, + ACTIONS(6410), 1, anon_sym_LBRACE, - STATE(4957), 1, + STATE(2619), 1, sym_field_declaration_list, - [288161] = 3, + [288519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - STATE(2216), 1, + STATE(2906), 1, sym_field_declaration_list, - [288171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - STATE(8584), 1, - sym_argument_list, - [288181] = 3, + [288529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 1, - anon_sym_LT, - STATE(2411), 1, - sym_template_argument_list, - [288191] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13477), 1, - aux_sym_preproc_include_token2, - ACTIONS(13479), 1, - sym_preproc_arg, - [288201] = 3, + ACTIONS(6024), 1, + anon_sym_LBRACE, + STATE(5160), 1, + sym_field_declaration_list, + [288539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - STATE(8689), 1, - sym_argument_list, - [288211] = 3, + ACTIONS(13495), 1, + sym_identifier, + STATE(1788), 1, + sym_template_type, + [288549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(894), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - STATE(543), 1, - sym_compound_statement, - [288221] = 3, + STATE(5173), 1, + sym_field_declaration_list, + [288559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13339), 1, - anon_sym_LPAREN2, - STATE(8176), 1, - sym_parenthesized_expression, - [288231] = 3, + ACTIONS(6024), 1, + anon_sym_LBRACE, + STATE(5174), 1, + sym_field_declaration_list, + [288569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13405), 1, + ACTIONS(7488), 1, anon_sym_LT, - STATE(3537), 1, + STATE(1635), 1, sym_template_argument_list, - [288241] = 3, + [288579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12066), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - STATE(6011), 1, - sym_requirement_seq, - [288251] = 3, + STATE(5184), 1, + sym_field_declaration_list, + [288589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11142), 1, - anon_sym_RBRACE, - ACTIONS(13351), 1, + ACTIONS(8926), 2, anon_sym_COMMA, - [288261] = 3, + anon_sym_RBRACE, + [288597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(6672), 1, anon_sym_LBRACE, - STATE(3047), 1, + STATE(2914), 1, sym_field_declaration_list, - [288271] = 3, + [288607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(3022), 1, - sym_field_declaration_list, - [288281] = 3, + STATE(777), 1, + sym_declaration_list, + [288617] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13497), 1, + aux_sym_preproc_include_token2, + ACTIONS(13499), 1, + sym_preproc_arg, + [288627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13259), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [288635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9873), 1, anon_sym_LBRACE, - STATE(7114), 1, + STATE(3629), 1, sym_compound_statement, - [288291] = 3, + [288645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9855), 1, + ACTIONS(13377), 1, + anon_sym_LPAREN2, + STATE(8657), 1, + sym_parenthesized_expression, + [288655] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13501), 1, + aux_sym_preproc_include_token2, + ACTIONS(13503), 1, + sym_preproc_arg, + [288665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6024), 1, anon_sym_LBRACE, - STATE(3461), 1, - sym_compound_statement, - [288301] = 3, + STATE(2377), 1, + sym_field_declaration_list, + [288675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(13377), 1, anon_sym_LPAREN2, - STATE(7913), 1, - sym_condition_clause, - [288311] = 3, + STATE(7975), 1, + sym_parenthesized_expression, + [288685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(12620), 1, anon_sym_LPAREN2, - STATE(185), 1, + STATE(175), 1, sym_condition_clause, - [288321] = 2, + [288695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13481), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [288329] = 2, + ACTIONS(866), 1, + anon_sym_LBRACE, + STATE(583), 1, + sym_compound_statement, + [288705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12532), 2, + ACTIONS(12874), 1, + anon_sym_RBRACK, + ACTIONS(13505), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [288337] = 2, + [288715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8736), 2, + ACTIONS(9003), 2, anon_sym_COMMA, anon_sym_RBRACE, - [288345] = 3, + [288723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7301), 1, - sym_compound_statement, - [288355] = 3, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(2795), 1, + sym_template_argument_list, + [288733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9851), 1, + ACTIONS(9869), 1, anon_sym_LBRACE, - STATE(3307), 1, + STATE(5986), 1, sym_compound_statement, - [288365] = 3, + [288743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(7575), 1, - sym_compound_statement, - [288375] = 3, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + STATE(7902), 1, + sym_condition_clause, + [288753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(10689), 1, anon_sym_LBRACE, - STATE(3631), 1, + STATE(1969), 1, sym_compound_statement, - [288385] = 3, + [288763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10674), 1, + ACTIONS(13507), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(1818), 1, - sym_compound_statement, - [288395] = 3, + [288771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, - anon_sym_LBRACE, - STATE(729), 1, - sym_compound_statement, - [288405] = 2, + ACTIONS(8727), 1, + anon_sym_LT, + STATE(2702), 1, + sym_template_argument_list, + [288781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13483), 2, + ACTIONS(13197), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [288413] = 3, + anon_sym_LBRACE, + [288789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, - anon_sym_LBRACE, - STATE(606), 1, - sym_declaration_list, - [288423] = 3, + ACTIONS(12620), 1, + anon_sym_LPAREN2, + STATE(190), 1, + sym_condition_clause, + [288799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13485), 1, + ACTIONS(13509), 2, + anon_sym_COMMA, + anon_sym_GT2, + [288807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13511), 1, sym_identifier, - STATE(1923), 1, + STATE(1947), 1, sym_template_type, - [288433] = 3, + [288817] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1668), 1, anon_sym_LBRACE, - STATE(932), 1, + STATE(934), 1, sym_compound_statement, - [288443] = 3, + [288827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13351), 1, - anon_sym_COMMA, - ACTIONS(13487), 1, - anon_sym_RBRACE, - [288453] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7678), 1, + sym_compound_statement, + [288837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 1, - anon_sym_LBRACE, - STATE(3065), 1, - sym_field_declaration_list, - [288463] = 3, + ACTIONS(9029), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [288845] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13513), 1, + aux_sym_preproc_include_token2, + ACTIONS(13515), 1, + sym_preproc_arg, + [288855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13489), 1, - anon_sym_LT, - STATE(2745), 1, - sym_template_argument_list, - [288473] = 3, + ACTIONS(13517), 1, + sym_identifier, + STATE(1947), 1, + sym_template_type, + [288865] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13519), 1, + aux_sym_preproc_include_token2, + ACTIONS(13521), 1, + sym_preproc_arg, + [288875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, + ACTIONS(12681), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(672), 1, - sym_declaration_list, - [288483] = 2, + [288883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13491), 2, - anon_sym_COMMA, - anon_sym_GT2, - [288491] = 3, + ACTIONS(12260), 1, + anon_sym_LBRACE, + STATE(5662), 1, + sym_requirement_seq, + [288893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, - anon_sym_LBRACE, - STATE(901), 1, - sym_compound_statement, - [288501] = 3, + ACTIONS(7488), 1, + anon_sym_LT, + STATE(2795), 1, + sym_template_argument_list, + [288903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9857), 1, + ACTIONS(9869), 1, anon_sym_LBRACE, - STATE(2559), 1, + STATE(6044), 1, sym_compound_statement, - [288511] = 3, + [288913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, - anon_sym_LPAREN2, - STATE(8547), 1, - sym_argument_list, - [288521] = 3, + ACTIONS(10713), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [288921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9845), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3725), 1, + STATE(545), 1, sym_compound_statement, - [288531] = 3, + [288931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(8669), 1, anon_sym_LBRACE, - STATE(339), 1, - sym_compound_statement, - [288541] = 2, + STATE(4483), 1, + sym_field_declaration_list, + [288941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13161), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [288549] = 3, + ACTIONS(13523), 1, + anon_sym_LT, + STATE(1920), 1, + sym_template_argument_list, + [288951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1668), 1, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(8766), 1, + sym_argument_list, + [288961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9881), 1, anon_sym_LBRACE, - STATE(919), 1, + STATE(3935), 1, sym_compound_statement, - [288559] = 3, + [288971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 1, + ACTIONS(5248), 1, anon_sym_LBRACE, - STATE(4284), 1, - sym_requirement_seq, - [288569] = 3, + STATE(509), 1, + sym_declaration_list, + [288981] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7208), 1, + STATE(7092), 1, sym_compound_statement, - [288579] = 3, + [288991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10666), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2144), 1, + STATE(3352), 1, sym_compound_statement, - [288589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6530), 1, - anon_sym_LBRACE, - STATE(2987), 1, - sym_field_declaration_list, - [288599] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13493), 1, - aux_sym_preproc_include_token2, - ACTIONS(13495), 1, - sym_preproc_arg, - [288609] = 3, + [289001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, + ACTIONS(12620), 1, anon_sym_LPAREN2, - STATE(206), 1, + STATE(194), 1, sym_condition_clause, - [288619] = 3, + [289011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9863), 1, + ACTIONS(13525), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [289019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(866), 1, anon_sym_LBRACE, - STATE(4303), 1, + STATE(472), 1, sym_compound_statement, - [288629] = 2, + [289029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13177), 2, - anon_sym_SEMI, + ACTIONS(5238), 1, anon_sym_LBRACE, - [288637] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13497), 1, - aux_sym_preproc_include_token2, - ACTIONS(13499), 1, - sym_preproc_arg, - [288647] = 3, + STATE(758), 1, + sym_declaration_list, + [289039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(9869), 1, anon_sym_LBRACE, - STATE(435), 1, + STATE(5998), 1, sym_compound_statement, - [288657] = 3, + [289049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - STATE(8063), 1, + STATE(8920), 1, sym_argument_list, - [288667] = 3, + [289059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_LBRACE, - STATE(346), 1, - sym_declaration_list, - [288677] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13501), 1, - aux_sym_preproc_include_token2, - ACTIONS(13503), 1, - sym_preproc_arg, - [288687] = 3, + ACTIONS(13527), 2, + anon_sym_COMMA, + anon_sym_GT2, + [289067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6035), 1, + ACTIONS(10660), 1, anon_sym_LBRACE, - STATE(5199), 1, - sym_field_declaration_list, - [288697] = 3, + STATE(1733), 1, + sym_compound_statement, + [289077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6035), 1, + ACTIONS(6024), 1, anon_sym_LBRACE, - STATE(5205), 1, + STATE(2405), 1, sym_field_declaration_list, - [288707] = 3, + [289087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6035), 1, - anon_sym_LBRACE, - STATE(5206), 1, - sym_field_declaration_list, - [288717] = 3, + ACTIONS(13379), 1, + anon_sym_COMMA, + ACTIONS(13529), 1, + anon_sym_RBRACE, + [289097] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(415), 1, + STATE(437), 1, sym_compound_statement, - [288727] = 3, + [289107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6035), 1, + ACTIONS(9879), 1, anon_sym_LBRACE, - STATE(5208), 1, - sym_field_declaration_list, - [288737] = 2, + STATE(3409), 1, + sym_compound_statement, + [289117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12822), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [288745] = 3, + ACTIONS(8757), 1, + anon_sym_LBRACE, + STATE(4950), 1, + sym_field_declaration_list, + [289127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13351), 1, - anon_sym_COMMA, - ACTIONS(13505), 1, - anon_sym_RBRACE, - [288755] = 3, + ACTIONS(1002), 1, + anon_sym_LBRACE, + STATE(613), 1, + sym_compound_statement, + [289137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11122), 1, - anon_sym_RBRACE, - ACTIONS(13351), 1, + ACTIONS(13531), 2, anon_sym_COMMA, - [288765] = 3, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13507), 1, - aux_sym_preproc_include_token2, - ACTIONS(13509), 1, - sym_preproc_arg, - [288775] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13511), 1, - sym_identifier, - STATE(2851), 1, - sym_template_type, - [288785] = 3, + anon_sym_GT2, + [289145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6526), 1, + ACTIONS(8669), 1, anon_sym_LBRACE, - STATE(2814), 1, + STATE(4489), 1, sym_field_declaration_list, - [288795] = 3, + [289155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(9800), 1, anon_sym_LBRACE, - STATE(506), 1, - sym_declaration_list, - [288805] = 3, + STATE(3415), 1, + sym_requirement_seq, + [289165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8725), 1, - anon_sym_LT, - STATE(1863), 1, - sym_template_argument_list, - [288815] = 3, + ACTIONS(13533), 1, + anon_sym_LPAREN2, + ACTIONS(13535), 1, + sym_raw_string_delimiter, + [289175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(10685), 1, anon_sym_LBRACE, - STATE(274), 1, + STATE(1986), 1, sym_compound_statement, - [288825] = 2, + [289185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12517), 2, - anon_sym_COMMA, - anon_sym_GT2, - [288833] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7515), 1, + sym_compound_statement, + [289195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8906), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - STATE(4961), 1, + STATE(3685), 1, sym_field_declaration_list, - [288843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11150), 1, - anon_sym_RBRACE, - ACTIONS(13351), 1, - anon_sym_COMMA, - [288853] = 2, + [289205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12522), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [288861] = 3, + ACTIONS(13377), 1, + anon_sym_LPAREN2, + STATE(8296), 1, + sym_parenthesized_expression, + [289215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - ACTIONS(13513), 1, - anon_sym_SEMI, - [288871] = 3, + ACTIONS(866), 1, + anon_sym_LBRACE, + STATE(765), 1, + sym_compound_statement, + [289225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8906), 1, - anon_sym_LBRACE, - STATE(4962), 1, - sym_field_declaration_list, - [288881] = 3, + ACTIONS(13435), 1, + anon_sym_LT, + STATE(2704), 1, + sym_template_argument_list, + [289235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9851), 1, - anon_sym_LBRACE, - STATE(3312), 1, - sym_compound_statement, - [288891] = 3, + ACTIONS(13537), 1, + sym_identifier, + STATE(2773), 1, + sym_template_type, + [289245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8630), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - STATE(4516), 1, + STATE(3689), 1, sym_field_declaration_list, - [288901] = 3, + [289255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, + ACTIONS(6666), 1, anon_sym_LBRACE, - STATE(1634), 1, - sym_compound_statement, - [288911] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9017), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [288919] = 2, + STATE(3690), 1, + sym_field_declaration_list, + [289265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13241), 2, - anon_sym_SEMI, + ACTIONS(6666), 1, anon_sym_LBRACE, - [288927] = 3, + STATE(3692), 1, + sym_field_declaration_list, + [289275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(2619), 1, anon_sym_LBRACE, - STATE(1627), 1, - sym_requirement_seq, - [288937] = 3, + STATE(3974), 1, + sym_initializer_list, + [289285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 1, + ACTIONS(13333), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(237), 1, - sym_compound_statement, - [288947] = 3, + [289293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10654), 1, - anon_sym_LBRACE, - STATE(2001), 1, - sym_compound_statement, - [288957] = 3, + ACTIONS(9818), 1, + anon_sym_LPAREN2, + STATE(7753), 1, + sym_parameter_list, + [289303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12214), 1, - anon_sym_COLON_COLON, - ACTIONS(13515), 1, - anon_sym_SEMI, - [288967] = 3, + ACTIONS(13539), 1, + sym_identifier, + STATE(1788), 1, + sym_template_type, + [289313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, + ACTIONS(9865), 1, anon_sym_LBRACE, - STATE(1632), 1, + STATE(3377), 1, sym_compound_statement, - [288977] = 3, + [289323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13517), 1, - anon_sym_LPAREN2, - ACTIONS(13519), 1, - sym_raw_string_delimiter, - [288987] = 3, - ACTIONS(10057), 1, + ACTIONS(11164), 1, + anon_sym_RBRACE, + ACTIONS(13379), 1, + anon_sym_COMMA, + [289333] = 3, + ACTIONS(10143), 1, sym_comment, - ACTIONS(13521), 1, + ACTIONS(13541), 1, aux_sym_preproc_include_token2, - ACTIONS(13523), 1, + ACTIONS(13543), 1, sym_preproc_arg, - [288997] = 3, + [289343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7483), 1, - anon_sym_LT, - STATE(2756), 1, - sym_template_argument_list, - [289007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13339), 1, + ACTIONS(8193), 1, anon_sym_LPAREN2, - STATE(7803), 1, - sym_parenthesized_expression, - [289017] = 3, + STATE(8586), 1, + sym_argument_list, + [289353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 1, - anon_sym_LBRACE, - STATE(3673), 1, - sym_field_declaration_list, - [289027] = 3, + ACTIONS(12059), 1, + anon_sym_COLON_COLON, + ACTIONS(13545), 1, + anon_sym_SEMI, + [289363] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3307), 1, + STATE(7376), 1, sym_compound_statement, - [289037] = 3, + [289373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 1, - anon_sym_LBRACE, - STATE(3677), 1, - sym_field_declaration_list, - [289047] = 3, + ACTIONS(13547), 1, + sym_identifier, + STATE(2602), 1, + sym_template_type, + [289383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 1, - anon_sym_LBRACE, - STATE(3678), 1, - sym_field_declaration_list, - [289057] = 3, + ACTIONS(6006), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + [289393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6530), 1, + ACTIONS(297), 1, anon_sym_LBRACE, - STATE(3681), 1, - sym_field_declaration_list, - [289067] = 3, + STATE(284), 1, + sym_compound_statement, + [289403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13339), 1, + ACTIONS(13377), 1, anon_sym_LPAREN2, - STATE(8256), 1, + STATE(7847), 1, sym_parenthesized_expression, - [289077] = 3, + [289413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12615), 1, - anon_sym_LPAREN2, - STATE(7978), 1, - sym_condition_clause, - [289087] = 2, + ACTIONS(13549), 1, + anon_sym_LT, + STATE(2449), 1, + sym_template_argument_list, + [289423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13525), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [289095] = 3, + ACTIONS(6024), 1, + anon_sym_LBRACE, + STATE(2358), 1, + sym_field_declaration_list, + [289433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(866), 1, + ACTIONS(9879), 1, anon_sym_LBRACE, - STATE(501), 1, + STATE(3439), 1, sym_compound_statement, - [289105] = 3, + [289443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9798), 1, - anon_sym_LPAREN2, - STATE(7768), 1, - sym_parameter_list, - [289115] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7120), 1, + sym_compound_statement, + [289453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11102), 1, + ACTIONS(11107), 1, anon_sym_RBRACE, - ACTIONS(13351), 1, + ACTIONS(13379), 1, anon_sym_COMMA, - [289125] = 2, + [289463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12559), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [289133] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(3377), 1, + sym_compound_statement, + [289473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8630), 1, + ACTIONS(12253), 1, anon_sym_LBRACE, - STATE(4605), 1, - sym_field_declaration_list, - [289143] = 3, + STATE(1644), 1, + sym_requirement_seq, + [289483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8630), 1, - anon_sym_LBRACE, - STATE(4607), 1, - sym_field_declaration_list, - [289153] = 2, + ACTIONS(8931), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [289491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13527), 2, + ACTIONS(12338), 1, + sym_identifier, + STATE(7908), 1, + sym_module_name, + [289501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11162), 1, + anon_sym_RBRACE, + ACTIONS(13379), 1, anon_sym_COMMA, + [289511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5250), 1, anon_sym_LBRACE, - [289161] = 3, - ACTIONS(10057), 1, + STATE(764), 1, + sym_declaration_list, + [289521] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13529), 1, + ACTIONS(13551), 1, + sym_identifier, + STATE(2878), 1, + sym_template_type, + [289531] = 3, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13553), 1, aux_sym_preproc_include_token2, - ACTIONS(13531), 1, + ACTIONS(13555), 1, sym_preproc_arg, - [289171] = 3, + [289541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LBRACE, - STATE(681), 1, - sym_declaration_list, - [289181] = 3, + ACTIONS(8727), 1, + anon_sym_LT, + STATE(1635), 1, + sym_template_argument_list, + [289551] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(7424), 1, + STATE(493), 1, sym_compound_statement, - [289191] = 3, + [289561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5232), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(683), 1, + STATE(795), 1, sym_declaration_list, - [289201] = 3, + [289571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13351), 1, + ACTIONS(13357), 2, anon_sym_COMMA, - ACTIONS(13533), 1, - anon_sym_RBRACE, - [289211] = 3, + anon_sym_LBRACE, + [289579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6580), 1, - anon_sym_LT, - STATE(2361), 1, - sym_template_argument_list, - [289221] = 3, + ACTIONS(5240), 1, + anon_sym_LBRACE, + STATE(310), 1, + sym_declaration_list, + [289589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11154), 1, - anon_sym_RBRACE, - ACTIONS(13351), 1, + ACTIONS(13379), 1, anon_sym_COMMA, - [289231] = 3, + ACTIONS(13557), 1, + anon_sym_RBRACE, + [289599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8906), 1, - anon_sym_LBRACE, - STATE(4965), 1, - sym_field_declaration_list, - [289241] = 3, + ACTIONS(13559), 1, + sym_identifier, + STATE(2708), 1, + sym_template_type, + [289609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13535), 1, + ACTIONS(13561), 1, anon_sym_LPAREN2, - ACTIONS(13537), 1, + ACTIONS(13563), 1, sym_raw_string_delimiter, - [289251] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10732), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [289259] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12570), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [289267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8928), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [289275] = 3, + [289619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9857), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2536), 1, + STATE(577), 1, sym_compound_statement, - [289285] = 3, + [289629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13539), 1, + ACTIONS(9818), 1, anon_sym_LPAREN2, - ACTIONS(13541), 1, - sym_raw_string_delimiter, - [289295] = 3, + STATE(8053), 1, + sym_parameter_list, + [289639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13543), 1, - anon_sym_LPAREN2, - ACTIONS(13545), 1, - sym_raw_string_delimiter, - [289305] = 3, + ACTIONS(6536), 1, + anon_sym_LT, + STATE(2449), 1, + sym_template_argument_list, + [289649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13547), 1, - anon_sym_LPAREN2, - ACTIONS(13549), 1, - sym_raw_string_delimiter, - [289315] = 3, + ACTIONS(13565), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [289657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6588), 1, + ACTIONS(6516), 1, anon_sym_LBRACE, - STATE(2899), 1, + STATE(2888), 1, sym_field_declaration_list, - [289325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13551), 1, - anon_sym_LPAREN2, - ACTIONS(13553), 1, - sym_raw_string_delimiter, - [289335] = 3, + [289667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13555), 1, + ACTIONS(12620), 1, anon_sym_LPAREN2, - ACTIONS(13557), 1, - sym_raw_string_delimiter, - [289345] = 3, + STATE(7738), 1, + sym_condition_clause, + [289677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13559), 1, + ACTIONS(13567), 1, anon_sym_LPAREN2, - ACTIONS(13561), 1, + ACTIONS(13569), 1, sym_raw_string_delimiter, - [289355] = 3, + [289687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13563), 1, - anon_sym_LPAREN2, - ACTIONS(13565), 1, - sym_raw_string_delimiter, - [289365] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(270), 1, + sym_compound_statement, + [289697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13567), 1, - anon_sym_LPAREN2, - ACTIONS(13569), 1, - sym_raw_string_delimiter, - [289375] = 3, + ACTIONS(9855), 1, + anon_sym_LBRACE, + STATE(2570), 1, + sym_compound_statement, + [289707] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13571), 1, anon_sym_LPAREN2, ACTIONS(13573), 1, sym_raw_string_delimiter, - [289385] = 3, + [289717] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(13379), 1, + anon_sym_COMMA, ACTIONS(13575), 1, - anon_sym_LPAREN2, - ACTIONS(13577), 1, - sym_raw_string_delimiter, - [289395] = 3, + anon_sym_RBRACE, + [289727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13579), 1, + ACTIONS(12620), 1, anon_sym_LPAREN2, - ACTIONS(13581), 1, - sym_raw_string_delimiter, - [289405] = 3, + STATE(7914), 1, + sym_condition_clause, + [289737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13583), 1, + ACTIONS(13577), 1, anon_sym_LPAREN2, - ACTIONS(13585), 1, + ACTIONS(13579), 1, sym_raw_string_delimiter, - [289415] = 3, + [289747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13587), 1, - anon_sym_LPAREN2, - ACTIONS(13589), 1, - sym_raw_string_delimiter, - [289425] = 3, + ACTIONS(8669), 1, + anon_sym_LBRACE, + STATE(4564), 1, + sym_field_declaration_list, + [289757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13591), 1, + ACTIONS(13581), 1, anon_sym_LPAREN2, - ACTIONS(13593), 1, + ACTIONS(13583), 1, sym_raw_string_delimiter, - [289435] = 3, + [289767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9849), 1, - anon_sym_LBRACE, - STATE(1630), 1, - sym_compound_statement, - [289445] = 2, + ACTIONS(13585), 1, + anon_sym_LPAREN2, + ACTIONS(13587), 1, + sym_raw_string_delimiter, + [289777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7975), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [289453] = 2, + ACTIONS(13589), 1, + anon_sym_LPAREN2, + ACTIONS(13591), 1, + sym_raw_string_delimiter, + [289787] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(13593), 1, + anon_sym_LPAREN2, ACTIONS(13595), 1, - sym_identifier, - [289460] = 2, + sym_raw_string_delimiter, + [289797] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13597), 1, - anon_sym_RPAREN, - [289467] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13599), 1, - anon_sym_DQUOTE, - [289474] = 2, + sym_raw_string_delimiter, + [289807] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13601), 1, - anon_sym_or, - [289481] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13603), 1, - sym_identifier, - [289488] = 2, + sym_raw_string_delimiter, + [289817] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13605), 1, - anon_sym_SEMI, - [289495] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13607), 1, - anon_sym_SEMI, - [289502] = 2, + sym_raw_string_delimiter, + [289827] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13609), 1, - anon_sym_RPAREN, - [289509] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11536), 1, - anon_sym_LBRACE, - [289516] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13611), 1, - anon_sym_RPAREN, - [289523] = 2, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(10262), 1, - aux_sym_preproc_include_token2, - [289530] = 2, + sym_raw_string_delimiter, + [289837] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13613), 1, - anon_sym_SEMI, - [289537] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13615), 1, - anon_sym_SEMI, - [289544] = 2, + sym_raw_string_delimiter, + [289847] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13617), 1, - aux_sym_preproc_if_token2, - [289551] = 2, - ACTIONS(3), 1, - sym_comment, + anon_sym_LPAREN2, ACTIONS(13619), 1, - anon_sym_RPAREN, - [289558] = 2, + sym_raw_string_delimiter, + [289857] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(13621), 1, + anon_sym_LPAREN2, + ACTIONS(13623), 1, sym_raw_string_delimiter, - [289565] = 2, - ACTIONS(10057), 1, + [289867] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13000), 1, - aux_sym_preproc_include_token2, - [289572] = 2, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(7430), 1, + sym_compound_statement, + [289877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13623), 1, - sym_identifier, - [289579] = 2, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(8539), 1, + sym_argument_list, + [289887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12337), 1, - anon_sym_SEMI, - [289586] = 2, + ACTIONS(297), 1, + anon_sym_LBRACE, + STATE(340), 1, + sym_compound_statement, + [289897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_and, - [289593] = 2, + ACTIONS(5240), 1, + anon_sym_LBRACE, + STATE(327), 1, + sym_declaration_list, + [289907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8193), 1, + anon_sym_LPAREN2, + STATE(8826), 1, + sym_argument_list, + [289917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5248), 1, + anon_sym_LBRACE, + STATE(614), 1, + sym_declaration_list, + [289927] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(13379), 1, + anon_sym_COMMA, ACTIONS(13625), 1, - anon_sym_SEMI, - [289600] = 2, + anon_sym_RBRACE, + [289937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13627), 1, + ACTIONS(11562), 1, anon_sym_SEMI, - [289607] = 2, + [289944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11732), 1, - anon_sym_LBRACE, - [289614] = 2, + ACTIONS(13627), 1, + anon_sym_SEMI, + [289951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13629), 1, - anon_sym_SEMI, - [289621] = 2, + sym_identifier, + [289958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13631), 1, - anon_sym_LPAREN2, - [289628] = 2, + anon_sym_RBRACK, + [289965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13633), 1, anon_sym_SEMI, - [289635] = 2, + [289972] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13635), 1, anon_sym_SEMI, - [289642] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_bitor, - [289649] = 2, + [289979] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13637), 1, - sym_auto, - [289656] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8711), 1, anon_sym_SEMI, - [289663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9053), 1, - anon_sym_COLON, - [289670] = 2, + [289986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12670), 1, - anon_sym_SEMI, - [289677] = 2, + ACTIONS(13477), 1, + anon_sym_RBRACE, + [289993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 1, - anon_sym_SEMI, - [289684] = 2, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(12672), 1, - aux_sym_preproc_include_token2, - [289691] = 2, + ACTIONS(13639), 1, + sym_identifier, + [290000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9129), 1, + ACTIONS(9141), 1, anon_sym_RPAREN, - [289698] = 2, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13639), 1, - aux_sym_preproc_include_token2, - [289705] = 2, + [290007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13641), 1, - anon_sym_DQUOTE, - [289712] = 2, + sym_identifier, + [290014] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13643), 1, anon_sym_RPAREN, - [289719] = 2, + [290021] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13645), 1, anon_sym_RPAREN, - [289726] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_xor, - [289733] = 2, + [290028] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13647), 1, - anon_sym_RPAREN, - [289740] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12339), 1, - anon_sym_SEMI, - [289747] = 2, + sym_raw_string_delimiter, + [290035] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13649), 1, - sym_identifier, - [289754] = 2, + anon_sym_SEMI, + [290042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13651), 1, - anon_sym_STAR, - [289761] = 2, + anon_sym_LPAREN2, + [290049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13653), 1, - anon_sym_RPAREN, - [289768] = 2, + sym_auto, + [290056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13655), 1, - aux_sym_preproc_if_token2, - [289775] = 2, + anon_sym_STAR_EQ, + [290063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13657), 1, anon_sym_SEMI, - [289782] = 2, + [290070] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13659), 1, anon_sym_SEMI, - [289789] = 2, + [290077] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13661), 1, - anon_sym_LPAREN2, - [289796] = 2, + anon_sym_SEMI, + [290084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13663), 1, - aux_sym_preproc_if_token2, - [289803] = 2, + ACTIONS(13655), 1, + anon_sym_SLASH_EQ, + [290091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13411), 1, - anon_sym_RBRACE, - [289810] = 2, + ACTIONS(13663), 1, + anon_sym_RPAREN, + [290098] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13665), 1, - anon_sym_private, - [289817] = 2, + anon_sym_RPAREN, + [290105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13413), 1, - anon_sym_RBRACE, - [289824] = 2, + ACTIONS(13667), 1, + sym_auto, + [290112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13667), 1, - anon_sym_SEMI, - [289831] = 2, + ACTIONS(4617), 1, + anon_sym_DOT_DOT_DOT, + [290119] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9009), 1, + anon_sym_COLON, + [290126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13669), 1, anon_sym_SEMI, - [289838] = 2, + [290133] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13671), 1, - aux_sym_preproc_if_token2, - [289845] = 2, - ACTIONS(10057), 1, + sym_identifier, + [290140] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13673), 1, - aux_sym_preproc_include_token2, - [289852] = 2, + anon_sym_RPAREN, + [290147] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13675), 1, - anon_sym_DQUOTE, - [289859] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [290154] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(13677), 1, - anon_sym_STAR, - [289866] = 2, + aux_sym_preproc_include_token2, + [290161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13679), 1, - anon_sym_RPAREN, - [289873] = 2, + sym_identifier, + [290168] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13681), 1, - sym_auto, - [289880] = 2, - ACTIONS(10057), 1, + anon_sym_LBRACE, + [290175] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13683), 1, - aux_sym_preproc_include_token2, - [289887] = 2, + sym_auto, + [290182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13685), 1, - anon_sym_SEMI, - [289894] = 2, + anon_sym_LPAREN2, + [290189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13687), 1, + ACTIONS(13655), 1, + anon_sym_PERCENT_EQ, + [290196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_PLUS_EQ, + [290203] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7188), 1, anon_sym_RPAREN, - [289901] = 2, + [290210] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13687), 1, + anon_sym_SEMI, + [290217] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_DASH_EQ, + [290224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_LT_LT_EQ, + [290231] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13689), 1, - sym_identifier, - [289908] = 2, + anon_sym_SEMI, + [290238] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_GT_GT_EQ, + [290245] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13459), 1, + anon_sym_RBRACE, + [290252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13691), 1, - sym_identifier, - [289915] = 2, + anon_sym_SEMI, + [290259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13693), 1, - anon_sym_DQUOTE, - [289922] = 2, + sym_identifier, + [290266] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13695), 1, anon_sym_SEMI, - [289929] = 2, - ACTIONS(10057), 1, + [290273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13493), 1, + anon_sym_RBRACE, + [290280] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13697), 1, - aux_sym_preproc_include_token2, - [289936] = 2, + sym_identifier, + [290287] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13699), 1, - anon_sym_DQUOTE, - [289943] = 2, + anon_sym_SEMI, + [290294] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13701), 1, - sym_auto, - [289950] = 2, + anon_sym_SEMI, + [290301] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13703), 1, - aux_sym_preproc_if_token2, - [289957] = 2, + anon_sym_DQUOTE, + [290308] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_AMP_EQ, + [290315] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_CARET_EQ, + [290322] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13705), 1, - anon_sym_RPAREN, - [289964] = 2, + anon_sym_LPAREN2, + [290329] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13707), 1, - anon_sym_SEMI, - [289971] = 2, + anon_sym_RBRACE, + [290336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13709), 1, - anon_sym_SEMI, - [289978] = 2, + sym_identifier, + [290343] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13711), 1, - sym_identifier, - [289985] = 2, + anon_sym_SEMI, + [290350] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13713), 1, anon_sym_RPAREN, - [289992] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4756), 1, - anon_sym_SEMI, - [289999] = 2, + [290357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13715), 1, - anon_sym_SEMI, - [290006] = 2, + anon_sym_RPAREN, + [290364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13717), 1, - anon_sym_RPAREN, - [290013] = 2, + aux_sym_preproc_if_token2, + [290371] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13719), 1, - anon_sym_SEMI, - [290020] = 2, + sym_identifier, + [290378] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13721), 1, - anon_sym_STAR, - [290027] = 2, + sym_identifier, + [290385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13723), 1, - anon_sym_RPAREN, - [290034] = 2, + anon_sym_DQUOTE, + [290392] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13725), 1, - anon_sym_DQUOTE, - [290041] = 2, + aux_sym_preproc_if_token2, + [290399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13727), 1, - aux_sym_preproc_if_token2, - [290048] = 2, + anon_sym_RPAREN, + [290406] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13729), 1, - anon_sym_COLON, - [290055] = 2, + sym_identifier, + [290413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7121), 1, - anon_sym_RPAREN, - [290062] = 2, + ACTIONS(13731), 1, + anon_sym_SEMI, + [290420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13731), 1, - sym_identifier, - [290069] = 2, + ACTIONS(9043), 1, + anon_sym_SEMI, + [290427] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11860), 1, + anon_sym_LBRACE, + [290434] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13733), 1, - anon_sym_RPAREN, - [290076] = 2, + anon_sym_SEMI, + [290441] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13735), 1, - anon_sym_RPAREN, - [290083] = 2, + anon_sym_DQUOTE, + [290448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9013), 1, - anon_sym_SEMI, - [290090] = 2, + ACTIONS(13737), 1, + sym_identifier, + [290455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13737), 1, - anon_sym_COLON, - [290097] = 2, + ACTIONS(13655), 1, + anon_sym_PIPE_EQ, + [290462] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13739), 1, - sym_auto, - [290104] = 2, + anon_sym_SEMI, + [290469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9019), 1, - anon_sym_RPAREN, - [290111] = 2, + ACTIONS(13655), 1, + anon_sym_DASH, + [290476] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13741), 1, - anon_sym_RPAREN, - [290118] = 2, + anon_sym_SEMI, + [290483] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13743), 1, - anon_sym_SEMI, - [290125] = 2, + anon_sym_DQUOTE, + [290490] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13745), 1, - aux_sym_preproc_if_token2, - [290132] = 2, + anon_sym_STAR, + [290497] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13747), 1, - anon_sym_RPAREN, - [290139] = 2, + sym_auto, + [290504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13749), 1, - sym_identifier, - [290146] = 2, + anon_sym_RPAREN, + [290511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13751), 1, - anon_sym_COLON, - [290153] = 2, + aux_sym_preproc_if_token2, + [290518] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13753), 1, - anon_sym_RPAREN, - [290160] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12702), 1, - anon_sym_LBRACE, - [290167] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_bitand, - [290174] = 2, + anon_sym_SEMI, + [290525] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13755), 1, - anon_sym_LPAREN2, - [290181] = 2, + anon_sym_SEMI, + [290532] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13757), 1, anon_sym_RPAREN, - [290188] = 2, + [290539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12349), 1, - anon_sym_SEMI, - [290195] = 2, + ACTIONS(13759), 1, + anon_sym_LPAREN2, + [290546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13759), 1, - anon_sym_DQUOTE, - [290202] = 2, + ACTIONS(4648), 1, + anon_sym_DOT_DOT_DOT, + [290553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13761), 1, - sym_identifier, - [290209] = 2, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(13763), 1, - aux_sym_preproc_include_token2, - [290216] = 2, + anon_sym_SEMI, + [290560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11542), 1, - anon_sym_LBRACE, - [290223] = 2, + ACTIONS(13763), 1, + sym_identifier, + [290567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13765), 1, - aux_sym_preproc_if_token2, - [290230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13767), 1, anon_sym_RPAREN, - [290237] = 2, + [290574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11584), 1, - anon_sym_LBRACE, - [290244] = 2, + ACTIONS(13767), 1, + sym_this, + [290581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13769), 1, - anon_sym_RPAREN, - [290251] = 2, + anon_sym_DQUOTE, + [290588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13771), 1, - anon_sym_RPAREN, - [290258] = 2, + anon_sym_SEMI, + [290595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12318), 1, + anon_sym_SEMI, + [290602] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4837), 1, + anon_sym_SEMI, + [290609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13773), 1, - sym_identifier, - [290265] = 2, + anon_sym_LPAREN2, + [290616] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13775), 1, - anon_sym_RPAREN, - [290272] = 2, + anon_sym_SEMI, + [290623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13777), 1, - anon_sym_SEMI, - [290279] = 2, + aux_sym_preproc_if_token2, + [290630] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13779), 1, anon_sym_RPAREN, - [290286] = 2, + [290637] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13781), 1, - anon_sym_SEMI, - [290293] = 2, + anon_sym_RPAREN, + [290644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13783), 1, - aux_sym_preproc_if_token2, - [290300] = 2, + sym_identifier, + [290651] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13785), 1, - anon_sym_RPAREN, - [290307] = 2, + anon_sym_LPAREN2, + [290658] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13787), 1, - anon_sym_SEMI, - [290314] = 2, - ACTIONS(10057), 1, + anon_sym_RPAREN, + [290665] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13789), 1, - aux_sym_preproc_include_token2, - [290321] = 2, + anon_sym_SEMI, + [290672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_PLUS, + [290679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9001), 1, - anon_sym_COLON, - [290328] = 2, + ACTIONS(13791), 1, + anon_sym_LPAREN2, + [290686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7029), 1, + ACTIONS(7043), 1, anon_sym_SEMI, - [290335] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13363), 1, - anon_sym_RBRACE, - [290342] = 2, + [290693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13791), 1, - anon_sym_RPAREN, - [290349] = 2, + ACTIONS(9095), 1, + anon_sym_SEMI, + [290700] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13793), 1, - anon_sym_DQUOTE, - [290356] = 2, + anon_sym_LBRACE, + [290707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - aux_sym_preproc_if_token2, - [290363] = 2, + ACTIONS(13655), 1, + anon_sym_or, + [290714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13797), 1, - anon_sym_DQUOTE, - [290370] = 2, + ACTIONS(13795), 1, + anon_sym_RPAREN, + [290721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_not_eq, - [290377] = 2, + ACTIONS(4651), 1, + anon_sym_DOT_DOT_DOT, + [290728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13351), 1, - anon_sym_COMMA, - [290384] = 2, + ACTIONS(13797), 1, + anon_sym_RPAREN, + [290735] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13799), 1, - anon_sym_SEMI, - [290391] = 2, + anon_sym_RPAREN, + [290742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13801), 1, sym_identifier, - [290398] = 2, + [290749] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13803), 1, - anon_sym_STAR, - [290405] = 2, + sym_auto, + [290756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13805), 1, - anon_sym_SEMI, - [290412] = 2, + ACTIONS(13655), 1, + anon_sym_and, + [290763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 1, + ACTIONS(13805), 1, anon_sym_RPAREN, - [290419] = 2, + [290770] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_bitor, + [290777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13807), 1, - anon_sym_SEMI, - [290426] = 2, + anon_sym_RPAREN, + [290784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13809), 1, anon_sym_RPAREN, - [290433] = 2, + [290791] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13811), 1, - sym_raw_string_delimiter, - [290440] = 2, + anon_sym_LPAREN2, + [290798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9109), 1, + anon_sym_COLON, + [290805] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_STAR, + [290812] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13813), 1, - anon_sym_DQUOTE, - [290447] = 2, + anon_sym_SEMI, + [290819] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13815), 1, - anon_sym_SEMI, - [290454] = 2, + anon_sym_LPAREN2, + [290826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13817), 1, - anon_sym_RPAREN, - [290461] = 2, + anon_sym_SEMI, + [290833] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13819), 1, anon_sym_SEMI, - [290468] = 2, + [290840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13821), 1, - anon_sym_SEMI, - [290475] = 2, + ACTIONS(11685), 1, + anon_sym_COMMA, + [290847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13823), 1, - anon_sym_RPAREN, - [290482] = 2, + ACTIONS(13821), 1, + anon_sym_DQUOTE, + [290854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_LT_LT, - [290489] = 2, + ACTIONS(9007), 1, + anon_sym_SEMI, + [290861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13825), 1, - sym_identifier, - [290496] = 2, + ACTIONS(7025), 1, + anon_sym_SEMI, + [290868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13827), 1, + ACTIONS(13823), 1, anon_sym_RPAREN, - [290503] = 2, + [290875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_DOT_STAR, - [290510] = 2, - ACTIONS(10057), 1, + ACTIONS(13825), 1, + sym_identifier, + [290882] = 2, + ACTIONS(10143), 1, sym_comment, - ACTIONS(13829), 1, + ACTIONS(10463), 1, aux_sym_preproc_include_token2, - [290517] = 2, + [290889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13831), 1, - anon_sym_SEMI, - [290524] = 2, + ACTIONS(13827), 1, + sym_raw_string_delimiter, + [290896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12351), 1, - anon_sym_SEMI, - [290531] = 2, + ACTIONS(13829), 1, + anon_sym_DQUOTE, + [290903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, + ACTIONS(13831), 1, anon_sym_RPAREN, - [290538] = 2, + [290910] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13833), 1, - anon_sym_SEMI, - [290545] = 2, + anon_sym_RPAREN, + [290917] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13835), 1, - sym_identifier, - [290552] = 2, + sym_raw_string_delimiter, + [290924] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13837), 1, - anon_sym_LPAREN2, - [290559] = 2, + anon_sym_SEMI, + [290931] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13839), 1, - anon_sym_RPAREN, - [290566] = 2, + anon_sym_DQUOTE, + [290938] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13841), 1, sym_identifier, - [290573] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13365), 1, - anon_sym_RBRACE, - [290580] = 2, + [290945] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13843), 1, anon_sym_SEMI, - [290587] = 2, + [290952] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13845), 1, - sym_identifier, - [290594] = 2, + anon_sym_SEMI, + [290959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13847), 1, - anon_sym_SEMI, - [290601] = 2, + ACTIONS(8945), 1, + anon_sym_RPAREN, + [290966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_GT_GT, - [290608] = 2, + ACTIONS(13847), 1, + anon_sym_SLASH, + [290973] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13849), 1, + anon_sym_SEMI, + [290980] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10611), 1, sym_identifier, - [290615] = 2, + [290987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13851), 1, - aux_sym_preproc_if_token2, - [290622] = 2, + ACTIONS(9067), 1, + anon_sym_COLON, + [290994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13853), 1, - anon_sym_STAR, - [290629] = 2, - ACTIONS(10057), 1, + ACTIONS(13851), 1, + aux_sym_preproc_if_token2, + [291001] = 2, + ACTIONS(10143), 1, sym_comment, - ACTIONS(13855), 1, + ACTIONS(10316), 1, aux_sym_preproc_include_token2, - [290636] = 2, + [291008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_DASH_GT_STAR, - [290643] = 2, + ACTIONS(9035), 1, + anon_sym_COLON, + [291015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13857), 1, + ACTIONS(9131), 1, anon_sym_RPAREN, - [290650] = 2, + [291022] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13853), 1, + aux_sym_preproc_include_token2, + [291029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11798), 1, - anon_sym_LBRACE, - [290657] = 2, + ACTIONS(13855), 1, + sym_identifier, + [291036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13857), 1, + sym_identifier, + [291043] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13859), 1, - anon_sym_SEMI, - [290664] = 2, - ACTIONS(10057), 1, + anon_sym_DQUOTE, + [291050] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13861), 1, - aux_sym_preproc_include_token2, - [290671] = 2, + aux_sym_preproc_if_token2, + [291057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10530), 1, - sym_identifier, - [290678] = 2, + ACTIONS(10497), 1, + anon_sym_LBRACE, + [291064] = 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(13655), 1, + anon_sym_xor, + [291071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9057), 1, - anon_sym_SEMI, - [290699] = 2, + ACTIONS(13863), 1, + sym_identifier, + [291078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13865), 1, - anon_sym_RPAREN, - [290706] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11963), 1, - anon_sym_COLON, - [290713] = 2, + aux_sym_preproc_if_token2, + [291085] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13867), 1, - anon_sym_SEMI, - [290720] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [291092] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(13869), 1, - anon_sym_DQUOTE, - [290727] = 2, + aux_sym_preproc_include_token2, + [291099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13871), 1, - anon_sym_LPAREN2, - [290734] = 2, + aux_sym_preproc_if_token2, + [291106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13873), 1, - anon_sym_SEMI, - [290741] = 2, + anon_sym_STAR, + [291113] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(13655), 1, + anon_sym_bitand, + [291120] = 2, + ACTIONS(10143), 1, + sym_comment, ACTIONS(13875), 1, - anon_sym_SEMI, - [290748] = 2, + aux_sym_preproc_include_token2, + [291127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13877), 1, aux_sym_preproc_if_token2, - [290755] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7037), 1, - anon_sym_SEMI, - [290762] = 2, + [291134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13879), 1, - anon_sym_DQUOTE, - [290769] = 2, + anon_sym_COLON, + [291141] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13881), 1, - anon_sym_DQUOTE, - [290776] = 2, + ACTIONS(7571), 1, + sym_identifier, + [291148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 1, - anon_sym_SEMI, - [290783] = 2, + ACTIONS(13881), 1, + aux_sym_preproc_if_token2, + [291155] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13883), 1, - aux_sym_preproc_if_token2, - [290790] = 2, + anon_sym_SEMI, + [291162] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13885), 1, - sym_identifier, - [290797] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9133), 1, - anon_sym_RPAREN, - [290804] = 2, + anon_sym_SEMI, + [291169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13887), 1, - sym_identifier, - [290811] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8794), 1, - anon_sym_RBRACE, - [290818] = 2, + aux_sym_preproc_if_token2, + [291176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13889), 1, anon_sym_SEMI, - [290825] = 2, + [291183] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13891), 1, - anon_sym_RPAREN, - [290832] = 2, + anon_sym_SEMI, + [291190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11546), 1, - anon_sym_SEMI, - [290839] = 2, + ACTIONS(4664), 1, + anon_sym_DOT_DOT_DOT, + [291197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13893), 1, - anon_sym_COLON, - [290846] = 2, + anon_sym_STAR, + [291204] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13895), 1, - anon_sym_DQUOTE, - [290853] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11588), 1, anon_sym_SEMI, - [290860] = 2, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(12745), 1, - aux_sym_preproc_include_token2, - [290867] = 2, + [291211] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13897), 1, - anon_sym_SEMI, - [290874] = 2, + anon_sym_LPAREN2, + [291218] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13899), 1, anon_sym_SEMI, - [290881] = 2, + [291225] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13901), 1, - aux_sym_preproc_if_token2, - [290888] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9015), 1, anon_sym_RPAREN, - [290895] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11158), 1, - anon_sym_RBRACE, - [290902] = 2, + [291232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13903), 1, - sym_identifier, - [290909] = 2, + anon_sym_EQ, + [291239] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13905), 1, - anon_sym_LBRACE, - [290916] = 2, + sym_identifier, + [291246] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13907), 1, - anon_sym_RPAREN, - [290923] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9011), 1, anon_sym_SEMI, - [290930] = 2, + [291253] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13909), 1, - aux_sym_preproc_if_token2, - [290937] = 2, + anon_sym_SEMI, + [291260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13911), 1, - anon_sym_RPAREN, - [290944] = 2, + anon_sym_LPAREN2, + [291267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13913), 1, - sym_raw_string_delimiter, - [290951] = 2, + anon_sym_DQUOTE, + [291274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13915), 1, - anon_sym_RBRACE, - [290958] = 2, + sym_identifier, + [291281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13917), 1, - anon_sym_RPAREN, - [290965] = 2, + aux_sym_preproc_if_token2, + [291288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13919), 1, - anon_sym_COLON, - [290972] = 2, + ACTIONS(11552), 1, + anon_sym_LBRACE, + [291295] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(10278), 1, + aux_sym_preproc_include_token2, + [291302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13921), 1, - anon_sym_SEMI, - [290979] = 2, + ACTIONS(13919), 1, + aux_sym_preproc_if_token2, + [291309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9154), 1, + ACTIONS(13921), 1, anon_sym_RPAREN, - [290986] = 2, + [291316] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13923), 1, - anon_sym_SEMI, - [290993] = 2, + anon_sym_DQUOTE, + [291323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6943), 1, - anon_sym_SEMI, - [291000] = 2, + ACTIONS(13655), 1, + anon_sym_PERCENT, + [291330] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13925), 1, - anon_sym_DQUOTE, - [291007] = 2, + anon_sym_SEMI, + [291337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11565), 1, + ACTIONS(9083), 1, anon_sym_SEMI, - [291014] = 2, - ACTIONS(10057), 1, + [291344] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13409), 1, + anon_sym_RBRACE, + [291351] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6464), 1, + sym_identifier, + [291358] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13575), 1, + anon_sym_RBRACE, + [291365] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(13927), 1, - aux_sym_preproc_include_token2, - [291021] = 2, + anon_sym_RPAREN, + [291372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13929), 1, anon_sym_RPAREN, - [291028] = 2, + [291379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13931), 1, - sym_identifier, - [291035] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9021), 1, - anon_sym_SEMI, - [291042] = 2, + sym_raw_string_delimiter, + [291386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13933), 1, - anon_sym_COLON, - [291049] = 2, + sym_identifier, + [291393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13935), 1, - anon_sym_LPAREN2, - [291056] = 2, + anon_sym_SEMI, + [291400] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13937), 1, - anon_sym_SEMI, - [291063] = 2, + anon_sym_RPAREN, + [291407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13939), 1, - aux_sym_preproc_if_token2, - [291070] = 2, + anon_sym_RPAREN, + [291414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13941), 1, - anon_sym_RPAREN, - [291077] = 2, + aux_sym_preproc_if_token2, + [291421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13943), 1, - anon_sym_STAR, - [291084] = 2, + anon_sym_RPAREN, + [291428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13945), 1, - anon_sym_RPAREN, - [291091] = 2, + sym_raw_string_delimiter, + [291435] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_not_eq, + [291442] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13947), 1, - anon_sym_RPAREN, - [291098] = 2, + anon_sym_SEMI, + [291449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13949), 1, - anon_sym_RPAREN, - [291105] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [291456] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(13951), 1, - anon_sym_SEMI, - [291112] = 2, + aux_sym_preproc_include_token2, + [291463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13953), 1, - aux_sym_preproc_if_token2, - [291119] = 2, + anon_sym_SEMI, + [291470] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13955), 1, anon_sym_SEMI, - [291126] = 2, - ACTIONS(3), 1, + [291477] = 2, + ACTIONS(10143), 1, sym_comment, - ACTIONS(13957), 1, - aux_sym_preproc_if_token2, - [291133] = 2, + ACTIONS(10411), 1, + aux_sym_preproc_include_token2, + [291484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10564), 1, - anon_sym_LBRACE, - [291140] = 2, + ACTIONS(13957), 1, + anon_sym_RPAREN, + [291491] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13959), 1, - sym_identifier, - [291147] = 2, + anon_sym_RPAREN, + [291498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13961), 1, - aux_sym_preproc_if_token2, - [291154] = 2, + anon_sym_RPAREN, + [291505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13963), 1, anon_sym_RPAREN, - [291161] = 2, + [291512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13965), 1, - anon_sym_SEMI, - [291168] = 2, + sym_identifier, + [291519] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_PIPE_PIPE, + [291526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13967), 1, - anon_sym_RPAREN, - [291175] = 2, + aux_sym_preproc_if_token2, + [291533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13969), 1, - anon_sym_LPAREN2, - [291182] = 2, + anon_sym_RPAREN, + [291540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13971), 1, - anon_sym_RPAREN, - [291189] = 2, + ACTIONS(11107), 1, + anon_sym_RBRACE, + [291547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13973), 1, + ACTIONS(13971), 1, anon_sym_RPAREN, - [291196] = 2, + [291554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11596), 1, + ACTIONS(13973), 1, anon_sym_SEMI, - [291203] = 2, + [291561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13975), 1, - anon_sym_RPAREN, - [291210] = 2, + anon_sym_STAR, + [291568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_DASH, - [291217] = 2, + ACTIONS(13655), 1, + anon_sym_AMP_AMP, + [291575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13977), 1, - sym_identifier, - [291224] = 2, + anon_sym_RPAREN, + [291582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13979), 1, - sym_this, - [291231] = 2, + sym_identifier, + [291589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13981), 1, - sym_identifier, - [291238] = 2, + anon_sym_COLON, + [291596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13983), 1, - aux_sym_preproc_if_token2, - [291245] = 2, + anon_sym_LPAREN2, + [291603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13985), 1, anon_sym_SEMI, - [291252] = 2, + [291610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8806), 1, + ACTIONS(13987), 1, anon_sym_SEMI, - [291259] = 2, + [291617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13987), 1, + ACTIONS(11556), 1, + anon_sym_SEMI, + [291624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9133), 1, anon_sym_RPAREN, - [291266] = 2, + [291631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13989), 1, - anon_sym_RPAREN, - [291273] = 2, + anon_sym_DQUOTE, + [291638] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13991), 1, - sym_identifier, - [291280] = 2, + anon_sym_RPAREN, + [291645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13993), 1, - anon_sym_RBRACK, - [291287] = 2, + anon_sym_RPAREN, + [291652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13995), 1, - anon_sym_DQUOTE, - [291294] = 2, + anon_sym_RPAREN, + [291659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(13997), 1, - anon_sym_DQUOTE, - [291301] = 2, + anon_sym_LPAREN2, + [291666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11714), 1, - anon_sym_EQ, - [291308] = 2, + ACTIONS(6967), 1, + anon_sym_SEMI, + [291673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_LT_LT_EQ, - [291315] = 2, + ACTIONS(13999), 1, + sym_identifier, + [291680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13999), 1, - anon_sym_COMMA, - [291322] = 2, + ACTIONS(11148), 1, + anon_sym_RBRACE, + [291687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14001), 1, - aux_sym_preproc_if_token2, - [291329] = 2, + anon_sym_RPAREN, + [291694] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8947), 1, + anon_sym_SEMI, + [291701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14003), 1, anon_sym_DQUOTE, - [291336] = 2, + [291708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14005), 1, - anon_sym_LPAREN2, - [291343] = 2, + ACTIONS(11607), 1, + anon_sym_SEMI, + [291715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14007), 1, + ACTIONS(14005), 1, sym_identifier, - [291350] = 2, + [291722] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(14007), 1, + aux_sym_preproc_include_token2, + [291729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14009), 1, - anon_sym_SEMI, - [291357] = 2, + anon_sym_DQUOTE, + [291736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14011), 1, - anon_sym_RPAREN, - [291364] = 2, + sym_identifier, + [291743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14013), 1, anon_sym_SEMI, - [291371] = 2, + [291750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14015), 1, anon_sym_RPAREN, - [291378] = 2, + [291757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14017), 1, - anon_sym_RPAREN, - [291385] = 2, + anon_sym_COLON, + [291764] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13401), 1, + anon_sym_RBRACE, + [291771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14019), 1, - sym_raw_string_delimiter, - [291392] = 2, + anon_sym_RPAREN, + [291778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14021), 1, - anon_sym_COLON, - [291399] = 2, + anon_sym_RPAREN, + [291785] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14023), 1, - 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, + [291792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_PLUS, - [291427] = 2, + ACTIONS(14025), 1, + anon_sym_RPAREN, + [291799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14025), 1, + ACTIONS(12186), 1, anon_sym_SEMI, - [291434] = 2, + [291806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14027), 1, - anon_sym_COLON, - [291441] = 2, + ACTIONS(9288), 1, + anon_sym_RPAREN, + [291813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8804), 1, - anon_sym_RPAREN, - [291448] = 2, + ACTIONS(14027), 1, + sym_identifier, + [291820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14029), 1, - anon_sym_STAR, - [291455] = 2, + anon_sym_SEMI, + [291827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14031), 1, sym_identifier, - [291462] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_STAR, - [291469] = 2, + [291834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14033), 1, - aux_sym_preproc_if_token2, - [291476] = 2, + sym_raw_string_content, + [291841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14035), 1, anon_sym_SEMI, - [291483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_GT_EQ, - [291490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7891), 1, - sym_identifier, - [291497] = 2, + [291848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14037), 1, - anon_sym_SEMI, - [291504] = 2, + anon_sym_RPAREN, + [291855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14039), 1, - anon_sym_RPAREN, - [291511] = 2, + aux_sym_preproc_if_token2, + [291862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14041), 1, - anon_sym_SEMI, - [291518] = 2, + anon_sym_RPAREN, + [291869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14043), 1, - anon_sym_SEMI, - [291525] = 2, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(14045), 1, - aux_sym_preproc_include_token2, - [291532] = 2, + sym_raw_string_delimiter, + [291876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9073), 1, + ACTIONS(14045), 1, anon_sym_RPAREN, - [291539] = 2, + [291883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14047), 1, - anon_sym_LPAREN2, - [291546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_EQ, - [291553] = 2, + sym_identifier, + [291890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14049), 1, - anon_sym_RPAREN, - [291560] = 2, + sym_identifier, + [291897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14051), 1, - anon_sym_COLON, - [291567] = 2, + aux_sym_preproc_if_token2, + [291904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14053), 1, - anon_sym_RPAREN, - [291574] = 2, - ACTIONS(5479), 1, - aux_sym_preproc_include_token2, - ACTIONS(10057), 1, - sym_comment, - [291581] = 2, + aux_sym_preproc_if_token2, + [291911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14055), 1, - anon_sym_RPAREN, - [291588] = 2, + aux_sym_preproc_if_token2, + [291918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14057), 1, - anon_sym_SEMI, - [291595] = 2, + anon_sym_RPAREN, + [291925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14059), 1, - anon_sym_RPAREN, - [291602] = 2, + anon_sym_SEMI, + [291932] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14061), 1, - anon_sym_RPAREN, - [291609] = 2, + anon_sym_STAR, + [291939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14063), 1, - anon_sym_RPAREN, - [291616] = 2, + anon_sym_LPAREN2, + [291946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14065), 1, - anon_sym_RPAREN, - [291623] = 2, + anon_sym_LPAREN2, + [291953] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7916), 1, + sym_identifier, + [291960] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14067), 1, - anon_sym_RPAREN, - [291630] = 2, + sym_identifier, + [291967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14069), 1, - anon_sym_RPAREN, - [291637] = 2, + aux_sym_preproc_if_token2, + [291974] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14071), 1, - anon_sym_DQUOTE, - [291644] = 2, + anon_sym_RPAREN, + [291981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14073), 1, - anon_sym_DQUOTE, - [291651] = 2, + ACTIONS(12182), 1, + anon_sym_SEMI, + [291988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14075), 1, - anon_sym_RPAREN, - [291658] = 2, + ACTIONS(14073), 1, + anon_sym_SEMI, + [291995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11680), 1, - anon_sym_COMMA, - [291665] = 2, + ACTIONS(14075), 1, + anon_sym_SEMI, + [292002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14077), 1, - anon_sym_RPAREN, - [291672] = 2, + anon_sym_SEMI, + [292009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14079), 1, - sym_identifier, - [291679] = 2, - ACTIONS(10057), 1, + anon_sym_SEMI, + [292016] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14081), 1, - aux_sym_preproc_include_token2, - [291686] = 2, + sym_identifier, + [292023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_COMMA, - [291693] = 2, + ACTIONS(14083), 1, + anon_sym_LPAREN2, + [292030] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14083), 1, - sym_identifier, - [291700] = 2, + ACTIONS(7039), 1, + anon_sym_SEMI, + [292037] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14085), 1, - anon_sym_RPAREN, - [291707] = 2, + sym_identifier, + [292044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14087), 1, - sym_raw_string_delimiter, - [291714] = 2, + anon_sym_SEMI, + [292051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14089), 1, - anon_sym_SEMI, - [291721] = 2, + anon_sym_RPAREN, + [292058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5474), 1, + anon_sym_COLON_COLON, + [292065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14091), 1, - anon_sym_STAR, - [291728] = 2, + anon_sym_SEMI, + [292072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14093), 1, - anon_sym_LPAREN2, - [291735] = 2, + anon_sym_RPAREN, + [292079] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_DOT_STAR, + [292086] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(12902), 1, + aux_sym_preproc_include_token2, + [292093] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14095), 1, - anon_sym_LPAREN2, - [291742] = 2, + anon_sym_RPAREN, + [292100] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, + anon_sym_COMMA, + [292107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14097), 1, - anon_sym_STAR, - [291749] = 2, + anon_sym_DQUOTE, + [292114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14099), 1, - anon_sym_RPAREN, - [291756] = 2, + anon_sym_SEMI, + [292121] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13087), 1, + anon_sym_SEMI, + [292128] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14101), 1, - sym_identifier, - [291763] = 2, + anon_sym_SEMI, + [292135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14103), 1, - anon_sym_RPAREN, - [291770] = 2, + anon_sym_SEMI, + [292142] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14105), 1, - anon_sym_RBRACE, - [291777] = 2, + anon_sym_RPAREN, + [292149] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14107), 1, - anon_sym_RPAREN, - [291784] = 2, + anon_sym_DQUOTE, + [292156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14109), 1, - anon_sym_SLASH, - [291791] = 2, + anon_sym_RPAREN, + [292163] = 2, + ACTIONS(5504), 1, + aux_sym_preproc_include_token2, + ACTIONS(10143), 1, + sym_comment, + [292170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14111), 1, - anon_sym_LPAREN2, - [291798] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [292177] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(14113), 1, - anon_sym_RPAREN, - [291805] = 2, + aux_sym_preproc_include_token2, + [292184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14115), 1, anon_sym_RPAREN, - [291812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7003), 1, - anon_sym_SEMI, - [291819] = 2, + [292191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14117), 1, - anon_sym_RPAREN, - [291826] = 2, + sym_raw_string_delimiter, + [292198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14119), 1, - anon_sym_SEMI, - [291833] = 2, + sym_identifier, + [292205] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9121), 1, + anon_sym_RPAREN, + [292212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14121), 1, - anon_sym_LPAREN2, - [291840] = 2, + anon_sym_SEMI, + [292219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14123), 1, - sym_raw_string_delimiter, - [291847] = 2, + anon_sym_SEMI, + [292226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14125), 1, - anon_sym_RPAREN, - [291854] = 2, + anon_sym_STAR, + [292233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14127), 1, - anon_sym_RPAREN, - [291861] = 2, + anon_sym_DQUOTE, + [292240] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14129), 1, - anon_sym_STAR, - [291868] = 2, + anon_sym_while, + [292247] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11158), 1, + anon_sym_RBRACE, + [292254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14131), 1, anon_sym_RPAREN, - [291875] = 2, + [292261] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14133), 1, - sym_identifier, - [291882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11612), 1, - anon_sym_SEMI, - [291889] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9091), 1, - anon_sym_SEMI, - [291896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12388), 1, - anon_sym_SEMI, - [291903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_PERCENT, - [291910] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [292268] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(14135), 1, - anon_sym_LPAREN2, - [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, + aux_sym_preproc_include_token2, + [292275] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14137), 1, - anon_sym_RPAREN, - [291938] = 2, + anon_sym_LPAREN2, + [292282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14139), 1, - sym_identifier, - [291945] = 2, + aux_sym_preproc_if_token2, + [292289] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4624), 1, + anon_sym_DOT_DOT_DOT, + [292296] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14141), 1, - sym_raw_string_delimiter, - [291952] = 2, + anon_sym_RPAREN, + [292303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14143), 1, anon_sym_RPAREN, - [291959] = 2, + [292310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14145), 1, - anon_sym_SEMI, - [291966] = 2, + sym_identifier, + [292317] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10725), 1, + anon_sym_LBRACE, + [292324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14147), 1, - sym_identifier, - [291973] = 2, + sym_raw_string_delimiter, + [292331] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14149), 1, - anon_sym_SEMI, - [291980] = 2, + anon_sym_RPAREN, + [292338] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14151), 1, - anon_sym_LPAREN2, - [291987] = 2, + anon_sym_SEMI, + [292345] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14153), 1, - anon_sym_RPAREN, - [291994] = 2, + anon_sym_STAR, + [292352] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14155), 1, - sym_raw_string_delimiter, - [292001] = 2, + anon_sym_SEMI, + [292359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14157), 1, aux_sym_preproc_if_token2, - [292008] = 2, + [292366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14159), 1, - anon_sym_SEMI, - [292015] = 2, + anon_sym_DQUOTE, + [292373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14161), 1, - anon_sym_RPAREN, - [292022] = 2, + anon_sym_SEMI, + [292380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14163), 1, - sym_raw_string_delimiter, - [292029] = 2, + sym_identifier, + [292387] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14165), 1, - aux_sym_preproc_if_token2, - [292036] = 2, + anon_sym_LPAREN2, + [292394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11152), 1, - anon_sym_RBRACE, - [292043] = 2, + ACTIONS(14167), 1, + anon_sym_LPAREN2, + [292401] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14167), 1, - anon_sym_RPAREN, - [292050] = 2, + ACTIONS(12395), 1, + anon_sym_SEMI, + [292408] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13110), 1, + anon_sym_LBRACE, + [292415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14169), 1, - sym_raw_string_delimiter, - [292057] = 2, + anon_sym_RPAREN, + [292422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14171), 1, - anon_sym_RPAREN, - [292064] = 2, + anon_sym_SEMI, + [292429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14173), 1, sym_raw_string_delimiter, - [292071] = 2, + [292436] = 2, + ACTIONS(5511), 1, + aux_sym_preproc_include_token2, + ACTIONS(10143), 1, + sym_comment, + [292443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14175), 1, - anon_sym_RPAREN, - [292078] = 2, + aux_sym_preproc_if_token2, + [292450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14177), 1, - sym_raw_string_delimiter, - [292085] = 2, + anon_sym_LPAREN2, + [292457] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14179), 1, anon_sym_RPAREN, - [292092] = 2, + [292464] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14181), 1, - sym_raw_string_delimiter, - [292099] = 2, + anon_sym_LPAREN2, + [292471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14183), 1, anon_sym_RPAREN, - [292106] = 2, + [292478] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14185), 1, sym_raw_string_delimiter, - [292113] = 2, - ACTIONS(3), 1, + [292485] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(14187), 1, - anon_sym_RPAREN, - [292120] = 2, + aux_sym_preproc_include_token2, + [292492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14189), 1, - sym_raw_string_delimiter, - [292127] = 2, + anon_sym_SEMI, + [292499] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14191), 1, - aux_sym_preproc_if_token2, - [292134] = 2, + anon_sym_RPAREN, + [292506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14193), 1, - aux_sym_preproc_if_token2, - [292141] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9239), 1, - anon_sym_RPAREN, - [292148] = 2, + sym_raw_string_delimiter, + [292513] = 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, + aux_sym_preproc_if_token2, + [292520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14197), 1, - anon_sym_LPAREN2, - [292169] = 2, + anon_sym_SEMI, + [292527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14199), 1, - anon_sym_LPAREN2, - [292176] = 2, + anon_sym_RPAREN, + [292534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14201), 1, - anon_sym_LPAREN2, - [292183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 1, - anon_sym_SEMI, - [292190] = 2, + sym_raw_string_delimiter, + [292541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14203), 1, - anon_sym_RBRACE, - [292197] = 2, + anon_sym_RPAREN, + [292548] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14205), 1, - anon_sym_LPAREN2, - [292204] = 2, + sym_raw_string_delimiter, + [292555] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14207), 1, - aux_sym_preproc_if_token2, - [292211] = 2, + anon_sym_RPAREN, + [292562] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14209), 1, - anon_sym_LPAREN2, - [292218] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11142), 1, - anon_sym_RBRACE, - [292225] = 2, + sym_raw_string_delimiter, + [292569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14211), 1, - anon_sym_SEMI, - [292232] = 2, + anon_sym_RPAREN, + [292576] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14213), 1, - anon_sym_SEMI, - [292239] = 2, + sym_raw_string_delimiter, + [292583] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14215), 1, anon_sym_RPAREN, - [292246] = 2, + [292590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14217), 1, - anon_sym_SEMI, - [292253] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9089), 1, - anon_sym_SEMI, - [292260] = 2, + sym_raw_string_delimiter, + [292597] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14219), 1, - sym_auto, - [292267] = 2, + anon_sym_RPAREN, + [292604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14221), 1, - anon_sym_SEMI, - [292274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9183), 1, - anon_sym_RPAREN, - [292281] = 2, + sym_raw_string_delimiter, + [292611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14223), 1, - anon_sym_DQUOTE, - [292288] = 2, + aux_sym_preproc_if_token2, + [292618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14225), 1, - anon_sym_SEMI, - [292295] = 2, + ACTIONS(13485), 1, + anon_sym_RBRACE, + [292625] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9081), 1, - anon_sym_SEMI, - [292302] = 2, + ACTIONS(14225), 1, + anon_sym_RBRACE, + [292632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14227), 1, - anon_sym_RPAREN, - [292309] = 2, + anon_sym_LPAREN2, + [292639] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14229), 1, anon_sym_RPAREN, - [292316] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13353), 1, - anon_sym_RBRACE, - [292323] = 2, + [292646] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14231), 1, - anon_sym_while, - [292330] = 2, + anon_sym_LPAREN2, + [292653] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14233), 1, - anon_sym_LBRACE, - [292337] = 2, + anon_sym_LPAREN2, + [292660] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14235), 1, anon_sym_LPAREN2, - [292344] = 2, + [292667] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14237), 1, - anon_sym_SEMI, - [292351] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_PIPE_PIPE, - [292358] = 2, + aux_sym_preproc_if_token2, + [292674] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14239), 1, - anon_sym_SEMI, - [292365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_AMP_AMP, - [292372] = 2, + anon_sym_STAR, + [292681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14241), 1, - anon_sym_RPAREN, - [292379] = 2, + anon_sym_LPAREN2, + [292688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14243), 1, - anon_sym_EQ, - [292386] = 2, + anon_sym_RPAREN, + [292695] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14245), 1, - sym_raw_string_content, - [292393] = 2, + anon_sym_LPAREN2, + [292702] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(14247), 1, + aux_sym_preproc_include_token2, + [292709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13107), 1, + ACTIONS(11566), 1, anon_sym_LBRACE, - [292400] = 2, + [292716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11116), 1, - anon_sym_RBRACE, - [292407] = 2, + ACTIONS(14249), 1, + anon_sym_LPAREN2, + [292723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - sym_identifier, - [292414] = 2, + ACTIONS(14251), 1, + anon_sym_RPAREN, + [292730] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14249), 1, - anon_sym_STAR, - [292421] = 2, + ACTIONS(9284), 1, + anon_sym_RPAREN, + [292737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14251), 1, - anon_sym_SEMI, - [292428] = 2, + ACTIONS(14253), 1, + anon_sym_RPAREN, + [292744] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14253), 1, - sym_identifier, - [292435] = 2, + ACTIONS(9211), 1, + anon_sym_RPAREN, + [292751] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14255), 1, - anon_sym_SEMI, - [292442] = 2, + ACTIONS(8763), 1, + anon_sym_RBRACE, + [292758] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14257), 1, - anon_sym_SEMI, - [292449] = 2, + ACTIONS(8737), 1, + anon_sym_RBRACE, + [292765] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14259), 1, + ACTIONS(14255), 1, anon_sym_RPAREN, - [292456] = 2, + [292772] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(14257), 1, + aux_sym_preproc_include_token2, + [292779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10532), 1, - anon_sym_LBRACE, - [292463] = 2, + ACTIONS(14259), 1, + anon_sym_SEMI, + [292786] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14261), 1, - anon_sym_SEMI, - [292470] = 2, + anon_sym_DQUOTE, + [292793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14263), 1, + ACTIONS(11112), 1, anon_sym_RBRACE, - [292477] = 2, + [292800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14265), 1, - sym_identifier, - [292484] = 2, + ACTIONS(14263), 1, + anon_sym_DQUOTE, + [292807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12824), 1, - anon_sym_RPAREN, - [292491] = 2, + ACTIONS(14265), 1, + anon_sym_while, + [292814] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14267), 1, anon_sym_SEMI, - [292498] = 2, + [292821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14269), 1, - sym_identifier, - [292505] = 2, + anon_sym_LPAREN2, + [292828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14271), 1, - anon_sym_RPAREN, - [292512] = 2, + ACTIONS(13655), 1, + anon_sym_PIPE, + [292835] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14273), 1, - anon_sym_COMMA, - [292519] = 2, + ACTIONS(14271), 1, + anon_sym_SEMI, + [292842] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14275), 1, + ACTIONS(14273), 1, anon_sym_SEMI, - [292526] = 2, + [292849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4739), 1, - anon_sym_SEMI, - [292533] = 2, + ACTIONS(14275), 1, + sym_auto, + [292856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14277), 1, - anon_sym_SEMI, - [292540] = 2, + aux_sym_preproc_if_token2, + [292863] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14279), 1, - aux_sym_preproc_if_token2, - [292547] = 2, + anon_sym_EQ, + [292870] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14281), 1, - sym_auto, - [292554] = 2, + sym_raw_string_content, + [292877] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14283), 1, - aux_sym_preproc_if_token2, - [292561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14285), 1, - anon_sym_SEMI, - [292568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9029), 1, anon_sym_COLON, - [292575] = 2, + [292884] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9079), 1, - anon_sym_COLON, - [292582] = 2, + ACTIONS(14285), 1, + anon_sym_RBRACE, + [292891] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14287), 1, - aux_sym_preproc_if_token2, - [292589] = 2, + anon_sym_DQUOTE, + [292898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14289), 1, - aux_sym_preproc_if_token2, - [292596] = 2, + anon_sym_STAR, + [292905] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14291), 1, anon_sym_SEMI, - [292603] = 2, + [292912] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14293), 1, - anon_sym_STAR, - [292610] = 2, + anon_sym_RPAREN, + [292919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9039), 1, - anon_sym_SEMI, - [292617] = 2, - ACTIONS(10057), 1, - sym_comment, ACTIONS(14295), 1, - aux_sym_preproc_include_token2, - [292624] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14297), 1, anon_sym_SEMI, - [292631] = 2, + [292926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, - sym_identifier, - [292638] = 2, + ACTIONS(14297), 1, + anon_sym_RPAREN, + [292933] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14299), 1, - sym_auto, - [292645] = 2, + anon_sym_RPAREN, + [292940] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14301), 1, - sym_identifier, - [292652] = 2, + anon_sym_SEMI, + [292947] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14303), 1, - anon_sym_RPAREN, - [292659] = 2, + anon_sym_SEMI, + [292954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14305), 1, - anon_sym_RPAREN, - [292666] = 2, + anon_sym_STAR, + [292961] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14307), 1, - sym_identifier, - [292673] = 2, + ACTIONS(11588), 1, + anon_sym_SEMI, + [292968] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9035), 1, - anon_sym_RPAREN, - [292680] = 2, + ACTIONS(14307), 1, + anon_sym_SEMI, + [292975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14309), 1, - aux_sym_preproc_if_token2, - [292687] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8814), 1, - anon_sym_RBRACE, - [292694] = 2, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(10326), 1, - aux_sym_preproc_include_token2, - [292701] = 2, + ts_builtin_sym_end, + [292982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14311), 1, - anon_sym_SEMI, - [292708] = 2, + sym_identifier, + [292989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14313), 1, - anon_sym_COLON, - [292715] = 2, + anon_sym_RPAREN, + [292996] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14315), 1, - anon_sym_SEMI, - [292722] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_GT_GT_EQ, - [292729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9178), 1, - anon_sym_RPAREN, - [292736] = 2, + anon_sym_COMMA, + [293003] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14317), 1, - aux_sym_preproc_if_token2, - [292743] = 2, + anon_sym_RPAREN, + [293010] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14319), 1, anon_sym_RPAREN, - [292750] = 2, + [293017] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14321), 1, - anon_sym_COLON, - [292757] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13487), 1, - anon_sym_RBRACE, - [292764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9093), 1, - anon_sym_COLON, - [292771] = 2, + anon_sym_RPAREN, + [293024] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14323), 1, - anon_sym_SEMI, - [292778] = 2, + anon_sym_RPAREN, + [293031] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14325), 1, - anon_sym_RPAREN, - [292785] = 2, + anon_sym_SEMI, + [293038] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14327), 1, - anon_sym_SEMI, - [292792] = 2, + anon_sym_COLON, + [293045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10738), 1, + ACTIONS(10619), 1, anon_sym_LBRACE, - [292799] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14329), 1, - anon_sym_RPAREN, - [292806] = 2, + [293052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14331), 1, - anon_sym_LPAREN2, - [292813] = 2, + ACTIONS(9077), 1, + anon_sym_COLON, + [293059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14333), 1, + ACTIONS(14329), 1, anon_sym_SEMI, - [292820] = 2, + [293066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9023), 1, + ACTIONS(14331), 1, anon_sym_SEMI, - [292827] = 2, + [293073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7832), 1, - sym_identifier, - [292834] = 2, + ACTIONS(14333), 1, + anon_sym_SEMI, + [293080] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14335), 1, anon_sym_SEMI, - [292841] = 2, + [293087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14337), 1, - anon_sym_SEMI, - [292848] = 2, + anon_sym_RPAREN, + [293094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14339), 1, - anon_sym_SEMI, - [292855] = 2, + anon_sym_RPAREN, + [293101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14341), 1, anon_sym_SEMI, - [292862] = 2, + [293108] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14343), 1, - anon_sym_DQUOTE, - [292869] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12390), 1, anon_sym_SEMI, - [292876] = 2, - ACTIONS(10057), 1, + [293115] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14345), 1, - aux_sym_preproc_include_token2, - [292883] = 2, + aux_sym_preproc_if_token2, + [293122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14347), 1, - anon_sym_RPAREN, - [292890] = 2, + sym_identifier, + [293129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8951), 1, - anon_sym_RPAREN, - [292897] = 2, + ACTIONS(9023), 1, + anon_sym_SEMI, + [293136] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14349), 1, - anon_sym_LBRACE, - [292904] = 2, + anon_sym_RPAREN, + [293143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14351), 1, - anon_sym_RPAREN, - [292911] = 2, + ACTIONS(4627), 1, + anon_sym_DOT_DOT_DOT, + [293150] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7534), 1, - sym_identifier, - [292918] = 2, + ACTIONS(14351), 1, + anon_sym_SEMI, + [293157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14353), 1, anon_sym_SEMI, - [292925] = 2, + [293164] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14355), 1, - anon_sym_STAR, - [292932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12400), 1, - anon_sym_SEMI, - [292939] = 2, + anon_sym_RPAREN, + [293171] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14357), 1, - anon_sym_DQUOTE, - [292946] = 2, + anon_sym_RPAREN, + [293178] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14359), 1, - sym_identifier, - [292953] = 2, + anon_sym_SEMI, + [293185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14361), 1, + ACTIONS(13529), 1, anon_sym_RBRACE, - [292960] = 2, - ACTIONS(10057), 1, + [293192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14361), 1, + anon_sym_COLON, + [293199] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14363), 1, - aux_sym_preproc_include_token2, - [292967] = 2, + anon_sym_EQ, + [293206] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14365), 1, - aux_sym_preproc_if_token2, - [292974] = 2, + anon_sym_SEMI, + [293213] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14367), 1, - anon_sym_SEMI, - [292981] = 2, + aux_sym_preproc_if_token2, + [293220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14369), 1, - anon_sym_RPAREN, - [292988] = 2, - ACTIONS(10057), 1, - sym_comment, - ACTIONS(14371), 1, - aux_sym_preproc_include_token2, - [292995] = 2, + ACTIONS(12231), 1, + anon_sym_SEMI, + [293227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7033), 1, + ACTIONS(14369), 1, anon_sym_SEMI, - [293002] = 2, + [293234] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14373), 1, - aux_sym_preproc_if_token2, - [293009] = 2, + ACTIONS(4885), 1, + anon_sym_SEMI, + [293241] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14375), 1, - anon_sym_RPAREN, - [293016] = 2, + ACTIONS(14371), 1, + anon_sym_SEMI, + [293248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14377), 1, + ACTIONS(14373), 1, anon_sym_RPAREN, - [293023] = 2, + [293255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14379), 1, - sym_identifier, - [293030] = 2, + ACTIONS(14375), 1, + sym_auto, + [293262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14381), 1, - sym_identifier, - [293037] = 2, + ACTIONS(14377), 1, + anon_sym_LPAREN2, + [293269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12402), 1, - anon_sym_SEMI, - [293044] = 2, + ACTIONS(8985), 1, + anon_sym_COLON, + [293276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14383), 1, - aux_sym_preproc_if_token2, - [293051] = 2, + ACTIONS(14379), 1, + anon_sym_DQUOTE, + [293283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_PIPE, - [293058] = 2, + ACTIONS(4630), 1, + anon_sym_DOT_DOT_DOT, + [293290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - [293065] = 2, + ACTIONS(14381), 1, + anon_sym_DQUOTE, + [293297] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(14383), 1, + aux_sym_preproc_include_token2, + [293304] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14385), 1, - anon_sym_DQUOTE, - [293072] = 2, + anon_sym_SEMI, + [293311] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14387), 1, - anon_sym_DQUOTE, - [293079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9225), 1, - anon_sym_RPAREN, - [293086] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [293318] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(14389), 1, - anon_sym_RPAREN, - [293093] = 2, + aux_sym_preproc_include_token2, + [293325] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14391), 1, sym_identifier, - [293100] = 2, + [293332] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13186), 1, + aux_sym_preproc_include_token2, + [293339] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14393), 1, - sym_raw_string_content, - [293107] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [293346] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(14395), 1, - anon_sym_RPAREN, - [293114] = 2, + aux_sym_preproc_include_token2, + [293353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7562), 1, - sym_identifier, - [293121] = 2, + ACTIONS(14397), 1, + anon_sym_RPAREN, + [293360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14397), 1, - anon_sym_LPAREN2, - [293128] = 2, + ACTIONS(9101), 1, + anon_sym_RPAREN, + [293367] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14399), 1, - anon_sym_SEMI, - [293135] = 2, + anon_sym_RPAREN, + [293374] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14401), 1, - 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, + anon_sym_RPAREN, + [293381] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(14403), 1, - aux_sym_preproc_if_token2, - [293156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9071), 1, - anon_sym_RPAREN, - [293163] = 2, + aux_sym_preproc_include_token2, + [293388] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14405), 1, - anon_sym_RPAREN, - [293170] = 2, + anon_sym_LBRACE, + [293395] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14407), 1, - anon_sym_RPAREN, - [293177] = 2, + anon_sym_COLON, + [293402] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14409), 1, - anon_sym_SEMI, - [293184] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_STAR_EQ, - [293191] = 2, + anon_sym_RPAREN, + [293409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, - anon_sym_LBRACE, - [293198] = 2, + ACTIONS(14411), 1, + anon_sym_RPAREN, + [293416] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14411), 1, + ACTIONS(9021), 1, anon_sym_SEMI, - [293205] = 2, + [293423] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14413), 1, - sym_identifier, - [293212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14415), 1, - aux_sym_preproc_if_token2, - [293219] = 2, + anon_sym_SEMI, + [293430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9282), 1, + ACTIONS(7281), 1, anon_sym_RPAREN, - [293226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8713), 1, - anon_sym_RBRACE, - [293233] = 2, + [293437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_CARET, - [293240] = 2, + ACTIONS(14415), 1, + anon_sym_DQUOTE, + [293444] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14417), 1, - anon_sym_SEMI, - [293247] = 2, + aux_sym_preproc_if_token2, + [293451] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14419), 1, - anon_sym_SEMI, - [293254] = 2, + anon_sym_RPAREN, + [293458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4633), 1, + anon_sym_DOT_DOT_DOT, + [293465] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14421), 1, - anon_sym_STAR, - [293261] = 2, + anon_sym_RPAREN, + [293472] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14423), 1, - anon_sym_SEMI, - [293268] = 2, + aux_sym_preproc_if_token2, + [293479] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14425), 1, - anon_sym_SEMI, - [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, + anon_sym_RPAREN, + [293486] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14427), 1, - aux_sym_preproc_if_token2, - [293296] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 1, - anon_sym_COLON, - [293303] = 2, + anon_sym_RPAREN, + [293493] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14429), 1, - anon_sym_SEMI, - [293310] = 2, + anon_sym_STAR, + [293500] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14431), 1, anon_sym_SEMI, - [293317] = 2, - ACTIONS(10057), 1, + [293507] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14433), 1, - aux_sym_preproc_include_token2, - [293324] = 2, + anon_sym_RPAREN, + [293514] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14435), 1, anon_sym_RPAREN, - [293331] = 2, + [293521] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14437), 1, anon_sym_SEMI, - [293338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9223), 1, - anon_sym_RPAREN, - [293345] = 2, + [293528] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14439), 1, sym_identifier, - [293352] = 2, + [293535] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14441), 1, + ACTIONS(9290), 1, anon_sym_RPAREN, - [293359] = 2, + [293542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14441), 1, + sym_identifier, + [293549] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14443), 1, - anon_sym_DQUOTE, - [293366] = 2, + sym_identifier, + [293556] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(13015), 1, + aux_sym_preproc_include_token2, + [293563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14445), 1, + ACTIONS(11568), 1, anon_sym_SEMI, - [293373] = 2, + [293570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14445), 1, + sym_identifier, + [293577] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14447), 1, - aux_sym_preproc_if_token2, - [293380] = 2, + sym_identifier, + [293584] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14449), 1, aux_sym_preproc_if_token2, - [293387] = 2, + [293591] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14451), 1, - anon_sym_STAR, - [293394] = 2, + anon_sym_SEMI, + [293598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13625), 1, + anon_sym_RBRACE, + [293605] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14453), 1, - anon_sym_RPAREN, - [293401] = 2, + anon_sym_SEMI, + [293612] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14455), 1, - anon_sym_RPAREN, - [293408] = 2, + anon_sym_SEMI, + [293619] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13505), 1, - anon_sym_RBRACE, - [293415] = 2, + ACTIONS(14457), 1, + anon_sym_SEMI, + [293626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14457), 1, - sym_identifier, - [293422] = 2, + ACTIONS(9001), 1, + anon_sym_SEMI, + [293633] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14459), 1, - sym_identifier, - [293429] = 2, + ACTIONS(11599), 1, + anon_sym_SEMI, + [293640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13179), 1, - anon_sym_COLON_COLON, - [293436] = 2, + ACTIONS(14459), 1, + aux_sym_preproc_if_token2, + [293647] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14461), 1, - anon_sym_STAR, - [293443] = 2, + anon_sym_DQUOTE, + [293654] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14463), 1, - anon_sym_DQUOTE, - [293450] = 2, + anon_sym_STAR, + [293661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9117), 1, + anon_sym_RPAREN, + [293668] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14465), 1, anon_sym_SEMI, - [293457] = 2, + [293675] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11122), 1, - anon_sym_RBRACE, - [293464] = 2, + ACTIONS(12439), 1, + anon_sym_SEMI, + [293682] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14467), 1, - anon_sym_LPAREN2, - [293471] = 2, - ACTIONS(10057), 1, + sym_identifier, + [293689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9089), 1, + anon_sym_SEMI, + [293696] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14469), 1, - aux_sym_preproc_include_token2, - [293478] = 2, + anon_sym_RPAREN, + [293703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7316), 1, + ACTIONS(9197), 1, anon_sym_RPAREN, - [293485] = 2, + [293710] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9055), 1, - anon_sym_SEMI, - [293492] = 2, + ACTIONS(8939), 1, + anon_sym_RBRACE, + [293717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12823), 1, + anon_sym_RPAREN, + [293724] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14471), 1, - anon_sym_SEMI, - [293499] = 2, + anon_sym_DQUOTE, + [293731] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14473), 1, - anon_sym_RPAREN, - [293506] = 2, + anon_sym_DQUOTE, + [293738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4724), 1, + anon_sym_SEMI, + [293745] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14475), 1, + sym_identifier, + [293752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9085), 1, anon_sym_RPAREN, - [293513] = 2, + [293759] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14477), 1, - anon_sym_RPAREN, - [293520] = 2, + anon_sym_private, + [293766] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14479), 1, - anon_sym_RPAREN, - [293527] = 2, + anon_sym_SEMI, + [293773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4636), 1, + anon_sym_DOT_DOT_DOT, + [293780] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14481), 1, - anon_sym_SEMI, - [293534] = 2, + anon_sym_DQUOTE, + [293787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4639), 1, + anon_sym_DOT_DOT_DOT, + [293794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11162), 1, + anon_sym_RBRACE, + [293801] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14483), 1, anon_sym_SEMI, - [293541] = 2, + [293808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14485), 1, - sym_raw_string_delimiter, - [293548] = 2, - ACTIONS(5472), 1, - aux_sym_preproc_include_token2, - ACTIONS(10057), 1, + ACTIONS(13655), 1, + anon_sym_DASH_GT_STAR, + [293815] = 2, + ACTIONS(3), 1, sym_comment, - [293555] = 2, + ACTIONS(14485), 1, + anon_sym_STAR, + [293822] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14487), 1, - anon_sym_RPAREN, - [293562] = 2, + sym_identifier, + [293829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11172), 1, + anon_sym_RBRACE, + [293836] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14489), 1, - anon_sym_LPAREN2, - [293569] = 2, + aux_sym_preproc_if_token2, + [293843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12237), 1, + anon_sym_SEMI, + [293850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_CARET, + [293857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14491), 1, - anon_sym_LPAREN2, - [293576] = 2, + anon_sym_DQUOTE, + [293864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9005), 1, + anon_sym_SEMI, + [293871] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14493), 1, - anon_sym_LPAREN2, - [293583] = 2, + anon_sym_SEMI, + [293878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14495), 1, - anon_sym_LPAREN2, - [293590] = 2, + anon_sym_RPAREN, + [293885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14497), 1, anon_sym_SEMI, - [293597] = 2, + [293892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14499), 1, anon_sym_LPAREN2, - [293604] = 2, - ACTIONS(3), 1, + [293899] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(14501), 1, - anon_sym_RPAREN, - [293611] = 2, + aux_sym_preproc_include_token2, + [293906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14503), 1, - anon_sym_RPAREN, - [293618] = 2, + ACTIONS(13655), 1, + anon_sym_AMP, + [293913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11550), 1, + ACTIONS(14503), 1, anon_sym_SEMI, - [293625] = 2, + [293920] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14505), 1, - anon_sym_DQUOTE, - [293632] = 2, + anon_sym_SEMI, + [293927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14507), 1, + ACTIONS(7822), 1, sym_identifier, - [293639] = 2, + [293934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12441), 1, + anon_sym_SEMI, + [293941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14507), 1, + anon_sym_SEMI, + [293948] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14509), 1, - anon_sym_while, - [293646] = 2, + aux_sym_preproc_if_token2, + [293955] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14511), 1, - ts_builtin_sym_end, - [293653] = 2, + anon_sym_SEMI, + [293962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14513), 1, - anon_sym_LPAREN2, - [293660] = 2, + anon_sym_SEMI, + [293969] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14515), 1, - sym_identifier, - [293667] = 2, + aux_sym_preproc_if_token2, + [293976] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14517), 1, - anon_sym_RBRACK, - [293674] = 2, + anon_sym_DQUOTE, + [293983] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14519), 1, - anon_sym_DQUOTE, - [293681] = 2, + sym_raw_string_content, + [293990] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14521), 1, - anon_sym_EQ, - [293688] = 2, + anon_sym_SEMI, + [293997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11625), 1, + anon_sym_SEMI, + [294004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9097), 1, + anon_sym_SEMI, + [294011] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14523), 1, - sym_raw_string_content, - [293695] = 2, + anon_sym_SEMI, + [294018] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9087), 1, + anon_sym_RPAREN, + [294025] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14525), 1, - anon_sym_STAR, - [293702] = 2, + sym_auto, + [294032] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14527), 1, - sym_identifier, - [293709] = 2, + anon_sym_COLON, + [294039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_EQ_EQ, - [293716] = 2, + ACTIONS(7295), 1, + anon_sym_RPAREN, + [294046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14529), 1, - anon_sym_LBRACE, - [293723] = 2, + anon_sym_LPAREN2, + [294053] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14531), 1, - anon_sym_RPAREN, - [293730] = 2, + anon_sym_LPAREN2, + [294060] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14533), 1, - anon_sym_COMMA, - [293737] = 2, + anon_sym_LPAREN2, + [294067] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14535), 1, - sym_identifier, - [293744] = 2, + anon_sym_LPAREN2, + [294074] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14537), 1, - anon_sym_SEMI, - [293751] = 2, + anon_sym_RPAREN, + [294081] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14539), 1, - anon_sym_RPAREN, - [293758] = 2, + anon_sym_LPAREN2, + [294088] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14541), 1, - anon_sym_COLON, - [293765] = 2, - ACTIONS(10057), 1, + anon_sym_RPAREN, + [294095] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14543), 1, - aux_sym_preproc_include_token2, - [293772] = 2, + anon_sym_RPAREN, + [294102] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14545), 1, - sym_identifier, - [293779] = 2, + anon_sym_DQUOTE, + [294109] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14547), 1, - anon_sym_LPAREN2, - [293786] = 2, + anon_sym_SEMI, + [294116] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14549), 1, - anon_sym_LPAREN2, - [293793] = 2, + anon_sym_DQUOTE, + [294123] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14551), 1, - anon_sym_LPAREN2, - [293800] = 2, + anon_sym_while, + [294130] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14553), 1, - anon_sym_RPAREN, - [293807] = 2, + anon_sym_SEMI, + [294137] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14555), 1, anon_sym_LPAREN2, - [293814] = 2, + [294144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11150), 1, - anon_sym_RBRACE, - [293821] = 2, + ACTIONS(12445), 1, + anon_sym_SEMI, + [294151] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14557), 1, anon_sym_SEMI, - [293828] = 2, + [294158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14559), 1, - anon_sym_while, - [293835] = 2, + anon_sym_LPAREN2, + [294165] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14561), 1, - anon_sym_RPAREN, - [293842] = 2, + anon_sym_EQ, + [294172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14563), 1, - anon_sym_LPAREN2, - [293849] = 2, + sym_raw_string_content, + [294179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14565), 1, - anon_sym_RPAREN, - [293856] = 2, + anon_sym_STAR, + [294186] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12451), 1, + anon_sym_SEMI, + [294193] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7047), 1, + anon_sym_SEMI, + [294200] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7051), 1, + anon_sym_SEMI, + [294207] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14567), 1, anon_sym_RPAREN, - [293863] = 2, + [294214] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14569), 1, - anon_sym_EQ, - [293870] = 2, + anon_sym_COMMA, + [294221] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14571), 1, - sym_raw_string_content, - [293877] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_BANG_EQ, - [293884] = 2, + sym_auto, + [294228] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14573), 1, - anon_sym_COMMA, - [293891] = 2, + anon_sym_RBRACE, + [294235] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14575), 1, - anon_sym_SEMI, - [293898] = 2, + anon_sym_RPAREN, + [294242] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14577), 1, - anon_sym_RPAREN, - [293905] = 2, + anon_sym_COLON, + [294249] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14579), 1, anon_sym_RPAREN, - [293912] = 2, + [294256] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14581), 1, - anon_sym_COLON, - [293919] = 2, + ACTIONS(7596), 1, + sym_identifier, + [294263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_PERCENT_EQ, - [293926] = 2, + ACTIONS(14581), 1, + anon_sym_LPAREN2, + [294270] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14583), 1, anon_sym_LPAREN2, - [293933] = 2, + [294277] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14585), 1, anon_sym_LPAREN2, - [293940] = 2, + [294284] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14587), 1, - anon_sym_LPAREN2, - [293947] = 2, + anon_sym_SEMI, + [294291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14589), 1, - sym_identifier, - [293954] = 2, + anon_sym_LPAREN2, + [294298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14591), 1, - anon_sym_LPAREN2, - [293961] = 2, + anon_sym_RPAREN, + [294305] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14593), 1, - anon_sym_RPAREN, - [293968] = 2, + anon_sym_SEMI, + [294312] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14595), 1, + anon_sym_while, + [294319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9041), 1, anon_sym_SEMI, - [293975] = 2, + [294326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14597), 1, - anon_sym_while, - [293982] = 2, + anon_sym_LPAREN2, + [294333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14599), 1, - anon_sym_LPAREN2, - [293989] = 2, + anon_sym_RPAREN, + [294340] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9091), 1, + anon_sym_COLON, + [294347] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14601), 1, - anon_sym_RPAREN, - [293996] = 2, + anon_sym_EQ, + [294354] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14603), 1, - anon_sym_LPAREN2, - [294003] = 2, + sym_raw_string_content, + [294361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14605), 1, - anon_sym_EQ, - [294010] = 2, + anon_sym_RPAREN, + [294368] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14607), 1, - sym_raw_string_content, - [294017] = 2, - ACTIONS(3), 1, + anon_sym_COMMA, + [294375] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(14609), 1, - anon_sym_SEMI, - [294024] = 2, + aux_sym_preproc_include_token2, + [294382] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4642), 1, + anon_sym_DOT_DOT_DOT, + [294389] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14611), 1, - anon_sym_COMMA, - [294031] = 2, + anon_sym_RPAREN, + [294396] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14613), 1, - anon_sym_RPAREN, - [294038] = 2, + anon_sym_COLON, + [294403] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11586), 1, + anon_sym_LBRACE, + [294410] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14615), 1, anon_sym_LPAREN2, - [294045] = 2, + [294417] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14617), 1, - anon_sym_RPAREN, - [294052] = 2, + anon_sym_LPAREN2, + [294424] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14619), 1, - anon_sym_COLON, - [294059] = 2, + anon_sym_LPAREN2, + [294431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_PLUS_EQ, - [294066] = 2, + ACTIONS(9093), 1, + anon_sym_SEMI, + [294438] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14621), 1, anon_sym_LPAREN2, - [294073] = 2, + [294445] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14623), 1, - anon_sym_LPAREN2, - [294080] = 2, + anon_sym_RPAREN, + [294452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14625), 1, - anon_sym_LPAREN2, - [294087] = 2, + anon_sym_SEMI, + [294459] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14627), 1, - anon_sym_RPAREN, - [294094] = 2, + anon_sym_while, + [294466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14629), 1, anon_sym_LPAREN2, - [294101] = 2, + [294473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14631), 1, anon_sym_DQUOTE, - [294108] = 2, + [294480] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14633), 1, - anon_sym_SEMI, - [294115] = 2, + anon_sym_RPAREN, + [294487] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14635), 1, - anon_sym_LPAREN2, - [294122] = 2, + anon_sym_EQ, + [294494] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14637), 1, - anon_sym_LPAREN2, - [294129] = 2, + sym_raw_string_content, + [294501] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14639), 1, - anon_sym_SEMI, - [294136] = 2, + sym_identifier, + [294508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14641), 1, - anon_sym_EQ, - [294143] = 2, + anon_sym_COMMA, + [294515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14643), 1, - sym_raw_string_content, - [294150] = 2, + anon_sym_COLON, + [294522] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT_DOT_DOT, + [294529] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14645), 1, anon_sym_RPAREN, - [294157] = 2, + [294536] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14647), 1, - anon_sym_COMMA, - [294164] = 2, + anon_sym_COLON, + [294543] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11619), 1, + anon_sym_LBRACE, + [294550] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14649), 1, - anon_sym_RPAREN, - [294171] = 2, + anon_sym_LPAREN2, + [294557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14651), 1, - anon_sym_SEMI, - [294178] = 2, + anon_sym_LPAREN2, + [294564] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14653), 1, - anon_sym_RPAREN, - [294185] = 2, + anon_sym_LPAREN2, + [294571] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14655), 1, - anon_sym_COLON, - [294192] = 2, + anon_sym_RPAREN, + [294578] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14657), 1, - anon_sym_SEMI, - [294199] = 2, + anon_sym_LPAREN2, + [294585] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14659), 1, - anon_sym_LPAREN2, - [294206] = 2, + sym_identifier, + [294592] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14661), 1, - anon_sym_LPAREN2, - [294213] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_GT, - [294220] = 2, + sym_identifier, + [294599] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14663), 1, anon_sym_LPAREN2, - [294227] = 2, + [294606] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9270), 1, + anon_sym_RPAREN, + [294613] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14665), 1, - anon_sym_EQ, - [294234] = 2, + anon_sym_RPAREN, + [294620] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14667), 1, - aux_sym_preproc_if_token2, - [294241] = 2, + anon_sym_EQ, + [294627] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14669), 1, - anon_sym_LPAREN2, - [294248] = 2, + sym_raw_string_content, + [294634] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14671), 1, - anon_sym_RPAREN, - [294255] = 2, + anon_sym_LBRACE, + [294641] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14673), 1, - anon_sym_EQ, - [294262] = 2, + anon_sym_COMMA, + [294648] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14675), 1, - sym_raw_string_content, - [294269] = 2, + sym_identifier, + [294655] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14677), 1, anon_sym_RPAREN, - [294276] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12234), 1, - anon_sym_SEMI, - [294283] = 2, + [294662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14679), 1, - aux_sym_preproc_if_token2, - [294290] = 2, + anon_sym_RPAREN, + [294669] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14681), 1, - anon_sym_RPAREN, - [294297] = 2, + anon_sym_COLON, + [294676] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14683), 1, - anon_sym_SEMI, - [294304] = 2, + sym_identifier, + [294683] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14685), 1, anon_sym_LPAREN2, - [294311] = 2, + [294690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14687), 1, anon_sym_LPAREN2, - [294318] = 2, + [294697] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_EQ_EQ, + [294704] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14689), 1, anon_sym_LPAREN2, - [294325] = 2, + [294711] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14691), 1, anon_sym_SEMI, - [294332] = 2, + [294718] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14693), 1, - sym_raw_string_content, - [294339] = 2, + anon_sym_RBRACE, + [294725] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14695), 1, - anon_sym_RPAREN, - [294346] = 2, + aux_sym_preproc_if_token2, + [294732] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14697), 1, - sym_identifier, - [294353] = 2, + anon_sym_SEMI, + [294739] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14699), 1, - anon_sym_RPAREN, - [294360] = 2, + anon_sym_EQ, + [294746] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14701), 1, - anon_sym_SEMI, - [294367] = 2, + sym_raw_string_content, + [294753] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14703), 1, - anon_sym_LPAREN2, - [294374] = 2, + anon_sym_RPAREN, + [294760] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14705), 1, - anon_sym_LPAREN2, - [294381] = 2, + aux_sym_preproc_if_token2, + [294767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14707), 1, - anon_sym_LPAREN2, - [294388] = 2, + sym_identifier, + [294774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14709), 1, - sym_auto, - [294395] = 2, + anon_sym_RPAREN, + [294781] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9019), 1, + anon_sym_COLON, + [294788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14711), 1, - sym_raw_string_content, - [294402] = 2, + anon_sym_LPAREN2, + [294795] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14713), 1, - anon_sym_RPAREN, - [294409] = 2, + anon_sym_LPAREN2, + [294802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14715), 1, - anon_sym_RPAREN, - [294416] = 2, + anon_sym_LPAREN2, + [294809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14717), 1, - anon_sym_LPAREN2, - [294423] = 2, + anon_sym_RPAREN, + [294816] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14719), 1, - anon_sym_LPAREN2, - [294430] = 2, + sym_raw_string_content, + [294823] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14721), 1, - anon_sym_LPAREN2, - [294437] = 2, + sym_identifier, + [294830] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12158), 1, + anon_sym_SEMI, + [294837] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14723), 1, - sym_raw_string_content, - [294444] = 2, + anon_sym_RPAREN, + [294844] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14725), 1, anon_sym_RPAREN, - [294451] = 2, + [294851] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14727), 1, anon_sym_LPAREN2, - [294458] = 2, + [294858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14729), 1, - sym_raw_string_content, - [294465] = 2, + anon_sym_LPAREN2, + [294865] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14731), 1, - anon_sym_RPAREN, - [294472] = 2, + anon_sym_LPAREN2, + [294872] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14733), 1, - anon_sym_LPAREN2, - [294479] = 2, + sym_identifier, + [294879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14735), 1, sym_raw_string_content, - [294486] = 2, + [294886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12671), 1, + anon_sym_LBRACE, + [294893] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14737), 1, anon_sym_RPAREN, - [294493] = 2, + [294900] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14739), 1, - sym_raw_string_content, - [294500] = 2, + anon_sym_LPAREN2, + [294907] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14741), 1, - anon_sym_RPAREN, - [294507] = 2, + anon_sym_LPAREN2, + [294914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14743), 1, - sym_raw_string_content, - [294514] = 2, + anon_sym_LPAREN2, + [294921] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14745), 1, - anon_sym_RPAREN, - [294521] = 2, + sym_raw_string_content, + [294928] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14747), 1, - sym_raw_string_content, - [294528] = 2, + anon_sym_RPAREN, + [294935] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14749), 1, - anon_sym_RPAREN, - [294535] = 2, + anon_sym_LPAREN2, + [294942] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14751), 1, sym_raw_string_content, - [294542] = 2, + [294949] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14753), 1, anon_sym_RPAREN, - [294549] = 2, + [294956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14755), 1, - sym_raw_string_content, - [294556] = 2, + anon_sym_LPAREN2, + [294963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14757), 1, - anon_sym_RPAREN, - [294563] = 2, + sym_raw_string_content, + [294970] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14759), 1, - anon_sym_SEMI, - [294570] = 2, - ACTIONS(10057), 1, + anon_sym_RPAREN, + [294977] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(14761), 1, - aux_sym_preproc_include_token2, - [294577] = 2, + sym_raw_string_content, + [294984] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14763), 1, - anon_sym_LPAREN2, - [294584] = 2, + anon_sym_RPAREN, + [294991] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14765), 1, - anon_sym_LPAREN2, - [294591] = 2, + sym_raw_string_content, + [294998] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14767), 1, - sym_identifier, - [294598] = 2, + anon_sym_RPAREN, + [295005] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14769), 1, - anon_sym_LPAREN2, - [294605] = 2, + sym_raw_string_content, + [295012] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14771), 1, - sym_identifier, - [294612] = 2, + anon_sym_RPAREN, + [295019] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14773), 1, - anon_sym_SEMI, - [294619] = 2, + sym_raw_string_content, + [295026] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14775), 1, - anon_sym_SEMI, - [294626] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13601), 1, - anon_sym_AMP_EQ, - [294633] = 2, + anon_sym_RPAREN, + [295033] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14777), 1, - anon_sym_RPAREN, - [294640] = 2, + sym_raw_string_content, + [295040] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14779), 1, - aux_sym_preproc_if_token2, - [294647] = 2, + anon_sym_RPAREN, + [295047] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14781), 1, - anon_sym_DQUOTE, - [294654] = 2, + anon_sym_RPAREN, + [295054] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9255), 1, + anon_sym_RPAREN, + [295061] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14783), 1, - sym_raw_string_delimiter, - [294661] = 2, + anon_sym_LPAREN2, + [295068] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14785), 1, - aux_sym_preproc_if_token2, - [294668] = 2, + anon_sym_LPAREN2, + [295075] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14787), 1, - anon_sym_DQUOTE, - [294675] = 2, + sym_identifier, + [295082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14789), 1, - anon_sym_RPAREN, - [294682] = 2, + anon_sym_COLON, + [295089] = 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, + aux_sym_preproc_if_token2, + [295096] = 2, + ACTIONS(10143), 1, sym_comment, ACTIONS(14793), 1, - anon_sym_LPAREN2, - [294703] = 2, + aux_sym_preproc_include_token2, + [295103] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14795), 1, - sym_identifier, - [294710] = 2, + aux_sym_preproc_if_token2, + [295110] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14797), 1, - sym_raw_string_content, - [294717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14799), 1, - anon_sym_SEMI, - [294724] = 2, + anon_sym_STAR, + [295117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12321), 1, - anon_sym_SEMI, - [294731] = 2, + ACTIONS(9061), 1, + anon_sym_RPAREN, + [295124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, + ACTIONS(14799), 1, anon_sym_SEMI, - [294738] = 2, + [295131] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14801), 1, anon_sym_RPAREN, - [294745] = 2, + [295138] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10627), 1, + anon_sym_LBRACE, + [295145] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14803), 1, - anon_sym_RPAREN, - [294752] = 2, + anon_sym_RBRACE, + [295152] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14805), 1, - anon_sym_RPAREN, - [294759] = 2, + aux_sym_preproc_if_token2, + [295159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12446), 1, - anon_sym_SEMI, - [294766] = 2, + ACTIONS(14807), 1, + anon_sym_RPAREN, + [295166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14807), 1, - sym_identifier, - [294773] = 2, + ACTIONS(13655), 1, + anon_sym_COMMA, + [295173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14809), 1, anon_sym_RPAREN, - [294780] = 2, + [295180] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14811), 1, - anon_sym_SEMI, - [294787] = 2, + sym_auto, + [295187] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14813), 1, - anon_sym_DQUOTE, - [294794] = 2, + sym_identifier, + [295194] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14815), 1, - aux_sym_preproc_if_token2, - [294801] = 2, + sym_raw_string_content, + [295201] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14817), 1, - aux_sym_preproc_if_token2, - [294808] = 2, + anon_sym_RPAREN, + [295208] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9103), 1, + anon_sym_RPAREN, + [295215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7027), 1, + anon_sym_SEMI, + [295222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12268), 1, + anon_sym_SEMI, + [295229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_BANG_EQ, + [295236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14819), 1, - anon_sym_LPAREN2, - [294815] = 2, + anon_sym_SEMI, + [295243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14821), 1, - anon_sym_LPAREN2, - [294822] = 2, + anon_sym_RPAREN, + [295250] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14823), 1, - anon_sym_LPAREN2, - [294829] = 2, + sym_identifier, + [295257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9199), 1, - anon_sym_RPAREN, - [294836] = 2, + ACTIONS(14825), 1, + sym_identifier, + [295264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14825), 1, - anon_sym_LBRACE, - [294843] = 2, + ACTIONS(9025), 1, + anon_sym_COLON, + [295271] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14827), 1, - anon_sym_RPAREN, - [294850] = 2, + anon_sym_STAR, + [295278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_DOT_DOT_DOT, - [294857] = 2, + ACTIONS(13655), 1, + anon_sym_GT, + [295285] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14829), 1, - sym_raw_string_content, - [294864] = 2, + anon_sym_SEMI, + [295292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(14831), 1, - aux_sym_preproc_if_token2, - [294871] = 2, + anon_sym_RPAREN, + [295299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11102), 1, - anon_sym_RBRACE, - [294878] = 2, + ACTIONS(14833), 1, + anon_sym_RPAREN, + [295306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11608), 1, - anon_sym_SEMI, - [294885] = 2, + ACTIONS(13655), 1, + anon_sym_GT_EQ, + [295313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14833), 1, + ACTIONS(11144), 1, + anon_sym_RBRACE, + [295320] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14835), 1, anon_sym_RPAREN, - [294892] = 2, + [295327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12027), 1, - anon_sym_SEMI, - [294899] = 2, + ACTIONS(14837), 1, + anon_sym_STAR, + [295334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4618), 1, - anon_sym_DOT_DOT_DOT, - [294906] = 2, + ACTIONS(14839), 1, + sym_identifier, + [295341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14835), 1, - anon_sym_EQ, - [294913] = 2, + ACTIONS(14841), 1, + anon_sym_STAR, + [295348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4626), 1, - anon_sym_DOT_DOT_DOT, - [294920] = 2, + ACTIONS(9139), 1, + anon_sym_RPAREN, + [295355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14837), 1, + ACTIONS(8887), 1, + anon_sym_RBRACE, + [295362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14843), 1, anon_sym_RPAREN, - [294927] = 2, + [295369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, - anon_sym_DOT_DOT_DOT, - [294934] = 2, + ACTIONS(14845), 1, + anon_sym_RPAREN, + [295376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9075), 1, - anon_sym_COLON, - [294941] = 2, + ACTIONS(13655), 1, + anon_sym_LT_EQ, + [295383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, - anon_sym_DOT_DOT_DOT, - [294948] = 2, + ACTIONS(11746), 1, + anon_sym_EQ, + [295390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4615), 1, - anon_sym_DOT_DOT_DOT, - [294955] = 2, + ACTIONS(13655), 1, + anon_sym_LT, + [295397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4623), 1, - anon_sym_DOT_DOT_DOT, - [294962] = 2, + ACTIONS(14847), 1, + anon_sym_SEMI, + [295404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_CARET_EQ, - [294969] = 2, + ACTIONS(14849), 1, + anon_sym_LPAREN2, + [295411] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4609), 1, - anon_sym_DOT_DOT_DOT, - [294976] = 2, + ACTIONS(11764), 1, + anon_sym_LBRACE, + [295418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14839), 1, - anon_sym_SEMI, - [294983] = 2, + ACTIONS(9099), 1, + anon_sym_COLON, + [295425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4640), 1, - anon_sym_DOT_DOT_DOT, - [294990] = 2, + ACTIONS(14851), 1, + aux_sym_preproc_if_token2, + [295432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4643), 1, - anon_sym_DOT_DOT_DOT, - [294997] = 2, + ACTIONS(9129), 1, + anon_sym_RPAREN, + [295439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4612), 1, - anon_sym_DOT_DOT_DOT, - [295004] = 2, + ACTIONS(14853), 1, + anon_sym_STAR, + [295446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4637), 1, - anon_sym_DOT_DOT_DOT, - [295011] = 2, + ACTIONS(14855), 1, + aux_sym_preproc_if_token2, + [295453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9207), 1, + ACTIONS(9073), 1, anon_sym_RPAREN, - [295018] = 2, + [295460] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(14857), 1, + aux_sym_preproc_include_token2, + [295467] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(14859), 1, + aux_sym_preproc_include_token2, + [295474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14841), 1, + ACTIONS(14861), 1, + anon_sym_LBRACE, + [295481] = 2, + ACTIONS(10143), 1, + sym_comment, + ACTIONS(14863), 1, + aux_sym_preproc_include_token2, + [295488] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14865), 1, anon_sym_RPAREN, - [295025] = 2, + [295495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14843), 1, - sym_identifier, - [295032] = 2, + ACTIONS(14867), 1, + anon_sym_RPAREN, + [295502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14845), 1, - anon_sym_STAR, - [295039] = 2, + ACTIONS(14869), 1, + anon_sym_RPAREN, + [295509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_PIPE_EQ, - [295046] = 2, + ACTIONS(14871), 1, + anon_sym_RPAREN, + [295516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14847), 1, + ACTIONS(14873), 1, aux_sym_preproc_if_token2, - [295053] = 2, + [295523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14849), 1, - sym_identifier, - [295060] = 2, + ACTIONS(11994), 1, + anon_sym_COLON, + [295530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14851), 1, - anon_sym_RPAREN, - [295067] = 2, + ACTIONS(11166), 1, + anon_sym_RBRACE, + [295537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14853), 1, + ACTIONS(14875), 1, sym_identifier, - [295074] = 2, + [295544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9294), 1, + ACTIONS(14877), 1, anon_sym_RPAREN, - [295081] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14855), 1, - sym_identifier, - [295088] = 2, + [295551] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14857), 1, - anon_sym_SEMI, - [295095] = 2, + ACTIONS(9011), 1, + anon_sym_COLON, + [295558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8790), 1, + ACTIONS(11160), 1, anon_sym_RBRACE, - [295102] = 2, + [295565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_LT_EQ, - [295109] = 2, + ACTIONS(13655), 1, + anon_sym_LT_LT, + [295572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14859), 1, + ACTIONS(8995), 1, anon_sym_RPAREN, - [295116] = 2, + [295579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14861), 1, - anon_sym_RPAREN, - [295123] = 2, + ACTIONS(13655), 1, + anon_sym_GT_GT, + [295586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14863), 1, - anon_sym_STAR, - [295130] = 2, + ACTIONS(14879), 1, + aux_sym_preproc_if_token2, + [295593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13533), 1, - anon_sym_RBRACE, - [295137] = 2, + ACTIONS(14881), 1, + anon_sym_LBRACE, + [295600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14865), 1, - sym_identifier, - [295144] = 2, + ACTIONS(14883), 1, + anon_sym_COLON, + [295607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9087), 1, + ACTIONS(14885), 1, + anon_sym_RPAREN, + [295614] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14887), 1, + aux_sym_preproc_if_token2, + [295621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13655), 1, + anon_sym_EQ, + [295628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9105), 1, anon_sym_COLON, - [295151] = 2, + [295635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11154), 1, + ACTIONS(13557), 1, anon_sym_RBRACE, - [295158] = 2, + [295642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9185), 1, + ACTIONS(14889), 1, anon_sym_RPAREN, - [295165] = 2, + [295649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14867), 1, + ACTIONS(14891), 1, anon_sym_LPAREN2, - [295172] = 2, + [295656] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14869), 1, + ACTIONS(14893), 1, anon_sym_LPAREN2, - [295179] = 2, + [295663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14871), 1, + ACTIONS(14895), 1, sym_identifier, - [295186] = 2, + [295670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_LT, - [295193] = 2, + ACTIONS(14897), 1, + sym_identifier, + [295677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8886), 1, - anon_sym_RBRACE, - [295200] = 2, + ACTIONS(14899), 1, + aux_sym_preproc_if_token2, + [295684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14873), 1, - anon_sym_SEMI, - [295207] = 2, + ACTIONS(9298), 1, + anon_sym_RPAREN, + [295691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14875), 1, + ACTIONS(14901), 1, aux_sym_preproc_if_token2, - [295214] = 2, + [295698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14877), 1, + ACTIONS(14903), 1, sym_identifier, - [295221] = 2, + [295705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14879), 1, + ACTIONS(14905), 1, sym_raw_string_content, - [295228] = 2, + [295712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14881), 1, - sym_auto, - [295235] = 2, + ACTIONS(14907), 1, + anon_sym_COMMA, + [295719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14883), 1, - sym_identifier, - [295242] = 2, + ACTIONS(14909), 1, + anon_sym_COLON, + [295726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9061), 1, - anon_sym_COLON, - [295249] = 2, + ACTIONS(14911), 1, + anon_sym_RPAREN, + [295733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14885), 1, + ACTIONS(14913), 1, anon_sym_RPAREN, - [295256] = 2, + [295740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14887), 1, + ACTIONS(14915), 1, anon_sym_LPAREN2, - [295263] = 2, + [295747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14889), 1, + ACTIONS(14917), 1, anon_sym_LPAREN2, - [295270] = 2, + [295754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14891), 1, + ACTIONS(14919), 1, sym_identifier, - [295277] = 2, + [295761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11132), 1, - anon_sym_RBRACE, - [295284] = 2, + ACTIONS(14921), 1, + sym_identifier, + [295768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14893), 1, - anon_sym_SEMI, - [295291] = 2, + ACTIONS(14923), 1, + anon_sym_RPAREN, + [295775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14895), 1, + ACTIONS(14925), 1, sym_identifier, - [295298] = 2, + [295782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14897), 1, + ACTIONS(14927), 1, sym_raw_string_content, - [295305] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4785), 1, - anon_sym_SEMI, - [295312] = 2, + [295789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14899), 1, + ACTIONS(8903), 1, anon_sym_RBRACE, - [295319] = 2, + [295796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14901), 1, + ACTIONS(14929), 1, anon_sym_SEMI, - [295326] = 2, + [295803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14903), 1, + ACTIONS(8943), 1, + anon_sym_RBRACE, + [295810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14931), 1, anon_sym_LPAREN2, - [295333] = 2, + [295817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14905), 1, + ACTIONS(14933), 1, sym_identifier, - [295340] = 2, + [295824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11114), 1, - anon_sym_RBRACE, - [295347] = 2, + ACTIONS(14935), 1, + anon_sym_SEMI, + [295831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14907), 1, - anon_sym_COLON, - [295354] = 2, + ACTIONS(14937), 1, + anon_sym_RPAREN, + [295838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14909), 1, + ACTIONS(14939), 1, sym_identifier, - [295361] = 2, + [295845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14911), 1, + ACTIONS(14941), 1, sym_raw_string_content, - [295368] = 2, + [295852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14913), 1, - anon_sym_DOT_DOT_DOT, - [295375] = 2, + ACTIONS(14943), 1, + anon_sym_RPAREN, + [295859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14916), 1, - sym_auto, - [295382] = 2, + ACTIONS(14945), 1, + anon_sym_RBRACK, + [295866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14918), 1, + ACTIONS(14947), 1, anon_sym_LPAREN2, - [295389] = 2, + [295873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14920), 1, + ACTIONS(14949), 1, sym_identifier, - [295396] = 2, + [295880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14922), 1, + ACTIONS(14951), 1, anon_sym_RPAREN, - [295403] = 2, + [295887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14924), 1, + ACTIONS(12493), 1, anon_sym_SEMI, - [295410] = 2, + [295894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14926), 1, + ACTIONS(14953), 1, sym_identifier, - [295417] = 2, + [295901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14928), 1, + ACTIONS(14955), 1, sym_raw_string_content, - [295424] = 2, + [295908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14930), 1, - sym_identifier, - [295431] = 2, + ACTIONS(14957), 1, + aux_sym_preproc_if_token2, + [295915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14932), 1, + ACTIONS(14959), 1, anon_sym_LPAREN2, - [295438] = 2, + [295922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14934), 1, + ACTIONS(14961), 1, sym_identifier, - [295445] = 2, + [295929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14936), 1, - anon_sym_DOT_DOT_DOT, - [295452] = 2, + ACTIONS(14963), 1, + anon_sym_DQUOTE, + [295936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14938), 1, + ACTIONS(14965), 1, sym_identifier, - [295459] = 2, + [295943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14940), 1, + ACTIONS(14967), 1, sym_raw_string_content, - [295466] = 2, + [295950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14942), 1, - anon_sym_SEMI, - [295473] = 2, + ACTIONS(14969), 1, + anon_sym_RPAREN, + [295957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(14971), 1, sym_identifier, - [295480] = 2, + [295964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14946), 1, + ACTIONS(14973), 1, sym_raw_string_content, - [295487] = 2, + [295971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9051), 1, - anon_sym_COLON, - [295494] = 2, + ACTIONS(9079), 1, + anon_sym_SEMI, + [295978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14948), 1, + ACTIONS(14975), 1, sym_raw_string_content, - [295501] = 2, + [295985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11540), 1, - anon_sym_LBRACE, - [295508] = 2, + ACTIONS(14977), 1, + sym_identifier, + [295992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14950), 1, + ACTIONS(14979), 1, sym_raw_string_content, - [295515] = 2, + [295999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 1, - anon_sym_COLON, - [295522] = 2, + ACTIONS(14981), 1, + sym_identifier, + [296006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14952), 1, + ACTIONS(14983), 1, sym_raw_string_content, - [295529] = 2, + [296013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14954), 1, - anon_sym_SEMI, - [295536] = 2, + ACTIONS(9049), 1, + anon_sym_COLON, + [296020] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14956), 1, + ACTIONS(14985), 1, sym_raw_string_content, - [295543] = 2, + [296027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7011), 1, - anon_sym_SEMI, - [295550] = 2, + ACTIONS(14987), 1, + anon_sym_DOT_DOT_DOT, + [296034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14958), 1, + ACTIONS(14990), 1, sym_raw_string_content, - [295557] = 2, + [296041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14960), 1, - anon_sym_LBRACE, - [295564] = 2, + ACTIONS(14992), 1, + anon_sym_RPAREN, + [296048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14962), 1, + ACTIONS(14994), 1, sym_raw_string_content, - [295571] = 2, + [296055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13357), 1, - anon_sym_RBRACE, - [295578] = 2, + ACTIONS(14996), 1, + anon_sym_DOT_DOT_DOT, + [296062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14964), 1, + ACTIONS(14998), 1, sym_raw_string_content, - [295585] = 2, - ACTIONS(10057), 1, + [296069] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(12868), 1, - aux_sym_preproc_include_token2, - [295592] = 2, + ACTIONS(15000), 1, + anon_sym_RPAREN, + [296076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14966), 1, + ACTIONS(15002), 1, sym_raw_string_content, - [295599] = 2, + [296083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13601), 1, - anon_sym_DASH_EQ, - [295606] = 2, + ACTIONS(15004), 1, + anon_sym_RPAREN, + [296090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14968), 1, + ACTIONS(15006), 1, sym_raw_string_content, - [295613] = 2, + [296097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14970), 1, + ACTIONS(15008), 1, anon_sym_LPAREN2, - [295620] = 2, + [296104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14972), 1, + ACTIONS(15010), 1, anon_sym_LPAREN2, - [295627] = 2, + [296111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14974), 1, + ACTIONS(15012), 1, aux_sym_preproc_if_token2, - [295634] = 2, + [296118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14976), 1, + ACTIONS(15014), 1, anon_sym_LPAREN2, - [295641] = 2, + [296125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14978), 1, + ACTIONS(15016), 1, anon_sym_LPAREN2, - [295648] = 2, + [296132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 1, - anon_sym_COLON, - [295655] = 2, + ACTIONS(8735), 1, + anon_sym_SEMI, + [296139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14980), 1, + ACTIONS(15018), 1, anon_sym_LPAREN2, - [295662] = 2, + [296146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14982), 1, + ACTIONS(15020), 1, anon_sym_LPAREN2, - [295669] = 2, + [296153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14984), 1, - anon_sym_while, - [295676] = 2, + ACTIONS(11164), 1, + anon_sym_RBRACE, + [296160] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14986), 1, + ACTIONS(15022), 1, anon_sym_LPAREN2, - [295683] = 2, + [296167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14988), 1, + ACTIONS(15024), 1, anon_sym_LPAREN2, - [295690] = 2, + [296174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14990), 1, + ACTIONS(15026), 1, anon_sym_SEMI, - [295697] = 2, + [296181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14992), 1, + ACTIONS(15028), 1, anon_sym_LPAREN2, - [295704] = 2, + [296188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14994), 1, + ACTIONS(15030), 1, anon_sym_LPAREN2, - [295711] = 2, + [296195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14996), 1, - sym_identifier, - [295718] = 2, + ACTIONS(15032), 1, + anon_sym_RPAREN, + [296202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14998), 1, + ACTIONS(15034), 1, anon_sym_LPAREN2, - [295725] = 2, + [296209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15000), 1, + ACTIONS(15036), 1, anon_sym_LPAREN2, - [295732] = 2, + [296216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15002), 1, + ACTIONS(15038), 1, anon_sym_LPAREN2, - [295739] = 2, + [296223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15004), 1, + ACTIONS(15040), 1, anon_sym_LPAREN2, - [295746] = 2, + [296230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15006), 1, + ACTIONS(15042), 1, anon_sym_LPAREN2, - [295753] = 2, + [296237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15008), 1, + ACTIONS(15044), 1, anon_sym_LPAREN2, - [295760] = 2, + [296244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15010), 1, + ACTIONS(15046), 1, anon_sym_LPAREN2, - [295767] = 2, + [296251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15012), 1, + ACTIONS(15048), 1, anon_sym_LPAREN2, - [295774] = 2, + [296258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15014), 1, + ACTIONS(15050), 1, anon_sym_LPAREN2, - [295781] = 2, + [296265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15016), 1, + ACTIONS(15052), 1, anon_sym_LPAREN2, - [295788] = 2, + [296272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15018), 1, + ACTIONS(15054), 1, anon_sym_LPAREN2, - [295795] = 2, - ACTIONS(3), 1, + [296279] = 2, + ACTIONS(10143), 1, sym_comment, - ACTIONS(15020), 1, - anon_sym_DQUOTE, - [295802] = 2, + ACTIONS(13011), 1, + aux_sym_preproc_include_token2, + [296286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15022), 1, - anon_sym_RPAREN, - [295809] = 2, - ACTIONS(10057), 1, + ACTIONS(15056), 1, + anon_sym_LPAREN2, + [296293] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15024), 1, - aux_sym_preproc_include_token2, - [295816] = 2, + ACTIONS(12683), 1, + anon_sym_COLON_COLON, + [296300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12025), 1, + ACTIONS(15058), 1, anon_sym_SEMI, - [295823] = 2, + [296307] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15026), 1, + ACTIONS(15060), 1, anon_sym_RPAREN, - [295830] = 2, + [296314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15028), 1, + ACTIONS(15062), 1, anon_sym_LPAREN2, - [295837] = 2, + [296321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15030), 1, + ACTIONS(15064), 1, anon_sym_LPAREN2, - [295844] = 2, + [296328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15032), 1, + ACTIONS(15066), 1, anon_sym_LPAREN2, - [295851] = 2, + [296335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15034), 1, + ACTIONS(15068), 1, anon_sym_LPAREN2, - [295858] = 2, + [296342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15036), 1, + ACTIONS(15070), 1, anon_sym_LPAREN2, - [295865] = 2, + [296349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15038), 1, + ACTIONS(12160), 1, anon_sym_SEMI, }; static const uint32_t ts_small_parse_table_map[] = { - [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, + [SMALL_STATE(2409)] = 0, + [SMALL_STATE(2410)] = 77, + [SMALL_STATE(2411)] = 148, + [SMALL_STATE(2412)] = 233, + [SMALL_STATE(2413)] = 304, + [SMALL_STATE(2414)] = 383, + [SMALL_STATE(2415)] = 458, + [SMALL_STATE(2416)] = 541, + [SMALL_STATE(2417)] = 612, + [SMALL_STATE(2418)] = 683, + [SMALL_STATE(2419)] = 754, + [SMALL_STATE(2420)] = 839, + [SMALL_STATE(2421)] = 910, + [SMALL_STATE(2422)] = 981, + [SMALL_STATE(2423)] = 1064, + [SMALL_STATE(2424)] = 1135, + [SMALL_STATE(2425)] = 1206, + [SMALL_STATE(2426)] = 1279, + [SMALL_STATE(2427)] = 1364, + [SMALL_STATE(2428)] = 1435, + [SMALL_STATE(2429)] = 1520, + [SMALL_STATE(2430)] = 1593, + [SMALL_STATE(2431)] = 1664, + [SMALL_STATE(2432)] = 1741, + [SMALL_STATE(2433)] = 1816, + [SMALL_STATE(2434)] = 1901, + [SMALL_STATE(2435)] = 1972, + [SMALL_STATE(2436)] = 2051, + [SMALL_STATE(2437)] = 2146, + [SMALL_STATE(2438)] = 2217, + [SMALL_STATE(2439)] = 2288, + [SMALL_STATE(2440)] = 2383, + [SMALL_STATE(2441)] = 2462, + [SMALL_STATE(2442)] = 2551, + [SMALL_STATE(2443)] = 2622, + [SMALL_STATE(2444)] = 2693, + [SMALL_STATE(2445)] = 2764, + [SMALL_STATE(2446)] = 2835, + [SMALL_STATE(2447)] = 2914, + [SMALL_STATE(2448)] = 2985, + [SMALL_STATE(2449)] = 3062, + [SMALL_STATE(2450)] = 3133, + [SMALL_STATE(2451)] = 3204, + [SMALL_STATE(2452)] = 3275, + [SMALL_STATE(2453)] = 3345, + [SMALL_STATE(2454)] = 3415, + [SMALL_STATE(2455)] = 3485, + [SMALL_STATE(2456)] = 3555, + [SMALL_STATE(2457)] = 3625, + [SMALL_STATE(2458)] = 3705, + [SMALL_STATE(2459)] = 3775, + [SMALL_STATE(2460)] = 3845, + [SMALL_STATE(2461)] = 3915, + [SMALL_STATE(2462)] = 3985, + [SMALL_STATE(2463)] = 4055, + [SMALL_STATE(2464)] = 4125, + [SMALL_STATE(2465)] = 4195, + [SMALL_STATE(2466)] = 4265, + [SMALL_STATE(2467)] = 4335, + [SMALL_STATE(2468)] = 4405, + [SMALL_STATE(2469)] = 4475, + [SMALL_STATE(2470)] = 4545, + [SMALL_STATE(2471)] = 4615, + [SMALL_STATE(2472)] = 4685, + [SMALL_STATE(2473)] = 4755, + [SMALL_STATE(2474)] = 4825, + [SMALL_STATE(2475)] = 4895, + [SMALL_STATE(2476)] = 4965, + [SMALL_STATE(2477)] = 5035, + [SMALL_STATE(2478)] = 5105, + [SMALL_STATE(2479)] = 5175, + [SMALL_STATE(2480)] = 5245, + [SMALL_STATE(2481)] = 5315, + [SMALL_STATE(2482)] = 5385, + [SMALL_STATE(2483)] = 5455, + [SMALL_STATE(2484)] = 5525, + [SMALL_STATE(2485)] = 5595, + [SMALL_STATE(2486)] = 5665, + [SMALL_STATE(2487)] = 5735, + [SMALL_STATE(2488)] = 5805, + [SMALL_STATE(2489)] = 5875, + [SMALL_STATE(2490)] = 5945, + [SMALL_STATE(2491)] = 6015, + [SMALL_STATE(2492)] = 6085, + [SMALL_STATE(2493)] = 6155, + [SMALL_STATE(2494)] = 6225, + [SMALL_STATE(2495)] = 6295, + [SMALL_STATE(2496)] = 6365, + [SMALL_STATE(2497)] = 6435, + [SMALL_STATE(2498)] = 6505, + [SMALL_STATE(2499)] = 6575, + [SMALL_STATE(2500)] = 6645, + [SMALL_STATE(2501)] = 6715, + [SMALL_STATE(2502)] = 6785, + [SMALL_STATE(2503)] = 6855, + [SMALL_STATE(2504)] = 6925, + [SMALL_STATE(2505)] = 6995, + [SMALL_STATE(2506)] = 7065, + [SMALL_STATE(2507)] = 7135, + [SMALL_STATE(2508)] = 7205, + [SMALL_STATE(2509)] = 7275, + [SMALL_STATE(2510)] = 7345, + [SMALL_STATE(2511)] = 7415, + [SMALL_STATE(2512)] = 7493, + [SMALL_STATE(2513)] = 7563, + [SMALL_STATE(2514)] = 7633, + [SMALL_STATE(2515)] = 7703, + [SMALL_STATE(2516)] = 7773, + [SMALL_STATE(2517)] = 7843, + [SMALL_STATE(2518)] = 7913, + [SMALL_STATE(2519)] = 7983, + [SMALL_STATE(2520)] = 8053, + [SMALL_STATE(2521)] = 8123, + [SMALL_STATE(2522)] = 8193, + [SMALL_STATE(2523)] = 8263, + [SMALL_STATE(2524)] = 8333, + [SMALL_STATE(2525)] = 8403, + [SMALL_STATE(2526)] = 8473, + [SMALL_STATE(2527)] = 8543, + [SMALL_STATE(2528)] = 8613, + [SMALL_STATE(2529)] = 8683, + [SMALL_STATE(2530)] = 8753, + [SMALL_STATE(2531)] = 8823, + [SMALL_STATE(2532)] = 8893, + [SMALL_STATE(2533)] = 8963, + [SMALL_STATE(2534)] = 9033, + [SMALL_STATE(2535)] = 9103, + [SMALL_STATE(2536)] = 9173, + [SMALL_STATE(2537)] = 9243, + [SMALL_STATE(2538)] = 9313, + [SMALL_STATE(2539)] = 9383, + [SMALL_STATE(2540)] = 9469, + [SMALL_STATE(2541)] = 9539, + [SMALL_STATE(2542)] = 9627, + [SMALL_STATE(2543)] = 9697, + [SMALL_STATE(2544)] = 9767, + [SMALL_STATE(2545)] = 9837, + [SMALL_STATE(2546)] = 9907, + [SMALL_STATE(2547)] = 9977, + [SMALL_STATE(2548)] = 10047, + [SMALL_STATE(2549)] = 10117, + [SMALL_STATE(2550)] = 10187, + [SMALL_STATE(2551)] = 10257, + [SMALL_STATE(2552)] = 10327, + [SMALL_STATE(2553)] = 10397, + [SMALL_STATE(2554)] = 10467, + [SMALL_STATE(2555)] = 10537, + [SMALL_STATE(2556)] = 10607, + [SMALL_STATE(2557)] = 10677, + [SMALL_STATE(2558)] = 10747, + [SMALL_STATE(2559)] = 10817, + [SMALL_STATE(2560)] = 10901, + [SMALL_STATE(2561)] = 10985, + [SMALL_STATE(2562)] = 11055, + [SMALL_STATE(2563)] = 11125, + [SMALL_STATE(2564)] = 11195, + [SMALL_STATE(2565)] = 11265, + [SMALL_STATE(2566)] = 11335, + [SMALL_STATE(2567)] = 11405, + [SMALL_STATE(2568)] = 11475, + [SMALL_STATE(2569)] = 11545, + [SMALL_STATE(2570)] = 11615, + [SMALL_STATE(2571)] = 11685, + [SMALL_STATE(2572)] = 11755, + [SMALL_STATE(2573)] = 11829, + [SMALL_STATE(2574)] = 11899, + [SMALL_STATE(2575)] = 11969, + [SMALL_STATE(2576)] = 12047, + [SMALL_STATE(2577)] = 12117, + [SMALL_STATE(2578)] = 12187, + [SMALL_STATE(2579)] = 12256, + [SMALL_STATE(2580)] = 12329, + [SMALL_STATE(2581)] = 12402, + [SMALL_STATE(2582)] = 12475, + [SMALL_STATE(2583)] = 12548, + [SMALL_STATE(2584)] = 12617, + [SMALL_STATE(2585)] = 12692, + [SMALL_STATE(2586)] = 12765, + [SMALL_STATE(2587)] = 12844, + [SMALL_STATE(2588)] = 12919, + [SMALL_STATE(2589)] = 12992, + [SMALL_STATE(2590)] = 13065, + [SMALL_STATE(2591)] = 13136, + [SMALL_STATE(2592)] = 13209, + [SMALL_STATE(2593)] = 13278, + [SMALL_STATE(2594)] = 13347, + [SMALL_STATE(2595)] = 13416, + [SMALL_STATE(2596)] = 13503, + [SMALL_STATE(2597)] = 13572, + [SMALL_STATE(2598)] = 13645, + [SMALL_STATE(2599)] = 13726, + [SMALL_STATE(2600)] = 13799, + [SMALL_STATE(2601)] = 13872, + [SMALL_STATE(2602)] = 13947, + [SMALL_STATE(2603)] = 14016, + [SMALL_STATE(2604)] = 14103, + [SMALL_STATE(2605)] = 14182, + [SMALL_STATE(2606)] = 14301, + [SMALL_STATE(2607)] = 14370, + [SMALL_STATE(2608)] = 14489, + [SMALL_STATE(2609)] = 14560, + [SMALL_STATE(2610)] = 14629, + [SMALL_STATE(2611)] = 14716, + [SMALL_STATE(2612)] = 14787, + [SMALL_STATE(2613)] = 14856, + [SMALL_STATE(2614)] = 14925, + [SMALL_STATE(2615)] = 15000, + [SMALL_STATE(2616)] = 15069, + [SMALL_STATE(2617)] = 15138, + [SMALL_STATE(2618)] = 15211, + [SMALL_STATE(2619)] = 15290, + [SMALL_STATE(2620)] = 15364, + [SMALL_STATE(2621)] = 15432, + [SMALL_STATE(2622)] = 15502, + [SMALL_STATE(2623)] = 15576, + [SMALL_STATE(2624)] = 15644, + [SMALL_STATE(2625)] = 15716, + [SMALL_STATE(2626)] = 15784, + [SMALL_STATE(2627)] = 15860, + [SMALL_STATE(2628)] = 15932, + [SMALL_STATE(2629)] = 16004, + [SMALL_STATE(2630)] = 16072, + [SMALL_STATE(2631)] = 16144, + [SMALL_STATE(2632)] = 16216, + [SMALL_STATE(2633)] = 16288, + [SMALL_STATE(2634)] = 16362, + [SMALL_STATE(2635)] = 16436, + [SMALL_STATE(2636)] = 16510, + [SMALL_STATE(2637)] = 16582, + [SMALL_STATE(2638)] = 16654, + [SMALL_STATE(2639)] = 16728, + [SMALL_STATE(2640)] = 16800, + [SMALL_STATE(2641)] = 16868, + [SMALL_STATE(2642)] = 16940, + [SMALL_STATE(2643)] = 17008, + [SMALL_STATE(2644)] = 17076, + [SMALL_STATE(2645)] = 17150, + [SMALL_STATE(2646)] = 17222, + [SMALL_STATE(2647)] = 17294, + [SMALL_STATE(2648)] = 17368, + [SMALL_STATE(2649)] = 17442, + [SMALL_STATE(2650)] = 17510, + [SMALL_STATE(2651)] = 17582, + [SMALL_STATE(2652)] = 17650, + [SMALL_STATE(2653)] = 17724, + [SMALL_STATE(2654)] = 17798, + [SMALL_STATE(2655)] = 17866, + [SMALL_STATE(2656)] = 17934, + [SMALL_STATE(2657)] = 18002, + [SMALL_STATE(2658)] = 18074, + [SMALL_STATE(2659)] = 18146, + [SMALL_STATE(2660)] = 18214, + [SMALL_STATE(2661)] = 18288, + [SMALL_STATE(2662)] = 18360, + [SMALL_STATE(2663)] = 18434, + [SMALL_STATE(2664)] = 18508, + [SMALL_STATE(2665)] = 18582, + [SMALL_STATE(2666)] = 18664, + [SMALL_STATE(2667)] = 18734, + [SMALL_STATE(2668)] = 18802, + [SMALL_STATE(2669)] = 18874, + [SMALL_STATE(2670)] = 18946, + [SMALL_STATE(2671)] = 19022, + [SMALL_STATE(2672)] = 19092, + [SMALL_STATE(2673)] = 19178, + [SMALL_STATE(2674)] = 19252, + [SMALL_STATE(2675)] = 19324, + [SMALL_STATE(2676)] = 19392, + [SMALL_STATE(2677)] = 19460, + [SMALL_STATE(2678)] = 19528, + [SMALL_STATE(2679)] = 19600, + [SMALL_STATE(2680)] = 19668, + [SMALL_STATE(2681)] = 19736, + [SMALL_STATE(2682)] = 19804, + [SMALL_STATE(2683)] = 19872, + [SMALL_STATE(2684)] = 19944, + [SMALL_STATE(2685)] = 20014, + [SMALL_STATE(2686)] = 20090, + [SMALL_STATE(2687)] = 20162, + [SMALL_STATE(2688)] = 20230, + [SMALL_STATE(2689)] = 20308, + [SMALL_STATE(2690)] = 20380, + [SMALL_STATE(2691)] = 20454, + [SMALL_STATE(2692)] = 20536, + [SMALL_STATE(2693)] = 20608, + [SMALL_STATE(2694)] = 20680, + [SMALL_STATE(2695)] = 20756, + [SMALL_STATE(2696)] = 20823, + [SMALL_STATE(2697)] = 20906, + [SMALL_STATE(2698)] = 20975, + [SMALL_STATE(2699)] = 21058, + [SMALL_STATE(2700)] = 21131, + [SMALL_STATE(2701)] = 21202, + [SMALL_STATE(2702)] = 21319, + [SMALL_STATE(2703)] = 21386, + [SMALL_STATE(2704)] = 21503, + [SMALL_STATE(2705)] = 21570, + [SMALL_STATE(2706)] = 21637, + [SMALL_STATE(2707)] = 21706, + [SMALL_STATE(2708)] = 21775, + [SMALL_STATE(2709)] = 21842, + [SMALL_STATE(2710)] = 21909, + [SMALL_STATE(2711)] = 21976, + [SMALL_STATE(2712)] = 22043, + [SMALL_STATE(2713)] = 22110, + [SMALL_STATE(2714)] = 22179, + [SMALL_STATE(2715)] = 22260, + [SMALL_STATE(2716)] = 22327, + [SMALL_STATE(2717)] = 22394, + [SMALL_STATE(2718)] = 22461, + [SMALL_STATE(2719)] = 22528, + [SMALL_STATE(2720)] = 22595, + [SMALL_STATE(2721)] = 22662, + [SMALL_STATE(2722)] = 22743, + [SMALL_STATE(2723)] = 22810, + [SMALL_STATE(2724)] = 22877, + [SMALL_STATE(2725)] = 22944, + [SMALL_STATE(2726)] = 23011, + [SMALL_STATE(2727)] = 23078, + [SMALL_STATE(2728)] = 23145, + [SMALL_STATE(2729)] = 23212, + [SMALL_STATE(2730)] = 23279, + [SMALL_STATE(2731)] = 23346, + [SMALL_STATE(2732)] = 23413, + [SMALL_STATE(2733)] = 23480, + [SMALL_STATE(2734)] = 23547, + [SMALL_STATE(2735)] = 23614, + [SMALL_STATE(2736)] = 23681, + [SMALL_STATE(2737)] = 23748, + [SMALL_STATE(2738)] = 23815, + [SMALL_STATE(2739)] = 23882, + [SMALL_STATE(2740)] = 23949, + [SMALL_STATE(2741)] = 24020, + [SMALL_STATE(2742)] = 24087, + [SMALL_STATE(2743)] = 24154, + [SMALL_STATE(2744)] = 24221, + [SMALL_STATE(2745)] = 24288, + [SMALL_STATE(2746)] = 24355, + [SMALL_STATE(2747)] = 24422, + [SMALL_STATE(2748)] = 24489, + [SMALL_STATE(2749)] = 24556, + [SMALL_STATE(2750)] = 24623, + [SMALL_STATE(2751)] = 24690, + [SMALL_STATE(2752)] = 24757, + [SMALL_STATE(2753)] = 24824, + [SMALL_STATE(2754)] = 24891, + [SMALL_STATE(2755)] = 25008, + [SMALL_STATE(2756)] = 25125, + [SMALL_STATE(2757)] = 25192, + [SMALL_STATE(2758)] = 25265, + [SMALL_STATE(2759)] = 25338, + [SMALL_STATE(2760)] = 25411, + [SMALL_STATE(2761)] = 25478, + [SMALL_STATE(2762)] = 25544, + [SMALL_STATE(2763)] = 25614, + [SMALL_STATE(2764)] = 25684, + [SMALL_STATE(2765)] = 25754, + [SMALL_STATE(2766)] = 25830, + [SMALL_STATE(2767)] = 25896, + [SMALL_STATE(2768)] = 25962, + [SMALL_STATE(2769)] = 26028, + [SMALL_STATE(2770)] = 26094, + [SMALL_STATE(2771)] = 26160, + [SMALL_STATE(2772)] = 26228, + [SMALL_STATE(2773)] = 26296, + [SMALL_STATE(2774)] = 26362, + [SMALL_STATE(2775)] = 26434, + [SMALL_STATE(2776)] = 26500, + [SMALL_STATE(2777)] = 26568, + [SMALL_STATE(2778)] = 26644, + [SMALL_STATE(2779)] = 26714, + [SMALL_STATE(2780)] = 26786, + [SMALL_STATE(2781)] = 26856, + [SMALL_STATE(2782)] = 26922, + [SMALL_STATE(2783)] = 26992, + [SMALL_STATE(2784)] = 27062, + [SMALL_STATE(2785)] = 27132, + [SMALL_STATE(2786)] = 27214, + [SMALL_STATE(2787)] = 27280, + [SMALL_STATE(2788)] = 27346, + [SMALL_STATE(2789)] = 27412, + [SMALL_STATE(2790)] = 27478, + [SMALL_STATE(2791)] = 27544, + [SMALL_STATE(2792)] = 27610, + [SMALL_STATE(2793)] = 27676, + [SMALL_STATE(2794)] = 27768, + [SMALL_STATE(2795)] = 27840, + [SMALL_STATE(2796)] = 27906, + [SMALL_STATE(2797)] = 27988, + [SMALL_STATE(2798)] = 28060, + [SMALL_STATE(2799)] = 28152, + [SMALL_STATE(2800)] = 28234, + [SMALL_STATE(2801)] = 28300, + [SMALL_STATE(2802)] = 28366, + [SMALL_STATE(2803)] = 28458, + [SMALL_STATE(2804)] = 28528, + [SMALL_STATE(2805)] = 28610, + [SMALL_STATE(2806)] = 28676, + [SMALL_STATE(2807)] = 28768, + [SMALL_STATE(2808)] = 28860, + [SMALL_STATE(2809)] = 28952, + [SMALL_STATE(2810)] = 29044, + [SMALL_STATE(2811)] = 29114, + [SMALL_STATE(2812)] = 29184, + [SMALL_STATE(2813)] = 29254, + [SMALL_STATE(2814)] = 29324, + [SMALL_STATE(2815)] = 29400, + [SMALL_STATE(2816)] = 29466, + [SMALL_STATE(2817)] = 29539, + [SMALL_STATE(2818)] = 29604, + [SMALL_STATE(2819)] = 29669, + [SMALL_STATE(2820)] = 29734, + [SMALL_STATE(2821)] = 29799, + [SMALL_STATE(2822)] = 29864, + [SMALL_STATE(2823)] = 29929, + [SMALL_STATE(2824)] = 29994, + [SMALL_STATE(2825)] = 30075, + [SMALL_STATE(2826)] = 30156, + [SMALL_STATE(2827)] = 30221, + [SMALL_STATE(2828)] = 30296, + [SMALL_STATE(2829)] = 30363, + [SMALL_STATE(2830)] = 30442, + [SMALL_STATE(2831)] = 30513, + [SMALL_STATE(2832)] = 30586, + [SMALL_STATE(2833)] = 30657, + [SMALL_STATE(2834)] = 30728, + [SMALL_STATE(2835)] = 30799, + [SMALL_STATE(2836)] = 30882, + [SMALL_STATE(2837)] = 30947, + [SMALL_STATE(2838)] = 31026, + [SMALL_STATE(2839)] = 31109, + [SMALL_STATE(2840)] = 31184, + [SMALL_STATE(2841)] = 31259, + [SMALL_STATE(2842)] = 31368, + [SMALL_STATE(2843)] = 31481, + [SMALL_STATE(2844)] = 31586, + [SMALL_STATE(2845)] = 31687, + [SMALL_STATE(2846)] = 31786, + [SMALL_STATE(2847)] = 31883, + [SMALL_STATE(2848)] = 31978, + [SMALL_STATE(2849)] = 32069, + [SMALL_STATE(2850)] = 32156, + [SMALL_STATE(2851)] = 32265, + [SMALL_STATE(2852)] = 32378, + [SMALL_STATE(2853)] = 32487, + [SMALL_STATE(2854)] = 32600, + [SMALL_STATE(2855)] = 32665, + [SMALL_STATE(2856)] = 32730, + [SMALL_STATE(2857)] = 32795, + [SMALL_STATE(2858)] = 32878, + [SMALL_STATE(2859)] = 32961, + [SMALL_STATE(2860)] = 33044, + [SMALL_STATE(2861)] = 33153, + [SMALL_STATE(2862)] = 33262, + [SMALL_STATE(2863)] = 33343, + [SMALL_STATE(2864)] = 33426, + [SMALL_STATE(2865)] = 33509, + [SMALL_STATE(2866)] = 33576, + [SMALL_STATE(2867)] = 33659, + [SMALL_STATE(2868)] = 33742, + [SMALL_STATE(2869)] = 33813, + [SMALL_STATE(2870)] = 33896, + [SMALL_STATE(2871)] = 33979, + [SMALL_STATE(2872)] = 34050, + [SMALL_STATE(2873)] = 34133, + [SMALL_STATE(2874)] = 34216, + [SMALL_STATE(2875)] = 34283, + [SMALL_STATE(2876)] = 34364, + [SMALL_STATE(2877)] = 34447, + [SMALL_STATE(2878)] = 34532, + [SMALL_STATE(2879)] = 34597, + [SMALL_STATE(2880)] = 34680, + [SMALL_STATE(2881)] = 34751, + [SMALL_STATE(2882)] = 34822, + [SMALL_STATE(2883)] = 34887, + [SMALL_STATE(2884)] = 34952, + [SMALL_STATE(2885)] = 35023, + [SMALL_STATE(2886)] = 35094, + [SMALL_STATE(2887)] = 35175, + [SMALL_STATE(2888)] = 35246, + [SMALL_STATE(2889)] = 35317, + [SMALL_STATE(2890)] = 35382, + [SMALL_STATE(2891)] = 35460, + [SMALL_STATE(2892)] = 35524, + [SMALL_STATE(2893)] = 35588, + [SMALL_STATE(2894)] = 35652, + [SMALL_STATE(2895)] = 35716, + [SMALL_STATE(2896)] = 35790, + [SMALL_STATE(2897)] = 35856, + [SMALL_STATE(2898)] = 35920, + [SMALL_STATE(2899)] = 35984, + [SMALL_STATE(2900)] = 36102, + [SMALL_STATE(2901)] = 36172, + [SMALL_STATE(2902)] = 36242, + [SMALL_STATE(2903)] = 36306, + [SMALL_STATE(2904)] = 36376, + [SMALL_STATE(2905)] = 36446, + [SMALL_STATE(2906)] = 36516, + [SMALL_STATE(2907)] = 36586, + [SMALL_STATE(2908)] = 36698, + [SMALL_STATE(2909)] = 36768, + [SMALL_STATE(2910)] = 36880, + [SMALL_STATE(2911)] = 36950, + [SMALL_STATE(2912)] = 37020, + [SMALL_STATE(2913)] = 37090, + [SMALL_STATE(2914)] = 37160, + [SMALL_STATE(2915)] = 37230, + [SMALL_STATE(2916)] = 37298, + [SMALL_STATE(2917)] = 37374, + [SMALL_STATE(2918)] = 37492, + [SMALL_STATE(2919)] = 37556, + [SMALL_STATE(2920)] = 37626, + [SMALL_STATE(2921)] = 37690, + [SMALL_STATE(2922)] = 37799, + [SMALL_STATE(2923)] = 37894, + [SMALL_STATE(2924)] = 37973, + [SMALL_STATE(2925)] = 38090, + [SMALL_STATE(2926)] = 38199, + [SMALL_STATE(2927)] = 38278, + [SMALL_STATE(2928)] = 38351, + [SMALL_STATE(2929)] = 38430, + [SMALL_STATE(2930)] = 38509, + [SMALL_STATE(2931)] = 38582, + [SMALL_STATE(2932)] = 38673, + [SMALL_STATE(2933)] = 38740, + [SMALL_STATE(2934)] = 38807, + [SMALL_STATE(2935)] = 38924, + [SMALL_STATE(2936)] = 39013, + [SMALL_STATE(2937)] = 39076, + [SMALL_STATE(2938)] = 39185, + [SMALL_STATE(2939)] = 39298, + [SMALL_STATE(2940)] = 39459, + [SMALL_STATE(2941)] = 39568, + [SMALL_STATE(2942)] = 39637, + [SMALL_STATE(2943)] = 39704, + [SMALL_STATE(2944)] = 39789, + [SMALL_STATE(2945)] = 39860, + [SMALL_STATE(2946)] = 39977, + [SMALL_STATE(2947)] = 40044, + [SMALL_STATE(2948)] = 40161, + [SMALL_STATE(2949)] = 40322, + [SMALL_STATE(2950)] = 40431, + [SMALL_STATE(2951)] = 40504, + [SMALL_STATE(2952)] = 40573, + [SMALL_STATE(2953)] = 40682, + [SMALL_STATE(2954)] = 40753, + [SMALL_STATE(2955)] = 40862, + [SMALL_STATE(2956)] = 40943, + [SMALL_STATE(2957)] = 41056, + [SMALL_STATE(2958)] = 41119, + [SMALL_STATE(2959)] = 41228, + [SMALL_STATE(2960)] = 41291, + [SMALL_STATE(2961)] = 41364, + [SMALL_STATE(2962)] = 41525, + [SMALL_STATE(2963)] = 41634, + [SMALL_STATE(2964)] = 41743, + [SMALL_STATE(2965)] = 41852, + [SMALL_STATE(2966)] = 41925, + [SMALL_STATE(2967)] = 42034, + [SMALL_STATE(2968)] = 42097, + [SMALL_STATE(2969)] = 42164, + [SMALL_STATE(2970)] = 42247, + [SMALL_STATE(2971)] = 42310, + [SMALL_STATE(2972)] = 42377, + [SMALL_STATE(2973)] = 42456, + [SMALL_STATE(2974)] = 42569, + [SMALL_STATE(2975)] = 42678, + [SMALL_STATE(2976)] = 42741, + [SMALL_STATE(2977)] = 42808, + [SMALL_STATE(2978)] = 42881, + [SMALL_STATE(2979)] = 42982, + [SMALL_STATE(2980)] = 43091, + [SMALL_STATE(2981)] = 43200, + [SMALL_STATE(2982)] = 43309, + [SMALL_STATE(2983)] = 43376, + [SMALL_STATE(2984)] = 43485, + [SMALL_STATE(2985)] = 43594, + [SMALL_STATE(2986)] = 43703, + [SMALL_STATE(2987)] = 43766, + [SMALL_STATE(2988)] = 43875, + [SMALL_STATE(2989)] = 43984, + [SMALL_STATE(2990)] = 44093, + [SMALL_STATE(2991)] = 44160, + [SMALL_STATE(2992)] = 44269, + [SMALL_STATE(2993)] = 44342, + [SMALL_STATE(2994)] = 44451, + [SMALL_STATE(2995)] = 44560, + [SMALL_STATE(2996)] = 44669, + [SMALL_STATE(2997)] = 44742, + [SMALL_STATE(2998)] = 44851, + [SMALL_STATE(2999)] = 44960, + [SMALL_STATE(3000)] = 45025, + [SMALL_STATE(3001)] = 45090, + [SMALL_STATE(3002)] = 45157, + [SMALL_STATE(3003)] = 45266, + [SMALL_STATE(3004)] = 45375, + [SMALL_STATE(3005)] = 45484, + [SMALL_STATE(3006)] = 45593, + [SMALL_STATE(3007)] = 45664, + [SMALL_STATE(3008)] = 45773, + [SMALL_STATE(3009)] = 45882, + [SMALL_STATE(3010)] = 45951, + [SMALL_STATE(3011)] = 46060, + [SMALL_STATE(3012)] = 46169, + [SMALL_STATE(3013)] = 46278, + [SMALL_STATE(3014)] = 46387, + [SMALL_STATE(3015)] = 46504, + [SMALL_STATE(3016)] = 46613, + [SMALL_STATE(3017)] = 46730, + [SMALL_STATE(3018)] = 46839, + [SMALL_STATE(3019)] = 46936, + [SMALL_STATE(3020)] = 47041, + [SMALL_STATE(3021)] = 47108, + [SMALL_STATE(3022)] = 47171, + [SMALL_STATE(3023)] = 47238, + [SMALL_STATE(3024)] = 47305, + [SMALL_STATE(3025)] = 47414, + [SMALL_STATE(3026)] = 47480, + [SMALL_STATE(3027)] = 47542, + [SMALL_STATE(3028)] = 47654, + [SMALL_STATE(3029)] = 47758, + [SMALL_STATE(3030)] = 47858, + [SMALL_STATE(3031)] = 47954, + [SMALL_STATE(3032)] = 48022, + [SMALL_STATE(3033)] = 48116, + [SMALL_STATE(3034)] = 48182, + [SMALL_STATE(3035)] = 48244, + [SMALL_STATE(3036)] = 48306, + [SMALL_STATE(3037)] = 48374, + [SMALL_STATE(3038)] = 48490, + [SMALL_STATE(3039)] = 48560, + [SMALL_STATE(3040)] = 48626, + [SMALL_STATE(3041)] = 48716, + [SMALL_STATE(3042)] = 48784, + [SMALL_STATE(3043)] = 48872, + [SMALL_STATE(3044)] = 48956, + [SMALL_STATE(3045)] = 49022, + [SMALL_STATE(3046)] = 49138, + [SMALL_STATE(3047)] = 49204, + [SMALL_STATE(3048)] = 49270, + [SMALL_STATE(3049)] = 49332, + [SMALL_STATE(3050)] = 49394, + [SMALL_STATE(3051)] = 49456, + [SMALL_STATE(3052)] = 49524, + [SMALL_STATE(3053)] = 49586, + [SMALL_STATE(3054)] = 49648, + [SMALL_STATE(3055)] = 49716, + [SMALL_STATE(3056)] = 49784, + [SMALL_STATE(3057)] = 49852, + [SMALL_STATE(3058)] = 49914, + [SMALL_STATE(3059)] = 50030, + [SMALL_STATE(3060)] = 50092, + [SMALL_STATE(3061)] = 50158, + [SMALL_STATE(3062)] = 50224, + [SMALL_STATE(3063)] = 50290, + [SMALL_STATE(3064)] = 50352, + [SMALL_STATE(3065)] = 50414, + [SMALL_STATE(3066)] = 50476, + [SMALL_STATE(3067)] = 50584, + [SMALL_STATE(3068)] = 50646, + [SMALL_STATE(3069)] = 50714, + [SMALL_STATE(3070)] = 50780, + [SMALL_STATE(3071)] = 50892, + [SMALL_STATE(3072)] = 50958, + [SMALL_STATE(3073)] = 51022, + [SMALL_STATE(3074)] = 51138, + [SMALL_STATE(3075)] = 51202, + [SMALL_STATE(3076)] = 51310, + [SMALL_STATE(3077)] = 51378, + [SMALL_STATE(3078)] = 51450, + [SMALL_STATE(3079)] = 51518, + [SMALL_STATE(3080)] = 51634, + [SMALL_STATE(3081)] = 51708, + [SMALL_STATE(3082)] = 51774, + [SMALL_STATE(3083)] = 51840, + [SMALL_STATE(3084)] = 51906, + [SMALL_STATE(3085)] = 51974, + [SMALL_STATE(3086)] = 52042, + [SMALL_STATE(3087)] = 52110, + [SMALL_STATE(3088)] = 52172, + [SMALL_STATE(3089)] = 52246, + [SMALL_STATE(3090)] = 52358, + [SMALL_STATE(3091)] = 52422, + [SMALL_STATE(3092)] = 52490, + [SMALL_STATE(3093)] = 52558, + [SMALL_STATE(3094)] = 52620, + [SMALL_STATE(3095)] = 52682, + [SMALL_STATE(3096)] = 52746, + [SMALL_STATE(3097)] = 52808, + [SMALL_STATE(3098)] = 52876, + [SMALL_STATE(3099)] = 52992, + [SMALL_STATE(3100)] = 53056, + [SMALL_STATE(3101)] = 53172, + [SMALL_STATE(3102)] = 53244, + [SMALL_STATE(3103)] = 53360, + [SMALL_STATE(3104)] = 53428, + [SMALL_STATE(3105)] = 53494, + [SMALL_STATE(3106)] = 53560, + [SMALL_STATE(3107)] = 53624, + [SMALL_STATE(3108)] = 53688, + [SMALL_STATE(3109)] = 53750, + [SMALL_STATE(3110)] = 53812, + [SMALL_STATE(3111)] = 53878, + [SMALL_STATE(3112)] = 53944, + [SMALL_STATE(3113)] = 54008, + [SMALL_STATE(3114)] = 54070, + [SMALL_STATE(3115)] = 54136, + [SMALL_STATE(3116)] = 54200, + [SMALL_STATE(3117)] = 54316, + [SMALL_STATE(3118)] = 54378, + [SMALL_STATE(3119)] = 54446, + [SMALL_STATE(3120)] = 54508, + [SMALL_STATE(3121)] = 54572, + [SMALL_STATE(3122)] = 54634, + [SMALL_STATE(3123)] = 54714, + [SMALL_STATE(3124)] = 54776, + [SMALL_STATE(3125)] = 54838, + [SMALL_STATE(3126)] = 54912, + [SMALL_STATE(3127)] = 54976, + [SMALL_STATE(3128)] = 55038, + [SMALL_STATE(3129)] = 55100, + [SMALL_STATE(3130)] = 55164, + [SMALL_STATE(3131)] = 55228, + [SMALL_STATE(3132)] = 55300, + [SMALL_STATE(3133)] = 55366, + [SMALL_STATE(3134)] = 55430, + [SMALL_STATE(3135)] = 55546, + [SMALL_STATE(3136)] = 55654, + [SMALL_STATE(3137)] = 55716, + [SMALL_STATE(3138)] = 55824, + [SMALL_STATE(3139)] = 55888, + [SMALL_STATE(3140)] = 55966, + [SMALL_STATE(3141)] = 56032, + [SMALL_STATE(3142)] = 56112, + [SMALL_STATE(3143)] = 56176, + [SMALL_STATE(3144)] = 56258, + [SMALL_STATE(3145)] = 56366, + [SMALL_STATE(3146)] = 56436, + [SMALL_STATE(3147)] = 56502, + [SMALL_STATE(3148)] = 56564, + [SMALL_STATE(3149)] = 56626, + [SMALL_STATE(3150)] = 56688, + [SMALL_STATE(3151)] = 56750, + [SMALL_STATE(3152)] = 56866, + [SMALL_STATE(3153)] = 56928, + [SMALL_STATE(3154)] = 56990, + [SMALL_STATE(3155)] = 57052, + [SMALL_STATE(3156)] = 57114, + [SMALL_STATE(3157)] = 57186, + [SMALL_STATE(3158)] = 57248, + [SMALL_STATE(3159)] = 57310, + [SMALL_STATE(3160)] = 57374, + [SMALL_STATE(3161)] = 57436, + [SMALL_STATE(3162)] = 57508, + [SMALL_STATE(3163)] = 57574, + [SMALL_STATE(3164)] = 57646, + [SMALL_STATE(3165)] = 57762, + [SMALL_STATE(3166)] = 57877, + [SMALL_STATE(3167)] = 57954, + [SMALL_STATE(3168)] = 58023, + [SMALL_STATE(3169)] = 58086, + [SMALL_STATE(3170)] = 58147, + [SMALL_STATE(3171)] = 58222, + [SMALL_STATE(3172)] = 58291, + [SMALL_STATE(3173)] = 58358, + [SMALL_STATE(3174)] = 58419, + [SMALL_STATE(3175)] = 58480, + [SMALL_STATE(3176)] = 58549, + [SMALL_STATE(3177)] = 58614, + [SMALL_STATE(3178)] = 58677, + [SMALL_STATE(3179)] = 58738, + [SMALL_STATE(3180)] = 58811, + [SMALL_STATE(3181)] = 58872, + [SMALL_STATE(3182)] = 58947, + [SMALL_STATE(3183)] = 59008, + [SMALL_STATE(3184)] = 59115, + [SMALL_STATE(3185)] = 59176, + [SMALL_STATE(3186)] = 59251, + [SMALL_STATE(3187)] = 59326, + [SMALL_STATE(3188)] = 59433, + [SMALL_STATE(3189)] = 59506, + [SMALL_STATE(3190)] = 59567, + [SMALL_STATE(3191)] = 59628, + [SMALL_STATE(3192)] = 59697, + [SMALL_STATE(3193)] = 59758, + [SMALL_STATE(3194)] = 59821, + [SMALL_STATE(3195)] = 59886, + [SMALL_STATE(3196)] = 59955, + [SMALL_STATE(3197)] = 60022, + [SMALL_STATE(3198)] = 60097, + [SMALL_STATE(3199)] = 60204, + [SMALL_STATE(3200)] = 60269, + [SMALL_STATE(3201)] = 60380, + [SMALL_STATE(3202)] = 60447, + [SMALL_STATE(3203)] = 60512, + [SMALL_STATE(3204)] = 60589, + [SMALL_STATE(3205)] = 60664, + [SMALL_STATE(3206)] = 60767, + [SMALL_STATE(3207)] = 60866, + [SMALL_STATE(3208)] = 60961, + [SMALL_STATE(3209)] = 61054, + [SMALL_STATE(3210)] = 61121, + [SMALL_STATE(3211)] = 61210, + [SMALL_STATE(3212)] = 61297, + [SMALL_STATE(3213)] = 61380, + [SMALL_STATE(3214)] = 61459, + [SMALL_STATE(3215)] = 61540, + [SMALL_STATE(3216)] = 61607, + [SMALL_STATE(3217)] = 61672, + [SMALL_STATE(3218)] = 61733, + [SMALL_STATE(3219)] = 61800, + [SMALL_STATE(3220)] = 61875, + [SMALL_STATE(3221)] = 61942, + [SMALL_STATE(3222)] = 62007, + [SMALL_STATE(3223)] = 62074, + [SMALL_STATE(3224)] = 62181, + [SMALL_STATE(3225)] = 62292, + [SMALL_STATE(3226)] = 62357, + [SMALL_STATE(3227)] = 62464, + [SMALL_STATE(3228)] = 62525, + [SMALL_STATE(3229)] = 62586, + [SMALL_STATE(3230)] = 62647, + [SMALL_STATE(3231)] = 62708, + [SMALL_STATE(3232)] = 62769, + [SMALL_STATE(3233)] = 62830, + [SMALL_STATE(3234)] = 62895, + [SMALL_STATE(3235)] = 62956, + [SMALL_STATE(3236)] = 63067, + [SMALL_STATE(3237)] = 63134, + [SMALL_STATE(3238)] = 63195, + [SMALL_STATE(3239)] = 63256, + [SMALL_STATE(3240)] = 63371, + [SMALL_STATE(3241)] = 63432, + [SMALL_STATE(3242)] = 63493, + [SMALL_STATE(3243)] = 63554, + [SMALL_STATE(3244)] = 63615, + [SMALL_STATE(3245)] = 63676, + [SMALL_STATE(3246)] = 63737, + [SMALL_STATE(3247)] = 63798, + [SMALL_STATE(3248)] = 63859, + [SMALL_STATE(3249)] = 63920, + [SMALL_STATE(3250)] = 63981, + [SMALL_STATE(3251)] = 64042, + [SMALL_STATE(3252)] = 64103, + [SMALL_STATE(3253)] = 64164, + [SMALL_STATE(3254)] = 64225, + [SMALL_STATE(3255)] = 64288, + [SMALL_STATE(3256)] = 64349, + [SMALL_STATE(3257)] = 64410, + [SMALL_STATE(3258)] = 64471, + [SMALL_STATE(3259)] = 64532, + [SMALL_STATE(3260)] = 64593, + [SMALL_STATE(3261)] = 64654, + [SMALL_STATE(3262)] = 64715, + [SMALL_STATE(3263)] = 64776, + [SMALL_STATE(3264)] = 64843, + [SMALL_STATE(3265)] = 64921, + [SMALL_STATE(3266)] = 64981, + [SMALL_STATE(3267)] = 65041, + [SMALL_STATE(3268)] = 65101, + [SMALL_STATE(3269)] = 65161, + [SMALL_STATE(3270)] = 65221, + [SMALL_STATE(3271)] = 65281, + [SMALL_STATE(3272)] = 65353, + [SMALL_STATE(3273)] = 65457, + [SMALL_STATE(3274)] = 65531, + [SMALL_STATE(3275)] = 65591, + [SMALL_STATE(3276)] = 65651, + [SMALL_STATE(3277)] = 65725, + [SMALL_STATE(3278)] = 65785, + [SMALL_STATE(3279)] = 65855, + [SMALL_STATE(3280)] = 65959, + [SMALL_STATE(3281)] = 66031, + [SMALL_STATE(3282)] = 66145, + [SMALL_STATE(3283)] = 66259, + [SMALL_STATE(3284)] = 66373, + [SMALL_STATE(3285)] = 66435, + [SMALL_STATE(3286)] = 66495, + [SMALL_STATE(3287)] = 66563, + [SMALL_STATE(3288)] = 66623, + [SMALL_STATE(3289)] = 66683, + [SMALL_STATE(3290)] = 66743, + [SMALL_STATE(3291)] = 66803, + [SMALL_STATE(3292)] = 66863, + [SMALL_STATE(3293)] = 66923, + [SMALL_STATE(3294)] = 67079, + [SMALL_STATE(3295)] = 67159, + [SMALL_STATE(3296)] = 67263, + [SMALL_STATE(3297)] = 67419, + [SMALL_STATE(3298)] = 67479, + [SMALL_STATE(3299)] = 67541, + [SMALL_STATE(3300)] = 67649, + [SMALL_STATE(3301)] = 67709, + [SMALL_STATE(3302)] = 67773, + [SMALL_STATE(3303)] = 67833, + [SMALL_STATE(3304)] = 67893, + [SMALL_STATE(3305)] = 67953, + [SMALL_STATE(3306)] = 68019, + [SMALL_STATE(3307)] = 68095, + [SMALL_STATE(3308)] = 68159, + [SMALL_STATE(3309)] = 68233, + [SMALL_STATE(3310)] = 68333, + [SMALL_STATE(3311)] = 68429, + [SMALL_STATE(3312)] = 68521, + [SMALL_STATE(3313)] = 68611, + [SMALL_STATE(3314)] = 68697, + [SMALL_STATE(3315)] = 68781, + [SMALL_STATE(3316)] = 68863, + [SMALL_STATE(3317)] = 68943, + [SMALL_STATE(3318)] = 69003, + [SMALL_STATE(3319)] = 69077, + [SMALL_STATE(3320)] = 69137, + [SMALL_STATE(3321)] = 69241, + [SMALL_STATE(3322)] = 69397, + [SMALL_STATE(3323)] = 69505, + [SMALL_STATE(3324)] = 69609, + [SMALL_STATE(3325)] = 69673, + [SMALL_STATE(3326)] = 69733, + [SMALL_STATE(3327)] = 69889, + [SMALL_STATE(3328)] = 69951, + [SMALL_STATE(3329)] = 70015, + [SMALL_STATE(3330)] = 70075, + [SMALL_STATE(3331)] = 70183, + [SMALL_STATE(3332)] = 70243, + [SMALL_STATE(3333)] = 70303, + [SMALL_STATE(3334)] = 70459, + [SMALL_STATE(3335)] = 70523, + [SMALL_STATE(3336)] = 70587, + [SMALL_STATE(3337)] = 70699, + [SMALL_STATE(3338)] = 70855, + [SMALL_STATE(3339)] = 70921, + [SMALL_STATE(3340)] = 70987, + [SMALL_STATE(3341)] = 71053, + [SMALL_STATE(3342)] = 71209, + [SMALL_STATE(3343)] = 71323, + [SMALL_STATE(3344)] = 71437, + [SMALL_STATE(3345)] = 71497, + [SMALL_STATE(3346)] = 71557, + [SMALL_STATE(3347)] = 71713, + [SMALL_STATE(3348)] = 71869, + [SMALL_STATE(3349)] = 71929, + [SMALL_STATE(3350)] = 71989, + [SMALL_STATE(3351)] = 72049, + [SMALL_STATE(3352)] = 72109, + [SMALL_STATE(3353)] = 72169, + [SMALL_STATE(3354)] = 72229, + [SMALL_STATE(3355)] = 72295, + [SMALL_STATE(3356)] = 72355, + [SMALL_STATE(3357)] = 72417, + [SMALL_STATE(3358)] = 72531, + [SMALL_STATE(3359)] = 72609, + [SMALL_STATE(3360)] = 72723, + [SMALL_STATE(3361)] = 72783, + [SMALL_STATE(3362)] = 72851, + [SMALL_STATE(3363)] = 72921, + [SMALL_STATE(3364)] = 72981, + [SMALL_STATE(3365)] = 73055, + [SMALL_STATE(3366)] = 73115, + [SMALL_STATE(3367)] = 73185, + [SMALL_STATE(3368)] = 73245, + [SMALL_STATE(3369)] = 73305, + [SMALL_STATE(3370)] = 73365, + [SMALL_STATE(3371)] = 73425, + [SMALL_STATE(3372)] = 73485, + [SMALL_STATE(3373)] = 73545, + [SMALL_STATE(3374)] = 73611, + [SMALL_STATE(3375)] = 73673, + [SMALL_STATE(3376)] = 73733, + [SMALL_STATE(3377)] = 73793, + [SMALL_STATE(3378)] = 73853, + [SMALL_STATE(3379)] = 73913, + [SMALL_STATE(3380)] = 73985, + [SMALL_STATE(3381)] = 74057, + [SMALL_STATE(3382)] = 74129, + [SMALL_STATE(3383)] = 74235, + [SMALL_STATE(3384)] = 74309, + [SMALL_STATE(3385)] = 74383, + [SMALL_STATE(3386)] = 74489, + [SMALL_STATE(3387)] = 74561, + [SMALL_STATE(3388)] = 74667, + [SMALL_STATE(3389)] = 74777, + [SMALL_STATE(3390)] = 74853, + [SMALL_STATE(3391)] = 74927, + [SMALL_STATE(3392)] = 75029, + [SMALL_STATE(3393)] = 75127, + [SMALL_STATE(3394)] = 75221, + [SMALL_STATE(3395)] = 75313, + [SMALL_STATE(3396)] = 75401, + [SMALL_STATE(3397)] = 75487, + [SMALL_STATE(3398)] = 75569, + [SMALL_STATE(3399)] = 75647, + [SMALL_STATE(3400)] = 75727, + [SMALL_STATE(3401)] = 75801, + [SMALL_STATE(3402)] = 75907, + [SMALL_STATE(3403)] = 76017, + [SMALL_STATE(3404)] = 76123, + [SMALL_STATE(3405)] = 76233, + [SMALL_STATE(3406)] = 76307, + [SMALL_STATE(3407)] = 76367, + [SMALL_STATE(3408)] = 76427, + [SMALL_STATE(3409)] = 76493, + [SMALL_STATE(3410)] = 76552, + [SMALL_STATE(3411)] = 76611, + [SMALL_STATE(3412)] = 76674, + [SMALL_STATE(3413)] = 76733, + [SMALL_STATE(3414)] = 76800, + [SMALL_STATE(3415)] = 76859, + [SMALL_STATE(3416)] = 76918, + [SMALL_STATE(3417)] = 77015, + [SMALL_STATE(3418)] = 77074, + [SMALL_STATE(3419)] = 77171, + [SMALL_STATE(3420)] = 77230, + [SMALL_STATE(3421)] = 77289, + [SMALL_STATE(3422)] = 77356, + [SMALL_STATE(3423)] = 77419, + [SMALL_STATE(3424)] = 77484, + [SMALL_STATE(3425)] = 77557, + [SMALL_STATE(3426)] = 77620, + [SMALL_STATE(3427)] = 77717, + [SMALL_STATE(3428)] = 77790, + [SMALL_STATE(3429)] = 77887, + [SMALL_STATE(3430)] = 77950, + [SMALL_STATE(3431)] = 78009, + [SMALL_STATE(3432)] = 78068, + [SMALL_STATE(3433)] = 78181, + [SMALL_STATE(3434)] = 78240, + [SMALL_STATE(3435)] = 78299, + [SMALL_STATE(3436)] = 78358, + [SMALL_STATE(3437)] = 78421, + [SMALL_STATE(3438)] = 78480, + [SMALL_STATE(3439)] = 78539, + [SMALL_STATE(3440)] = 78598, + [SMALL_STATE(3441)] = 78657, + [SMALL_STATE(3442)] = 78716, + [SMALL_STATE(3443)] = 78775, + [SMALL_STATE(3444)] = 78834, + [SMALL_STATE(3445)] = 78893, + [SMALL_STATE(3446)] = 78952, + [SMALL_STATE(3447)] = 79011, + [SMALL_STATE(3448)] = 79070, + [SMALL_STATE(3449)] = 79129, + [SMALL_STATE(3450)] = 79188, + [SMALL_STATE(3451)] = 79247, + [SMALL_STATE(3452)] = 79306, + [SMALL_STATE(3453)] = 79403, + [SMALL_STATE(3454)] = 79500, + [SMALL_STATE(3455)] = 79559, + [SMALL_STATE(3456)] = 79618, + [SMALL_STATE(3457)] = 79677, + [SMALL_STATE(3458)] = 79736, + [SMALL_STATE(3459)] = 79795, + [SMALL_STATE(3460)] = 79854, + [SMALL_STATE(3461)] = 79913, + [SMALL_STATE(3462)] = 79976, + [SMALL_STATE(3463)] = 80035, + [SMALL_STATE(3464)] = 80094, + [SMALL_STATE(3465)] = 80163, + [SMALL_STATE(3466)] = 80222, + [SMALL_STATE(3467)] = 80281, + [SMALL_STATE(3468)] = 80340, + [SMALL_STATE(3469)] = 80401, + [SMALL_STATE(3470)] = 80460, + [SMALL_STATE(3471)] = 80519, + [SMALL_STATE(3472)] = 80578, + [SMALL_STATE(3473)] = 80637, + [SMALL_STATE(3474)] = 80696, + [SMALL_STATE(3475)] = 80759, + [SMALL_STATE(3476)] = 80818, + [SMALL_STATE(3477)] = 80877, + [SMALL_STATE(3478)] = 80936, + [SMALL_STATE(3479)] = 80995, + [SMALL_STATE(3480)] = 81060, + [SMALL_STATE(3481)] = 81119, + [SMALL_STATE(3482)] = 81178, + [SMALL_STATE(3483)] = 81237, + [SMALL_STATE(3484)] = 81296, + [SMALL_STATE(3485)] = 81355, + [SMALL_STATE(3486)] = 81420, + [SMALL_STATE(3487)] = 81479, + [SMALL_STATE(3488)] = 81538, + [SMALL_STATE(3489)] = 81601, + [SMALL_STATE(3490)] = 81662, + [SMALL_STATE(3491)] = 81721, + [SMALL_STATE(3492)] = 81780, + [SMALL_STATE(3493)] = 81839, + [SMALL_STATE(3494)] = 81898, + [SMALL_STATE(3495)] = 81959, + [SMALL_STATE(3496)] = 82018, + [SMALL_STATE(3497)] = 82083, + [SMALL_STATE(3498)] = 82142, + [SMALL_STATE(3499)] = 82201, + [SMALL_STATE(3500)] = 82260, + [SMALL_STATE(3501)] = 82319, + [SMALL_STATE(3502)] = 82378, + [SMALL_STATE(3503)] = 82437, + [SMALL_STATE(3504)] = 82496, + [SMALL_STATE(3505)] = 82555, + [SMALL_STATE(3506)] = 82614, + [SMALL_STATE(3507)] = 82673, + [SMALL_STATE(3508)] = 82732, + [SMALL_STATE(3509)] = 82791, + [SMALL_STATE(3510)] = 82850, + [SMALL_STATE(3511)] = 82909, + [SMALL_STATE(3512)] = 82968, + [SMALL_STATE(3513)] = 83027, + [SMALL_STATE(3514)] = 83086, + [SMALL_STATE(3515)] = 83145, + [SMALL_STATE(3516)] = 83204, + [SMALL_STATE(3517)] = 83263, + [SMALL_STATE(3518)] = 83322, + [SMALL_STATE(3519)] = 83381, + [SMALL_STATE(3520)] = 83440, + [SMALL_STATE(3521)] = 83499, + [SMALL_STATE(3522)] = 83558, + [SMALL_STATE(3523)] = 83617, + [SMALL_STATE(3524)] = 83678, + [SMALL_STATE(3525)] = 83737, + [SMALL_STATE(3526)] = 83796, + [SMALL_STATE(3527)] = 83861, + [SMALL_STATE(3528)] = 83926, + [SMALL_STATE(3529)] = 84039, + [SMALL_STATE(3530)] = 84098, + [SMALL_STATE(3531)] = 84157, + [SMALL_STATE(3532)] = 84216, + [SMALL_STATE(3533)] = 84275, + [SMALL_STATE(3534)] = 84334, + [SMALL_STATE(3535)] = 84393, + [SMALL_STATE(3536)] = 84452, + [SMALL_STATE(3537)] = 84511, + [SMALL_STATE(3538)] = 84580, + [SMALL_STATE(3539)] = 84639, + [SMALL_STATE(3540)] = 84698, + [SMALL_STATE(3541)] = 84761, + [SMALL_STATE(3542)] = 84820, + [SMALL_STATE(3543)] = 84879, + [SMALL_STATE(3544)] = 84938, + [SMALL_STATE(3545)] = 85051, + [SMALL_STATE(3546)] = 85110, + [SMALL_STATE(3547)] = 85173, + [SMALL_STATE(3548)] = 85232, + [SMALL_STATE(3549)] = 85291, + [SMALL_STATE(3550)] = 85358, + [SMALL_STATE(3551)] = 85417, + [SMALL_STATE(3552)] = 85476, + [SMALL_STATE(3553)] = 85535, + [SMALL_STATE(3554)] = 85594, + [SMALL_STATE(3555)] = 85653, + [SMALL_STATE(3556)] = 85712, + [SMALL_STATE(3557)] = 85771, + [SMALL_STATE(3558)] = 85830, + [SMALL_STATE(3559)] = 85889, + [SMALL_STATE(3560)] = 86002, + [SMALL_STATE(3561)] = 86061, + [SMALL_STATE(3562)] = 86130, + [SMALL_STATE(3563)] = 86199, + [SMALL_STATE(3564)] = 86262, + [SMALL_STATE(3565)] = 86325, + [SMALL_STATE(3566)] = 86384, + [SMALL_STATE(3567)] = 86443, + [SMALL_STATE(3568)] = 86502, + [SMALL_STATE(3569)] = 86561, + [SMALL_STATE(3570)] = 86624, + [SMALL_STATE(3571)] = 86683, + [SMALL_STATE(3572)] = 86746, + [SMALL_STATE(3573)] = 86809, + [SMALL_STATE(3574)] = 86872, + [SMALL_STATE(3575)] = 86931, + [SMALL_STATE(3576)] = 86990, + [SMALL_STATE(3577)] = 87053, + [SMALL_STATE(3578)] = 87112, + [SMALL_STATE(3579)] = 87171, + [SMALL_STATE(3580)] = 87238, + [SMALL_STATE(3581)] = 87297, + [SMALL_STATE(3582)] = 87356, + [SMALL_STATE(3583)] = 87415, + [SMALL_STATE(3584)] = 87474, + [SMALL_STATE(3585)] = 87533, + [SMALL_STATE(3586)] = 87592, + [SMALL_STATE(3587)] = 87651, + [SMALL_STATE(3588)] = 87716, + [SMALL_STATE(3589)] = 87775, + [SMALL_STATE(3590)] = 87834, + [SMALL_STATE(3591)] = 87893, + [SMALL_STATE(3592)] = 87952, + [SMALL_STATE(3593)] = 88065, + [SMALL_STATE(3594)] = 88145, + [SMALL_STATE(3595)] = 88203, + [SMALL_STATE(3596)] = 88301, + [SMALL_STATE(3597)] = 88359, + [SMALL_STATE(3598)] = 88417, + [SMALL_STATE(3599)] = 88475, + [SMALL_STATE(3600)] = 88581, + [SMALL_STATE(3601)] = 88639, + [SMALL_STATE(3602)] = 88697, + [SMALL_STATE(3603)] = 88755, + [SMALL_STATE(3604)] = 88815, + [SMALL_STATE(3605)] = 88873, + [SMALL_STATE(3606)] = 88931, + [SMALL_STATE(3607)] = 88989, + [SMALL_STATE(3608)] = 89047, + [SMALL_STATE(3609)] = 89141, + [SMALL_STATE(3610)] = 89199, + [SMALL_STATE(3611)] = 89261, + [SMALL_STATE(3612)] = 89319, + [SMALL_STATE(3613)] = 89377, + [SMALL_STATE(3614)] = 89435, + [SMALL_STATE(3615)] = 89493, + [SMALL_STATE(3616)] = 89563, + [SMALL_STATE(3617)] = 89665, + [SMALL_STATE(3618)] = 89723, + [SMALL_STATE(3619)] = 89785, + [SMALL_STATE(3620)] = 89843, + [SMALL_STATE(3621)] = 89901, + [SMALL_STATE(3622)] = 89959, + [SMALL_STATE(3623)] = 90017, + [SMALL_STATE(3624)] = 90113, + [SMALL_STATE(3625)] = 90203, + [SMALL_STATE(3626)] = 90261, + [SMALL_STATE(3627)] = 90319, + [SMALL_STATE(3628)] = 90415, + [SMALL_STATE(3629)] = 90501, + [SMALL_STATE(3630)] = 90559, + [SMALL_STATE(3631)] = 90625, + [SMALL_STATE(3632)] = 90683, + [SMALL_STATE(3633)] = 90741, + [SMALL_STATE(3634)] = 90799, + [SMALL_STATE(3635)] = 90857, + [SMALL_STATE(3636)] = 90935, + [SMALL_STATE(3637)] = 90993, + [SMALL_STATE(3638)] = 91099, + [SMALL_STATE(3639)] = 91161, + [SMALL_STATE(3640)] = 91219, + [SMALL_STATE(3641)] = 91277, + [SMALL_STATE(3642)] = 91361, + [SMALL_STATE(3643)] = 91419, + [SMALL_STATE(3644)] = 91477, + [SMALL_STATE(3645)] = 91537, + [SMALL_STATE(3646)] = 91595, + [SMALL_STATE(3647)] = 91653, + [SMALL_STATE(3648)] = 91711, + [SMALL_STATE(3649)] = 91769, + [SMALL_STATE(3650)] = 91841, + [SMALL_STATE(3651)] = 91913, + [SMALL_STATE(3652)] = 91971, + [SMALL_STATE(3653)] = 92029, + [SMALL_STATE(3654)] = 92087, + [SMALL_STATE(3655)] = 92145, + [SMALL_STATE(3656)] = 92205, + [SMALL_STATE(3657)] = 92279, + [SMALL_STATE(3658)] = 92351, + [SMALL_STATE(3659)] = 92451, + [SMALL_STATE(3660)] = 92509, + [SMALL_STATE(3661)] = 92567, + [SMALL_STATE(3662)] = 92625, + [SMALL_STATE(3663)] = 92683, + [SMALL_STATE(3664)] = 92753, + [SMALL_STATE(3665)] = 92811, + [SMALL_STATE(3666)] = 92869, + [SMALL_STATE(3667)] = 92927, + [SMALL_STATE(3668)] = 92985, + [SMALL_STATE(3669)] = 93043, + [SMALL_STATE(3670)] = 93113, + [SMALL_STATE(3671)] = 93171, + [SMALL_STATE(3672)] = 93273, + [SMALL_STATE(3673)] = 93343, + [SMALL_STATE(3674)] = 93413, + [SMALL_STATE(3675)] = 93471, + [SMALL_STATE(3676)] = 93535, + [SMALL_STATE(3677)] = 93597, + [SMALL_STATE(3678)] = 93655, + [SMALL_STATE(3679)] = 93713, + [SMALL_STATE(3680)] = 93771, + [SMALL_STATE(3681)] = 93835, + [SMALL_STATE(3682)] = 93893, + [SMALL_STATE(3683)] = 93957, + [SMALL_STATE(3684)] = 94029, + [SMALL_STATE(3685)] = 94093, + [SMALL_STATE(3686)] = 94157, + [SMALL_STATE(3687)] = 94221, + [SMALL_STATE(3688)] = 94279, + [SMALL_STATE(3689)] = 94343, + [SMALL_STATE(3690)] = 94407, + [SMALL_STATE(3691)] = 94471, + [SMALL_STATE(3692)] = 94535, + [SMALL_STATE(3693)] = 94599, + [SMALL_STATE(3694)] = 94657, + [SMALL_STATE(3695)] = 94763, + [SMALL_STATE(3696)] = 94825, + [SMALL_STATE(3697)] = 94887, + [SMALL_STATE(3698)] = 94945, + [SMALL_STATE(3699)] = 95003, + [SMALL_STATE(3700)] = 95061, + [SMALL_STATE(3701)] = 95119, + [SMALL_STATE(3702)] = 95177, + [SMALL_STATE(3703)] = 95235, + [SMALL_STATE(3704)] = 95293, + [SMALL_STATE(3705)] = 95351, + [SMALL_STATE(3706)] = 95409, + [SMALL_STATE(3707)] = 95471, + [SMALL_STATE(3708)] = 95529, + [SMALL_STATE(3709)] = 95589, + [SMALL_STATE(3710)] = 95647, + [SMALL_STATE(3711)] = 95705, + [SMALL_STATE(3712)] = 95763, + [SMALL_STATE(3713)] = 95821, + [SMALL_STATE(3714)] = 95879, + [SMALL_STATE(3715)] = 95937, + [SMALL_STATE(3716)] = 95995, + [SMALL_STATE(3717)] = 96057, + [SMALL_STATE(3718)] = 96115, + [SMALL_STATE(3719)] = 96173, + [SMALL_STATE(3720)] = 96275, + [SMALL_STATE(3721)] = 96333, + [SMALL_STATE(3722)] = 96393, + [SMALL_STATE(3723)] = 96451, + [SMALL_STATE(3724)] = 96509, + [SMALL_STATE(3725)] = 96567, + [SMALL_STATE(3726)] = 96633, + [SMALL_STATE(3727)] = 96707, + [SMALL_STATE(3728)] = 96765, + [SMALL_STATE(3729)] = 96823, + [SMALL_STATE(3730)] = 96899, + [SMALL_STATE(3731)] = 96957, + [SMALL_STATE(3732)] = 97015, + [SMALL_STATE(3733)] = 97117, + [SMALL_STATE(3734)] = 97175, + [SMALL_STATE(3735)] = 97233, + [SMALL_STATE(3736)] = 97291, + [SMALL_STATE(3737)] = 97349, + [SMALL_STATE(3738)] = 97451, + [SMALL_STATE(3739)] = 97509, + [SMALL_STATE(3740)] = 97615, + [SMALL_STATE(3741)] = 97673, + [SMALL_STATE(3742)] = 97731, + [SMALL_STATE(3743)] = 97793, + [SMALL_STATE(3744)] = 97851, + [SMALL_STATE(3745)] = 97909, + [SMALL_STATE(3746)] = 97967, + [SMALL_STATE(3747)] = 98025, + [SMALL_STATE(3748)] = 98083, + [SMALL_STATE(3749)] = 98141, + [SMALL_STATE(3750)] = 98199, + [SMALL_STATE(3751)] = 98263, + [SMALL_STATE(3752)] = 98366, + [SMALL_STATE(3753)] = 98423, + [SMALL_STATE(3754)] = 98480, + [SMALL_STATE(3755)] = 98543, + [SMALL_STATE(3756)] = 98600, + [SMALL_STATE(3757)] = 98657, + [SMALL_STATE(3758)] = 98718, + [SMALL_STATE(3759)] = 98787, + [SMALL_STATE(3760)] = 98850, + [SMALL_STATE(3761)] = 98953, + [SMALL_STATE(3762)] = 99010, + [SMALL_STATE(3763)] = 99067, + [SMALL_STATE(3764)] = 99124, + [SMALL_STATE(3765)] = 99185, + [SMALL_STATE(3766)] = 99242, + [SMALL_STATE(3767)] = 99313, + [SMALL_STATE(3768)] = 99384, + [SMALL_STATE(3769)] = 99487, + [SMALL_STATE(3770)] = 99590, + [SMALL_STATE(3771)] = 99693, + [SMALL_STATE(3772)] = 99756, + [SMALL_STATE(3773)] = 99813, + [SMALL_STATE(3774)] = 99872, + [SMALL_STATE(3775)] = 99975, + [SMALL_STATE(3776)] = 100078, + [SMALL_STATE(3777)] = 100143, + [SMALL_STATE(3778)] = 100214, + [SMALL_STATE(3779)] = 100309, + [SMALL_STATE(3780)] = 100404, + [SMALL_STATE(3781)] = 100461, + [SMALL_STATE(3782)] = 100564, + [SMALL_STATE(3783)] = 100621, + [SMALL_STATE(3784)] = 100724, + [SMALL_STATE(3785)] = 100827, + [SMALL_STATE(3786)] = 100930, + [SMALL_STATE(3787)] = 101033, + [SMALL_STATE(3788)] = 101136, + [SMALL_STATE(3789)] = 101239, + [SMALL_STATE(3790)] = 101296, + [SMALL_STATE(3791)] = 101399, + [SMALL_STATE(3792)] = 101502, + [SMALL_STATE(3793)] = 101605, + [SMALL_STATE(3794)] = 101708, + [SMALL_STATE(3795)] = 101811, + [SMALL_STATE(3796)] = 101914, + [SMALL_STATE(3797)] = 101975, + [SMALL_STATE(3798)] = 102034, + [SMALL_STATE(3799)] = 102137, + [SMALL_STATE(3800)] = 102240, + [SMALL_STATE(3801)] = 102343, + [SMALL_STATE(3802)] = 102446, + [SMALL_STATE(3803)] = 102517, + [SMALL_STATE(3804)] = 102620, + [SMALL_STATE(3805)] = 102723, + [SMALL_STATE(3806)] = 102826, + [SMALL_STATE(3807)] = 102929, + [SMALL_STATE(3808)] = 103032, + [SMALL_STATE(3809)] = 103135, + [SMALL_STATE(3810)] = 103238, + [SMALL_STATE(3811)] = 103341, + [SMALL_STATE(3812)] = 103444, + [SMALL_STATE(3813)] = 103547, + [SMALL_STATE(3814)] = 103650, + [SMALL_STATE(3815)] = 103753, + [SMALL_STATE(3816)] = 103856, + [SMALL_STATE(3817)] = 103959, + [SMALL_STATE(3818)] = 104062, + [SMALL_STATE(3819)] = 104165, + [SMALL_STATE(3820)] = 104234, + [SMALL_STATE(3821)] = 104337, + [SMALL_STATE(3822)] = 104440, + [SMALL_STATE(3823)] = 104543, + [SMALL_STATE(3824)] = 104646, + [SMALL_STATE(3825)] = 104749, + [SMALL_STATE(3826)] = 104852, + [SMALL_STATE(3827)] = 104955, + [SMALL_STATE(3828)] = 105058, + [SMALL_STATE(3829)] = 105161, + [SMALL_STATE(3830)] = 105264, + [SMALL_STATE(3831)] = 105367, + [SMALL_STATE(3832)] = 105470, + [SMALL_STATE(3833)] = 105573, + [SMALL_STATE(3834)] = 105676, + [SMALL_STATE(3835)] = 105779, + [SMALL_STATE(3836)] = 105882, + [SMALL_STATE(3837)] = 105985, + [SMALL_STATE(3838)] = 106088, + [SMALL_STATE(3839)] = 106191, + [SMALL_STATE(3840)] = 106294, + [SMALL_STATE(3841)] = 106397, + [SMALL_STATE(3842)] = 106500, + [SMALL_STATE(3843)] = 106603, + [SMALL_STATE(3844)] = 106706, + [SMALL_STATE(3845)] = 106763, + [SMALL_STATE(3846)] = 106866, + [SMALL_STATE(3847)] = 106969, + [SMALL_STATE(3848)] = 107072, + [SMALL_STATE(3849)] = 107135, + [SMALL_STATE(3850)] = 107192, + [SMALL_STATE(3851)] = 107295, + [SMALL_STATE(3852)] = 107398, + [SMALL_STATE(3853)] = 107501, + [SMALL_STATE(3854)] = 107558, + [SMALL_STATE(3855)] = 107661, + [SMALL_STATE(3856)] = 107764, + [SMALL_STATE(3857)] = 107867, + [SMALL_STATE(3858)] = 107970, + [SMALL_STATE(3859)] = 108026, + [SMALL_STATE(3860)] = 108082, + [SMALL_STATE(3861)] = 108154, + [SMALL_STATE(3862)] = 108210, + [SMALL_STATE(3863)] = 108266, + [SMALL_STATE(3864)] = 108338, + [SMALL_STATE(3865)] = 108394, + [SMALL_STATE(3866)] = 108466, + [SMALL_STATE(3867)] = 108522, + [SMALL_STATE(3868)] = 108578, + [SMALL_STATE(3869)] = 108634, + [SMALL_STATE(3870)] = 108734, + [SMALL_STATE(3871)] = 108798, + [SMALL_STATE(3872)] = 108898, + [SMALL_STATE(3873)] = 108954, + [SMALL_STATE(3874)] = 109010, + [SMALL_STATE(3875)] = 109066, + [SMALL_STATE(3876)] = 109126, + [SMALL_STATE(3877)] = 109182, + [SMALL_STATE(3878)] = 109238, + [SMALL_STATE(3879)] = 109294, + [SMALL_STATE(3880)] = 109350, + [SMALL_STATE(3881)] = 109406, + [SMALL_STATE(3882)] = 109506, + [SMALL_STATE(3883)] = 109606, + [SMALL_STATE(3884)] = 109662, + [SMALL_STATE(3885)] = 109718, + [SMALL_STATE(3886)] = 109774, + [SMALL_STATE(3887)] = 109830, + [SMALL_STATE(3888)] = 109886, + [SMALL_STATE(3889)] = 109942, + [SMALL_STATE(3890)] = 109998, + [SMALL_STATE(3891)] = 110098, + [SMALL_STATE(3892)] = 110154, + [SMALL_STATE(3893)] = 110210, + [SMALL_STATE(3894)] = 110266, + [SMALL_STATE(3895)] = 110322, + [SMALL_STATE(3896)] = 110378, + [SMALL_STATE(3897)] = 110478, + [SMALL_STATE(3898)] = 110534, + [SMALL_STATE(3899)] = 110634, + [SMALL_STATE(3900)] = 110690, + [SMALL_STATE(3901)] = 110746, + [SMALL_STATE(3902)] = 110802, + [SMALL_STATE(3903)] = 110858, + [SMALL_STATE(3904)] = 110914, + [SMALL_STATE(3905)] = 110970, + [SMALL_STATE(3906)] = 111070, + [SMALL_STATE(3907)] = 111126, + [SMALL_STATE(3908)] = 111182, + [SMALL_STATE(3909)] = 111238, + [SMALL_STATE(3910)] = 111294, + [SMALL_STATE(3911)] = 111350, + [SMALL_STATE(3912)] = 111406, + [SMALL_STATE(3913)] = 111462, + [SMALL_STATE(3914)] = 111518, + [SMALL_STATE(3915)] = 111574, + [SMALL_STATE(3916)] = 111630, + [SMALL_STATE(3917)] = 111730, + [SMALL_STATE(3918)] = 111800, + [SMALL_STATE(3919)] = 111856, + [SMALL_STATE(3920)] = 111926, + [SMALL_STATE(3921)] = 112026, + [SMALL_STATE(3922)] = 112082, + [SMALL_STATE(3923)] = 112174, + [SMALL_STATE(3924)] = 112274, + [SMALL_STATE(3925)] = 112374, + [SMALL_STATE(3926)] = 112466, + [SMALL_STATE(3927)] = 112522, + [SMALL_STATE(3928)] = 112616, + [SMALL_STATE(3929)] = 112710, + [SMALL_STATE(3930)] = 112766, + [SMALL_STATE(3931)] = 112866, + [SMALL_STATE(3932)] = 112922, + [SMALL_STATE(3933)] = 112978, + [SMALL_STATE(3934)] = 113078, + [SMALL_STATE(3935)] = 113178, + [SMALL_STATE(3936)] = 113234, + [SMALL_STATE(3937)] = 113334, + [SMALL_STATE(3938)] = 113390, + [SMALL_STATE(3939)] = 113446, + [SMALL_STATE(3940)] = 113546, + [SMALL_STATE(3941)] = 113610, + [SMALL_STATE(3942)] = 113666, + [SMALL_STATE(3943)] = 113766, + [SMALL_STATE(3944)] = 113866, + [SMALL_STATE(3945)] = 113922, + [SMALL_STATE(3946)] = 113978, + [SMALL_STATE(3947)] = 114034, + [SMALL_STATE(3948)] = 114090, + [SMALL_STATE(3949)] = 114146, + [SMALL_STATE(3950)] = 114202, + [SMALL_STATE(3951)] = 114258, + [SMALL_STATE(3952)] = 114316, + [SMALL_STATE(3953)] = 114372, + [SMALL_STATE(3954)] = 114428, + [SMALL_STATE(3955)] = 114484, + [SMALL_STATE(3956)] = 114540, + [SMALL_STATE(3957)] = 114596, + [SMALL_STATE(3958)] = 114652, + [SMALL_STATE(3959)] = 114708, + [SMALL_STATE(3960)] = 114764, + [SMALL_STATE(3961)] = 114820, + [SMALL_STATE(3962)] = 114876, + [SMALL_STATE(3963)] = 114932, + [SMALL_STATE(3964)] = 114988, + [SMALL_STATE(3965)] = 115044, + [SMALL_STATE(3966)] = 115100, + [SMALL_STATE(3967)] = 115156, + [SMALL_STATE(3968)] = 115212, + [SMALL_STATE(3969)] = 115268, + [SMALL_STATE(3970)] = 115324, + [SMALL_STATE(3971)] = 115394, + [SMALL_STATE(3972)] = 115450, + [SMALL_STATE(3973)] = 115516, + [SMALL_STATE(3974)] = 115572, + [SMALL_STATE(3975)] = 115628, + [SMALL_STATE(3976)] = 115728, + [SMALL_STATE(3977)] = 115784, + [SMALL_STATE(3978)] = 115840, + [SMALL_STATE(3979)] = 115896, + [SMALL_STATE(3980)] = 115996, + [SMALL_STATE(3981)] = 116052, + [SMALL_STATE(3982)] = 116116, + [SMALL_STATE(3983)] = 116172, + [SMALL_STATE(3984)] = 116244, + [SMALL_STATE(3985)] = 116308, + [SMALL_STATE(3986)] = 116363, + [SMALL_STATE(3987)] = 116434, + [SMALL_STATE(3988)] = 116527, + [SMALL_STATE(3989)] = 116620, + [SMALL_STATE(3990)] = 116713, + [SMALL_STATE(3991)] = 116768, + [SMALL_STATE(3992)] = 116827, + [SMALL_STATE(3993)] = 116886, + [SMALL_STATE(3994)] = 116979, + [SMALL_STATE(3995)] = 117072, + [SMALL_STATE(3996)] = 117143, + [SMALL_STATE(3997)] = 117236, + [SMALL_STATE(3998)] = 117329, + [SMALL_STATE(3999)] = 117384, + [SMALL_STATE(4000)] = 117477, + [SMALL_STATE(4001)] = 117586, + [SMALL_STATE(4002)] = 117645, + [SMALL_STATE(4003)] = 117738, + [SMALL_STATE(4004)] = 117831, + [SMALL_STATE(4005)] = 117924, + [SMALL_STATE(4006)] = 118017, + [SMALL_STATE(4007)] = 118126, + [SMALL_STATE(4008)] = 118185, + [SMALL_STATE(4009)] = 118278, + [SMALL_STATE(4010)] = 118371, + [SMALL_STATE(4011)] = 118430, + [SMALL_STATE(4012)] = 118489, + [SMALL_STATE(4013)] = 118582, + [SMALL_STATE(4014)] = 118675, + [SMALL_STATE(4015)] = 118746, + [SMALL_STATE(4016)] = 118839, + [SMALL_STATE(4017)] = 118910, + [SMALL_STATE(4018)] = 119003, + [SMALL_STATE(4019)] = 119096, + [SMALL_STATE(4020)] = 119189, + [SMALL_STATE(4021)] = 119260, + [SMALL_STATE(4022)] = 119319, + [SMALL_STATE(4023)] = 119412, + [SMALL_STATE(4024)] = 119471, + [SMALL_STATE(4025)] = 119564, + [SMALL_STATE(4026)] = 119623, + [SMALL_STATE(4027)] = 119682, + [SMALL_STATE(4028)] = 119753, + [SMALL_STATE(4029)] = 119846, + [SMALL_STATE(4030)] = 119939, + [SMALL_STATE(4031)] = 119994, + [SMALL_STATE(4032)] = 120087, + [SMALL_STATE(4033)] = 120178, + [SMALL_STATE(4034)] = 120271, + [SMALL_STATE(4035)] = 120364, + [SMALL_STATE(4036)] = 120455, + [SMALL_STATE(4037)] = 120514, + [SMALL_STATE(4038)] = 120575, + [SMALL_STATE(4039)] = 120634, + [SMALL_STATE(4040)] = 120705, + [SMALL_STATE(4041)] = 120795, + [SMALL_STATE(4042)] = 120849, + [SMALL_STATE(4043)] = 120909, + [SMALL_STATE(4044)] = 120963, + [SMALL_STATE(4045)] = 121055, + [SMALL_STATE(4046)] = 121109, + [SMALL_STATE(4047)] = 121169, + [SMALL_STATE(4048)] = 121233, + [SMALL_STATE(4049)] = 121287, + [SMALL_STATE(4050)] = 121379, + [SMALL_STATE(4051)] = 121439, + [SMALL_STATE(4052)] = 121493, + [SMALL_STATE(4053)] = 121581, + [SMALL_STATE(4054)] = 121669, + [SMALL_STATE(4055)] = 121759, + [SMALL_STATE(4056)] = 121819, + [SMALL_STATE(4057)] = 121873, + [SMALL_STATE(4058)] = 121961, + [SMALL_STATE(4059)] = 122051, + [SMALL_STATE(4060)] = 122119, + [SMALL_STATE(4061)] = 122207, + [SMALL_STATE(4062)] = 122295, + [SMALL_STATE(4063)] = 122383, + [SMALL_STATE(4064)] = 122473, + [SMALL_STATE(4065)] = 122565, + [SMALL_STATE(4066)] = 122625, + [SMALL_STATE(4067)] = 122679, + [SMALL_STATE(4068)] = 122739, + [SMALL_STATE(4069)] = 122793, + [SMALL_STATE(4070)] = 122857, + [SMALL_STATE(4071)] = 122949, + [SMALL_STATE(4072)] = 123032, + [SMALL_STATE(4073)] = 123091, + [SMALL_STATE(4074)] = 123144, + [SMALL_STATE(4075)] = 123233, + [SMALL_STATE(4076)] = 123322, + [SMALL_STATE(4077)] = 123405, + [SMALL_STATE(4078)] = 123494, + [SMALL_STATE(4079)] = 123547, + [SMALL_STATE(4080)] = 123636, + [SMALL_STATE(4081)] = 123725, + [SMALL_STATE(4082)] = 123814, + [SMALL_STATE(4083)] = 123903, + [SMALL_STATE(4084)] = 123992, + [SMALL_STATE(4085)] = 124081, + [SMALL_STATE(4086)] = 124168, + [SMALL_STATE(4087)] = 124257, + [SMALL_STATE(4088)] = 124346, + [SMALL_STATE(4089)] = 124433, + [SMALL_STATE(4090)] = 124522, + [SMALL_STATE(4091)] = 124611, + [SMALL_STATE(4092)] = 124700, + [SMALL_STATE(4093)] = 124789, + [SMALL_STATE(4094)] = 124878, + [SMALL_STATE(4095)] = 124967, + [SMALL_STATE(4096)] = 125026, + [SMALL_STATE(4097)] = 125115, + [SMALL_STATE(4098)] = 125180, + [SMALL_STATE(4099)] = 125269, + [SMALL_STATE(4100)] = 125324, + [SMALL_STATE(4101)] = 125413, + [SMALL_STATE(4102)] = 125502, + [SMALL_STATE(4103)] = 125591, + [SMALL_STATE(4104)] = 125680, + [SMALL_STATE(4105)] = 125733, + [SMALL_STATE(4106)] = 125822, + [SMALL_STATE(4107)] = 125911, + [SMALL_STATE(4108)] = 126000, + [SMALL_STATE(4109)] = 126089, + [SMALL_STATE(4110)] = 126156, + [SMALL_STATE(4111)] = 126223, + [SMALL_STATE(4112)] = 126286, + [SMALL_STATE(4113)] = 126385, + [SMALL_STATE(4114)] = 126474, + [SMALL_STATE(4115)] = 126533, + [SMALL_STATE(4116)] = 126622, + [SMALL_STATE(4117)] = 126711, + [SMALL_STATE(4118)] = 126800, + [SMALL_STATE(4119)] = 126863, + [SMALL_STATE(4120)] = 126952, + [SMALL_STATE(4121)] = 127004, + [SMALL_STATE(4122)] = 127072, + [SMALL_STATE(4123)] = 127140, + [SMALL_STATE(4124)] = 127204, + [SMALL_STATE(4125)] = 127256, + [SMALL_STATE(4126)] = 127308, + [SMALL_STATE(4127)] = 127360, + [SMALL_STATE(4128)] = 127412, + [SMALL_STATE(4129)] = 127464, + [SMALL_STATE(4130)] = 127516, + [SMALL_STATE(4131)] = 127568, + [SMALL_STATE(4132)] = 127620, + [SMALL_STATE(4133)] = 127672, + [SMALL_STATE(4134)] = 127740, + [SMALL_STATE(4135)] = 127792, + [SMALL_STATE(4136)] = 127844, + [SMALL_STATE(4137)] = 127900, + [SMALL_STATE(4138)] = 127968, + [SMALL_STATE(4139)] = 128020, + [SMALL_STATE(4140)] = 128072, + [SMALL_STATE(4141)] = 128124, + [SMALL_STATE(4142)] = 128176, + [SMALL_STATE(4143)] = 128228, + [SMALL_STATE(4144)] = 128280, + [SMALL_STATE(4145)] = 128348, + [SMALL_STATE(4146)] = 128400, + [SMALL_STATE(4147)] = 128452, + [SMALL_STATE(4148)] = 128504, + [SMALL_STATE(4149)] = 128562, + [SMALL_STATE(4150)] = 128614, + [SMALL_STATE(4151)] = 128666, + [SMALL_STATE(4152)] = 128718, + [SMALL_STATE(4153)] = 128770, + [SMALL_STATE(4154)] = 128822, + [SMALL_STATE(4155)] = 128874, + [SMALL_STATE(4156)] = 128940, + [SMALL_STATE(4157)] = 128992, + [SMALL_STATE(4158)] = 129044, + [SMALL_STATE(4159)] = 129096, + [SMALL_STATE(4160)] = 129148, + [SMALL_STATE(4161)] = 129200, + [SMALL_STATE(4162)] = 129286, + [SMALL_STATE(4163)] = 129338, + [SMALL_STATE(4164)] = 129390, + [SMALL_STATE(4165)] = 129442, + [SMALL_STATE(4166)] = 129494, + [SMALL_STATE(4167)] = 129580, + [SMALL_STATE(4168)] = 129668, + [SMALL_STATE(4169)] = 129756, + [SMALL_STATE(4170)] = 129808, + [SMALL_STATE(4171)] = 129876, + [SMALL_STATE(4172)] = 129940, + [SMALL_STATE(4173)] = 129992, + [SMALL_STATE(4174)] = 130077, + [SMALL_STATE(4175)] = 130156, + [SMALL_STATE(4176)] = 130241, + [SMALL_STATE(4177)] = 130320, + [SMALL_STATE(4178)] = 130399, + [SMALL_STATE(4179)] = 130486, + [SMALL_STATE(4180)] = 130573, + [SMALL_STATE(4181)] = 130624, + [SMALL_STATE(4182)] = 130681, + [SMALL_STATE(4183)] = 130738, + [SMALL_STATE(4184)] = 130805, + [SMALL_STATE(4185)] = 130908, + [SMALL_STATE(4186)] = 130993, + [SMALL_STATE(4187)] = 131078, + [SMALL_STATE(4188)] = 131163, + [SMALL_STATE(4189)] = 131256, + [SMALL_STATE(4190)] = 131341, + [SMALL_STATE(4191)] = 131428, + [SMALL_STATE(4192)] = 131489, + [SMALL_STATE(4193)] = 131574, + [SMALL_STATE(4194)] = 131673, + [SMALL_STATE(4195)] = 131772, + [SMALL_STATE(4196)] = 131871, + [SMALL_STATE(4197)] = 131974, + [SMALL_STATE(4198)] = 132043, + [SMALL_STATE(4199)] = 132138, + [SMALL_STATE(4200)] = 132229, + [SMALL_STATE(4201)] = 132318, + [SMALL_STATE(4202)] = 132397, + [SMALL_STATE(4203)] = 132480, + [SMALL_STATE(4204)] = 132559, + [SMALL_STATE(4205)] = 132634, + [SMALL_STATE(4206)] = 132705, + [SMALL_STATE(4207)] = 132778, + [SMALL_STATE(4208)] = 132863, + [SMALL_STATE(4209)] = 132962, + [SMALL_STATE(4210)] = 133065, + [SMALL_STATE(4211)] = 133144, + [SMALL_STATE(4212)] = 133243, + [SMALL_STATE(4213)] = 133328, + [SMALL_STATE(4214)] = 133431, + [SMALL_STATE(4215)] = 133488, + [SMALL_STATE(4216)] = 133567, + [SMALL_STATE(4217)] = 133646, + [SMALL_STATE(4218)] = 133725, + [SMALL_STATE(4219)] = 133804, + [SMALL_STATE(4220)] = 133889, + [SMALL_STATE(4221)] = 133956, + [SMALL_STATE(4222)] = 134035, + [SMALL_STATE(4223)] = 134092, + [SMALL_STATE(4224)] = 134171, + [SMALL_STATE(4225)] = 134258, + [SMALL_STATE(4226)] = 134309, + [SMALL_STATE(4227)] = 134388, + [SMALL_STATE(4228)] = 134455, + [SMALL_STATE(4229)] = 134514, + [SMALL_STATE(4230)] = 134565, + [SMALL_STATE(4231)] = 134632, + [SMALL_STATE(4232)] = 134715, + [SMALL_STATE(4233)] = 134774, + [SMALL_STATE(4234)] = 134857, + [SMALL_STATE(4235)] = 134944, + [SMALL_STATE(4236)] = 135031, + [SMALL_STATE(4237)] = 135116, + [SMALL_STATE(4238)] = 135222, + [SMALL_STATE(4239)] = 135276, + [SMALL_STATE(4240)] = 135354, + [SMALL_STATE(4241)] = 135404, + [SMALL_STATE(4242)] = 135456, + [SMALL_STATE(4243)] = 135534, + [SMALL_STATE(4244)] = 135594, + [SMALL_STATE(4245)] = 135672, + [SMALL_STATE(4246)] = 135750, + [SMALL_STATE(4247)] = 135810, + [SMALL_STATE(4248)] = 135862, + [SMALL_STATE(4249)] = 135936, + [SMALL_STATE(4250)] = 136002, + [SMALL_STATE(4251)] = 136052, + [SMALL_STATE(4252)] = 136112, + [SMALL_STATE(4253)] = 136166, + [SMALL_STATE(4254)] = 136240, + [SMALL_STATE(4255)] = 136326, + [SMALL_STATE(4256)] = 136376, + [SMALL_STATE(4257)] = 136440, + [SMALL_STATE(4258)] = 136504, + [SMALL_STATE(4259)] = 136558, + [SMALL_STATE(4260)] = 136612, + [SMALL_STATE(4261)] = 136666, + [SMALL_STATE(4262)] = 136718, + [SMALL_STATE(4263)] = 136772, + [SMALL_STATE(4264)] = 136878, + [SMALL_STATE(4265)] = 136960, + [SMALL_STATE(4266)] = 137014, + [SMALL_STATE(4267)] = 137068, + [SMALL_STATE(4268)] = 137174, + [SMALL_STATE(4269)] = 137224, + [SMALL_STATE(4270)] = 137278, + [SMALL_STATE(4271)] = 137344, + [SMALL_STATE(4272)] = 137396, + [SMALL_STATE(4273)] = 137478, + [SMALL_STATE(4274)] = 137528, + [SMALL_STATE(4275)] = 137588, + [SMALL_STATE(4276)] = 137662, + [SMALL_STATE(4277)] = 137716, + [SMALL_STATE(4278)] = 137770, + [SMALL_STATE(4279)] = 137824, + [SMALL_STATE(4280)] = 137878, + [SMALL_STATE(4281)] = 137932, + [SMALL_STATE(4282)] = 138018, + [SMALL_STATE(4283)] = 138075, + [SMALL_STATE(4284)] = 138152, + [SMALL_STATE(4285)] = 138235, + [SMALL_STATE(4286)] = 138284, + [SMALL_STATE(4287)] = 138369, + [SMALL_STATE(4288)] = 138452, + [SMALL_STATE(4289)] = 138529, + [SMALL_STATE(4290)] = 138620, + [SMALL_STATE(4291)] = 138697, + [SMALL_STATE(4292)] = 138746, + [SMALL_STATE(4293)] = 138829, + [SMALL_STATE(4294)] = 138878, + [SMALL_STATE(4295)] = 138959, + [SMALL_STATE(4296)] = 139040, + [SMALL_STATE(4297)] = 139131, + [SMALL_STATE(4298)] = 139186, + [SMALL_STATE(4299)] = 139235, + [SMALL_STATE(4300)] = 139284, + [SMALL_STATE(4301)] = 139349, + [SMALL_STATE(4302)] = 139398, + [SMALL_STATE(4303)] = 139447, + [SMALL_STATE(4304)] = 139496, + [SMALL_STATE(4305)] = 139563, + [SMALL_STATE(4306)] = 139612, + [SMALL_STATE(4307)] = 139693, + [SMALL_STATE(4308)] = 139742, + [SMALL_STATE(4309)] = 139791, + [SMALL_STATE(4310)] = 139876, + [SMALL_STATE(4311)] = 139925, + [SMALL_STATE(4312)] = 139976, + [SMALL_STATE(4313)] = 140029, + [SMALL_STATE(4314)] = 140078, + [SMALL_STATE(4315)] = 140131, + [SMALL_STATE(4316)] = 140184, + [SMALL_STATE(4317)] = 140239, + [SMALL_STATE(4318)] = 140304, + [SMALL_STATE(4319)] = 140353, + [SMALL_STATE(4320)] = 140402, + [SMALL_STATE(4321)] = 140451, + [SMALL_STATE(4322)] = 140500, + [SMALL_STATE(4323)] = 140581, + [SMALL_STATE(4324)] = 140658, + [SMALL_STATE(4325)] = 140713, + [SMALL_STATE(4326)] = 140768, + [SMALL_STATE(4327)] = 140817, + [SMALL_STATE(4328)] = 140900, + [SMALL_STATE(4329)] = 140976, + [SMALL_STATE(4330)] = 141050, + [SMALL_STATE(4331)] = 141134, + [SMALL_STATE(4332)] = 141216, + [SMALL_STATE(4333)] = 141306, + [SMALL_STATE(4334)] = 141402, + [SMALL_STATE(4335)] = 141480, + [SMALL_STATE(4336)] = 141528, + [SMALL_STATE(4337)] = 141618, + [SMALL_STATE(4338)] = 141708, + [SMALL_STATE(4339)] = 141784, + [SMALL_STATE(4340)] = 141858, + [SMALL_STATE(4341)] = 141952, + [SMALL_STATE(4342)] = 142036, + [SMALL_STATE(4343)] = 142108, + [SMALL_STATE(4344)] = 142166, + [SMALL_STATE(4345)] = 142224, + [SMALL_STATE(4346)] = 142282, + [SMALL_STATE(4347)] = 142344, + [SMALL_STATE(4348)] = 142410, + [SMALL_STATE(4349)] = 142468, + [SMALL_STATE(4350)] = 142556, + [SMALL_STATE(4351)] = 142656, + [SMALL_STATE(4352)] = 142748, + [SMALL_STATE(4353)] = 142834, + [SMALL_STATE(4354)] = 142918, + [SMALL_STATE(4355)] = 142986, + [SMALL_STATE(4356)] = 143066, + [SMALL_STATE(4357)] = 143136, + [SMALL_STATE(4358)] = 143232, + [SMALL_STATE(4359)] = 143326, + [SMALL_STATE(4360)] = 143374, + [SMALL_STATE(4361)] = 143470, + [SMALL_STATE(4362)] = 143550, + [SMALL_STATE(4363)] = 143638, + [SMALL_STATE(4364)] = 143718, + [SMALL_STATE(4365)] = 143784, + [SMALL_STATE(4366)] = 143866, + [SMALL_STATE(4367)] = 143944, + [SMALL_STATE(4368)] = 144020, + [SMALL_STATE(4369)] = 144092, + [SMALL_STATE(4370)] = 144160, + [SMALL_STATE(4371)] = 144236, + [SMALL_STATE(4372)] = 144312, + [SMALL_STATE(4373)] = 144374, + [SMALL_STATE(4374)] = 144450, + [SMALL_STATE(4375)] = 144520, + [SMALL_STATE(4376)] = 144568, + [SMALL_STATE(4377)] = 144642, + [SMALL_STATE(4378)] = 144726, + [SMALL_STATE(4379)] = 144816, + [SMALL_STATE(4380)] = 144890, + [SMALL_STATE(4381)] = 144986, + [SMALL_STATE(4382)] = 145078, + [SMALL_STATE(4383)] = 145170, + [SMALL_STATE(4384)] = 145260, + [SMALL_STATE(4385)] = 145352, + [SMALL_STATE(4386)] = 145446, + [SMALL_STATE(4387)] = 145542, + [SMALL_STATE(4388)] = 145590, + [SMALL_STATE(4389)] = 145682, + [SMALL_STATE(4390)] = 145762, + [SMALL_STATE(4391)] = 145852, + [SMALL_STATE(4392)] = 145900, + [SMALL_STATE(4393)] = 145953, + [SMALL_STATE(4394)] = 146050, + [SMALL_STATE(4395)] = 146097, + [SMALL_STATE(4396)] = 146148, + [SMALL_STATE(4397)] = 146213, + [SMALL_STATE(4398)] = 146310, + [SMALL_STATE(4399)] = 146359, + [SMALL_STATE(4400)] = 146456, + [SMALL_STATE(4401)] = 146553, + [SMALL_STATE(4402)] = 146648, + [SMALL_STATE(4403)] = 146745, + [SMALL_STATE(4404)] = 146842, + [SMALL_STATE(4405)] = 146921, + [SMALL_STATE(4406)] = 147018, + [SMALL_STATE(4407)] = 147097, + [SMALL_STATE(4408)] = 147148, + [SMALL_STATE(4409)] = 147199, + [SMALL_STATE(4410)] = 147248, + [SMALL_STATE(4411)] = 147345, + [SMALL_STATE(4412)] = 147418, + [SMALL_STATE(4413)] = 147515, + [SMALL_STATE(4414)] = 147612, + [SMALL_STATE(4415)] = 147709, + [SMALL_STATE(4416)] = 147756, + [SMALL_STATE(4417)] = 147809, + [SMALL_STATE(4418)] = 147860, + [SMALL_STATE(4419)] = 147913, + [SMALL_STATE(4420)] = 147970, + [SMALL_STATE(4421)] = 148019, + [SMALL_STATE(4422)] = 148092, + [SMALL_STATE(4423)] = 148189, + [SMALL_STATE(4424)] = 148240, + [SMALL_STATE(4425)] = 148287, + [SMALL_STATE(4426)] = 148382, + [SMALL_STATE(4427)] = 148479, + [SMALL_STATE(4428)] = 148576, + [SMALL_STATE(4429)] = 148623, + [SMALL_STATE(4430)] = 148674, + [SMALL_STATE(4431)] = 148721, + [SMALL_STATE(4432)] = 148772, + [SMALL_STATE(4433)] = 148869, + [SMALL_STATE(4434)] = 148916, + [SMALL_STATE(4435)] = 148963, + [SMALL_STATE(4436)] = 149060, + [SMALL_STATE(4437)] = 149157, + [SMALL_STATE(4438)] = 149214, + [SMALL_STATE(4439)] = 149287, + [SMALL_STATE(4440)] = 149384, + [SMALL_STATE(4441)] = 149435, + [SMALL_STATE(4442)] = 149532, + [SMALL_STATE(4443)] = 149629, + [SMALL_STATE(4444)] = 149726, + [SMALL_STATE(4445)] = 149823, + [SMALL_STATE(4446)] = 149876, + [SMALL_STATE(4447)] = 149973, + [SMALL_STATE(4448)] = 150020, + [SMALL_STATE(4449)] = 150117, + [SMALL_STATE(4450)] = 150214, + [SMALL_STATE(4451)] = 150263, + [SMALL_STATE(4452)] = 150360, + [SMALL_STATE(4453)] = 150457, + [SMALL_STATE(4454)] = 150508, + [SMALL_STATE(4455)] = 150557, + [SMALL_STATE(4456)] = 150654, + [SMALL_STATE(4457)] = 150751, + [SMALL_STATE(4458)] = 150802, + [SMALL_STATE(4459)] = 150899, + [SMALL_STATE(4460)] = 150996, + [SMALL_STATE(4461)] = 151093, + [SMALL_STATE(4462)] = 151190, + [SMALL_STATE(4463)] = 151237, + [SMALL_STATE(4464)] = 151334, + [SMALL_STATE(4465)] = 151407, + [SMALL_STATE(4466)] = 151504, + [SMALL_STATE(4467)] = 151601, + [SMALL_STATE(4468)] = 151698, + [SMALL_STATE(4469)] = 151795, + [SMALL_STATE(4470)] = 151852, + [SMALL_STATE(4471)] = 151903, + [SMALL_STATE(4472)] = 152000, + [SMALL_STATE(4473)] = 152053, + [SMALL_STATE(4474)] = 152106, + [SMALL_STATE(4475)] = 152203, + [SMALL_STATE(4476)] = 152254, + [SMALL_STATE(4477)] = 152351, + [SMALL_STATE(4478)] = 152448, + [SMALL_STATE(4479)] = 152499, + [SMALL_STATE(4480)] = 152546, + [SMALL_STATE(4481)] = 152640, + [SMALL_STATE(4482)] = 152712, + [SMALL_STATE(4483)] = 152806, + [SMALL_STATE(4484)] = 152858, + [SMALL_STATE(4485)] = 152918, + [SMALL_STATE(4486)] = 153010, + [SMALL_STATE(4487)] = 153102, + [SMALL_STATE(4488)] = 153196, + [SMALL_STATE(4489)] = 153288, + [SMALL_STATE(4490)] = 153340, + [SMALL_STATE(4491)] = 153434, + [SMALL_STATE(4492)] = 153506, + [SMALL_STATE(4493)] = 153598, + [SMALL_STATE(4494)] = 153690, + [SMALL_STATE(4495)] = 153784, + [SMALL_STATE(4496)] = 153836, + [SMALL_STATE(4497)] = 153930, + [SMALL_STATE(4498)] = 154002, + [SMALL_STATE(4499)] = 154074, + [SMALL_STATE(4500)] = 154146, + [SMALL_STATE(4501)] = 154240, + [SMALL_STATE(4502)] = 154334, + [SMALL_STATE(4503)] = 154428, + [SMALL_STATE(4504)] = 154502, + [SMALL_STATE(4505)] = 154576, + [SMALL_STATE(4506)] = 154650, + [SMALL_STATE(4507)] = 154724, + [SMALL_STATE(4508)] = 154812, + [SMALL_STATE(4509)] = 154858, + [SMALL_STATE(4510)] = 154950, + [SMALL_STATE(4511)] = 155024, + [SMALL_STATE(4512)] = 155084, + [SMALL_STATE(4513)] = 155148, + [SMALL_STATE(4514)] = 155208, + [SMALL_STATE(4515)] = 155302, + [SMALL_STATE(4516)] = 155376, + [SMALL_STATE(4517)] = 155450, + [SMALL_STATE(4518)] = 155544, + [SMALL_STATE(4519)] = 155618, + [SMALL_STATE(4520)] = 155704, + [SMALL_STATE(4521)] = 155788, + [SMALL_STATE(4522)] = 155882, + [SMALL_STATE(4523)] = 155964, + [SMALL_STATE(4524)] = 156044, + [SMALL_STATE(4525)] = 156138, + [SMALL_STATE(4526)] = 156190, + [SMALL_STATE(4527)] = 156266, + [SMALL_STATE(4528)] = 156340, + [SMALL_STATE(4529)] = 156432, + [SMALL_STATE(4530)] = 156504, + [SMALL_STATE(4531)] = 156582, + [SMALL_STATE(4532)] = 156674, + [SMALL_STATE(4533)] = 156740, + [SMALL_STATE(4534)] = 156832, + [SMALL_STATE(4535)] = 156924, + [SMALL_STATE(4536)] = 156976, + [SMALL_STATE(4537)] = 157036, + [SMALL_STATE(4538)] = 157088, + [SMALL_STATE(4539)] = 157180, + [SMALL_STATE(4540)] = 157250, + [SMALL_STATE(4541)] = 157302, + [SMALL_STATE(4542)] = 157390, + [SMALL_STATE(4543)] = 157442, + [SMALL_STATE(4544)] = 157534, + [SMALL_STATE(4545)] = 157628, + [SMALL_STATE(4546)] = 157692, + [SMALL_STATE(4547)] = 157778, + [SMALL_STATE(4548)] = 157862, + [SMALL_STATE(4549)] = 157944, + [SMALL_STATE(4550)] = 158024, + [SMALL_STATE(4551)] = 158100, + [SMALL_STATE(4552)] = 158174, + [SMALL_STATE(4553)] = 158244, + [SMALL_STATE(4554)] = 158310, + [SMALL_STATE(4555)] = 158404, + [SMALL_STATE(4556)] = 158472, + [SMALL_STATE(4557)] = 158566, + [SMALL_STATE(4558)] = 158618, + [SMALL_STATE(4559)] = 158706, + [SMALL_STATE(4560)] = 158798, + [SMALL_STATE(4561)] = 158886, + [SMALL_STATE(4562)] = 158978, + [SMALL_STATE(4563)] = 159056, + [SMALL_STATE(4564)] = 159108, + [SMALL_STATE(4565)] = 159160, + [SMALL_STATE(4566)] = 159248, + [SMALL_STATE(4567)] = 159306, + [SMALL_STATE(4568)] = 159398, + [SMALL_STATE(4569)] = 159476, + [SMALL_STATE(4570)] = 159532, + [SMALL_STATE(4571)] = 159584, + [SMALL_STATE(4572)] = 159636, + [SMALL_STATE(4573)] = 159708, + [SMALL_STATE(4574)] = 159802, + [SMALL_STATE(4575)] = 159896, + [SMALL_STATE(4576)] = 159990, + [SMALL_STATE(4577)] = 160084, + [SMALL_STATE(4578)] = 160176, + [SMALL_STATE(4579)] = 160268, + [SMALL_STATE(4580)] = 160362, + [SMALL_STATE(4581)] = 160412, + [SMALL_STATE(4582)] = 160506, + [SMALL_STATE(4583)] = 160564, + [SMALL_STATE(4584)] = 160656, + [SMALL_STATE(4585)] = 160744, + [SMALL_STATE(4586)] = 160838, + [SMALL_STATE(4587)] = 160932, + [SMALL_STATE(4588)] = 161026, + [SMALL_STATE(4589)] = 161120, + [SMALL_STATE(4590)] = 161214, + [SMALL_STATE(4591)] = 161262, + [SMALL_STATE(4592)] = 161356, + [SMALL_STATE(4593)] = 161416, + [SMALL_STATE(4594)] = 161504, + [SMALL_STATE(4595)] = 161590, + [SMALL_STATE(4596)] = 161678, + [SMALL_STATE(4597)] = 161766, + [SMALL_STATE(4598)] = 161858, + [SMALL_STATE(4599)] = 161918, + [SMALL_STATE(4600)] = 162012, + [SMALL_STATE(4601)] = 162072, + [SMALL_STATE(4602)] = 162166, + [SMALL_STATE(4603)] = 162258, + [SMALL_STATE(4604)] = 162320, + [SMALL_STATE(4605)] = 162414, + [SMALL_STATE(4606)] = 162466, + [SMALL_STATE(4607)] = 162526, + [SMALL_STATE(4608)] = 162620, + [SMALL_STATE(4609)] = 162712, + [SMALL_STATE(4610)] = 162764, + [SMALL_STATE(4611)] = 162858, + [SMALL_STATE(4612)] = 162946, + [SMALL_STATE(4613)] = 163038, + [SMALL_STATE(4614)] = 163102, + [SMALL_STATE(4615)] = 163188, + [SMALL_STATE(4616)] = 163272, + [SMALL_STATE(4617)] = 163354, + [SMALL_STATE(4618)] = 163434, + [SMALL_STATE(4619)] = 163510, + [SMALL_STATE(4620)] = 163584, + [SMALL_STATE(4621)] = 163654, + [SMALL_STATE(4622)] = 163720, + [SMALL_STATE(4623)] = 163788, + [SMALL_STATE(4624)] = 163876, + [SMALL_STATE(4625)] = 163968, + [SMALL_STATE(4626)] = 164056, + [SMALL_STATE(4627)] = 164148, + [SMALL_STATE(4628)] = 164236, + [SMALL_STATE(4629)] = 164324, + [SMALL_STATE(4630)] = 164418, + [SMALL_STATE(4631)] = 164512, + [SMALL_STATE(4632)] = 164606, + [SMALL_STATE(4633)] = 164658, + [SMALL_STATE(4634)] = 164716, + [SMALL_STATE(4635)] = 164776, + [SMALL_STATE(4636)] = 164836, + [SMALL_STATE(4637)] = 164930, + [SMALL_STATE(4638)] = 164988, + [SMALL_STATE(4639)] = 165076, + [SMALL_STATE(4640)] = 165170, + [SMALL_STATE(4641)] = 165262, + [SMALL_STATE(4642)] = 165354, + [SMALL_STATE(4643)] = 165448, + [SMALL_STATE(4644)] = 165542, + [SMALL_STATE(4645)] = 165594, + [SMALL_STATE(4646)] = 165666, + [SMALL_STATE(4647)] = 165760, + [SMALL_STATE(4648)] = 165854, + [SMALL_STATE(4649)] = 165946, + [SMALL_STATE(4650)] = 166038, + [SMALL_STATE(4651)] = 166132, + [SMALL_STATE(4652)] = 166204, + [SMALL_STATE(4653)] = 166282, + [SMALL_STATE(4654)] = 166373, + [SMALL_STATE(4655)] = 166464, + [SMALL_STATE(4656)] = 166555, + [SMALL_STATE(4657)] = 166646, + [SMALL_STATE(4658)] = 166737, + [SMALL_STATE(4659)] = 166828, + [SMALL_STATE(4660)] = 166919, + [SMALL_STATE(4661)] = 166992, + [SMALL_STATE(4662)] = 167073, + [SMALL_STATE(4663)] = 167118, + [SMALL_STATE(4664)] = 167209, + [SMALL_STATE(4665)] = 167290, + [SMALL_STATE(4666)] = 167381, + [SMALL_STATE(4667)] = 167472, + [SMALL_STATE(4668)] = 167563, + [SMALL_STATE(4669)] = 167654, + [SMALL_STATE(4670)] = 167699, + [SMALL_STATE(4671)] = 167790, + [SMALL_STATE(4672)] = 167881, + [SMALL_STATE(4673)] = 167972, + [SMALL_STATE(4674)] = 168063, + [SMALL_STATE(4675)] = 168154, + [SMALL_STATE(4676)] = 168199, + [SMALL_STATE(4677)] = 168244, + [SMALL_STATE(4678)] = 168335, + [SMALL_STATE(4679)] = 168426, + [SMALL_STATE(4680)] = 168517, + [SMALL_STATE(4681)] = 168608, + [SMALL_STATE(4682)] = 168653, + [SMALL_STATE(4683)] = 168734, + [SMALL_STATE(4684)] = 168779, + [SMALL_STATE(4685)] = 168824, + [SMALL_STATE(4686)] = 168897, + [SMALL_STATE(4687)] = 168942, + [SMALL_STATE(4688)] = 168987, + [SMALL_STATE(4689)] = 169078, + [SMALL_STATE(4690)] = 169123, + [SMALL_STATE(4691)] = 169174, + [SMALL_STATE(4692)] = 169255, + [SMALL_STATE(4693)] = 169300, + [SMALL_STATE(4694)] = 169345, + [SMALL_STATE(4695)] = 169390, + [SMALL_STATE(4696)] = 169435, + [SMALL_STATE(4697)] = 169480, + [SMALL_STATE(4698)] = 169571, + [SMALL_STATE(4699)] = 169616, + [SMALL_STATE(4700)] = 169661, + [SMALL_STATE(4701)] = 169752, + [SMALL_STATE(4702)] = 169843, + [SMALL_STATE(4703)] = 169888, + [SMALL_STATE(4704)] = 169961, + [SMALL_STATE(4705)] = 170052, + [SMALL_STATE(4706)] = 170125, + [SMALL_STATE(4707)] = 170216, + [SMALL_STATE(4708)] = 170289, + [SMALL_STATE(4709)] = 170334, + [SMALL_STATE(4710)] = 170425, + [SMALL_STATE(4711)] = 170470, + [SMALL_STATE(4712)] = 170515, + [SMALL_STATE(4713)] = 170606, + [SMALL_STATE(4714)] = 170655, + [SMALL_STATE(4715)] = 170728, + [SMALL_STATE(4716)] = 170801, + [SMALL_STATE(4717)] = 170892, + [SMALL_STATE(4718)] = 170965, + [SMALL_STATE(4719)] = 171056, + [SMALL_STATE(4720)] = 171129, + [SMALL_STATE(4721)] = 171202, + [SMALL_STATE(4722)] = 171293, + [SMALL_STATE(4723)] = 171366, + [SMALL_STATE(4724)] = 171411, + [SMALL_STATE(4725)] = 171456, + [SMALL_STATE(4726)] = 171547, + [SMALL_STATE(4727)] = 171592, + [SMALL_STATE(4728)] = 171637, + [SMALL_STATE(4729)] = 171682, + [SMALL_STATE(4730)] = 171773, + [SMALL_STATE(4731)] = 171864, + [SMALL_STATE(4732)] = 171955, + [SMALL_STATE(4733)] = 172028, + [SMALL_STATE(4734)] = 172099, + [SMALL_STATE(4735)] = 172170, + [SMALL_STATE(4736)] = 172241, + [SMALL_STATE(4737)] = 172312, + [SMALL_STATE(4738)] = 172385, + [SMALL_STATE(4739)] = 172466, + [SMALL_STATE(4740)] = 172557, + [SMALL_STATE(4741)] = 172638, + [SMALL_STATE(4742)] = 172685, + [SMALL_STATE(4743)] = 172776, + [SMALL_STATE(4744)] = 172863, + [SMALL_STATE(4745)] = 172954, + [SMALL_STATE(4746)] = 173045, + [SMALL_STATE(4747)] = 173136, + [SMALL_STATE(4748)] = 173227, + [SMALL_STATE(4749)] = 173318, + [SMALL_STATE(4750)] = 173409, + [SMALL_STATE(4751)] = 173482, + [SMALL_STATE(4752)] = 173555, + [SMALL_STATE(4753)] = 173628, + [SMALL_STATE(4754)] = 173673, + [SMALL_STATE(4755)] = 173746, + [SMALL_STATE(4756)] = 173837, + [SMALL_STATE(4757)] = 173918, + [SMALL_STATE(4758)] = 174009, + [SMALL_STATE(4759)] = 174100, + [SMALL_STATE(4760)] = 174181, + [SMALL_STATE(4761)] = 174272, + [SMALL_STATE(4762)] = 174353, + [SMALL_STATE(4763)] = 174444, + [SMALL_STATE(4764)] = 174535, + [SMALL_STATE(4765)] = 174626, + [SMALL_STATE(4766)] = 174707, + [SMALL_STATE(4767)] = 174798, + [SMALL_STATE(4768)] = 174871, + [SMALL_STATE(4769)] = 174962, + [SMALL_STATE(4770)] = 175007, + [SMALL_STATE(4771)] = 175088, + [SMALL_STATE(4772)] = 175179, + [SMALL_STATE(4773)] = 175260, + [SMALL_STATE(4774)] = 175351, + [SMALL_STATE(4775)] = 175438, + [SMALL_STATE(4776)] = 175529, + [SMALL_STATE(4777)] = 175620, + [SMALL_STATE(4778)] = 175711, + [SMALL_STATE(4779)] = 175802, + [SMALL_STATE(4780)] = 175893, + [SMALL_STATE(4781)] = 175984, + [SMALL_STATE(4782)] = 176075, + [SMALL_STATE(4783)] = 176166, + [SMALL_STATE(4784)] = 176257, + [SMALL_STATE(4785)] = 176348, + [SMALL_STATE(4786)] = 176425, + [SMALL_STATE(4787)] = 176516, + [SMALL_STATE(4788)] = 176607, + [SMALL_STATE(4789)] = 176698, + [SMALL_STATE(4790)] = 176781, + [SMALL_STATE(4791)] = 176872, + [SMALL_STATE(4792)] = 176963, + [SMALL_STATE(4793)] = 177054, + [SMALL_STATE(4794)] = 177105, + [SMALL_STATE(4795)] = 177178, + [SMALL_STATE(4796)] = 177251, + [SMALL_STATE(4797)] = 177322, + [SMALL_STATE(4798)] = 177413, + [SMALL_STATE(4799)] = 177490, + [SMALL_STATE(4800)] = 177581, + [SMALL_STATE(4801)] = 177662, + [SMALL_STATE(4802)] = 177733, + [SMALL_STATE(4803)] = 177804, + [SMALL_STATE(4804)] = 177875, + [SMALL_STATE(4805)] = 177966, + [SMALL_STATE(4806)] = 178057, + [SMALL_STATE(4807)] = 178148, + [SMALL_STATE(4808)] = 178239, + [SMALL_STATE(4809)] = 178330, + [SMALL_STATE(4810)] = 178421, + [SMALL_STATE(4811)] = 178466, + [SMALL_STATE(4812)] = 178557, + [SMALL_STATE(4813)] = 178630, + [SMALL_STATE(4814)] = 178675, + [SMALL_STATE(4815)] = 178766, + [SMALL_STATE(4816)] = 178813, + [SMALL_STATE(4817)] = 178858, + [SMALL_STATE(4818)] = 178903, + [SMALL_STATE(4819)] = 178994, + [SMALL_STATE(4820)] = 179039, + [SMALL_STATE(4821)] = 179130, + [SMALL_STATE(4822)] = 179221, + [SMALL_STATE(4823)] = 179312, + [SMALL_STATE(4824)] = 179357, + [SMALL_STATE(4825)] = 179448, + [SMALL_STATE(4826)] = 179539, + [SMALL_STATE(4827)] = 179630, + [SMALL_STATE(4828)] = 179675, + [SMALL_STATE(4829)] = 179766, + [SMALL_STATE(4830)] = 179857, + [SMALL_STATE(4831)] = 179948, + [SMALL_STATE(4832)] = 180039, + [SMALL_STATE(4833)] = 180130, + [SMALL_STATE(4834)] = 180221, + [SMALL_STATE(4835)] = 180312, + [SMALL_STATE(4836)] = 180357, + [SMALL_STATE(4837)] = 180448, + [SMALL_STATE(4838)] = 180539, + [SMALL_STATE(4839)] = 180584, + [SMALL_STATE(4840)] = 180675, + [SMALL_STATE(4841)] = 180766, + [SMALL_STATE(4842)] = 180857, + [SMALL_STATE(4843)] = 180948, + [SMALL_STATE(4844)] = 181039, + [SMALL_STATE(4845)] = 181120, + [SMALL_STATE(4846)] = 181165, + [SMALL_STATE(4847)] = 181246, + [SMALL_STATE(4848)] = 181291, + [SMALL_STATE(4849)] = 181382, + [SMALL_STATE(4850)] = 181473, + [SMALL_STATE(4851)] = 181564, + [SMALL_STATE(4852)] = 181655, + [SMALL_STATE(4853)] = 181746, + [SMALL_STATE(4854)] = 181837, + [SMALL_STATE(4855)] = 181928, + [SMALL_STATE(4856)] = 181972, + [SMALL_STATE(4857)] = 182016, + [SMALL_STATE(4858)] = 182060, + [SMALL_STATE(4859)] = 182104, + [SMALL_STATE(4860)] = 182148, + [SMALL_STATE(4861)] = 182192, + [SMALL_STATE(4862)] = 182268, + [SMALL_STATE(4863)] = 182312, + [SMALL_STATE(4864)] = 182356, + [SMALL_STATE(4865)] = 182400, + [SMALL_STATE(4866)] = 182486, + [SMALL_STATE(4867)] = 182534, + [SMALL_STATE(4868)] = 182578, + [SMALL_STATE(4869)] = 182656, + [SMALL_STATE(4870)] = 182726, + [SMALL_STATE(4871)] = 182796, + [SMALL_STATE(4872)] = 182866, + [SMALL_STATE(4873)] = 182936, + [SMALL_STATE(4874)] = 182980, + [SMALL_STATE(4875)] = 183024, + [SMALL_STATE(4876)] = 183102, + [SMALL_STATE(4877)] = 183146, + [SMALL_STATE(4878)] = 183190, + [SMALL_STATE(4879)] = 183234, + [SMALL_STATE(4880)] = 183278, + [SMALL_STATE(4881)] = 183322, + [SMALL_STATE(4882)] = 183366, + [SMALL_STATE(4883)] = 183412, + [SMALL_STATE(4884)] = 183456, + [SMALL_STATE(4885)] = 183500, + [SMALL_STATE(4886)] = 183544, + [SMALL_STATE(4887)] = 183588, + [SMALL_STATE(4888)] = 183632, + [SMALL_STATE(4889)] = 183676, + [SMALL_STATE(4890)] = 183762, + [SMALL_STATE(4891)] = 183838, + [SMALL_STATE(4892)] = 183916, + [SMALL_STATE(4893)] = 184002, + [SMALL_STATE(4894)] = 184054, + [SMALL_STATE(4895)] = 184132, + [SMALL_STATE(4896)] = 184176, + [SMALL_STATE(4897)] = 184254, + [SMALL_STATE(4898)] = 184308, + [SMALL_STATE(4899)] = 184352, + [SMALL_STATE(4900)] = 184400, + [SMALL_STATE(4901)] = 184444, + [SMALL_STATE(4902)] = 184488, + [SMALL_STATE(4903)] = 184574, + [SMALL_STATE(4904)] = 184618, + [SMALL_STATE(4905)] = 184666, + [SMALL_STATE(4906)] = 184744, + [SMALL_STATE(4907)] = 184788, + [SMALL_STATE(4908)] = 184876, + [SMALL_STATE(4909)] = 184920, + [SMALL_STATE(4910)] = 185006, + [SMALL_STATE(4911)] = 185050, + [SMALL_STATE(4912)] = 185094, + [SMALL_STATE(4913)] = 185138, + [SMALL_STATE(4914)] = 185216, + [SMALL_STATE(4915)] = 185302, + [SMALL_STATE(4916)] = 185346, + [SMALL_STATE(4917)] = 185400, + [SMALL_STATE(4918)] = 185444, + [SMALL_STATE(4919)] = 185488, + [SMALL_STATE(4920)] = 185566, + [SMALL_STATE(4921)] = 185609, + [SMALL_STATE(4922)] = 185664, + [SMALL_STATE(4923)] = 185749, + [SMALL_STATE(4924)] = 185818, + [SMALL_STATE(4925)] = 185867, + [SMALL_STATE(4926)] = 185952, + [SMALL_STATE(4927)] = 186005, + [SMALL_STATE(4928)] = 186090, + [SMALL_STATE(4929)] = 186159, + [SMALL_STATE(4930)] = 186208, + [SMALL_STATE(4931)] = 186257, + [SMALL_STATE(4932)] = 186306, + [SMALL_STATE(4933)] = 186375, + [SMALL_STATE(4934)] = 186424, + [SMALL_STATE(4935)] = 186509, + [SMALL_STATE(4936)] = 186594, + [SMALL_STATE(4937)] = 186669, + [SMALL_STATE(4938)] = 186738, + [SMALL_STATE(4939)] = 186787, + [SMALL_STATE(4940)] = 186856, + [SMALL_STATE(4941)] = 186941, + [SMALL_STATE(4942)] = 186990, + [SMALL_STATE(4943)] = 187075, + [SMALL_STATE(4944)] = 187124, + [SMALL_STATE(4945)] = 187169, + [SMALL_STATE(4946)] = 187238, + [SMALL_STATE(4947)] = 187295, + [SMALL_STATE(4948)] = 187364, + [SMALL_STATE(4949)] = 187433, + [SMALL_STATE(4950)] = 187490, + [SMALL_STATE(4951)] = 187539, + [SMALL_STATE(4952)] = 187594, + [SMALL_STATE(4953)] = 187679, + [SMALL_STATE(4954)] = 187748, + [SMALL_STATE(4955)] = 187817, + [SMALL_STATE(4956)] = 187874, + [SMALL_STATE(4957)] = 187923, + [SMALL_STATE(4958)] = 187972, + [SMALL_STATE(4959)] = 188041, + [SMALL_STATE(4960)] = 188110, + [SMALL_STATE(4961)] = 188195, + [SMALL_STATE(4962)] = 188280, + [SMALL_STATE(4963)] = 188339, + [SMALL_STATE(4964)] = 188396, + [SMALL_STATE(4965)] = 188465, + [SMALL_STATE(4966)] = 188514, + [SMALL_STATE(4967)] = 188559, + [SMALL_STATE(4968)] = 188644, + [SMALL_STATE(4969)] = 188703, + [SMALL_STATE(4970)] = 188794, + [SMALL_STATE(4971)] = 188863, + [SMALL_STATE(4972)] = 188912, + [SMALL_STATE(4973)] = 188987, + [SMALL_STATE(4974)] = 189038, + [SMALL_STATE(4975)] = 189087, + [SMALL_STATE(4976)] = 189156, + [SMALL_STATE(4977)] = 189225, + [SMALL_STATE(4978)] = 189274, + [SMALL_STATE(4979)] = 189359, + [SMALL_STATE(4980)] = 189401, + [SMALL_STATE(4981)] = 189443, + [SMALL_STATE(4982)] = 189527, + [SMALL_STATE(4983)] = 189569, + [SMALL_STATE(4984)] = 189611, + [SMALL_STATE(4985)] = 189653, + [SMALL_STATE(4986)] = 189737, + [SMALL_STATE(4987)] = 189815, + [SMALL_STATE(4988)] = 189857, + [SMALL_STATE(4989)] = 189935, + [SMALL_STATE(4990)] = 190013, + [SMALL_STATE(4991)] = 190081, + [SMALL_STATE(4992)] = 190123, + [SMALL_STATE(4993)] = 190165, + [SMALL_STATE(4994)] = 190207, + [SMALL_STATE(4995)] = 190275, + [SMALL_STATE(4996)] = 190317, + [SMALL_STATE(4997)] = 190359, + [SMALL_STATE(4998)] = 190401, + [SMALL_STATE(4999)] = 190443, + [SMALL_STATE(5000)] = 190485, + [SMALL_STATE(5001)] = 190527, + [SMALL_STATE(5002)] = 190569, + [SMALL_STATE(5003)] = 190611, + [SMALL_STATE(5004)] = 190653, + [SMALL_STATE(5005)] = 190695, + [SMALL_STATE(5006)] = 190737, + [SMALL_STATE(5007)] = 190779, + [SMALL_STATE(5008)] = 190821, + [SMALL_STATE(5009)] = 190863, + [SMALL_STATE(5010)] = 190941, + [SMALL_STATE(5011)] = 190983, + [SMALL_STATE(5012)] = 191025, + [SMALL_STATE(5013)] = 191067, + [SMALL_STATE(5014)] = 191109, + [SMALL_STATE(5015)] = 191177, + [SMALL_STATE(5016)] = 191219, + [SMALL_STATE(5017)] = 191261, + [SMALL_STATE(5018)] = 191303, + [SMALL_STATE(5019)] = 191345, + [SMALL_STATE(5020)] = 191387, + [SMALL_STATE(5021)] = 191429, + [SMALL_STATE(5022)] = 191471, + [SMALL_STATE(5023)] = 191513, + [SMALL_STATE(5024)] = 191555, + [SMALL_STATE(5025)] = 191597, + [SMALL_STATE(5026)] = 191639, + [SMALL_STATE(5027)] = 191707, + [SMALL_STATE(5028)] = 191791, + [SMALL_STATE(5029)] = 191833, + [SMALL_STATE(5030)] = 191916, + [SMALL_STATE(5031)] = 191993, + [SMALL_STATE(5032)] = 192048, + [SMALL_STATE(5033)] = 192125, + [SMALL_STATE(5034)] = 192202, + [SMALL_STATE(5035)] = 192285, + [SMALL_STATE(5036)] = 192352, + [SMALL_STATE(5037)] = 192435, + [SMALL_STATE(5038)] = 192484, + [SMALL_STATE(5039)] = 192533, + [SMALL_STATE(5040)] = 192610, + [SMALL_STATE(5041)] = 192687, + [SMALL_STATE(5042)] = 192764, + [SMALL_STATE(5043)] = 192817, + [SMALL_STATE(5044)] = 192884, + [SMALL_STATE(5045)] = 192961, + [SMALL_STATE(5046)] = 193044, + [SMALL_STATE(5047)] = 193111, + [SMALL_STATE(5048)] = 193194, + [SMALL_STATE(5049)] = 193249, + [SMALL_STATE(5050)] = 193316, + [SMALL_STATE(5051)] = 193393, + [SMALL_STATE(5052)] = 193470, + [SMALL_STATE(5053)] = 193547, + [SMALL_STATE(5054)] = 193630, + [SMALL_STATE(5055)] = 193707, + [SMALL_STATE(5056)] = 193784, + [SMALL_STATE(5057)] = 193826, + [SMALL_STATE(5058)] = 193902, + [SMALL_STATE(5059)] = 193978, + [SMALL_STATE(5060)] = 194054, + [SMALL_STATE(5061)] = 194136, + [SMALL_STATE(5062)] = 194218, + [SMALL_STATE(5063)] = 194298, + [SMALL_STATE(5064)] = 194374, + [SMALL_STATE(5065)] = 194454, + [SMALL_STATE(5066)] = 194498, + [SMALL_STATE(5067)] = 194574, + [SMALL_STATE(5068)] = 194654, + [SMALL_STATE(5069)] = 194708, + [SMALL_STATE(5070)] = 194752, + [SMALL_STATE(5071)] = 194832, + [SMALL_STATE(5072)] = 194876, + [SMALL_STATE(5073)] = 194952, + [SMALL_STATE(5074)] = 195028, + [SMALL_STATE(5075)] = 195108, + [SMALL_STATE(5076)] = 195184, + [SMALL_STATE(5077)] = 195264, + [SMALL_STATE(5078)] = 195344, + [SMALL_STATE(5079)] = 195388, + [SMALL_STATE(5080)] = 195432, + [SMALL_STATE(5081)] = 195512, + [SMALL_STATE(5082)] = 195592, + [SMALL_STATE(5083)] = 195668, + [SMALL_STATE(5084)] = 195744, + [SMALL_STATE(5085)] = 195824, + [SMALL_STATE(5086)] = 195868, + [SMALL_STATE(5087)] = 195918, + [SMALL_STATE(5088)] = 195962, + [SMALL_STATE(5089)] = 196038, + [SMALL_STATE(5090)] = 196082, + [SMALL_STATE(5091)] = 196126, + [SMALL_STATE(5092)] = 196202, + [SMALL_STATE(5093)] = 196256, + [SMALL_STATE(5094)] = 196332, + [SMALL_STATE(5095)] = 196408, + [SMALL_STATE(5096)] = 196484, + [SMALL_STATE(5097)] = 196564, + [SMALL_STATE(5098)] = 196620, + [SMALL_STATE(5099)] = 196676, + [SMALL_STATE(5100)] = 196756, + [SMALL_STATE(5101)] = 196832, + [SMALL_STATE(5102)] = 196898, + [SMALL_STATE(5103)] = 196980, + [SMALL_STATE(5104)] = 197056, + [SMALL_STATE(5105)] = 197106, + [SMALL_STATE(5106)] = 197186, + [SMALL_STATE(5107)] = 197230, + [SMALL_STATE(5108)] = 197310, + [SMALL_STATE(5109)] = 197386, + [SMALL_STATE(5110)] = 197462, + [SMALL_STATE(5111)] = 197544, + [SMALL_STATE(5112)] = 197610, + [SMALL_STATE(5113)] = 197654, + [SMALL_STATE(5114)] = 197734, + [SMALL_STATE(5115)] = 197816, + [SMALL_STATE(5116)] = 197892, + [SMALL_STATE(5117)] = 197958, + [SMALL_STATE(5118)] = 198034, + [SMALL_STATE(5119)] = 198110, + [SMALL_STATE(5120)] = 198154, + [SMALL_STATE(5121)] = 198230, + [SMALL_STATE(5122)] = 198296, + [SMALL_STATE(5123)] = 198376, + [SMALL_STATE(5124)] = 198452, + [SMALL_STATE(5125)] = 198532, + [SMALL_STATE(5126)] = 198612, + [SMALL_STATE(5127)] = 198693, + [SMALL_STATE(5128)] = 198774, + [SMALL_STATE(5129)] = 198855, + [SMALL_STATE(5130)] = 198936, + [SMALL_STATE(5131)] = 199017, + [SMALL_STATE(5132)] = 199098, + [SMALL_STATE(5133)] = 199179, + [SMALL_STATE(5134)] = 199260, + [SMALL_STATE(5135)] = 199335, + [SMALL_STATE(5136)] = 199378, + [SMALL_STATE(5137)] = 199459, + [SMALL_STATE(5138)] = 199540, + [SMALL_STATE(5139)] = 199621, + [SMALL_STATE(5140)] = 199664, + [SMALL_STATE(5141)] = 199745, + [SMALL_STATE(5142)] = 199826, + [SMALL_STATE(5143)] = 199907, + [SMALL_STATE(5144)] = 199988, + [SMALL_STATE(5145)] = 200069, + [SMALL_STATE(5146)] = 200150, + [SMALL_STATE(5147)] = 200231, + [SMALL_STATE(5148)] = 200312, + [SMALL_STATE(5149)] = 200393, + [SMALL_STATE(5150)] = 200474, + [SMALL_STATE(5151)] = 200555, + [SMALL_STATE(5152)] = 200636, + [SMALL_STATE(5153)] = 200717, + [SMALL_STATE(5154)] = 200760, + [SMALL_STATE(5155)] = 200841, + [SMALL_STATE(5156)] = 200884, + [SMALL_STATE(5157)] = 200965, + [SMALL_STATE(5158)] = 201046, + [SMALL_STATE(5159)] = 201127, + [SMALL_STATE(5160)] = 201170, + [SMALL_STATE(5161)] = 201213, + [SMALL_STATE(5162)] = 201294, + [SMALL_STATE(5163)] = 201375, + [SMALL_STATE(5164)] = 201456, + [SMALL_STATE(5165)] = 201507, + [SMALL_STATE(5166)] = 201550, + [SMALL_STATE(5167)] = 201631, + [SMALL_STATE(5168)] = 201712, + [SMALL_STATE(5169)] = 201793, + [SMALL_STATE(5170)] = 201874, + [SMALL_STATE(5171)] = 201955, + [SMALL_STATE(5172)] = 201998, + [SMALL_STATE(5173)] = 202079, + [SMALL_STATE(5174)] = 202122, + [SMALL_STATE(5175)] = 202165, + [SMALL_STATE(5176)] = 202246, + [SMALL_STATE(5177)] = 202327, + [SMALL_STATE(5178)] = 202408, + [SMALL_STATE(5179)] = 202489, + [SMALL_STATE(5180)] = 202570, + [SMALL_STATE(5181)] = 202651, + [SMALL_STATE(5182)] = 202732, + [SMALL_STATE(5183)] = 202813, + [SMALL_STATE(5184)] = 202856, + [SMALL_STATE(5185)] = 202899, + [SMALL_STATE(5186)] = 202980, + [SMALL_STATE(5187)] = 203061, + [SMALL_STATE(5188)] = 203142, + [SMALL_STATE(5189)] = 203217, + [SMALL_STATE(5190)] = 203298, + [SMALL_STATE(5191)] = 203379, + [SMALL_STATE(5192)] = 203460, + [SMALL_STATE(5193)] = 203541, + [SMALL_STATE(5194)] = 203622, + [SMALL_STATE(5195)] = 203703, + [SMALL_STATE(5196)] = 203784, + [SMALL_STATE(5197)] = 203865, + [SMALL_STATE(5198)] = 203946, + [SMALL_STATE(5199)] = 204027, + [SMALL_STATE(5200)] = 204108, + [SMALL_STATE(5201)] = 204189, + [SMALL_STATE(5202)] = 204270, + [SMALL_STATE(5203)] = 204351, + [SMALL_STATE(5204)] = 204432, + [SMALL_STATE(5205)] = 204513, + [SMALL_STATE(5206)] = 204594, + [SMALL_STATE(5207)] = 204675, + [SMALL_STATE(5208)] = 204756, + [SMALL_STATE(5209)] = 204837, + [SMALL_STATE(5210)] = 204918, + [SMALL_STATE(5211)] = 204999, + [SMALL_STATE(5212)] = 205080, + [SMALL_STATE(5213)] = 205161, + [SMALL_STATE(5214)] = 205212, + [SMALL_STATE(5215)] = 205293, + [SMALL_STATE(5216)] = 205374, + [SMALL_STATE(5217)] = 205455, + [SMALL_STATE(5218)] = 205536, + [SMALL_STATE(5219)] = 205617, + [SMALL_STATE(5220)] = 205698, + [SMALL_STATE(5221)] = 205779, + [SMALL_STATE(5222)] = 205860, + [SMALL_STATE(5223)] = 205941, + [SMALL_STATE(5224)] = 206022, + [SMALL_STATE(5225)] = 206103, + [SMALL_STATE(5226)] = 206184, + [SMALL_STATE(5227)] = 206265, + [SMALL_STATE(5228)] = 206346, + [SMALL_STATE(5229)] = 206427, + [SMALL_STATE(5230)] = 206508, + [SMALL_STATE(5231)] = 206589, + [SMALL_STATE(5232)] = 206670, + [SMALL_STATE(5233)] = 206751, + [SMALL_STATE(5234)] = 206832, + [SMALL_STATE(5235)] = 206913, + [SMALL_STATE(5236)] = 206988, + [SMALL_STATE(5237)] = 207069, + [SMALL_STATE(5238)] = 207144, + [SMALL_STATE(5239)] = 207225, + [SMALL_STATE(5240)] = 207306, + [SMALL_STATE(5241)] = 207384, + [SMALL_STATE(5242)] = 207458, + [SMALL_STATE(5243)] = 207532, + [SMALL_STATE(5244)] = 207606, + [SMALL_STATE(5245)] = 207680, + [SMALL_STATE(5246)] = 207758, + [SMALL_STATE(5247)] = 207836, + [SMALL_STATE(5248)] = 207910, + [SMALL_STATE(5249)] = 207984, + [SMALL_STATE(5250)] = 208058, + [SMALL_STATE(5251)] = 208132, + [SMALL_STATE(5252)] = 208210, + [SMALL_STATE(5253)] = 208284, + [SMALL_STATE(5254)] = 208358, + [SMALL_STATE(5255)] = 208432, + [SMALL_STATE(5256)] = 208506, + [SMALL_STATE(5257)] = 208584, + [SMALL_STATE(5258)] = 208658, + [SMALL_STATE(5259)] = 208732, + [SMALL_STATE(5260)] = 208810, + [SMALL_STATE(5261)] = 208884, + [SMALL_STATE(5262)] = 208958, + [SMALL_STATE(5263)] = 209036, + [SMALL_STATE(5264)] = 209110, + [SMALL_STATE(5265)] = 209184, + [SMALL_STATE(5266)] = 209258, + [SMALL_STATE(5267)] = 209336, + [SMALL_STATE(5268)] = 209410, + [SMALL_STATE(5269)] = 209484, + [SMALL_STATE(5270)] = 209562, + [SMALL_STATE(5271)] = 209640, + [SMALL_STATE(5272)] = 209714, + [SMALL_STATE(5273)] = 209788, + [SMALL_STATE(5274)] = 209866, + [SMALL_STATE(5275)] = 209940, + [SMALL_STATE(5276)] = 210014, + [SMALL_STATE(5277)] = 210088, + [SMALL_STATE(5278)] = 210166, + [SMALL_STATE(5279)] = 210240, + [SMALL_STATE(5280)] = 210318, + [SMALL_STATE(5281)] = 210392, + [SMALL_STATE(5282)] = 210470, + [SMALL_STATE(5283)] = 210548, + [SMALL_STATE(5284)] = 210622, + [SMALL_STATE(5285)] = 210700, + [SMALL_STATE(5286)] = 210774, + [SMALL_STATE(5287)] = 210848, + [SMALL_STATE(5288)] = 210926, + [SMALL_STATE(5289)] = 211000, + [SMALL_STATE(5290)] = 211074, + [SMALL_STATE(5291)] = 211148, + [SMALL_STATE(5292)] = 211222, + [SMALL_STATE(5293)] = 211296, + [SMALL_STATE(5294)] = 211370, + [SMALL_STATE(5295)] = 211444, + [SMALL_STATE(5296)] = 211518, + [SMALL_STATE(5297)] = 211592, + [SMALL_STATE(5298)] = 211666, + [SMALL_STATE(5299)] = 211740, + [SMALL_STATE(5300)] = 211814, + [SMALL_STATE(5301)] = 211888, + [SMALL_STATE(5302)] = 211962, + [SMALL_STATE(5303)] = 212036, + [SMALL_STATE(5304)] = 212110, + [SMALL_STATE(5305)] = 212184, + [SMALL_STATE(5306)] = 212258, + [SMALL_STATE(5307)] = 212332, + [SMALL_STATE(5308)] = 212410, + [SMALL_STATE(5309)] = 212484, + [SMALL_STATE(5310)] = 212558, + [SMALL_STATE(5311)] = 212625, + [SMALL_STATE(5312)] = 212698, + [SMALL_STATE(5313)] = 212739, + [SMALL_STATE(5314)] = 212806, + [SMALL_STATE(5315)] = 212873, + [SMALL_STATE(5316)] = 212940, + [SMALL_STATE(5317)] = 213007, + [SMALL_STATE(5318)] = 213074, + [SMALL_STATE(5319)] = 213141, + [SMALL_STATE(5320)] = 213208, + [SMALL_STATE(5321)] = 213275, + [SMALL_STATE(5322)] = 213342, + [SMALL_STATE(5323)] = 213409, + [SMALL_STATE(5324)] = 213476, + [SMALL_STATE(5325)] = 213543, + [SMALL_STATE(5326)] = 213616, + [SMALL_STATE(5327)] = 213689, + [SMALL_STATE(5328)] = 213762, + [SMALL_STATE(5329)] = 213807, + [SMALL_STATE(5330)] = 213880, + [SMALL_STATE(5331)] = 213947, + [SMALL_STATE(5332)] = 214020, + [SMALL_STATE(5333)] = 214063, + [SMALL_STATE(5334)] = 214130, + [SMALL_STATE(5335)] = 214167, + [SMALL_STATE(5336)] = 214204, + [SMALL_STATE(5337)] = 214271, + [SMALL_STATE(5338)] = 214338, + [SMALL_STATE(5339)] = 214405, + [SMALL_STATE(5340)] = 214472, + [SMALL_STATE(5341)] = 214539, + [SMALL_STATE(5342)] = 214606, + [SMALL_STATE(5343)] = 214673, + [SMALL_STATE(5344)] = 214740, + [SMALL_STATE(5345)] = 214807, + [SMALL_STATE(5346)] = 214874, + [SMALL_STATE(5347)] = 214941, + [SMALL_STATE(5348)] = 215008, + [SMALL_STATE(5349)] = 215075, + [SMALL_STATE(5350)] = 215142, + [SMALL_STATE(5351)] = 215209, + [SMALL_STATE(5352)] = 215254, + [SMALL_STATE(5353)] = 215327, + [SMALL_STATE(5354)] = 215394, + [SMALL_STATE(5355)] = 215461, + [SMALL_STATE(5356)] = 215528, + [SMALL_STATE(5357)] = 215595, + [SMALL_STATE(5358)] = 215662, + [SMALL_STATE(5359)] = 215729, + [SMALL_STATE(5360)] = 215796, + [SMALL_STATE(5361)] = 215863, + [SMALL_STATE(5362)] = 215930, + [SMALL_STATE(5363)] = 216003, + [SMALL_STATE(5364)] = 216070, + [SMALL_STATE(5365)] = 216137, + [SMALL_STATE(5366)] = 216204, + [SMALL_STATE(5367)] = 216277, + [SMALL_STATE(5368)] = 216344, + [SMALL_STATE(5369)] = 216417, + [SMALL_STATE(5370)] = 216484, + [SMALL_STATE(5371)] = 216551, + [SMALL_STATE(5372)] = 216618, + [SMALL_STATE(5373)] = 216684, + [SMALL_STATE(5374)] = 216750, + [SMALL_STATE(5375)] = 216816, + [SMALL_STATE(5376)] = 216882, + [SMALL_STATE(5377)] = 216948, + [SMALL_STATE(5378)] = 217014, + [SMALL_STATE(5379)] = 217080, + [SMALL_STATE(5380)] = 217146, + [SMALL_STATE(5381)] = 217212, + [SMALL_STATE(5382)] = 217278, + [SMALL_STATE(5383)] = 217344, + [SMALL_STATE(5384)] = 217410, + [SMALL_STATE(5385)] = 217476, + [SMALL_STATE(5386)] = 217542, + [SMALL_STATE(5387)] = 217608, + [SMALL_STATE(5388)] = 217674, + [SMALL_STATE(5389)] = 217740, + [SMALL_STATE(5390)] = 217780, + [SMALL_STATE(5391)] = 217846, + [SMALL_STATE(5392)] = 217911, + [SMALL_STATE(5393)] = 217976, + [SMALL_STATE(5394)] = 218041, + [SMALL_STATE(5395)] = 218106, + [SMALL_STATE(5396)] = 218171, + [SMALL_STATE(5397)] = 218236, + [SMALL_STATE(5398)] = 218301, + [SMALL_STATE(5399)] = 218366, + [SMALL_STATE(5400)] = 218431, + [SMALL_STATE(5401)] = 218496, + [SMALL_STATE(5402)] = 218561, + [SMALL_STATE(5403)] = 218626, + [SMALL_STATE(5404)] = 218691, + [SMALL_STATE(5405)] = 218728, + [SMALL_STATE(5406)] = 218793, + [SMALL_STATE(5407)] = 218858, + [SMALL_STATE(5408)] = 218923, + [SMALL_STATE(5409)] = 218988, + [SMALL_STATE(5410)] = 219053, + [SMALL_STATE(5411)] = 219118, + [SMALL_STATE(5412)] = 219183, + [SMALL_STATE(5413)] = 219248, + [SMALL_STATE(5414)] = 219313, + [SMALL_STATE(5415)] = 219378, + [SMALL_STATE(5416)] = 219443, + [SMALL_STATE(5417)] = 219508, + [SMALL_STATE(5418)] = 219573, + [SMALL_STATE(5419)] = 219638, + [SMALL_STATE(5420)] = 219703, + [SMALL_STATE(5421)] = 219768, + [SMALL_STATE(5422)] = 219833, + [SMALL_STATE(5423)] = 219898, + [SMALL_STATE(5424)] = 219963, + [SMALL_STATE(5425)] = 220028, + [SMALL_STATE(5426)] = 220093, + [SMALL_STATE(5427)] = 220158, + [SMALL_STATE(5428)] = 220223, + [SMALL_STATE(5429)] = 220287, + [SMALL_STATE(5430)] = 220351, + [SMALL_STATE(5431)] = 220415, + [SMALL_STATE(5432)] = 220479, + [SMALL_STATE(5433)] = 220543, + [SMALL_STATE(5434)] = 220601, + [SMALL_STATE(5435)] = 220659, + [SMALL_STATE(5436)] = 220717, + [SMALL_STATE(5437)] = 220781, + [SMALL_STATE(5438)] = 220839, + [SMALL_STATE(5439)] = 220902, + [SMALL_STATE(5440)] = 220963, + [SMALL_STATE(5441)] = 221026, + [SMALL_STATE(5442)] = 221089, + [SMALL_STATE(5443)] = 221152, + [SMALL_STATE(5444)] = 221213, + [SMALL_STATE(5445)] = 221274, + [SMALL_STATE(5446)] = 221335, + [SMALL_STATE(5447)] = 221386, + [SMALL_STATE(5448)] = 221437, + [SMALL_STATE(5449)] = 221488, + [SMALL_STATE(5450)] = 221551, + [SMALL_STATE(5451)] = 221614, + [SMALL_STATE(5452)] = 221675, + [SMALL_STATE(5453)] = 221738, + [SMALL_STATE(5454)] = 221801, + [SMALL_STATE(5455)] = 221864, + [SMALL_STATE(5456)] = 221927, + [SMALL_STATE(5457)] = 221990, + [SMALL_STATE(5458)] = 222053, + [SMALL_STATE(5459)] = 222116, + [SMALL_STATE(5460)] = 222179, + [SMALL_STATE(5461)] = 222242, + [SMALL_STATE(5462)] = 222305, + [SMALL_STATE(5463)] = 222368, + [SMALL_STATE(5464)] = 222429, + [SMALL_STATE(5465)] = 222492, + [SMALL_STATE(5466)] = 222553, + [SMALL_STATE(5467)] = 222615, + [SMALL_STATE(5468)] = 222657, + [SMALL_STATE(5469)] = 222719, + [SMALL_STATE(5470)] = 222781, + [SMALL_STATE(5471)] = 222843, + [SMALL_STATE(5472)] = 222917, + [SMALL_STATE(5473)] = 222959, + [SMALL_STATE(5474)] = 223021, + [SMALL_STATE(5475)] = 223083, + [SMALL_STATE(5476)] = 223145, + [SMALL_STATE(5477)] = 223207, + [SMALL_STATE(5478)] = 223269, + [SMALL_STATE(5479)] = 223331, + [SMALL_STATE(5480)] = 223405, + [SMALL_STATE(5481)] = 223459, + [SMALL_STATE(5482)] = 223521, + [SMALL_STATE(5483)] = 223583, + [SMALL_STATE(5484)] = 223645, + [SMALL_STATE(5485)] = 223707, + [SMALL_STATE(5486)] = 223781, + [SMALL_STATE(5487)] = 223831, + [SMALL_STATE(5488)] = 223893, + [SMALL_STATE(5489)] = 223952, + [SMALL_STATE(5490)] = 224011, + [SMALL_STATE(5491)] = 224070, + [SMALL_STATE(5492)] = 224129, + [SMALL_STATE(5493)] = 224188, + [SMALL_STATE(5494)] = 224247, + [SMALL_STATE(5495)] = 224306, + [SMALL_STATE(5496)] = 224365, + [SMALL_STATE(5497)] = 224424, + [SMALL_STATE(5498)] = 224483, + [SMALL_STATE(5499)] = 224542, + [SMALL_STATE(5500)] = 224601, + [SMALL_STATE(5501)] = 224650, + [SMALL_STATE(5502)] = 224709, + [SMALL_STATE(5503)] = 224768, + [SMALL_STATE(5504)] = 224799, + [SMALL_STATE(5505)] = 224858, + [SMALL_STATE(5506)] = 224917, + [SMALL_STATE(5507)] = 224976, + [SMALL_STATE(5508)] = 225035, + [SMALL_STATE(5509)] = 225094, + [SMALL_STATE(5510)] = 225153, + [SMALL_STATE(5511)] = 225212, + [SMALL_STATE(5512)] = 225271, + [SMALL_STATE(5513)] = 225323, + [SMALL_STATE(5514)] = 225393, + [SMALL_STATE(5515)] = 225445, + [SMALL_STATE(5516)] = 225497, + [SMALL_STATE(5517)] = 225549, + [SMALL_STATE(5518)] = 225601, + [SMALL_STATE(5519)] = 225653, + [SMALL_STATE(5520)] = 225705, + [SMALL_STATE(5521)] = 225757, + [SMALL_STATE(5522)] = 225809, + [SMALL_STATE(5523)] = 225861, + [SMALL_STATE(5524)] = 225913, + [SMALL_STATE(5525)] = 225953, + [SMALL_STATE(5526)] = 225991, + [SMALL_STATE(5527)] = 226029, + [SMALL_STATE(5528)] = 226067, + [SMALL_STATE(5529)] = 226105, + [SMALL_STATE(5530)] = 226143, + [SMALL_STATE(5531)] = 226195, + [SMALL_STATE(5532)] = 226247, + [SMALL_STATE(5533)] = 226299, + [SMALL_STATE(5534)] = 226351, + [SMALL_STATE(5535)] = 226403, + [SMALL_STATE(5536)] = 226451, + [SMALL_STATE(5537)] = 226503, + [SMALL_STATE(5538)] = 226549, + [SMALL_STATE(5539)] = 226601, + [SMALL_STATE(5540)] = 226653, + [SMALL_STATE(5541)] = 226705, + [SMALL_STATE(5542)] = 226757, + [SMALL_STATE(5543)] = 226809, + [SMALL_STATE(5544)] = 226861, + [SMALL_STATE(5545)] = 226913, + [SMALL_STATE(5546)] = 226965, + [SMALL_STATE(5547)] = 227017, + [SMALL_STATE(5548)] = 227069, + [SMALL_STATE(5549)] = 227121, + [SMALL_STATE(5550)] = 227173, + [SMALL_STATE(5551)] = 227225, + [SMALL_STATE(5552)] = 227259, + [SMALL_STATE(5553)] = 227311, + [SMALL_STATE(5554)] = 227351, + [SMALL_STATE(5555)] = 227403, + [SMALL_STATE(5556)] = 227455, + [SMALL_STATE(5557)] = 227507, + [SMALL_STATE(5558)] = 227559, + [SMALL_STATE(5559)] = 227593, + [SMALL_STATE(5560)] = 227645, + [SMALL_STATE(5561)] = 227697, + [SMALL_STATE(5562)] = 227735, + [SMALL_STATE(5563)] = 227769, + [SMALL_STATE(5564)] = 227821, + [SMALL_STATE(5565)] = 227855, + [SMALL_STATE(5566)] = 227893, + [SMALL_STATE(5567)] = 227945, + [SMALL_STATE(5568)] = 227983, + [SMALL_STATE(5569)] = 228021, + [SMALL_STATE(5570)] = 228059, + [SMALL_STATE(5571)] = 228129, + [SMALL_STATE(5572)] = 228181, + [SMALL_STATE(5573)] = 228233, + [SMALL_STATE(5574)] = 228285, + [SMALL_STATE(5575)] = 228317, + [SMALL_STATE(5576)] = 228369, + [SMALL_STATE(5577)] = 228403, + [SMALL_STATE(5578)] = 228473, + [SMALL_STATE(5579)] = 228525, + [SMALL_STATE(5580)] = 228584, + [SMALL_STATE(5581)] = 228643, + [SMALL_STATE(5582)] = 228702, + [SMALL_STATE(5583)] = 228763, + [SMALL_STATE(5584)] = 228822, + [SMALL_STATE(5585)] = 228881, + [SMALL_STATE(5586)] = 228934, + [SMALL_STATE(5587)] = 228993, + [SMALL_STATE(5588)] = 229052, + [SMALL_STATE(5589)] = 229111, + [SMALL_STATE(5590)] = 229170, + [SMALL_STATE(5591)] = 229229, + [SMALL_STATE(5592)] = 229288, + [SMALL_STATE(5593)] = 229347, + [SMALL_STATE(5594)] = 229408, + [SMALL_STATE(5595)] = 229461, + [SMALL_STATE(5596)] = 229522, + [SMALL_STATE(5597)] = 229575, + [SMALL_STATE(5598)] = 229634, + [SMALL_STATE(5599)] = 229693, + [SMALL_STATE(5600)] = 229752, + [SMALL_STATE(5601)] = 229811, + [SMALL_STATE(5602)] = 229870, + [SMALL_STATE(5603)] = 229929, + [SMALL_STATE(5604)] = 229988, + [SMALL_STATE(5605)] = 230047, + [SMALL_STATE(5606)] = 230090, + [SMALL_STATE(5607)] = 230149, + [SMALL_STATE(5608)] = 230208, + [SMALL_STATE(5609)] = 230267, + [SMALL_STATE(5610)] = 230320, + [SMALL_STATE(5611)] = 230379, + [SMALL_STATE(5612)] = 230438, + [SMALL_STATE(5613)] = 230497, + [SMALL_STATE(5614)] = 230556, + [SMALL_STATE(5615)] = 230615, + [SMALL_STATE(5616)] = 230674, + [SMALL_STATE(5617)] = 230727, + [SMALL_STATE(5618)] = 230786, + [SMALL_STATE(5619)] = 230845, + [SMALL_STATE(5620)] = 230898, + [SMALL_STATE(5621)] = 230957, + [SMALL_STATE(5622)] = 231016, + [SMALL_STATE(5623)] = 231075, + [SMALL_STATE(5624)] = 231134, + [SMALL_STATE(5625)] = 231193, + [SMALL_STATE(5626)] = 231252, + [SMALL_STATE(5627)] = 231305, + [SMALL_STATE(5628)] = 231358, + [SMALL_STATE(5629)] = 231389, + [SMALL_STATE(5630)] = 231448, + [SMALL_STATE(5631)] = 231507, + [SMALL_STATE(5632)] = 231560, + [SMALL_STATE(5633)] = 231615, + [SMALL_STATE(5634)] = 231674, + [SMALL_STATE(5635)] = 231703, + [SMALL_STATE(5636)] = 231740, + [SMALL_STATE(5637)] = 231799, + [SMALL_STATE(5638)] = 231858, + [SMALL_STATE(5639)] = 231917, + [SMALL_STATE(5640)] = 231976, + [SMALL_STATE(5641)] = 232005, + [SMALL_STATE(5642)] = 232068, + [SMALL_STATE(5643)] = 232105, + [SMALL_STATE(5644)] = 232164, + [SMALL_STATE(5645)] = 232223, + [SMALL_STATE(5646)] = 232266, + [SMALL_STATE(5647)] = 232303, + [SMALL_STATE(5648)] = 232362, + [SMALL_STATE(5649)] = 232391, + [SMALL_STATE(5650)] = 232420, + [SMALL_STATE(5651)] = 232449, + [SMALL_STATE(5652)] = 232482, + [SMALL_STATE(5653)] = 232541, + [SMALL_STATE(5654)] = 232600, + [SMALL_STATE(5655)] = 232659, + [SMALL_STATE(5656)] = 232718, + [SMALL_STATE(5657)] = 232777, + [SMALL_STATE(5658)] = 232836, + [SMALL_STATE(5659)] = 232895, + [SMALL_STATE(5660)] = 232954, + [SMALL_STATE(5661)] = 232983, + [SMALL_STATE(5662)] = 233042, + [SMALL_STATE(5663)] = 233071, + [SMALL_STATE(5664)] = 233130, + [SMALL_STATE(5665)] = 233159, + [SMALL_STATE(5666)] = 233214, + [SMALL_STATE(5667)] = 233243, + [SMALL_STATE(5668)] = 233272, + [SMALL_STATE(5669)] = 233303, + [SMALL_STATE(5670)] = 233332, + [SMALL_STATE(5671)] = 233361, + [SMALL_STATE(5672)] = 233398, + [SMALL_STATE(5673)] = 233427, + [SMALL_STATE(5674)] = 233486, + [SMALL_STATE(5675)] = 233545, + [SMALL_STATE(5676)] = 233578, + [SMALL_STATE(5677)] = 233615, + [SMALL_STATE(5678)] = 233676, + [SMALL_STATE(5679)] = 233705, + [SMALL_STATE(5680)] = 233742, + [SMALL_STATE(5681)] = 233779, + [SMALL_STATE(5682)] = 233812, + [SMALL_STATE(5683)] = 233871, + [SMALL_STATE(5684)] = 233930, + [SMALL_STATE(5685)] = 233959, + [SMALL_STATE(5686)] = 233988, + [SMALL_STATE(5687)] = 234041, + [SMALL_STATE(5688)] = 234070, + [SMALL_STATE(5689)] = 234123, + [SMALL_STATE(5690)] = 234152, + [SMALL_STATE(5691)] = 234211, + [SMALL_STATE(5692)] = 234264, + [SMALL_STATE(5693)] = 234293, + [SMALL_STATE(5694)] = 234352, + [SMALL_STATE(5695)] = 234411, + [SMALL_STATE(5696)] = 234470, + [SMALL_STATE(5697)] = 234529, + [SMALL_STATE(5698)] = 234588, + [SMALL_STATE(5699)] = 234647, + [SMALL_STATE(5700)] = 234684, + [SMALL_STATE(5701)] = 234743, + [SMALL_STATE(5702)] = 234802, + [SMALL_STATE(5703)] = 234861, + [SMALL_STATE(5704)] = 234920, + [SMALL_STATE(5705)] = 234957, + [SMALL_STATE(5706)] = 235016, + [SMALL_STATE(5707)] = 235075, + [SMALL_STATE(5708)] = 235136, + [SMALL_STATE(5709)] = 235195, + [SMALL_STATE(5710)] = 235254, + [SMALL_STATE(5711)] = 235313, + [SMALL_STATE(5712)] = 235350, + [SMALL_STATE(5713)] = 235403, + [SMALL_STATE(5714)] = 235462, + [SMALL_STATE(5715)] = 235491, + [SMALL_STATE(5716)] = 235550, + [SMALL_STATE(5717)] = 235609, + [SMALL_STATE(5718)] = 235668, + [SMALL_STATE(5719)] = 235701, + [SMALL_STATE(5720)] = 235730, + [SMALL_STATE(5721)] = 235789, + [SMALL_STATE(5722)] = 235848, + [SMALL_STATE(5723)] = 235907, + [SMALL_STATE(5724)] = 235962, + [SMALL_STATE(5725)] = 236021, + [SMALL_STATE(5726)] = 236080, + [SMALL_STATE(5727)] = 236139, + [SMALL_STATE(5728)] = 236168, + [SMALL_STATE(5729)] = 236227, + [SMALL_STATE(5730)] = 236288, + [SMALL_STATE(5731)] = 236333, + [SMALL_STATE(5732)] = 236392, + [SMALL_STATE(5733)] = 236453, + [SMALL_STATE(5734)] = 236496, + [SMALL_STATE(5735)] = 236555, + [SMALL_STATE(5736)] = 236608, + [SMALL_STATE(5737)] = 236648, + [SMALL_STATE(5738)] = 236682, + [SMALL_STATE(5739)] = 236734, + [SMALL_STATE(5740)] = 236774, + [SMALL_STATE(5741)] = 236824, + [SMALL_STATE(5742)] = 236864, + [SMALL_STATE(5743)] = 236916, + [SMALL_STATE(5744)] = 236948, + [SMALL_STATE(5745)] = 236988, + [SMALL_STATE(5746)] = 237016, + [SMALL_STATE(5747)] = 237056, + [SMALL_STATE(5748)] = 237088, + [SMALL_STATE(5749)] = 237120, + [SMALL_STATE(5750)] = 237160, + [SMALL_STATE(5751)] = 237200, + [SMALL_STATE(5752)] = 237264, + [SMALL_STATE(5753)] = 237328, + [SMALL_STATE(5754)] = 237378, + [SMALL_STATE(5755)] = 237418, + [SMALL_STATE(5756)] = 237458, + [SMALL_STATE(5757)] = 237498, + [SMALL_STATE(5758)] = 237550, + [SMALL_STATE(5759)] = 237590, + [SMALL_STATE(5760)] = 237642, + [SMALL_STATE(5761)] = 237682, + [SMALL_STATE(5762)] = 237722, + [SMALL_STATE(5763)] = 237762, + [SMALL_STATE(5764)] = 237802, + [SMALL_STATE(5765)] = 237842, + [SMALL_STATE(5766)] = 237894, + [SMALL_STATE(5767)] = 237946, + [SMALL_STATE(5768)] = 237998, + [SMALL_STATE(5769)] = 238046, + [SMALL_STATE(5770)] = 238086, + [SMALL_STATE(5771)] = 238126, + [SMALL_STATE(5772)] = 238166, + [SMALL_STATE(5773)] = 238206, + [SMALL_STATE(5774)] = 238246, + [SMALL_STATE(5775)] = 238298, + [SMALL_STATE(5776)] = 238338, + [SMALL_STATE(5777)] = 238402, + [SMALL_STATE(5778)] = 238448, + [SMALL_STATE(5779)] = 238476, + [SMALL_STATE(5780)] = 238528, + [SMALL_STATE(5781)] = 238592, + [SMALL_STATE(5782)] = 238636, + [SMALL_STATE(5783)] = 238688, + [SMALL_STATE(5784)] = 238728, + [SMALL_STATE(5785)] = 238778, + [SMALL_STATE(5786)] = 238830, + [SMALL_STATE(5787)] = 238880, + [SMALL_STATE(5788)] = 238932, + [SMALL_STATE(5789)] = 238974, + [SMALL_STATE(5790)] = 239024, + [SMALL_STATE(5791)] = 239064, + [SMALL_STATE(5792)] = 239128, + [SMALL_STATE(5793)] = 239168, + [SMALL_STATE(5794)] = 239208, + [SMALL_STATE(5795)] = 239254, + [SMALL_STATE(5796)] = 239294, + [SMALL_STATE(5797)] = 239334, + [SMALL_STATE(5798)] = 239374, + [SMALL_STATE(5799)] = 239414, + [SMALL_STATE(5800)] = 239454, + [SMALL_STATE(5801)] = 239494, + [SMALL_STATE(5802)] = 239544, + [SMALL_STATE(5803)] = 239594, + [SMALL_STATE(5804)] = 239634, + [SMALL_STATE(5805)] = 239674, + [SMALL_STATE(5806)] = 239702, + [SMALL_STATE(5807)] = 239766, + [SMALL_STATE(5808)] = 239794, + [SMALL_STATE(5809)] = 239858, + [SMALL_STATE(5810)] = 239886, + [SMALL_STATE(5811)] = 239926, + [SMALL_STATE(5812)] = 239966, + [SMALL_STATE(5813)] = 239994, + [SMALL_STATE(5814)] = 240034, + [SMALL_STATE(5815)] = 240074, + [SMALL_STATE(5816)] = 240114, + [SMALL_STATE(5817)] = 240154, + [SMALL_STATE(5818)] = 240194, + [SMALL_STATE(5819)] = 240234, + [SMALL_STATE(5820)] = 240274, + [SMALL_STATE(5821)] = 240326, + [SMALL_STATE(5822)] = 240376, + [SMALL_STATE(5823)] = 240426, + [SMALL_STATE(5824)] = 240466, + [SMALL_STATE(5825)] = 240498, + [SMALL_STATE(5826)] = 240538, + [SMALL_STATE(5827)] = 240578, + [SMALL_STATE(5828)] = 240618, + [SMALL_STATE(5829)] = 240658, + [SMALL_STATE(5830)] = 240698, + [SMALL_STATE(5831)] = 240738, + [SMALL_STATE(5832)] = 240790, + [SMALL_STATE(5833)] = 240854, + [SMALL_STATE(5834)] = 240894, + [SMALL_STATE(5835)] = 240944, + [SMALL_STATE(5836)] = 240972, + [SMALL_STATE(5837)] = 241022, + [SMALL_STATE(5838)] = 241066, + [SMALL_STATE(5839)] = 241130, + [SMALL_STATE(5840)] = 241182, + [SMALL_STATE(5841)] = 241232, + [SMALL_STATE(5842)] = 241284, + [SMALL_STATE(5843)] = 241324, + [SMALL_STATE(5844)] = 241374, + [SMALL_STATE(5845)] = 241438, + [SMALL_STATE(5846)] = 241466, + [SMALL_STATE(5847)] = 241512, + [SMALL_STATE(5848)] = 241552, + [SMALL_STATE(5849)] = 241602, + [SMALL_STATE(5850)] = 241654, + [SMALL_STATE(5851)] = 241704, + [SMALL_STATE(5852)] = 241768, + [SMALL_STATE(5853)] = 241832, + [SMALL_STATE(5854)] = 241882, + [SMALL_STATE(5855)] = 241932, + [SMALL_STATE(5856)] = 241972, + [SMALL_STATE(5857)] = 242012, + [SMALL_STATE(5858)] = 242064, + [SMALL_STATE(5859)] = 242116, + [SMALL_STATE(5860)] = 242156, + [SMALL_STATE(5861)] = 242196, + [SMALL_STATE(5862)] = 242248, + [SMALL_STATE(5863)] = 242288, + [SMALL_STATE(5864)] = 242328, + [SMALL_STATE(5865)] = 242392, + [SMALL_STATE(5866)] = 242432, + [SMALL_STATE(5867)] = 242468, + [SMALL_STATE(5868)] = 242508, + [SMALL_STATE(5869)] = 242548, + [SMALL_STATE(5870)] = 242588, + [SMALL_STATE(5871)] = 242628, + [SMALL_STATE(5872)] = 242656, + [SMALL_STATE(5873)] = 242708, + [SMALL_STATE(5874)] = 242754, + [SMALL_STATE(5875)] = 242806, + [SMALL_STATE(5876)] = 242834, + [SMALL_STATE(5877)] = 242886, + [SMALL_STATE(5878)] = 242938, + [SMALL_STATE(5879)] = 242990, + [SMALL_STATE(5880)] = 243040, + [SMALL_STATE(5881)] = 243084, + [SMALL_STATE(5882)] = 243136, + [SMALL_STATE(5883)] = 243188, + [SMALL_STATE(5884)] = 243240, + [SMALL_STATE(5885)] = 243304, + [SMALL_STATE(5886)] = 243336, + [SMALL_STATE(5887)] = 243386, + [SMALL_STATE(5888)] = 243413, + [SMALL_STATE(5889)] = 243460, + [SMALL_STATE(5890)] = 243507, + [SMALL_STATE(5891)] = 243552, + [SMALL_STATE(5892)] = 243601, + [SMALL_STATE(5893)] = 243632, + [SMALL_STATE(5894)] = 243659, + [SMALL_STATE(5895)] = 243686, + [SMALL_STATE(5896)] = 243733, + [SMALL_STATE(5897)] = 243778, + [SMALL_STATE(5898)] = 243821, + [SMALL_STATE(5899)] = 243848, + [SMALL_STATE(5900)] = 243887, + [SMALL_STATE(5901)] = 243926, + [SMALL_STATE(5902)] = 243965, + [SMALL_STATE(5903)] = 244004, + [SMALL_STATE(5904)] = 244061, + [SMALL_STATE(5905)] = 244100, + [SMALL_STATE(5906)] = 244139, + [SMALL_STATE(5907)] = 244178, + [SMALL_STATE(5908)] = 244217, + [SMALL_STATE(5909)] = 244264, + [SMALL_STATE(5910)] = 244309, + [SMALL_STATE(5911)] = 244336, + [SMALL_STATE(5912)] = 244369, + [SMALL_STATE(5913)] = 244414, + [SMALL_STATE(5914)] = 244441, + [SMALL_STATE(5915)] = 244498, + [SMALL_STATE(5916)] = 244525, + [SMALL_STATE(5917)] = 244572, + [SMALL_STATE(5918)] = 244617, + [SMALL_STATE(5919)] = 244664, + [SMALL_STATE(5920)] = 244701, + [SMALL_STATE(5921)] = 244728, + [SMALL_STATE(5922)] = 244775, + [SMALL_STATE(5923)] = 244802, + [SMALL_STATE(5924)] = 244847, + [SMALL_STATE(5925)] = 244892, + [SMALL_STATE(5926)] = 244933, + [SMALL_STATE(5927)] = 244980, + [SMALL_STATE(5928)] = 245027, + [SMALL_STATE(5929)] = 245054, + [SMALL_STATE(5930)] = 245081, + [SMALL_STATE(5931)] = 245126, + [SMALL_STATE(5932)] = 245153, + [SMALL_STATE(5933)] = 245182, + [SMALL_STATE(5934)] = 245215, + [SMALL_STATE(5935)] = 245242, + [SMALL_STATE(5936)] = 245269, + [SMALL_STATE(5937)] = 245308, + [SMALL_STATE(5938)] = 245335, + [SMALL_STATE(5939)] = 245362, + [SMALL_STATE(5940)] = 245389, + [SMALL_STATE(5941)] = 245434, + [SMALL_STATE(5942)] = 245461, + [SMALL_STATE(5943)] = 245488, + [SMALL_STATE(5944)] = 245535, + [SMALL_STATE(5945)] = 245562, + [SMALL_STATE(5946)] = 245589, + [SMALL_STATE(5947)] = 245616, + [SMALL_STATE(5948)] = 245643, + [SMALL_STATE(5949)] = 245670, + [SMALL_STATE(5950)] = 245727, + [SMALL_STATE(5951)] = 245782, + [SMALL_STATE(5952)] = 245809, + [SMALL_STATE(5953)] = 245836, + [SMALL_STATE(5954)] = 245893, + [SMALL_STATE(5955)] = 245940, + [SMALL_STATE(5956)] = 245967, + [SMALL_STATE(5957)] = 245996, + [SMALL_STATE(5958)] = 246029, + [SMALL_STATE(5959)] = 246056, + [SMALL_STATE(5960)] = 246101, + [SMALL_STATE(5961)] = 246144, + [SMALL_STATE(5962)] = 246191, + [SMALL_STATE(5963)] = 246238, + [SMALL_STATE(5964)] = 246281, + [SMALL_STATE(5965)] = 246314, + [SMALL_STATE(5966)] = 246371, + [SMALL_STATE(5967)] = 246398, + [SMALL_STATE(5968)] = 246443, + [SMALL_STATE(5969)] = 246490, + [SMALL_STATE(5970)] = 246537, + [SMALL_STATE(5971)] = 246582, + [SMALL_STATE(5972)] = 246627, + [SMALL_STATE(5973)] = 246684, + [SMALL_STATE(5974)] = 246741, + [SMALL_STATE(5975)] = 246776, + [SMALL_STATE(5976)] = 246803, + [SMALL_STATE(5977)] = 246848, + [SMALL_STATE(5978)] = 246881, + [SMALL_STATE(5979)] = 246930, + [SMALL_STATE(5980)] = 246961, + [SMALL_STATE(5981)] = 246988, + [SMALL_STATE(5982)] = 247035, + [SMALL_STATE(5983)] = 247080, + [SMALL_STATE(5984)] = 247127, + [SMALL_STATE(5985)] = 247181, + [SMALL_STATE(5986)] = 247215, + [SMALL_STATE(5987)] = 247241, + [SMALL_STATE(5988)] = 247275, + [SMALL_STATE(5989)] = 247309, + [SMALL_STATE(5990)] = 247343, + [SMALL_STATE(5991)] = 247395, + [SMALL_STATE(5992)] = 247425, + [SMALL_STATE(5993)] = 247459, + [SMALL_STATE(5994)] = 247485, + [SMALL_STATE(5995)] = 247537, + [SMALL_STATE(5996)] = 247591, + [SMALL_STATE(5997)] = 247621, + [SMALL_STATE(5998)] = 247657, + [SMALL_STATE(5999)] = 247683, + [SMALL_STATE(6000)] = 247737, + [SMALL_STATE(6001)] = 247763, + [SMALL_STATE(6002)] = 247797, + [SMALL_STATE(6003)] = 247823, + [SMALL_STATE(6004)] = 247849, + [SMALL_STATE(6005)] = 247901, + [SMALL_STATE(6006)] = 247937, + [SMALL_STATE(6007)] = 247963, + [SMALL_STATE(6008)] = 248011, + [SMALL_STATE(6009)] = 248041, + [SMALL_STATE(6010)] = 248095, + [SMALL_STATE(6011)] = 248121, + [SMALL_STATE(6012)] = 248147, + [SMALL_STATE(6013)] = 248201, + [SMALL_STATE(6014)] = 248227, + [SMALL_STATE(6015)] = 248253, + [SMALL_STATE(6016)] = 248307, + [SMALL_STATE(6017)] = 248341, + [SMALL_STATE(6018)] = 248375, + [SMALL_STATE(6019)] = 248401, + [SMALL_STATE(6020)] = 248437, + [SMALL_STATE(6021)] = 248489, + [SMALL_STATE(6022)] = 248537, + [SMALL_STATE(6023)] = 248563, + [SMALL_STATE(6024)] = 248597, + [SMALL_STATE(6025)] = 248645, + [SMALL_STATE(6026)] = 248679, + [SMALL_STATE(6027)] = 248713, + [SMALL_STATE(6028)] = 248743, + [SMALL_STATE(6029)] = 248769, + [SMALL_STATE(6030)] = 248817, + [SMALL_STATE(6031)] = 248853, + [SMALL_STATE(6032)] = 248891, + [SMALL_STATE(6033)] = 248925, + [SMALL_STATE(6034)] = 248951, + [SMALL_STATE(6035)] = 248981, + [SMALL_STATE(6036)] = 249019, + [SMALL_STATE(6037)] = 249045, + [SMALL_STATE(6038)] = 249087, + [SMALL_STATE(6039)] = 249125, + [SMALL_STATE(6040)] = 249163, + [SMALL_STATE(6041)] = 249201, + [SMALL_STATE(6042)] = 249239, + [SMALL_STATE(6043)] = 249277, + [SMALL_STATE(6044)] = 249303, + [SMALL_STATE(6045)] = 249329, + [SMALL_STATE(6046)] = 249383, + [SMALL_STATE(6047)] = 249417, + [SMALL_STATE(6048)] = 249451, + [SMALL_STATE(6049)] = 249487, + [SMALL_STATE(6050)] = 249539, + [SMALL_STATE(6051)] = 249573, + [SMALL_STATE(6052)] = 249607, + [SMALL_STATE(6053)] = 249633, + [SMALL_STATE(6054)] = 249667, + [SMALL_STATE(6055)] = 249693, + [SMALL_STATE(6056)] = 249721, + [SMALL_STATE(6057)] = 249755, + [SMALL_STATE(6058)] = 249781, + [SMALL_STATE(6059)] = 249809, + [SMALL_STATE(6060)] = 249863, + [SMALL_STATE(6061)] = 249897, + [SMALL_STATE(6062)] = 249931, + [SMALL_STATE(6063)] = 249969, + [SMALL_STATE(6064)] = 250006, + [SMALL_STATE(6065)] = 250043, + [SMALL_STATE(6066)] = 250080, + [SMALL_STATE(6067)] = 250117, + [SMALL_STATE(6068)] = 250154, + [SMALL_STATE(6069)] = 250191, + [SMALL_STATE(6070)] = 250228, + [SMALL_STATE(6071)] = 250275, + [SMALL_STATE(6072)] = 250306, + [SMALL_STATE(6073)] = 250349, + [SMALL_STATE(6074)] = 250392, + [SMALL_STATE(6075)] = 250427, + [SMALL_STATE(6076)] = 250452, + [SMALL_STATE(6077)] = 250487, + [SMALL_STATE(6078)] = 250530, + [SMALL_STATE(6079)] = 250573, + [SMALL_STATE(6080)] = 250610, + [SMALL_STATE(6081)] = 250651, + [SMALL_STATE(6082)] = 250680, + [SMALL_STATE(6083)] = 250711, + [SMALL_STATE(6084)] = 250748, + [SMALL_STATE(6085)] = 250789, + [SMALL_STATE(6086)] = 250826, + [SMALL_STATE(6087)] = 250857, + [SMALL_STATE(6088)] = 250886, + [SMALL_STATE(6089)] = 250929, + [SMALL_STATE(6090)] = 250970, + [SMALL_STATE(6091)] = 251011, + [SMALL_STATE(6092)] = 251048, + [SMALL_STATE(6093)] = 251091, + [SMALL_STATE(6094)] = 251126, + [SMALL_STATE(6095)] = 251161, + [SMALL_STATE(6096)] = 251202, + [SMALL_STATE(6097)] = 251239, + [SMALL_STATE(6098)] = 251266, + [SMALL_STATE(6099)] = 251299, + [SMALL_STATE(6100)] = 251336, + [SMALL_STATE(6101)] = 251373, + [SMALL_STATE(6102)] = 251404, + [SMALL_STATE(6103)] = 251441, + [SMALL_STATE(6104)] = 251478, + [SMALL_STATE(6105)] = 251513, + [SMALL_STATE(6106)] = 251545, + [SMALL_STATE(6107)] = 251577, + [SMALL_STATE(6108)] = 251609, + [SMALL_STATE(6109)] = 251641, + [SMALL_STATE(6110)] = 251677, + [SMALL_STATE(6111)] = 251717, + [SMALL_STATE(6112)] = 251757, + [SMALL_STATE(6113)] = 251781, + [SMALL_STATE(6114)] = 251805, + [SMALL_STATE(6115)] = 251841, + [SMALL_STATE(6116)] = 251865, + [SMALL_STATE(6117)] = 251889, + [SMALL_STATE(6118)] = 251913, + [SMALL_STATE(6119)] = 251953, + [SMALL_STATE(6120)] = 251977, + [SMALL_STATE(6121)] = 252009, + [SMALL_STATE(6122)] = 252045, + [SMALL_STATE(6123)] = 252069, + [SMALL_STATE(6124)] = 252101, + [SMALL_STATE(6125)] = 252129, + [SMALL_STATE(6126)] = 252153, + [SMALL_STATE(6127)] = 252177, + [SMALL_STATE(6128)] = 252217, + [SMALL_STATE(6129)] = 252257, + [SMALL_STATE(6130)] = 252293, + [SMALL_STATE(6131)] = 252317, + [SMALL_STATE(6132)] = 252341, + [SMALL_STATE(6133)] = 252387, + [SMALL_STATE(6134)] = 252411, + [SMALL_STATE(6135)] = 252435, + [SMALL_STATE(6136)] = 252467, + [SMALL_STATE(6137)] = 252503, + [SMALL_STATE(6138)] = 252527, + [SMALL_STATE(6139)] = 252559, + [SMALL_STATE(6140)] = 252583, + [SMALL_STATE(6141)] = 252623, + [SMALL_STATE(6142)] = 252647, + [SMALL_STATE(6143)] = 252679, + [SMALL_STATE(6144)] = 252711, + [SMALL_STATE(6145)] = 252743, + [SMALL_STATE(6146)] = 252775, + [SMALL_STATE(6147)] = 252807, + [SMALL_STATE(6148)] = 252843, + [SMALL_STATE(6149)] = 252875, + [SMALL_STATE(6150)] = 252907, + [SMALL_STATE(6151)] = 252939, + [SMALL_STATE(6152)] = 252963, + [SMALL_STATE(6153)] = 253003, + [SMALL_STATE(6154)] = 253027, + [SMALL_STATE(6155)] = 253059, + [SMALL_STATE(6156)] = 253083, + [SMALL_STATE(6157)] = 253107, + [SMALL_STATE(6158)] = 253131, + [SMALL_STATE(6159)] = 253171, + [SMALL_STATE(6160)] = 253195, + [SMALL_STATE(6161)] = 253235, + [SMALL_STATE(6162)] = 253259, + [SMALL_STATE(6163)] = 253299, + [SMALL_STATE(6164)] = 253335, + [SMALL_STATE(6165)] = 253359, + [SMALL_STATE(6166)] = 253391, + [SMALL_STATE(6167)] = 253415, + [SMALL_STATE(6168)] = 253455, + [SMALL_STATE(6169)] = 253495, + [SMALL_STATE(6170)] = 253537, + [SMALL_STATE(6171)] = 253569, + [SMALL_STATE(6172)] = 253593, + [SMALL_STATE(6173)] = 253617, + [SMALL_STATE(6174)] = 253641, + [SMALL_STATE(6175)] = 253665, + [SMALL_STATE(6176)] = 253689, + [SMALL_STATE(6177)] = 253721, + [SMALL_STATE(6178)] = 253745, + [SMALL_STATE(6179)] = 253777, + [SMALL_STATE(6180)] = 253809, + [SMALL_STATE(6181)] = 253841, + [SMALL_STATE(6182)] = 253873, + [SMALL_STATE(6183)] = 253905, + [SMALL_STATE(6184)] = 253937, + [SMALL_STATE(6185)] = 253969, + [SMALL_STATE(6186)] = 254001, + [SMALL_STATE(6187)] = 254041, + [SMALL_STATE(6188)] = 254065, + [SMALL_STATE(6189)] = 254089, + [SMALL_STATE(6190)] = 254113, + [SMALL_STATE(6191)] = 254139, + [SMALL_STATE(6192)] = 254179, + [SMALL_STATE(6193)] = 254207, + [SMALL_STATE(6194)] = 254231, + [SMALL_STATE(6195)] = 254255, + [SMALL_STATE(6196)] = 254279, + [SMALL_STATE(6197)] = 254319, + [SMALL_STATE(6198)] = 254359, + [SMALL_STATE(6199)] = 254391, + [SMALL_STATE(6200)] = 254415, + [SMALL_STATE(6201)] = 254439, + [SMALL_STATE(6202)] = 254463, + [SMALL_STATE(6203)] = 254495, + [SMALL_STATE(6204)] = 254519, + [SMALL_STATE(6205)] = 254543, + [SMALL_STATE(6206)] = 254575, + [SMALL_STATE(6207)] = 254615, + [SMALL_STATE(6208)] = 254639, + [SMALL_STATE(6209)] = 254663, + [SMALL_STATE(6210)] = 254687, + [SMALL_STATE(6211)] = 254711, + [SMALL_STATE(6212)] = 254751, + [SMALL_STATE(6213)] = 254775, + [SMALL_STATE(6214)] = 254815, + [SMALL_STATE(6215)] = 254855, + [SMALL_STATE(6216)] = 254891, + [SMALL_STATE(6217)] = 254923, + [SMALL_STATE(6218)] = 254947, + [SMALL_STATE(6219)] = 254979, + [SMALL_STATE(6220)] = 255011, + [SMALL_STATE(6221)] = 255035, + [SMALL_STATE(6222)] = 255064, + [SMALL_STATE(6223)] = 255097, + [SMALL_STATE(6224)] = 255132, + [SMALL_STATE(6225)] = 255161, + [SMALL_STATE(6226)] = 255196, + [SMALL_STATE(6227)] = 255231, + [SMALL_STATE(6228)] = 255266, + [SMALL_STATE(6229)] = 255301, + [SMALL_STATE(6230)] = 255334, + [SMALL_STATE(6231)] = 255369, + [SMALL_STATE(6232)] = 255404, + [SMALL_STATE(6233)] = 255439, + [SMALL_STATE(6234)] = 255474, + [SMALL_STATE(6235)] = 255509, + [SMALL_STATE(6236)] = 255542, + [SMALL_STATE(6237)] = 255581, + [SMALL_STATE(6238)] = 255620, + [SMALL_STATE(6239)] = 255651, + [SMALL_STATE(6240)] = 255682, + [SMALL_STATE(6241)] = 255713, + [SMALL_STATE(6242)] = 255744, + [SMALL_STATE(6243)] = 255775, + [SMALL_STATE(6244)] = 255806, + [SMALL_STATE(6245)] = 255837, + [SMALL_STATE(6246)] = 255868, + [SMALL_STATE(6247)] = 255903, + [SMALL_STATE(6248)] = 255936, + [SMALL_STATE(6249)] = 255965, + [SMALL_STATE(6250)] = 256000, + [SMALL_STATE(6251)] = 256029, + [SMALL_STATE(6252)] = 256064, + [SMALL_STATE(6253)] = 256097, + [SMALL_STATE(6254)] = 256130, + [SMALL_STATE(6255)] = 256165, + [SMALL_STATE(6256)] = 256200, + [SMALL_STATE(6257)] = 256235, + [SMALL_STATE(6258)] = 256270, + [SMALL_STATE(6259)] = 256305, + [SMALL_STATE(6260)] = 256340, + [SMALL_STATE(6261)] = 256375, + [SMALL_STATE(6262)] = 256410, + [SMALL_STATE(6263)] = 256445, + [SMALL_STATE(6264)] = 256480, + [SMALL_STATE(6265)] = 256509, + [SMALL_STATE(6266)] = 256544, + [SMALL_STATE(6267)] = 256579, + [SMALL_STATE(6268)] = 256612, + [SMALL_STATE(6269)] = 256641, + [SMALL_STATE(6270)] = 256674, + [SMALL_STATE(6271)] = 256713, + [SMALL_STATE(6272)] = 256742, + [SMALL_STATE(6273)] = 256775, + [SMALL_STATE(6274)] = 256810, + [SMALL_STATE(6275)] = 256839, + [SMALL_STATE(6276)] = 256872, + [SMALL_STATE(6277)] = 256901, + [SMALL_STATE(6278)] = 256934, + [SMALL_STATE(6279)] = 256973, + [SMALL_STATE(6280)] = 257002, + [SMALL_STATE(6281)] = 257031, + [SMALL_STATE(6282)] = 257060, + [SMALL_STATE(6283)] = 257089, + [SMALL_STATE(6284)] = 257118, + [SMALL_STATE(6285)] = 257153, + [SMALL_STATE(6286)] = 257188, + [SMALL_STATE(6287)] = 257227, + [SMALL_STATE(6288)] = 257256, + [SMALL_STATE(6289)] = 257289, + [SMALL_STATE(6290)] = 257316, + [SMALL_STATE(6291)] = 257351, + [SMALL_STATE(6292)] = 257386, + [SMALL_STATE(6293)] = 257425, + [SMALL_STATE(6294)] = 257460, + [SMALL_STATE(6295)] = 257489, + [SMALL_STATE(6296)] = 257522, + [SMALL_STATE(6297)] = 257551, + [SMALL_STATE(6298)] = 257580, + [SMALL_STATE(6299)] = 257609, + [SMALL_STATE(6300)] = 257638, + [SMALL_STATE(6301)] = 257667, + [SMALL_STATE(6302)] = 257706, + [SMALL_STATE(6303)] = 257739, + [SMALL_STATE(6304)] = 257772, + [SMALL_STATE(6305)] = 257811, + [SMALL_STATE(6306)] = 257844, + [SMALL_STATE(6307)] = 257883, + [SMALL_STATE(6308)] = 257912, + [SMALL_STATE(6309)] = 257942, + [SMALL_STATE(6310)] = 257972, + [SMALL_STATE(6311)] = 258012, + [SMALL_STATE(6312)] = 258050, + [SMALL_STATE(6313)] = 258088, + [SMALL_STATE(6314)] = 258128, + [SMALL_STATE(6315)] = 258168, + [SMALL_STATE(6316)] = 258208, + [SMALL_STATE(6317)] = 258246, + [SMALL_STATE(6318)] = 258286, + [SMALL_STATE(6319)] = 258326, + [SMALL_STATE(6320)] = 258364, + [SMALL_STATE(6321)] = 258404, + [SMALL_STATE(6322)] = 258442, + [SMALL_STATE(6323)] = 258480, + [SMALL_STATE(6324)] = 258520, + [SMALL_STATE(6325)] = 258550, + [SMALL_STATE(6326)] = 258590, + [SMALL_STATE(6327)] = 258620, + [SMALL_STATE(6328)] = 258650, + [SMALL_STATE(6329)] = 258680, + [SMALL_STATE(6330)] = 258710, + [SMALL_STATE(6331)] = 258740, + [SMALL_STATE(6332)] = 258770, + [SMALL_STATE(6333)] = 258808, + [SMALL_STATE(6334)] = 258848, + [SMALL_STATE(6335)] = 258878, + [SMALL_STATE(6336)] = 258918, + [SMALL_STATE(6337)] = 258950, + [SMALL_STATE(6338)] = 258982, + [SMALL_STATE(6339)] = 259014, + [SMALL_STATE(6340)] = 259054, + [SMALL_STATE(6341)] = 259086, + [SMALL_STATE(6342)] = 259126, + [SMALL_STATE(6343)] = 259168, + [SMALL_STATE(6344)] = 259208, + [SMALL_STATE(6345)] = 259246, + [SMALL_STATE(6346)] = 259284, + [SMALL_STATE(6347)] = 259322, + [SMALL_STATE(6348)] = 259354, + [SMALL_STATE(6349)] = 259388, + [SMALL_STATE(6350)] = 259422, + [SMALL_STATE(6351)] = 259456, + [SMALL_STATE(6352)] = 259490, + [SMALL_STATE(6353)] = 259524, + [SMALL_STATE(6354)] = 259558, + [SMALL_STATE(6355)] = 259592, + [SMALL_STATE(6356)] = 259624, + [SMALL_STATE(6357)] = 259662, + [SMALL_STATE(6358)] = 259700, + [SMALL_STATE(6359)] = 259730, + [SMALL_STATE(6360)] = 259760, + [SMALL_STATE(6361)] = 259790, + [SMALL_STATE(6362)] = 259820, + [SMALL_STATE(6363)] = 259850, + [SMALL_STATE(6364)] = 259880, + [SMALL_STATE(6365)] = 259910, + [SMALL_STATE(6366)] = 259940, + [SMALL_STATE(6367)] = 259980, + [SMALL_STATE(6368)] = 260020, + [SMALL_STATE(6369)] = 260052, + [SMALL_STATE(6370)] = 260074, + [SMALL_STATE(6371)] = 260106, + [SMALL_STATE(6372)] = 260128, + [SMALL_STATE(6373)] = 260170, + [SMALL_STATE(6374)] = 260202, + [SMALL_STATE(6375)] = 260242, + [SMALL_STATE(6376)] = 260280, + [SMALL_STATE(6377)] = 260306, + [SMALL_STATE(6378)] = 260348, + [SMALL_STATE(6379)] = 260386, + [SMALL_STATE(6380)] = 260420, + [SMALL_STATE(6381)] = 260460, + [SMALL_STATE(6382)] = 260498, + [SMALL_STATE(6383)] = 260532, + [SMALL_STATE(6384)] = 260556, + [SMALL_STATE(6385)] = 260596, + [SMALL_STATE(6386)] = 260634, + [SMALL_STATE(6387)] = 260656, + [SMALL_STATE(6388)] = 260696, + [SMALL_STATE(6389)] = 260730, + [SMALL_STATE(6390)] = 260764, + [SMALL_STATE(6391)] = 260798, + [SMALL_STATE(6392)] = 260838, + [SMALL_STATE(6393)] = 260860, + [SMALL_STATE(6394)] = 260898, + [SMALL_STATE(6395)] = 260940, + [SMALL_STATE(6396)] = 260982, + [SMALL_STATE(6397)] = 261014, + [SMALL_STATE(6398)] = 261038, + [SMALL_STATE(6399)] = 261076, + [SMALL_STATE(6400)] = 261116, + [SMALL_STATE(6401)] = 261148, + [SMALL_STATE(6402)] = 261170, + [SMALL_STATE(6403)] = 261202, + [SMALL_STATE(6404)] = 261240, + [SMALL_STATE(6405)] = 261272, + [SMALL_STATE(6406)] = 261306, + [SMALL_STATE(6407)] = 261339, + [SMALL_STATE(6408)] = 261372, + [SMALL_STATE(6409)] = 261405, + [SMALL_STATE(6410)] = 261438, + [SMALL_STATE(6411)] = 261471, + [SMALL_STATE(6412)] = 261498, + [SMALL_STATE(6413)] = 261535, + [SMALL_STATE(6414)] = 261568, + [SMALL_STATE(6415)] = 261607, + [SMALL_STATE(6416)] = 261640, + [SMALL_STATE(6417)] = 261665, + [SMALL_STATE(6418)] = 261698, + [SMALL_STATE(6419)] = 261731, + [SMALL_STATE(6420)] = 261760, + [SMALL_STATE(6421)] = 261793, + [SMALL_STATE(6422)] = 261828, + [SMALL_STATE(6423)] = 261855, + [SMALL_STATE(6424)] = 261882, + [SMALL_STATE(6425)] = 261907, + [SMALL_STATE(6426)] = 261934, + [SMALL_STATE(6427)] = 261961, + [SMALL_STATE(6428)] = 261996, + [SMALL_STATE(6429)] = 262025, + [SMALL_STATE(6430)] = 262054, + [SMALL_STATE(6431)] = 262089, + [SMALL_STATE(6432)] = 262118, + [SMALL_STATE(6433)] = 262145, + [SMALL_STATE(6434)] = 262178, + [SMALL_STATE(6435)] = 262211, + [SMALL_STATE(6436)] = 262238, + [SMALL_STATE(6437)] = 262271, + [SMALL_STATE(6438)] = 262304, + [SMALL_STATE(6439)] = 262343, + [SMALL_STATE(6440)] = 262376, + [SMALL_STATE(6441)] = 262409, + [SMALL_STATE(6442)] = 262444, + [SMALL_STATE(6443)] = 262477, + [SMALL_STATE(6444)] = 262510, + [SMALL_STATE(6445)] = 262545, + [SMALL_STATE(6446)] = 262580, + [SMALL_STATE(6447)] = 262613, + [SMALL_STATE(6448)] = 262642, + [SMALL_STATE(6449)] = 262675, + [SMALL_STATE(6450)] = 262710, + [SMALL_STATE(6451)] = 262739, + [SMALL_STATE(6452)] = 262772, + [SMALL_STATE(6453)] = 262801, + [SMALL_STATE(6454)] = 262836, + [SMALL_STATE(6455)] = 262869, + [SMALL_STATE(6456)] = 262896, + [SMALL_STATE(6457)] = 262935, + [SMALL_STATE(6458)] = 262964, + [SMALL_STATE(6459)] = 263003, + [SMALL_STATE(6460)] = 263038, + [SMALL_STATE(6461)] = 263073, + [SMALL_STATE(6462)] = 263108, + [SMALL_STATE(6463)] = 263147, + [SMALL_STATE(6464)] = 263174, + [SMALL_STATE(6465)] = 263211, + [SMALL_STATE(6466)] = 263244, + [SMALL_STATE(6467)] = 263269, + [SMALL_STATE(6468)] = 263296, + [SMALL_STATE(6469)] = 263329, + [SMALL_STATE(6470)] = 263362, + [SMALL_STATE(6471)] = 263395, + [SMALL_STATE(6472)] = 263422, + [SMALL_STATE(6473)] = 263459, + [SMALL_STATE(6474)] = 263492, + [SMALL_STATE(6475)] = 263527, + [SMALL_STATE(6476)] = 263560, + [SMALL_STATE(6477)] = 263593, + [SMALL_STATE(6478)] = 263618, + [SMALL_STATE(6479)] = 263645, + [SMALL_STATE(6480)] = 263678, + [SMALL_STATE(6481)] = 263711, + [SMALL_STATE(6482)] = 263744, + [SMALL_STATE(6483)] = 263777, + [SMALL_STATE(6484)] = 263802, + [SMALL_STATE(6485)] = 263838, + [SMALL_STATE(6486)] = 263868, + [SMALL_STATE(6487)] = 263904, + [SMALL_STATE(6488)] = 263928, + [SMALL_STATE(6489)] = 263964, + [SMALL_STATE(6490)] = 264000, + [SMALL_STATE(6491)] = 264026, + [SMALL_STATE(6492)] = 264062, + [SMALL_STATE(6493)] = 264088, + [SMALL_STATE(6494)] = 264124, + [SMALL_STATE(6495)] = 264160, + [SMALL_STATE(6496)] = 264182, + [SMALL_STATE(6497)] = 264218, + [SMALL_STATE(6498)] = 264254, + [SMALL_STATE(6499)] = 264274, + [SMALL_STATE(6500)] = 264304, + [SMALL_STATE(6501)] = 264340, + [SMALL_STATE(6502)] = 264362, + [SMALL_STATE(6503)] = 264382, + [SMALL_STATE(6504)] = 264402, + [SMALL_STATE(6505)] = 264432, + [SMALL_STATE(6506)] = 264458, + [SMALL_STATE(6507)] = 264488, + [SMALL_STATE(6508)] = 264518, + [SMALL_STATE(6509)] = 264544, + [SMALL_STATE(6510)] = 264580, + [SMALL_STATE(6511)] = 264616, + [SMALL_STATE(6512)] = 264652, + [SMALL_STATE(6513)] = 264672, + [SMALL_STATE(6514)] = 264692, + [SMALL_STATE(6515)] = 264718, + [SMALL_STATE(6516)] = 264738, + [SMALL_STATE(6517)] = 264774, + [SMALL_STATE(6518)] = 264810, + [SMALL_STATE(6519)] = 264830, + [SMALL_STATE(6520)] = 264860, + [SMALL_STATE(6521)] = 264880, + [SMALL_STATE(6522)] = 264904, + [SMALL_STATE(6523)] = 264940, + [SMALL_STATE(6524)] = 264966, + [SMALL_STATE(6525)] = 264992, + [SMALL_STATE(6526)] = 265012, + [SMALL_STATE(6527)] = 265048, + [SMALL_STATE(6528)] = 265078, + [SMALL_STATE(6529)] = 265108, + [SMALL_STATE(6530)] = 265128, + [SMALL_STATE(6531)] = 265158, + [SMALL_STATE(6532)] = 265184, + [SMALL_STATE(6533)] = 265220, + [SMALL_STATE(6534)] = 265240, + [SMALL_STATE(6535)] = 265270, + [SMALL_STATE(6536)] = 265306, + [SMALL_STATE(6537)] = 265336, + [SMALL_STATE(6538)] = 265372, + [SMALL_STATE(6539)] = 265402, + [SMALL_STATE(6540)] = 265431, + [SMALL_STATE(6541)] = 265458, + [SMALL_STATE(6542)] = 265487, + [SMALL_STATE(6543)] = 265514, + [SMALL_STATE(6544)] = 265541, + [SMALL_STATE(6545)] = 265572, + [SMALL_STATE(6546)] = 265603, + [SMALL_STATE(6547)] = 265634, + [SMALL_STATE(6548)] = 265663, + [SMALL_STATE(6549)] = 265698, + [SMALL_STATE(6550)] = 265729, + [SMALL_STATE(6551)] = 265746, + [SMALL_STATE(6552)] = 265775, + [SMALL_STATE(6553)] = 265800, + [SMALL_STATE(6554)] = 265825, + [SMALL_STATE(6555)] = 265860, + [SMALL_STATE(6556)] = 265895, + [SMALL_STATE(6557)] = 265924, + [SMALL_STATE(6558)] = 265959, + [SMALL_STATE(6559)] = 265976, + [SMALL_STATE(6560)] = 265993, + [SMALL_STATE(6561)] = 266022, + [SMALL_STATE(6562)] = 266057, + [SMALL_STATE(6563)] = 266082, + [SMALL_STATE(6564)] = 266113, + [SMALL_STATE(6565)] = 266146, + [SMALL_STATE(6566)] = 266171, + [SMALL_STATE(6567)] = 266190, + [SMALL_STATE(6568)] = 266215, + [SMALL_STATE(6569)] = 266248, + [SMALL_STATE(6570)] = 266275, + [SMALL_STATE(6571)] = 266310, + [SMALL_STATE(6572)] = 266343, + [SMALL_STATE(6573)] = 266374, + [SMALL_STATE(6574)] = 266401, + [SMALL_STATE(6575)] = 266430, + [SMALL_STATE(6576)] = 266463, + [SMALL_STATE(6577)] = 266490, + [SMALL_STATE(6578)] = 266521, + [SMALL_STATE(6579)] = 266548, + [SMALL_STATE(6580)] = 266575, + [SMALL_STATE(6581)] = 266602, + [SMALL_STATE(6582)] = 266627, + [SMALL_STATE(6583)] = 266654, + [SMALL_STATE(6584)] = 266681, + [SMALL_STATE(6585)] = 266708, + [SMALL_STATE(6586)] = 266739, + [SMALL_STATE(6587)] = 266770, + [SMALL_STATE(6588)] = 266795, + [SMALL_STATE(6589)] = 266830, + [SMALL_STATE(6590)] = 266859, + [SMALL_STATE(6591)] = 266890, + [SMALL_STATE(6592)] = 266921, + [SMALL_STATE(6593)] = 266950, + [SMALL_STATE(6594)] = 266977, + [SMALL_STATE(6595)] = 267008, + [SMALL_STATE(6596)] = 267035, + [SMALL_STATE(6597)] = 267070, + [SMALL_STATE(6598)] = 267095, + [SMALL_STATE(6599)] = 267116, + [SMALL_STATE(6600)] = 267143, + [SMALL_STATE(6601)] = 267174, + [SMALL_STATE(6602)] = 267205, + [SMALL_STATE(6603)] = 267230, + [SMALL_STATE(6604)] = 267255, + [SMALL_STATE(6605)] = 267280, + [SMALL_STATE(6606)] = 267315, + [SMALL_STATE(6607)] = 267346, + [SMALL_STATE(6608)] = 267381, + [SMALL_STATE(6609)] = 267400, + [SMALL_STATE(6610)] = 267429, + [SMALL_STATE(6611)] = 267454, + [SMALL_STATE(6612)] = 267473, + [SMALL_STATE(6613)] = 267498, + [SMALL_STATE(6614)] = 267523, + [SMALL_STATE(6615)] = 267542, + [SMALL_STATE(6616)] = 267573, + [SMALL_STATE(6617)] = 267608, + [SMALL_STATE(6618)] = 267635, + [SMALL_STATE(6619)] = 267666, + [SMALL_STATE(6620)] = 267691, + [SMALL_STATE(6621)] = 267708, + [SMALL_STATE(6622)] = 267733, + [SMALL_STATE(6623)] = 267762, + [SMALL_STATE(6624)] = 267789, + [SMALL_STATE(6625)] = 267816, + [SMALL_STATE(6626)] = 267843, + [SMALL_STATE(6627)] = 267870, + [SMALL_STATE(6628)] = 267897, + [SMALL_STATE(6629)] = 267924, + [SMALL_STATE(6630)] = 267951, + [SMALL_STATE(6631)] = 267982, + [SMALL_STATE(6632)] = 268001, + [SMALL_STATE(6633)] = 268020, + [SMALL_STATE(6634)] = 268039, + [SMALL_STATE(6635)] = 268062, + [SMALL_STATE(6636)] = 268097, + [SMALL_STATE(6637)] = 268128, + [SMALL_STATE(6638)] = 268145, + [SMALL_STATE(6639)] = 268172, + [SMALL_STATE(6640)] = 268199, + [SMALL_STATE(6641)] = 268234, + [SMALL_STATE(6642)] = 268265, + [SMALL_STATE(6643)] = 268292, + [SMALL_STATE(6644)] = 268323, + [SMALL_STATE(6645)] = 268354, + [SMALL_STATE(6646)] = 268385, + [SMALL_STATE(6647)] = 268418, + [SMALL_STATE(6648)] = 268449, + [SMALL_STATE(6649)] = 268484, + [SMALL_STATE(6650)] = 268513, + [SMALL_STATE(6651)] = 268544, + [SMALL_STATE(6652)] = 268573, + [SMALL_STATE(6653)] = 268602, + [SMALL_STATE(6654)] = 268634, + [SMALL_STATE(6655)] = 268658, + [SMALL_STATE(6656)] = 268688, + [SMALL_STATE(6657)] = 268718, + [SMALL_STATE(6658)] = 268742, + [SMALL_STATE(6659)] = 268764, + [SMALL_STATE(6660)] = 268788, + [SMALL_STATE(6661)] = 268812, + [SMALL_STATE(6662)] = 268836, + [SMALL_STATE(6663)] = 268862, + [SMALL_STATE(6664)] = 268890, + [SMALL_STATE(6665)] = 268912, + [SMALL_STATE(6666)] = 268934, + [SMALL_STATE(6667)] = 268958, + [SMALL_STATE(6668)] = 268982, + [SMALL_STATE(6669)] = 269006, + [SMALL_STATE(6670)] = 269028, + [SMALL_STATE(6671)] = 269050, + [SMALL_STATE(6672)] = 269072, + [SMALL_STATE(6673)] = 269096, + [SMALL_STATE(6674)] = 269120, + [SMALL_STATE(6675)] = 269150, + [SMALL_STATE(6676)] = 269172, + [SMALL_STATE(6677)] = 269196, + [SMALL_STATE(6678)] = 269220, + [SMALL_STATE(6679)] = 269244, + [SMALL_STATE(6680)] = 269274, + [SMALL_STATE(6681)] = 269298, + [SMALL_STATE(6682)] = 269322, + [SMALL_STATE(6683)] = 269346, + [SMALL_STATE(6684)] = 269370, + [SMALL_STATE(6685)] = 269400, + [SMALL_STATE(6686)] = 269424, + [SMALL_STATE(6687)] = 269448, + [SMALL_STATE(6688)] = 269478, + [SMALL_STATE(6689)] = 269504, + [SMALL_STATE(6690)] = 269530, + [SMALL_STATE(6691)] = 269556, + [SMALL_STATE(6692)] = 269580, + [SMALL_STATE(6693)] = 269610, + [SMALL_STATE(6694)] = 269632, + [SMALL_STATE(6695)] = 269654, + [SMALL_STATE(6696)] = 269678, + [SMALL_STATE(6697)] = 269700, + [SMALL_STATE(6698)] = 269716, + [SMALL_STATE(6699)] = 269740, + [SMALL_STATE(6700)] = 269762, + [SMALL_STATE(6701)] = 269784, + [SMALL_STATE(6702)] = 269808, + [SMALL_STATE(6703)] = 269830, + [SMALL_STATE(6704)] = 269861, + [SMALL_STATE(6705)] = 269884, + [SMALL_STATE(6706)] = 269907, + [SMALL_STATE(6707)] = 269930, + [SMALL_STATE(6708)] = 269953, + [SMALL_STATE(6709)] = 269976, + [SMALL_STATE(6710)] = 269999, + [SMALL_STATE(6711)] = 270022, + [SMALL_STATE(6712)] = 270053, + [SMALL_STATE(6713)] = 270084, + [SMALL_STATE(6714)] = 270115, + [SMALL_STATE(6715)] = 270146, + [SMALL_STATE(6716)] = 270177, + [SMALL_STATE(6717)] = 270208, + [SMALL_STATE(6718)] = 270235, + [SMALL_STATE(6719)] = 270262, + [SMALL_STATE(6720)] = 270283, + [SMALL_STATE(6721)] = 270310, + [SMALL_STATE(6722)] = 270341, + [SMALL_STATE(6723)] = 270368, + [SMALL_STATE(6724)] = 270395, + [SMALL_STATE(6725)] = 270426, + [SMALL_STATE(6726)] = 270453, + [SMALL_STATE(6727)] = 270484, + [SMALL_STATE(6728)] = 270511, + [SMALL_STATE(6729)] = 270538, + [SMALL_STATE(6730)] = 270569, + [SMALL_STATE(6731)] = 270596, + [SMALL_STATE(6732)] = 270627, + [SMALL_STATE(6733)] = 270654, + [SMALL_STATE(6734)] = 270685, + [SMALL_STATE(6735)] = 270712, + [SMALL_STATE(6736)] = 270739, + [SMALL_STATE(6737)] = 270770, + [SMALL_STATE(6738)] = 270801, + [SMALL_STATE(6739)] = 270832, + [SMALL_STATE(6740)] = 270863, + [SMALL_STATE(6741)] = 270890, + [SMALL_STATE(6742)] = 270921, + [SMALL_STATE(6743)] = 270952, + [SMALL_STATE(6744)] = 270973, + [SMALL_STATE(6745)] = 271004, + [SMALL_STATE(6746)] = 271035, + [SMALL_STATE(6747)] = 271062, + [SMALL_STATE(6748)] = 271093, + [SMALL_STATE(6749)] = 271124, + [SMALL_STATE(6750)] = 271151, + [SMALL_STATE(6751)] = 271182, + [SMALL_STATE(6752)] = 271209, + [SMALL_STATE(6753)] = 271236, + [SMALL_STATE(6754)] = 271263, + [SMALL_STATE(6755)] = 271294, + [SMALL_STATE(6756)] = 271321, + [SMALL_STATE(6757)] = 271342, + [SMALL_STATE(6758)] = 271373, + [SMALL_STATE(6759)] = 271404, + [SMALL_STATE(6760)] = 271435, + [SMALL_STATE(6761)] = 271456, + [SMALL_STATE(6762)] = 271479, + [SMALL_STATE(6763)] = 271510, + [SMALL_STATE(6764)] = 271536, + [SMALL_STATE(6765)] = 271562, + [SMALL_STATE(6766)] = 271584, + [SMALL_STATE(6767)] = 271608, + [SMALL_STATE(6768)] = 271632, + [SMALL_STATE(6769)] = 271658, + [SMALL_STATE(6770)] = 271684, + [SMALL_STATE(6771)] = 271708, + [SMALL_STATE(6772)] = 271730, + [SMALL_STATE(6773)] = 271756, + [SMALL_STATE(6774)] = 271782, + [SMALL_STATE(6775)] = 271808, + [SMALL_STATE(6776)] = 271830, + [SMALL_STATE(6777)] = 271856, + [SMALL_STATE(6778)] = 271880, + [SMALL_STATE(6779)] = 271906, + [SMALL_STATE(6780)] = 271932, + [SMALL_STATE(6781)] = 271958, + [SMALL_STATE(6782)] = 271984, + [SMALL_STATE(6783)] = 272010, + [SMALL_STATE(6784)] = 272030, + [SMALL_STATE(6785)] = 272056, + [SMALL_STATE(6786)] = 272078, + [SMALL_STATE(6787)] = 272104, + [SMALL_STATE(6788)] = 272128, + [SMALL_STATE(6789)] = 272154, + [SMALL_STATE(6790)] = 272170, + [SMALL_STATE(6791)] = 272196, + [SMALL_STATE(6792)] = 272216, + [SMALL_STATE(6793)] = 272242, + [SMALL_STATE(6794)] = 272268, + [SMALL_STATE(6795)] = 272292, + [SMALL_STATE(6796)] = 272314, + [SMALL_STATE(6797)] = 272340, + [SMALL_STATE(6798)] = 272366, + [SMALL_STATE(6799)] = 272392, + [SMALL_STATE(6800)] = 272414, + [SMALL_STATE(6801)] = 272442, + [SMALL_STATE(6802)] = 272468, + [SMALL_STATE(6803)] = 272494, + [SMALL_STATE(6804)] = 272516, + [SMALL_STATE(6805)] = 272542, + [SMALL_STATE(6806)] = 272564, + [SMALL_STATE(6807)] = 272590, + [SMALL_STATE(6808)] = 272612, + [SMALL_STATE(6809)] = 272638, + [SMALL_STATE(6810)] = 272654, + [SMALL_STATE(6811)] = 272676, + [SMALL_STATE(6812)] = 272702, + [SMALL_STATE(6813)] = 272724, + [SMALL_STATE(6814)] = 272750, + [SMALL_STATE(6815)] = 272772, + [SMALL_STATE(6816)] = 272794, + [SMALL_STATE(6817)] = 272820, + [SMALL_STATE(6818)] = 272846, + [SMALL_STATE(6819)] = 272872, + [SMALL_STATE(6820)] = 272898, + [SMALL_STATE(6821)] = 272922, + [SMALL_STATE(6822)] = 272948, + [SMALL_STATE(6823)] = 272974, + [SMALL_STATE(6824)] = 272996, + [SMALL_STATE(6825)] = 273022, + [SMALL_STATE(6826)] = 273048, + [SMALL_STATE(6827)] = 273070, + [SMALL_STATE(6828)] = 273092, + [SMALL_STATE(6829)] = 273118, + [SMALL_STATE(6830)] = 273144, + [SMALL_STATE(6831)] = 273162, + [SMALL_STATE(6832)] = 273188, + [SMALL_STATE(6833)] = 273214, + [SMALL_STATE(6834)] = 273240, + [SMALL_STATE(6835)] = 273262, + [SMALL_STATE(6836)] = 273282, + [SMALL_STATE(6837)] = 273304, + [SMALL_STATE(6838)] = 273330, + [SMALL_STATE(6839)] = 273356, + [SMALL_STATE(6840)] = 273378, + [SMALL_STATE(6841)] = 273400, + [SMALL_STATE(6842)] = 273426, + [SMALL_STATE(6843)] = 273452, + [SMALL_STATE(6844)] = 273474, + [SMALL_STATE(6845)] = 273500, + [SMALL_STATE(6846)] = 273526, + [SMALL_STATE(6847)] = 273548, + [SMALL_STATE(6848)] = 273572, + [SMALL_STATE(6849)] = 273589, + [SMALL_STATE(6850)] = 273612, + [SMALL_STATE(6851)] = 273633, + [SMALL_STATE(6852)] = 273658, + [SMALL_STATE(6853)] = 273679, + [SMALL_STATE(6854)] = 273704, + [SMALL_STATE(6855)] = 273725, + [SMALL_STATE(6856)] = 273744, + [SMALL_STATE(6857)] = 273765, + [SMALL_STATE(6858)] = 273782, + [SMALL_STATE(6859)] = 273803, + [SMALL_STATE(6860)] = 273826, + [SMALL_STATE(6861)] = 273849, + [SMALL_STATE(6862)] = 273874, + [SMALL_STATE(6863)] = 273891, + [SMALL_STATE(6864)] = 273916, + [SMALL_STATE(6865)] = 273933, + [SMALL_STATE(6866)] = 273956, + [SMALL_STATE(6867)] = 273973, + [SMALL_STATE(6868)] = 273998, + [SMALL_STATE(6869)] = 274015, + [SMALL_STATE(6870)] = 274038, + [SMALL_STATE(6871)] = 274059, + [SMALL_STATE(6872)] = 274076, + [SMALL_STATE(6873)] = 274099, + [SMALL_STATE(6874)] = 274116, + [SMALL_STATE(6875)] = 274133, + [SMALL_STATE(6876)] = 274156, + [SMALL_STATE(6877)] = 274175, + [SMALL_STATE(6878)] = 274192, + [SMALL_STATE(6879)] = 274209, + [SMALL_STATE(6880)] = 274234, + [SMALL_STATE(6881)] = 274251, + [SMALL_STATE(6882)] = 274276, + [SMALL_STATE(6883)] = 274293, + [SMALL_STATE(6884)] = 274316, + [SMALL_STATE(6885)] = 274333, + [SMALL_STATE(6886)] = 274350, + [SMALL_STATE(6887)] = 274367, + [SMALL_STATE(6888)] = 274390, + [SMALL_STATE(6889)] = 274413, + [SMALL_STATE(6890)] = 274430, + [SMALL_STATE(6891)] = 274449, + [SMALL_STATE(6892)] = 274472, + [SMALL_STATE(6893)] = 274495, + [SMALL_STATE(6894)] = 274516, + [SMALL_STATE(6895)] = 274539, + [SMALL_STATE(6896)] = 274558, + [SMALL_STATE(6897)] = 274577, + [SMALL_STATE(6898)] = 274598, + [SMALL_STATE(6899)] = 274621, + [SMALL_STATE(6900)] = 274644, + [SMALL_STATE(6901)] = 274665, + [SMALL_STATE(6902)] = 274688, + [SMALL_STATE(6903)] = 274713, + [SMALL_STATE(6904)] = 274736, + [SMALL_STATE(6905)] = 274757, + [SMALL_STATE(6906)] = 274774, + [SMALL_STATE(6907)] = 274796, + [SMALL_STATE(6908)] = 274814, + [SMALL_STATE(6909)] = 274836, + [SMALL_STATE(6910)] = 274858, + [SMALL_STATE(6911)] = 274872, + [SMALL_STATE(6912)] = 274894, + [SMALL_STATE(6913)] = 274914, + [SMALL_STATE(6914)] = 274936, + [SMALL_STATE(6915)] = 274956, + [SMALL_STATE(6916)] = 274976, + [SMALL_STATE(6917)] = 274996, + [SMALL_STATE(6918)] = 275010, + [SMALL_STATE(6919)] = 275030, + [SMALL_STATE(6920)] = 275050, + [SMALL_STATE(6921)] = 275070, + [SMALL_STATE(6922)] = 275090, + [SMALL_STATE(6923)] = 275110, + [SMALL_STATE(6924)] = 275124, + [SMALL_STATE(6925)] = 275138, + [SMALL_STATE(6926)] = 275158, + [SMALL_STATE(6927)] = 275180, + [SMALL_STATE(6928)] = 275194, + [SMALL_STATE(6929)] = 275214, + [SMALL_STATE(6930)] = 275228, + [SMALL_STATE(6931)] = 275250, + [SMALL_STATE(6932)] = 275272, + [SMALL_STATE(6933)] = 275292, + [SMALL_STATE(6934)] = 275312, + [SMALL_STATE(6935)] = 275330, + [SMALL_STATE(6936)] = 275352, + [SMALL_STATE(6937)] = 275372, + [SMALL_STATE(6938)] = 275394, + [SMALL_STATE(6939)] = 275416, + [SMALL_STATE(6940)] = 275438, + [SMALL_STATE(6941)] = 275458, + [SMALL_STATE(6942)] = 275476, + [SMALL_STATE(6943)] = 275498, + [SMALL_STATE(6944)] = 275518, + [SMALL_STATE(6945)] = 275532, + [SMALL_STATE(6946)] = 275546, + [SMALL_STATE(6947)] = 275568, + [SMALL_STATE(6948)] = 275590, + [SMALL_STATE(6949)] = 275608, + [SMALL_STATE(6950)] = 275622, + [SMALL_STATE(6951)] = 275644, + [SMALL_STATE(6952)] = 275664, + [SMALL_STATE(6953)] = 275686, + [SMALL_STATE(6954)] = 275708, + [SMALL_STATE(6955)] = 275722, + [SMALL_STATE(6956)] = 275744, + [SMALL_STATE(6957)] = 275762, + [SMALL_STATE(6958)] = 275784, + [SMALL_STATE(6959)] = 275804, + [SMALL_STATE(6960)] = 275824, + [SMALL_STATE(6961)] = 275844, + [SMALL_STATE(6962)] = 275858, + [SMALL_STATE(6963)] = 275880, + [SMALL_STATE(6964)] = 275902, + [SMALL_STATE(6965)] = 275920, + [SMALL_STATE(6966)] = 275934, + [SMALL_STATE(6967)] = 275954, + [SMALL_STATE(6968)] = 275974, + [SMALL_STATE(6969)] = 275996, + [SMALL_STATE(6970)] = 276016, + [SMALL_STATE(6971)] = 276036, + [SMALL_STATE(6972)] = 276050, + [SMALL_STATE(6973)] = 276070, + [SMALL_STATE(6974)] = 276090, + [SMALL_STATE(6975)] = 276104, + [SMALL_STATE(6976)] = 276124, + [SMALL_STATE(6977)] = 276144, + [SMALL_STATE(6978)] = 276166, + [SMALL_STATE(6979)] = 276183, + [SMALL_STATE(6980)] = 276200, + [SMALL_STATE(6981)] = 276219, + [SMALL_STATE(6982)] = 276238, + [SMALL_STATE(6983)] = 276257, + [SMALL_STATE(6984)] = 276276, + [SMALL_STATE(6985)] = 276293, + [SMALL_STATE(6986)] = 276310, + [SMALL_STATE(6987)] = 276327, + [SMALL_STATE(6988)] = 276346, + [SMALL_STATE(6989)] = 276363, + [SMALL_STATE(6990)] = 276382, + [SMALL_STATE(6991)] = 276399, + [SMALL_STATE(6992)] = 276418, + [SMALL_STATE(6993)] = 276435, + [SMALL_STATE(6994)] = 276452, + [SMALL_STATE(6995)] = 276469, + [SMALL_STATE(6996)] = 276486, + [SMALL_STATE(6997)] = 276503, + [SMALL_STATE(6998)] = 276520, + [SMALL_STATE(6999)] = 276537, + [SMALL_STATE(7000)] = 276554, + [SMALL_STATE(7001)] = 276573, + [SMALL_STATE(7002)] = 276590, + [SMALL_STATE(7003)] = 276609, + [SMALL_STATE(7004)] = 276626, + [SMALL_STATE(7005)] = 276639, + [SMALL_STATE(7006)] = 276658, + [SMALL_STATE(7007)] = 276675, + [SMALL_STATE(7008)] = 276692, + [SMALL_STATE(7009)] = 276707, + [SMALL_STATE(7010)] = 276726, + [SMALL_STATE(7011)] = 276745, + [SMALL_STATE(7012)] = 276762, + [SMALL_STATE(7013)] = 276779, + [SMALL_STATE(7014)] = 276798, + [SMALL_STATE(7015)] = 276815, + [SMALL_STATE(7016)] = 276832, + [SMALL_STATE(7017)] = 276849, + [SMALL_STATE(7018)] = 276866, + [SMALL_STATE(7019)] = 276883, + [SMALL_STATE(7020)] = 276902, + [SMALL_STATE(7021)] = 276921, + [SMALL_STATE(7022)] = 276938, + [SMALL_STATE(7023)] = 276957, + [SMALL_STATE(7024)] = 276974, + [SMALL_STATE(7025)] = 276993, + [SMALL_STATE(7026)] = 277010, + [SMALL_STATE(7027)] = 277023, + [SMALL_STATE(7028)] = 277042, + [SMALL_STATE(7029)] = 277061, + [SMALL_STATE(7030)] = 277078, + [SMALL_STATE(7031)] = 277095, + [SMALL_STATE(7032)] = 277114, + [SMALL_STATE(7033)] = 277131, + [SMALL_STATE(7034)] = 277148, + [SMALL_STATE(7035)] = 277167, + [SMALL_STATE(7036)] = 277184, + [SMALL_STATE(7037)] = 277203, + [SMALL_STATE(7038)] = 277220, + [SMALL_STATE(7039)] = 277237, + [SMALL_STATE(7040)] = 277252, + [SMALL_STATE(7041)] = 277269, + [SMALL_STATE(7042)] = 277286, + [SMALL_STATE(7043)] = 277303, + [SMALL_STATE(7044)] = 277316, + [SMALL_STATE(7045)] = 277335, + [SMALL_STATE(7046)] = 277352, + [SMALL_STATE(7047)] = 277371, + [SMALL_STATE(7048)] = 277390, + [SMALL_STATE(7049)] = 277407, + [SMALL_STATE(7050)] = 277422, + [SMALL_STATE(7051)] = 277439, + [SMALL_STATE(7052)] = 277456, + [SMALL_STATE(7053)] = 277473, + [SMALL_STATE(7054)] = 277490, + [SMALL_STATE(7055)] = 277505, + [SMALL_STATE(7056)] = 277524, + [SMALL_STATE(7057)] = 277535, + [SMALL_STATE(7058)] = 277552, + [SMALL_STATE(7059)] = 277569, + [SMALL_STATE(7060)] = 277586, + [SMALL_STATE(7061)] = 277602, + [SMALL_STATE(7062)] = 277618, + [SMALL_STATE(7063)] = 277634, + [SMALL_STATE(7064)] = 277650, + [SMALL_STATE(7065)] = 277666, + [SMALL_STATE(7066)] = 277682, + [SMALL_STATE(7067)] = 277698, + [SMALL_STATE(7068)] = 277714, + [SMALL_STATE(7069)] = 277728, + [SMALL_STATE(7070)] = 277744, + [SMALL_STATE(7071)] = 277758, + [SMALL_STATE(7072)] = 277774, + [SMALL_STATE(7073)] = 277790, + [SMALL_STATE(7074)] = 277806, + [SMALL_STATE(7075)] = 277822, + [SMALL_STATE(7076)] = 277838, + [SMALL_STATE(7077)] = 277854, + [SMALL_STATE(7078)] = 277870, + [SMALL_STATE(7079)] = 277886, + [SMALL_STATE(7080)] = 277902, + [SMALL_STATE(7081)] = 277918, + [SMALL_STATE(7082)] = 277934, + [SMALL_STATE(7083)] = 277950, + [SMALL_STATE(7084)] = 277966, + [SMALL_STATE(7085)] = 277982, + [SMALL_STATE(7086)] = 277998, + [SMALL_STATE(7087)] = 278014, + [SMALL_STATE(7088)] = 278030, + [SMALL_STATE(7089)] = 278044, + [SMALL_STATE(7090)] = 278060, + [SMALL_STATE(7091)] = 278076, + [SMALL_STATE(7092)] = 278092, + [SMALL_STATE(7093)] = 278106, + [SMALL_STATE(7094)] = 278122, + [SMALL_STATE(7095)] = 278138, + [SMALL_STATE(7096)] = 278154, + [SMALL_STATE(7097)] = 278170, + [SMALL_STATE(7098)] = 278186, + [SMALL_STATE(7099)] = 278200, + [SMALL_STATE(7100)] = 278214, + [SMALL_STATE(7101)] = 278230, + [SMALL_STATE(7102)] = 278246, + [SMALL_STATE(7103)] = 278262, + [SMALL_STATE(7104)] = 278278, + [SMALL_STATE(7105)] = 278294, + [SMALL_STATE(7106)] = 278308, + [SMALL_STATE(7107)] = 278322, + [SMALL_STATE(7108)] = 278338, + [SMALL_STATE(7109)] = 278354, + [SMALL_STATE(7110)] = 278370, + [SMALL_STATE(7111)] = 278386, + [SMALL_STATE(7112)] = 278402, + [SMALL_STATE(7113)] = 278412, + [SMALL_STATE(7114)] = 278428, + [SMALL_STATE(7115)] = 278444, + [SMALL_STATE(7116)] = 278458, + [SMALL_STATE(7117)] = 278472, + [SMALL_STATE(7118)] = 278488, + [SMALL_STATE(7119)] = 278504, + [SMALL_STATE(7120)] = 278520, + [SMALL_STATE(7121)] = 278534, + [SMALL_STATE(7122)] = 278550, + [SMALL_STATE(7123)] = 278566, + [SMALL_STATE(7124)] = 278582, + [SMALL_STATE(7125)] = 278598, + [SMALL_STATE(7126)] = 278612, + [SMALL_STATE(7127)] = 278628, + [SMALL_STATE(7128)] = 278644, + [SMALL_STATE(7129)] = 278658, + [SMALL_STATE(7130)] = 278674, + [SMALL_STATE(7131)] = 278690, + [SMALL_STATE(7132)] = 278706, + [SMALL_STATE(7133)] = 278722, + [SMALL_STATE(7134)] = 278736, + [SMALL_STATE(7135)] = 278752, + [SMALL_STATE(7136)] = 278766, + [SMALL_STATE(7137)] = 278782, + [SMALL_STATE(7138)] = 278798, + [SMALL_STATE(7139)] = 278814, + [SMALL_STATE(7140)] = 278828, + [SMALL_STATE(7141)] = 278844, + [SMALL_STATE(7142)] = 278858, + [SMALL_STATE(7143)] = 278870, + [SMALL_STATE(7144)] = 278886, + [SMALL_STATE(7145)] = 278902, + [SMALL_STATE(7146)] = 278918, + [SMALL_STATE(7147)] = 278934, + [SMALL_STATE(7148)] = 278950, + [SMALL_STATE(7149)] = 278964, + [SMALL_STATE(7150)] = 278978, + [SMALL_STATE(7151)] = 278990, + [SMALL_STATE(7152)] = 279004, + [SMALL_STATE(7153)] = 279020, + [SMALL_STATE(7154)] = 279036, + [SMALL_STATE(7155)] = 279052, + [SMALL_STATE(7156)] = 279068, + [SMALL_STATE(7157)] = 279084, + [SMALL_STATE(7158)] = 279100, + [SMALL_STATE(7159)] = 279116, + [SMALL_STATE(7160)] = 279130, + [SMALL_STATE(7161)] = 279146, + [SMALL_STATE(7162)] = 279162, + [SMALL_STATE(7163)] = 279178, + [SMALL_STATE(7164)] = 279194, + [SMALL_STATE(7165)] = 279210, + [SMALL_STATE(7166)] = 279224, + [SMALL_STATE(7167)] = 279240, + [SMALL_STATE(7168)] = 279256, + [SMALL_STATE(7169)] = 279270, + [SMALL_STATE(7170)] = 279286, + [SMALL_STATE(7171)] = 279302, + [SMALL_STATE(7172)] = 279316, + [SMALL_STATE(7173)] = 279332, + [SMALL_STATE(7174)] = 279342, + [SMALL_STATE(7175)] = 279358, + [SMALL_STATE(7176)] = 279374, + [SMALL_STATE(7177)] = 279390, + [SMALL_STATE(7178)] = 279406, + [SMALL_STATE(7179)] = 279416, + [SMALL_STATE(7180)] = 279432, + [SMALL_STATE(7181)] = 279448, + [SMALL_STATE(7182)] = 279464, + [SMALL_STATE(7183)] = 279480, + [SMALL_STATE(7184)] = 279496, + [SMALL_STATE(7185)] = 279510, + [SMALL_STATE(7186)] = 279526, + [SMALL_STATE(7187)] = 279542, + [SMALL_STATE(7188)] = 279554, + [SMALL_STATE(7189)] = 279570, + [SMALL_STATE(7190)] = 279586, + [SMALL_STATE(7191)] = 279600, + [SMALL_STATE(7192)] = 279616, + [SMALL_STATE(7193)] = 279630, + [SMALL_STATE(7194)] = 279646, + [SMALL_STATE(7195)] = 279662, + [SMALL_STATE(7196)] = 279678, + [SMALL_STATE(7197)] = 279694, + [SMALL_STATE(7198)] = 279710, + [SMALL_STATE(7199)] = 279726, + [SMALL_STATE(7200)] = 279740, + [SMALL_STATE(7201)] = 279756, + [SMALL_STATE(7202)] = 279772, + [SMALL_STATE(7203)] = 279786, + [SMALL_STATE(7204)] = 279802, + [SMALL_STATE(7205)] = 279816, + [SMALL_STATE(7206)] = 279832, + [SMALL_STATE(7207)] = 279848, + [SMALL_STATE(7208)] = 279864, + [SMALL_STATE(7209)] = 279880, + [SMALL_STATE(7210)] = 279892, + [SMALL_STATE(7211)] = 279906, + [SMALL_STATE(7212)] = 279920, + [SMALL_STATE(7213)] = 279934, + [SMALL_STATE(7214)] = 279950, + [SMALL_STATE(7215)] = 279964, + [SMALL_STATE(7216)] = 279978, + [SMALL_STATE(7217)] = 279994, + [SMALL_STATE(7218)] = 280010, + [SMALL_STATE(7219)] = 280026, + [SMALL_STATE(7220)] = 280042, + [SMALL_STATE(7221)] = 280058, + [SMALL_STATE(7222)] = 280074, + [SMALL_STATE(7223)] = 280090, + [SMALL_STATE(7224)] = 280106, + [SMALL_STATE(7225)] = 280120, + [SMALL_STATE(7226)] = 280136, + [SMALL_STATE(7227)] = 280150, + [SMALL_STATE(7228)] = 280166, + [SMALL_STATE(7229)] = 280182, + [SMALL_STATE(7230)] = 280196, + [SMALL_STATE(7231)] = 280210, + [SMALL_STATE(7232)] = 280224, + [SMALL_STATE(7233)] = 280238, + [SMALL_STATE(7234)] = 280252, + [SMALL_STATE(7235)] = 280266, + [SMALL_STATE(7236)] = 280280, + [SMALL_STATE(7237)] = 280294, + [SMALL_STATE(7238)] = 280310, + [SMALL_STATE(7239)] = 280324, + [SMALL_STATE(7240)] = 280338, + [SMALL_STATE(7241)] = 280352, + [SMALL_STATE(7242)] = 280366, + [SMALL_STATE(7243)] = 280380, + [SMALL_STATE(7244)] = 280394, + [SMALL_STATE(7245)] = 280410, + [SMALL_STATE(7246)] = 280424, + [SMALL_STATE(7247)] = 280440, + [SMALL_STATE(7248)] = 280456, + [SMALL_STATE(7249)] = 280472, + [SMALL_STATE(7250)] = 280488, + [SMALL_STATE(7251)] = 280504, + [SMALL_STATE(7252)] = 280520, + [SMALL_STATE(7253)] = 280536, + [SMALL_STATE(7254)] = 280552, + [SMALL_STATE(7255)] = 280568, + [SMALL_STATE(7256)] = 280584, + [SMALL_STATE(7257)] = 280600, + [SMALL_STATE(7258)] = 280614, + [SMALL_STATE(7259)] = 280630, + [SMALL_STATE(7260)] = 280646, + [SMALL_STATE(7261)] = 280660, + [SMALL_STATE(7262)] = 280676, + [SMALL_STATE(7263)] = 280692, + [SMALL_STATE(7264)] = 280706, + [SMALL_STATE(7265)] = 280722, + [SMALL_STATE(7266)] = 280738, + [SMALL_STATE(7267)] = 280751, + [SMALL_STATE(7268)] = 280764, + [SMALL_STATE(7269)] = 280777, + [SMALL_STATE(7270)] = 280790, + [SMALL_STATE(7271)] = 280803, + [SMALL_STATE(7272)] = 280816, + [SMALL_STATE(7273)] = 280829, + [SMALL_STATE(7274)] = 280842, + [SMALL_STATE(7275)] = 280855, + [SMALL_STATE(7276)] = 280868, + [SMALL_STATE(7277)] = 280881, + [SMALL_STATE(7278)] = 280894, + [SMALL_STATE(7279)] = 280907, + [SMALL_STATE(7280)] = 280920, + [SMALL_STATE(7281)] = 280933, + [SMALL_STATE(7282)] = 280946, + [SMALL_STATE(7283)] = 280959, + [SMALL_STATE(7284)] = 280970, + [SMALL_STATE(7285)] = 280983, + [SMALL_STATE(7286)] = 280996, + [SMALL_STATE(7287)] = 281009, + [SMALL_STATE(7288)] = 281022, + [SMALL_STATE(7289)] = 281035, + [SMALL_STATE(7290)] = 281048, + [SMALL_STATE(7291)] = 281061, + [SMALL_STATE(7292)] = 281074, + [SMALL_STATE(7293)] = 281087, + [SMALL_STATE(7294)] = 281100, + [SMALL_STATE(7295)] = 281113, + [SMALL_STATE(7296)] = 281126, + [SMALL_STATE(7297)] = 281139, + [SMALL_STATE(7298)] = 281152, + [SMALL_STATE(7299)] = 281165, + [SMALL_STATE(7300)] = 281178, + [SMALL_STATE(7301)] = 281191, + [SMALL_STATE(7302)] = 281204, + [SMALL_STATE(7303)] = 281217, + [SMALL_STATE(7304)] = 281230, + [SMALL_STATE(7305)] = 281243, + [SMALL_STATE(7306)] = 281256, + [SMALL_STATE(7307)] = 281269, + [SMALL_STATE(7308)] = 281282, + [SMALL_STATE(7309)] = 281295, + [SMALL_STATE(7310)] = 281308, + [SMALL_STATE(7311)] = 281321, + [SMALL_STATE(7312)] = 281334, + [SMALL_STATE(7313)] = 281347, + [SMALL_STATE(7314)] = 281358, + [SMALL_STATE(7315)] = 281371, + [SMALL_STATE(7316)] = 281384, + [SMALL_STATE(7317)] = 281397, + [SMALL_STATE(7318)] = 281410, + [SMALL_STATE(7319)] = 281423, + [SMALL_STATE(7320)] = 281436, + [SMALL_STATE(7321)] = 281449, + [SMALL_STATE(7322)] = 281462, + [SMALL_STATE(7323)] = 281475, + [SMALL_STATE(7324)] = 281488, + [SMALL_STATE(7325)] = 281501, + [SMALL_STATE(7326)] = 281512, + [SMALL_STATE(7327)] = 281525, + [SMALL_STATE(7328)] = 281538, + [SMALL_STATE(7329)] = 281551, + [SMALL_STATE(7330)] = 281564, + [SMALL_STATE(7331)] = 281577, + [SMALL_STATE(7332)] = 281590, + [SMALL_STATE(7333)] = 281603, + [SMALL_STATE(7334)] = 281616, + [SMALL_STATE(7335)] = 281629, + [SMALL_STATE(7336)] = 281642, + [SMALL_STATE(7337)] = 281653, + [SMALL_STATE(7338)] = 281666, + [SMALL_STATE(7339)] = 281679, + [SMALL_STATE(7340)] = 281692, + [SMALL_STATE(7341)] = 281705, + [SMALL_STATE(7342)] = 281718, + [SMALL_STATE(7343)] = 281731, + [SMALL_STATE(7344)] = 281744, + [SMALL_STATE(7345)] = 281757, + [SMALL_STATE(7346)] = 281770, + [SMALL_STATE(7347)] = 281783, + [SMALL_STATE(7348)] = 281796, + [SMALL_STATE(7349)] = 281809, + [SMALL_STATE(7350)] = 281820, + [SMALL_STATE(7351)] = 281833, + [SMALL_STATE(7352)] = 281846, + [SMALL_STATE(7353)] = 281857, + [SMALL_STATE(7354)] = 281868, + [SMALL_STATE(7355)] = 281881, + [SMALL_STATE(7356)] = 281894, + [SMALL_STATE(7357)] = 281907, + [SMALL_STATE(7358)] = 281920, + [SMALL_STATE(7359)] = 281933, + [SMALL_STATE(7360)] = 281946, + [SMALL_STATE(7361)] = 281957, + [SMALL_STATE(7362)] = 281970, + [SMALL_STATE(7363)] = 281983, + [SMALL_STATE(7364)] = 281996, + [SMALL_STATE(7365)] = 282009, + [SMALL_STATE(7366)] = 282022, + [SMALL_STATE(7367)] = 282035, + [SMALL_STATE(7368)] = 282048, + [SMALL_STATE(7369)] = 282061, + [SMALL_STATE(7370)] = 282074, + [SMALL_STATE(7371)] = 282087, + [SMALL_STATE(7372)] = 282100, + [SMALL_STATE(7373)] = 282113, + [SMALL_STATE(7374)] = 282126, + [SMALL_STATE(7375)] = 282139, + [SMALL_STATE(7376)] = 282152, + [SMALL_STATE(7377)] = 282163, + [SMALL_STATE(7378)] = 282176, + [SMALL_STATE(7379)] = 282189, + [SMALL_STATE(7380)] = 282198, + [SMALL_STATE(7381)] = 282211, + [SMALL_STATE(7382)] = 282224, + [SMALL_STATE(7383)] = 282237, + [SMALL_STATE(7384)] = 282246, + [SMALL_STATE(7385)] = 282259, + [SMALL_STATE(7386)] = 282272, + [SMALL_STATE(7387)] = 282285, + [SMALL_STATE(7388)] = 282298, + [SMALL_STATE(7389)] = 282311, + [SMALL_STATE(7390)] = 282324, + [SMALL_STATE(7391)] = 282337, + [SMALL_STATE(7392)] = 282350, + [SMALL_STATE(7393)] = 282363, + [SMALL_STATE(7394)] = 282372, + [SMALL_STATE(7395)] = 282385, + [SMALL_STATE(7396)] = 282398, + [SMALL_STATE(7397)] = 282411, + [SMALL_STATE(7398)] = 282424, + [SMALL_STATE(7399)] = 282433, + [SMALL_STATE(7400)] = 282446, + [SMALL_STATE(7401)] = 282459, + [SMALL_STATE(7402)] = 282472, + [SMALL_STATE(7403)] = 282485, + [SMALL_STATE(7404)] = 282498, + [SMALL_STATE(7405)] = 282511, + [SMALL_STATE(7406)] = 282524, + [SMALL_STATE(7407)] = 282533, + [SMALL_STATE(7408)] = 282546, + [SMALL_STATE(7409)] = 282559, + [SMALL_STATE(7410)] = 282572, + [SMALL_STATE(7411)] = 282585, + [SMALL_STATE(7412)] = 282594, + [SMALL_STATE(7413)] = 282603, + [SMALL_STATE(7414)] = 282616, + [SMALL_STATE(7415)] = 282629, + [SMALL_STATE(7416)] = 282642, + [SMALL_STATE(7417)] = 282655, + [SMALL_STATE(7418)] = 282668, + [SMALL_STATE(7419)] = 282677, + [SMALL_STATE(7420)] = 282690, + [SMALL_STATE(7421)] = 282703, + [SMALL_STATE(7422)] = 282716, + [SMALL_STATE(7423)] = 282727, + [SMALL_STATE(7424)] = 282740, + [SMALL_STATE(7425)] = 282753, + [SMALL_STATE(7426)] = 282764, + [SMALL_STATE(7427)] = 282777, + [SMALL_STATE(7428)] = 282786, + [SMALL_STATE(7429)] = 282799, + [SMALL_STATE(7430)] = 282810, + [SMALL_STATE(7431)] = 282821, + [SMALL_STATE(7432)] = 282834, + [SMALL_STATE(7433)] = 282847, + [SMALL_STATE(7434)] = 282860, + [SMALL_STATE(7435)] = 282873, + [SMALL_STATE(7436)] = 282886, + [SMALL_STATE(7437)] = 282899, + [SMALL_STATE(7438)] = 282912, + [SMALL_STATE(7439)] = 282925, + [SMALL_STATE(7440)] = 282938, + [SMALL_STATE(7441)] = 282951, + [SMALL_STATE(7442)] = 282964, + [SMALL_STATE(7443)] = 282977, + [SMALL_STATE(7444)] = 282988, + [SMALL_STATE(7445)] = 282999, + [SMALL_STATE(7446)] = 283012, + [SMALL_STATE(7447)] = 283025, + [SMALL_STATE(7448)] = 283038, + [SMALL_STATE(7449)] = 283051, + [SMALL_STATE(7450)] = 283064, + [SMALL_STATE(7451)] = 283075, + [SMALL_STATE(7452)] = 283088, + [SMALL_STATE(7453)] = 283099, + [SMALL_STATE(7454)] = 283112, + [SMALL_STATE(7455)] = 283125, + [SMALL_STATE(7456)] = 283138, + [SMALL_STATE(7457)] = 283151, + [SMALL_STATE(7458)] = 283164, + [SMALL_STATE(7459)] = 283177, + [SMALL_STATE(7460)] = 283190, + [SMALL_STATE(7461)] = 283203, + [SMALL_STATE(7462)] = 283216, + [SMALL_STATE(7463)] = 283229, + [SMALL_STATE(7464)] = 283242, + [SMALL_STATE(7465)] = 283255, + [SMALL_STATE(7466)] = 283268, + [SMALL_STATE(7467)] = 283281, + [SMALL_STATE(7468)] = 283294, + [SMALL_STATE(7469)] = 283307, + [SMALL_STATE(7470)] = 283320, + [SMALL_STATE(7471)] = 283333, + [SMALL_STATE(7472)] = 283346, + [SMALL_STATE(7473)] = 283359, + [SMALL_STATE(7474)] = 283370, + [SMALL_STATE(7475)] = 283381, + [SMALL_STATE(7476)] = 283394, + [SMALL_STATE(7477)] = 283407, + [SMALL_STATE(7478)] = 283420, + [SMALL_STATE(7479)] = 283433, + [SMALL_STATE(7480)] = 283442, + [SMALL_STATE(7481)] = 283455, + [SMALL_STATE(7482)] = 283468, + [SMALL_STATE(7483)] = 283479, + [SMALL_STATE(7484)] = 283492, + [SMALL_STATE(7485)] = 283505, + [SMALL_STATE(7486)] = 283518, + [SMALL_STATE(7487)] = 283531, + [SMALL_STATE(7488)] = 283544, + [SMALL_STATE(7489)] = 283557, + [SMALL_STATE(7490)] = 283570, + [SMALL_STATE(7491)] = 283583, + [SMALL_STATE(7492)] = 283594, + [SMALL_STATE(7493)] = 283607, + [SMALL_STATE(7494)] = 283620, + [SMALL_STATE(7495)] = 283633, + [SMALL_STATE(7496)] = 283646, + [SMALL_STATE(7497)] = 283659, + [SMALL_STATE(7498)] = 283670, + [SMALL_STATE(7499)] = 283683, + [SMALL_STATE(7500)] = 283696, + [SMALL_STATE(7501)] = 283709, + [SMALL_STATE(7502)] = 283720, + [SMALL_STATE(7503)] = 283733, + [SMALL_STATE(7504)] = 283746, + [SMALL_STATE(7505)] = 283759, + [SMALL_STATE(7506)] = 283772, + [SMALL_STATE(7507)] = 283785, + [SMALL_STATE(7508)] = 283798, + [SMALL_STATE(7509)] = 283811, + [SMALL_STATE(7510)] = 283824, + [SMALL_STATE(7511)] = 283837, + [SMALL_STATE(7512)] = 283850, + [SMALL_STATE(7513)] = 283863, + [SMALL_STATE(7514)] = 283874, + [SMALL_STATE(7515)] = 283887, + [SMALL_STATE(7516)] = 283898, + [SMALL_STATE(7517)] = 283911, + [SMALL_STATE(7518)] = 283924, + [SMALL_STATE(7519)] = 283937, + [SMALL_STATE(7520)] = 283950, + [SMALL_STATE(7521)] = 283961, + [SMALL_STATE(7522)] = 283974, + [SMALL_STATE(7523)] = 283985, + [SMALL_STATE(7524)] = 283998, + [SMALL_STATE(7525)] = 284011, + [SMALL_STATE(7526)] = 284024, + [SMALL_STATE(7527)] = 284037, + [SMALL_STATE(7528)] = 284048, + [SMALL_STATE(7529)] = 284061, + [SMALL_STATE(7530)] = 284072, + [SMALL_STATE(7531)] = 284085, + [SMALL_STATE(7532)] = 284098, + [SMALL_STATE(7533)] = 284111, + [SMALL_STATE(7534)] = 284124, + [SMALL_STATE(7535)] = 284137, + [SMALL_STATE(7536)] = 284150, + [SMALL_STATE(7537)] = 284163, + [SMALL_STATE(7538)] = 284176, + [SMALL_STATE(7539)] = 284189, + [SMALL_STATE(7540)] = 284202, + [SMALL_STATE(7541)] = 284215, + [SMALL_STATE(7542)] = 284228, + [SMALL_STATE(7543)] = 284239, + [SMALL_STATE(7544)] = 284252, + [SMALL_STATE(7545)] = 284265, + [SMALL_STATE(7546)] = 284278, + [SMALL_STATE(7547)] = 284291, + [SMALL_STATE(7548)] = 284304, + [SMALL_STATE(7549)] = 284317, + [SMALL_STATE(7550)] = 284330, + [SMALL_STATE(7551)] = 284341, + [SMALL_STATE(7552)] = 284354, + [SMALL_STATE(7553)] = 284367, + [SMALL_STATE(7554)] = 284380, + [SMALL_STATE(7555)] = 284393, + [SMALL_STATE(7556)] = 284406, + [SMALL_STATE(7557)] = 284417, + [SMALL_STATE(7558)] = 284430, + [SMALL_STATE(7559)] = 284441, + [SMALL_STATE(7560)] = 284452, + [SMALL_STATE(7561)] = 284463, + [SMALL_STATE(7562)] = 284476, + [SMALL_STATE(7563)] = 284489, + [SMALL_STATE(7564)] = 284502, + [SMALL_STATE(7565)] = 284515, + [SMALL_STATE(7566)] = 284528, + [SMALL_STATE(7567)] = 284541, + [SMALL_STATE(7568)] = 284554, + [SMALL_STATE(7569)] = 284565, + [SMALL_STATE(7570)] = 284578, + [SMALL_STATE(7571)] = 284591, + [SMALL_STATE(7572)] = 284604, + [SMALL_STATE(7573)] = 284613, + [SMALL_STATE(7574)] = 284624, + [SMALL_STATE(7575)] = 284637, + [SMALL_STATE(7576)] = 284650, + [SMALL_STATE(7577)] = 284663, + [SMALL_STATE(7578)] = 284674, + [SMALL_STATE(7579)] = 284687, + [SMALL_STATE(7580)] = 284698, + [SMALL_STATE(7581)] = 284711, + [SMALL_STATE(7582)] = 284722, + [SMALL_STATE(7583)] = 284735, + [SMALL_STATE(7584)] = 284748, + [SMALL_STATE(7585)] = 284761, + [SMALL_STATE(7586)] = 284774, + [SMALL_STATE(7587)] = 284787, + [SMALL_STATE(7588)] = 284800, + [SMALL_STATE(7589)] = 284813, + [SMALL_STATE(7590)] = 284826, + [SMALL_STATE(7591)] = 284839, + [SMALL_STATE(7592)] = 284852, + [SMALL_STATE(7593)] = 284865, + [SMALL_STATE(7594)] = 284876, + [SMALL_STATE(7595)] = 284889, + [SMALL_STATE(7596)] = 284902, + [SMALL_STATE(7597)] = 284915, + [SMALL_STATE(7598)] = 284928, + [SMALL_STATE(7599)] = 284941, + [SMALL_STATE(7600)] = 284954, + [SMALL_STATE(7601)] = 284967, + [SMALL_STATE(7602)] = 284980, + [SMALL_STATE(7603)] = 284993, + [SMALL_STATE(7604)] = 285006, + [SMALL_STATE(7605)] = 285019, + [SMALL_STATE(7606)] = 285032, + [SMALL_STATE(7607)] = 285045, + [SMALL_STATE(7608)] = 285058, + [SMALL_STATE(7609)] = 285071, + [SMALL_STATE(7610)] = 285084, + [SMALL_STATE(7611)] = 285097, + [SMALL_STATE(7612)] = 285110, + [SMALL_STATE(7613)] = 285123, + [SMALL_STATE(7614)] = 285134, + [SMALL_STATE(7615)] = 285147, + [SMALL_STATE(7616)] = 285160, + [SMALL_STATE(7617)] = 285173, + [SMALL_STATE(7618)] = 285184, + [SMALL_STATE(7619)] = 285195, + [SMALL_STATE(7620)] = 285208, + [SMALL_STATE(7621)] = 285219, + [SMALL_STATE(7622)] = 285230, + [SMALL_STATE(7623)] = 285241, + [SMALL_STATE(7624)] = 285254, + [SMALL_STATE(7625)] = 285267, + [SMALL_STATE(7626)] = 285280, + [SMALL_STATE(7627)] = 285293, + [SMALL_STATE(7628)] = 285306, + [SMALL_STATE(7629)] = 285315, + [SMALL_STATE(7630)] = 285326, + [SMALL_STATE(7631)] = 285339, + [SMALL_STATE(7632)] = 285350, + [SMALL_STATE(7633)] = 285363, + [SMALL_STATE(7634)] = 285376, + [SMALL_STATE(7635)] = 285389, + [SMALL_STATE(7636)] = 285402, + [SMALL_STATE(7637)] = 285415, + [SMALL_STATE(7638)] = 285426, + [SMALL_STATE(7639)] = 285439, + [SMALL_STATE(7640)] = 285452, + [SMALL_STATE(7641)] = 285465, + [SMALL_STATE(7642)] = 285478, + [SMALL_STATE(7643)] = 285491, + [SMALL_STATE(7644)] = 285504, + [SMALL_STATE(7645)] = 285517, + [SMALL_STATE(7646)] = 285530, + [SMALL_STATE(7647)] = 285541, + [SMALL_STATE(7648)] = 285552, + [SMALL_STATE(7649)] = 285565, + [SMALL_STATE(7650)] = 285578, + [SMALL_STATE(7651)] = 285591, + [SMALL_STATE(7652)] = 285602, + [SMALL_STATE(7653)] = 285615, + [SMALL_STATE(7654)] = 285626, + [SMALL_STATE(7655)] = 285639, + [SMALL_STATE(7656)] = 285652, + [SMALL_STATE(7657)] = 285661, + [SMALL_STATE(7658)] = 285674, + [SMALL_STATE(7659)] = 285687, + [SMALL_STATE(7660)] = 285700, + [SMALL_STATE(7661)] = 285713, + [SMALL_STATE(7662)] = 285726, + [SMALL_STATE(7663)] = 285737, + [SMALL_STATE(7664)] = 285750, + [SMALL_STATE(7665)] = 285763, + [SMALL_STATE(7666)] = 285776, + [SMALL_STATE(7667)] = 285789, + [SMALL_STATE(7668)] = 285802, + [SMALL_STATE(7669)] = 285815, + [SMALL_STATE(7670)] = 285828, + [SMALL_STATE(7671)] = 285841, + [SMALL_STATE(7672)] = 285854, + [SMALL_STATE(7673)] = 285867, + [SMALL_STATE(7674)] = 285880, + [SMALL_STATE(7675)] = 285893, + [SMALL_STATE(7676)] = 285906, + [SMALL_STATE(7677)] = 285919, + [SMALL_STATE(7678)] = 285932, + [SMALL_STATE(7679)] = 285943, + [SMALL_STATE(7680)] = 285956, + [SMALL_STATE(7681)] = 285969, + [SMALL_STATE(7682)] = 285982, + [SMALL_STATE(7683)] = 285995, + [SMALL_STATE(7684)] = 286008, + [SMALL_STATE(7685)] = 286021, + [SMALL_STATE(7686)] = 286034, + [SMALL_STATE(7687)] = 286047, + [SMALL_STATE(7688)] = 286060, + [SMALL_STATE(7689)] = 286073, + [SMALL_STATE(7690)] = 286086, + [SMALL_STATE(7691)] = 286099, + [SMALL_STATE(7692)] = 286112, + [SMALL_STATE(7693)] = 286121, + [SMALL_STATE(7694)] = 286134, + [SMALL_STATE(7695)] = 286147, + [SMALL_STATE(7696)] = 286160, + [SMALL_STATE(7697)] = 286173, + [SMALL_STATE(7698)] = 286186, + [SMALL_STATE(7699)] = 286199, + [SMALL_STATE(7700)] = 286212, + [SMALL_STATE(7701)] = 286225, + [SMALL_STATE(7702)] = 286238, + [SMALL_STATE(7703)] = 286247, + [SMALL_STATE(7704)] = 286256, + [SMALL_STATE(7705)] = 286267, + [SMALL_STATE(7706)] = 286280, + [SMALL_STATE(7707)] = 286293, + [SMALL_STATE(7708)] = 286304, + [SMALL_STATE(7709)] = 286313, + [SMALL_STATE(7710)] = 286326, + [SMALL_STATE(7711)] = 286339, + [SMALL_STATE(7712)] = 286352, + [SMALL_STATE(7713)] = 286365, + [SMALL_STATE(7714)] = 286378, + [SMALL_STATE(7715)] = 286391, + [SMALL_STATE(7716)] = 286401, + [SMALL_STATE(7717)] = 286409, + [SMALL_STATE(7718)] = 286419, + [SMALL_STATE(7719)] = 286429, + [SMALL_STATE(7720)] = 286439, + [SMALL_STATE(7721)] = 286449, + [SMALL_STATE(7722)] = 286457, + [SMALL_STATE(7723)] = 286467, + [SMALL_STATE(7724)] = 286477, + [SMALL_STATE(7725)] = 286487, + [SMALL_STATE(7726)] = 286497, + [SMALL_STATE(7727)] = 286507, + [SMALL_STATE(7728)] = 286517, + [SMALL_STATE(7729)] = 286527, + [SMALL_STATE(7730)] = 286537, + [SMALL_STATE(7731)] = 286547, + [SMALL_STATE(7732)] = 286557, + [SMALL_STATE(7733)] = 286567, + [SMALL_STATE(7734)] = 286575, + [SMALL_STATE(7735)] = 286585, + [SMALL_STATE(7736)] = 286595, + [SMALL_STATE(7737)] = 286605, + [SMALL_STATE(7738)] = 286615, + [SMALL_STATE(7739)] = 286625, + [SMALL_STATE(7740)] = 286635, + [SMALL_STATE(7741)] = 286645, + [SMALL_STATE(7742)] = 286653, + [SMALL_STATE(7743)] = 286663, + [SMALL_STATE(7744)] = 286673, + [SMALL_STATE(7745)] = 286683, + [SMALL_STATE(7746)] = 286693, + [SMALL_STATE(7747)] = 286703, + [SMALL_STATE(7748)] = 286711, + [SMALL_STATE(7749)] = 286721, + [SMALL_STATE(7750)] = 286731, + [SMALL_STATE(7751)] = 286741, + [SMALL_STATE(7752)] = 286749, + [SMALL_STATE(7753)] = 286759, + [SMALL_STATE(7754)] = 286769, + [SMALL_STATE(7755)] = 286777, + [SMALL_STATE(7756)] = 286787, + [SMALL_STATE(7757)] = 286797, + [SMALL_STATE(7758)] = 286807, + [SMALL_STATE(7759)] = 286817, + [SMALL_STATE(7760)] = 286827, + [SMALL_STATE(7761)] = 286837, + [SMALL_STATE(7762)] = 286847, + [SMALL_STATE(7763)] = 286857, + [SMALL_STATE(7764)] = 286867, + [SMALL_STATE(7765)] = 286877, + [SMALL_STATE(7766)] = 286887, + [SMALL_STATE(7767)] = 286897, + [SMALL_STATE(7768)] = 286907, + [SMALL_STATE(7769)] = 286917, + [SMALL_STATE(7770)] = 286927, + [SMALL_STATE(7771)] = 286937, + [SMALL_STATE(7772)] = 286947, + [SMALL_STATE(7773)] = 286955, + [SMALL_STATE(7774)] = 286965, + [SMALL_STATE(7775)] = 286975, + [SMALL_STATE(7776)] = 286985, + [SMALL_STATE(7777)] = 286995, + [SMALL_STATE(7778)] = 287003, + [SMALL_STATE(7779)] = 287013, + [SMALL_STATE(7780)] = 287023, + [SMALL_STATE(7781)] = 287033, + [SMALL_STATE(7782)] = 287043, + [SMALL_STATE(7783)] = 287053, + [SMALL_STATE(7784)] = 287063, + [SMALL_STATE(7785)] = 287073, + [SMALL_STATE(7786)] = 287083, + [SMALL_STATE(7787)] = 287093, + [SMALL_STATE(7788)] = 287103, + [SMALL_STATE(7789)] = 287113, + [SMALL_STATE(7790)] = 287123, + [SMALL_STATE(7791)] = 287133, + [SMALL_STATE(7792)] = 287141, + [SMALL_STATE(7793)] = 287151, + [SMALL_STATE(7794)] = 287159, + [SMALL_STATE(7795)] = 287169, + [SMALL_STATE(7796)] = 287179, + [SMALL_STATE(7797)] = 287189, + [SMALL_STATE(7798)] = 287199, + [SMALL_STATE(7799)] = 287209, + [SMALL_STATE(7800)] = 287219, + [SMALL_STATE(7801)] = 287227, + [SMALL_STATE(7802)] = 287237, + [SMALL_STATE(7803)] = 287247, + [SMALL_STATE(7804)] = 287257, + [SMALL_STATE(7805)] = 287267, + [SMALL_STATE(7806)] = 287277, + [SMALL_STATE(7807)] = 287285, + [SMALL_STATE(7808)] = 287293, + [SMALL_STATE(7809)] = 287303, + [SMALL_STATE(7810)] = 287313, + [SMALL_STATE(7811)] = 287323, + [SMALL_STATE(7812)] = 287333, + [SMALL_STATE(7813)] = 287343, + [SMALL_STATE(7814)] = 287353, + [SMALL_STATE(7815)] = 287363, + [SMALL_STATE(7816)] = 287373, + [SMALL_STATE(7817)] = 287383, + [SMALL_STATE(7818)] = 287393, + [SMALL_STATE(7819)] = 287403, + [SMALL_STATE(7820)] = 287411, + [SMALL_STATE(7821)] = 287421, + [SMALL_STATE(7822)] = 287431, + [SMALL_STATE(7823)] = 287441, + [SMALL_STATE(7824)] = 287451, + [SMALL_STATE(7825)] = 287461, + [SMALL_STATE(7826)] = 287469, + [SMALL_STATE(7827)] = 287479, + [SMALL_STATE(7828)] = 287489, + [SMALL_STATE(7829)] = 287499, + [SMALL_STATE(7830)] = 287509, + [SMALL_STATE(7831)] = 287519, + [SMALL_STATE(7832)] = 287527, + [SMALL_STATE(7833)] = 287535, + [SMALL_STATE(7834)] = 287545, + [SMALL_STATE(7835)] = 287555, + [SMALL_STATE(7836)] = 287565, + [SMALL_STATE(7837)] = 287575, + [SMALL_STATE(7838)] = 287585, + [SMALL_STATE(7839)] = 287595, + [SMALL_STATE(7840)] = 287605, + [SMALL_STATE(7841)] = 287615, + [SMALL_STATE(7842)] = 287625, + [SMALL_STATE(7843)] = 287635, + [SMALL_STATE(7844)] = 287645, + [SMALL_STATE(7845)] = 287655, + [SMALL_STATE(7846)] = 287665, + [SMALL_STATE(7847)] = 287675, + [SMALL_STATE(7848)] = 287685, + [SMALL_STATE(7849)] = 287695, + [SMALL_STATE(7850)] = 287705, + [SMALL_STATE(7851)] = 287713, + [SMALL_STATE(7852)] = 287723, + [SMALL_STATE(7853)] = 287733, + [SMALL_STATE(7854)] = 287741, + [SMALL_STATE(7855)] = 287751, + [SMALL_STATE(7856)] = 287761, + [SMALL_STATE(7857)] = 287771, + [SMALL_STATE(7858)] = 287781, + [SMALL_STATE(7859)] = 287791, + [SMALL_STATE(7860)] = 287801, + [SMALL_STATE(7861)] = 287811, + [SMALL_STATE(7862)] = 287821, + [SMALL_STATE(7863)] = 287831, + [SMALL_STATE(7864)] = 287839, + [SMALL_STATE(7865)] = 287849, + [SMALL_STATE(7866)] = 287859, + [SMALL_STATE(7867)] = 287869, + [SMALL_STATE(7868)] = 287879, + [SMALL_STATE(7869)] = 287889, + [SMALL_STATE(7870)] = 287899, + [SMALL_STATE(7871)] = 287909, + [SMALL_STATE(7872)] = 287919, + [SMALL_STATE(7873)] = 287929, + [SMALL_STATE(7874)] = 287939, + [SMALL_STATE(7875)] = 287949, + [SMALL_STATE(7876)] = 287959, + [SMALL_STATE(7877)] = 287969, + [SMALL_STATE(7878)] = 287979, + [SMALL_STATE(7879)] = 287989, + [SMALL_STATE(7880)] = 287999, + [SMALL_STATE(7881)] = 288009, + [SMALL_STATE(7882)] = 288019, + [SMALL_STATE(7883)] = 288029, + [SMALL_STATE(7884)] = 288039, + [SMALL_STATE(7885)] = 288047, + [SMALL_STATE(7886)] = 288057, + [SMALL_STATE(7887)] = 288067, + [SMALL_STATE(7888)] = 288077, + [SMALL_STATE(7889)] = 288087, + [SMALL_STATE(7890)] = 288097, + [SMALL_STATE(7891)] = 288107, + [SMALL_STATE(7892)] = 288117, + [SMALL_STATE(7893)] = 288127, + [SMALL_STATE(7894)] = 288137, + [SMALL_STATE(7895)] = 288147, + [SMALL_STATE(7896)] = 288157, + [SMALL_STATE(7897)] = 288165, + [SMALL_STATE(7898)] = 288175, + [SMALL_STATE(7899)] = 288185, + [SMALL_STATE(7900)] = 288195, + [SMALL_STATE(7901)] = 288205, + [SMALL_STATE(7902)] = 288215, + [SMALL_STATE(7903)] = 288225, + [SMALL_STATE(7904)] = 288235, + [SMALL_STATE(7905)] = 288245, + [SMALL_STATE(7906)] = 288255, + [SMALL_STATE(7907)] = 288265, + [SMALL_STATE(7908)] = 288275, + [SMALL_STATE(7909)] = 288283, + [SMALL_STATE(7910)] = 288293, + [SMALL_STATE(7911)] = 288303, + [SMALL_STATE(7912)] = 288313, + [SMALL_STATE(7913)] = 288323, + [SMALL_STATE(7914)] = 288331, + [SMALL_STATE(7915)] = 288341, + [SMALL_STATE(7916)] = 288351, + [SMALL_STATE(7917)] = 288361, + [SMALL_STATE(7918)] = 288371, + [SMALL_STATE(7919)] = 288381, + [SMALL_STATE(7920)] = 288391, + [SMALL_STATE(7921)] = 288401, + [SMALL_STATE(7922)] = 288411, + [SMALL_STATE(7923)] = 288421, + [SMALL_STATE(7924)] = 288431, + [SMALL_STATE(7925)] = 288441, + [SMALL_STATE(7926)] = 288451, + [SMALL_STATE(7927)] = 288461, + [SMALL_STATE(7928)] = 288469, + [SMALL_STATE(7929)] = 288479, + [SMALL_STATE(7930)] = 288489, + [SMALL_STATE(7931)] = 288499, + [SMALL_STATE(7932)] = 288509, + [SMALL_STATE(7933)] = 288519, + [SMALL_STATE(7934)] = 288529, + [SMALL_STATE(7935)] = 288539, + [SMALL_STATE(7936)] = 288549, + [SMALL_STATE(7937)] = 288559, + [SMALL_STATE(7938)] = 288569, + [SMALL_STATE(7939)] = 288579, + [SMALL_STATE(7940)] = 288589, + [SMALL_STATE(7941)] = 288597, + [SMALL_STATE(7942)] = 288607, + [SMALL_STATE(7943)] = 288617, + [SMALL_STATE(7944)] = 288627, + [SMALL_STATE(7945)] = 288635, + [SMALL_STATE(7946)] = 288645, + [SMALL_STATE(7947)] = 288655, + [SMALL_STATE(7948)] = 288665, + [SMALL_STATE(7949)] = 288675, + [SMALL_STATE(7950)] = 288685, + [SMALL_STATE(7951)] = 288695, + [SMALL_STATE(7952)] = 288705, + [SMALL_STATE(7953)] = 288715, + [SMALL_STATE(7954)] = 288723, + [SMALL_STATE(7955)] = 288733, + [SMALL_STATE(7956)] = 288743, + [SMALL_STATE(7957)] = 288753, + [SMALL_STATE(7958)] = 288763, + [SMALL_STATE(7959)] = 288771, + [SMALL_STATE(7960)] = 288781, + [SMALL_STATE(7961)] = 288789, + [SMALL_STATE(7962)] = 288799, + [SMALL_STATE(7963)] = 288807, + [SMALL_STATE(7964)] = 288817, + [SMALL_STATE(7965)] = 288827, + [SMALL_STATE(7966)] = 288837, + [SMALL_STATE(7967)] = 288845, + [SMALL_STATE(7968)] = 288855, + [SMALL_STATE(7969)] = 288865, + [SMALL_STATE(7970)] = 288875, + [SMALL_STATE(7971)] = 288883, + [SMALL_STATE(7972)] = 288893, + [SMALL_STATE(7973)] = 288903, + [SMALL_STATE(7974)] = 288913, + [SMALL_STATE(7975)] = 288921, + [SMALL_STATE(7976)] = 288931, + [SMALL_STATE(7977)] = 288941, + [SMALL_STATE(7978)] = 288951, + [SMALL_STATE(7979)] = 288961, + [SMALL_STATE(7980)] = 288971, + [SMALL_STATE(7981)] = 288981, + [SMALL_STATE(7982)] = 288991, + [SMALL_STATE(7983)] = 289001, + [SMALL_STATE(7984)] = 289011, + [SMALL_STATE(7985)] = 289019, + [SMALL_STATE(7986)] = 289029, + [SMALL_STATE(7987)] = 289039, + [SMALL_STATE(7988)] = 289049, + [SMALL_STATE(7989)] = 289059, + [SMALL_STATE(7990)] = 289067, + [SMALL_STATE(7991)] = 289077, + [SMALL_STATE(7992)] = 289087, + [SMALL_STATE(7993)] = 289097, + [SMALL_STATE(7994)] = 289107, + [SMALL_STATE(7995)] = 289117, + [SMALL_STATE(7996)] = 289127, + [SMALL_STATE(7997)] = 289137, + [SMALL_STATE(7998)] = 289145, + [SMALL_STATE(7999)] = 289155, + [SMALL_STATE(8000)] = 289165, + [SMALL_STATE(8001)] = 289175, + [SMALL_STATE(8002)] = 289185, + [SMALL_STATE(8003)] = 289195, + [SMALL_STATE(8004)] = 289205, + [SMALL_STATE(8005)] = 289215, + [SMALL_STATE(8006)] = 289225, + [SMALL_STATE(8007)] = 289235, + [SMALL_STATE(8008)] = 289245, + [SMALL_STATE(8009)] = 289255, + [SMALL_STATE(8010)] = 289265, + [SMALL_STATE(8011)] = 289275, + [SMALL_STATE(8012)] = 289285, + [SMALL_STATE(8013)] = 289293, + [SMALL_STATE(8014)] = 289303, + [SMALL_STATE(8015)] = 289313, + [SMALL_STATE(8016)] = 289323, + [SMALL_STATE(8017)] = 289333, + [SMALL_STATE(8018)] = 289343, + [SMALL_STATE(8019)] = 289353, + [SMALL_STATE(8020)] = 289363, + [SMALL_STATE(8021)] = 289373, + [SMALL_STATE(8022)] = 289383, + [SMALL_STATE(8023)] = 289393, + [SMALL_STATE(8024)] = 289403, + [SMALL_STATE(8025)] = 289413, + [SMALL_STATE(8026)] = 289423, + [SMALL_STATE(8027)] = 289433, + [SMALL_STATE(8028)] = 289443, + [SMALL_STATE(8029)] = 289453, + [SMALL_STATE(8030)] = 289463, + [SMALL_STATE(8031)] = 289473, + [SMALL_STATE(8032)] = 289483, + [SMALL_STATE(8033)] = 289491, + [SMALL_STATE(8034)] = 289501, + [SMALL_STATE(8035)] = 289511, + [SMALL_STATE(8036)] = 289521, + [SMALL_STATE(8037)] = 289531, + [SMALL_STATE(8038)] = 289541, + [SMALL_STATE(8039)] = 289551, + [SMALL_STATE(8040)] = 289561, + [SMALL_STATE(8041)] = 289571, + [SMALL_STATE(8042)] = 289579, + [SMALL_STATE(8043)] = 289589, + [SMALL_STATE(8044)] = 289599, + [SMALL_STATE(8045)] = 289609, + [SMALL_STATE(8046)] = 289619, + [SMALL_STATE(8047)] = 289629, + [SMALL_STATE(8048)] = 289639, + [SMALL_STATE(8049)] = 289649, + [SMALL_STATE(8050)] = 289657, + [SMALL_STATE(8051)] = 289667, + [SMALL_STATE(8052)] = 289677, + [SMALL_STATE(8053)] = 289687, + [SMALL_STATE(8054)] = 289697, + [SMALL_STATE(8055)] = 289707, + [SMALL_STATE(8056)] = 289717, + [SMALL_STATE(8057)] = 289727, + [SMALL_STATE(8058)] = 289737, + [SMALL_STATE(8059)] = 289747, + [SMALL_STATE(8060)] = 289757, + [SMALL_STATE(8061)] = 289767, + [SMALL_STATE(8062)] = 289777, + [SMALL_STATE(8063)] = 289787, + [SMALL_STATE(8064)] = 289797, + [SMALL_STATE(8065)] = 289807, + [SMALL_STATE(8066)] = 289817, + [SMALL_STATE(8067)] = 289827, + [SMALL_STATE(8068)] = 289837, + [SMALL_STATE(8069)] = 289847, + [SMALL_STATE(8070)] = 289857, + [SMALL_STATE(8071)] = 289867, + [SMALL_STATE(8072)] = 289877, + [SMALL_STATE(8073)] = 289887, + [SMALL_STATE(8074)] = 289897, + [SMALL_STATE(8075)] = 289907, + [SMALL_STATE(8076)] = 289917, + [SMALL_STATE(8077)] = 289927, + [SMALL_STATE(8078)] = 289937, + [SMALL_STATE(8079)] = 289944, + [SMALL_STATE(8080)] = 289951, + [SMALL_STATE(8081)] = 289958, + [SMALL_STATE(8082)] = 289965, + [SMALL_STATE(8083)] = 289972, + [SMALL_STATE(8084)] = 289979, + [SMALL_STATE(8085)] = 289986, + [SMALL_STATE(8086)] = 289993, + [SMALL_STATE(8087)] = 290000, + [SMALL_STATE(8088)] = 290007, + [SMALL_STATE(8089)] = 290014, + [SMALL_STATE(8090)] = 290021, + [SMALL_STATE(8091)] = 290028, + [SMALL_STATE(8092)] = 290035, + [SMALL_STATE(8093)] = 290042, + [SMALL_STATE(8094)] = 290049, + [SMALL_STATE(8095)] = 290056, + [SMALL_STATE(8096)] = 290063, + [SMALL_STATE(8097)] = 290070, + [SMALL_STATE(8098)] = 290077, + [SMALL_STATE(8099)] = 290084, + [SMALL_STATE(8100)] = 290091, + [SMALL_STATE(8101)] = 290098, + [SMALL_STATE(8102)] = 290105, + [SMALL_STATE(8103)] = 290112, + [SMALL_STATE(8104)] = 290119, + [SMALL_STATE(8105)] = 290126, + [SMALL_STATE(8106)] = 290133, + [SMALL_STATE(8107)] = 290140, + [SMALL_STATE(8108)] = 290147, + [SMALL_STATE(8109)] = 290154, + [SMALL_STATE(8110)] = 290161, + [SMALL_STATE(8111)] = 290168, + [SMALL_STATE(8112)] = 290175, + [SMALL_STATE(8113)] = 290182, + [SMALL_STATE(8114)] = 290189, + [SMALL_STATE(8115)] = 290196, + [SMALL_STATE(8116)] = 290203, + [SMALL_STATE(8117)] = 290210, + [SMALL_STATE(8118)] = 290217, + [SMALL_STATE(8119)] = 290224, + [SMALL_STATE(8120)] = 290231, + [SMALL_STATE(8121)] = 290238, + [SMALL_STATE(8122)] = 290245, + [SMALL_STATE(8123)] = 290252, + [SMALL_STATE(8124)] = 290259, + [SMALL_STATE(8125)] = 290266, + [SMALL_STATE(8126)] = 290273, + [SMALL_STATE(8127)] = 290280, + [SMALL_STATE(8128)] = 290287, + [SMALL_STATE(8129)] = 290294, + [SMALL_STATE(8130)] = 290301, + [SMALL_STATE(8131)] = 290308, + [SMALL_STATE(8132)] = 290315, + [SMALL_STATE(8133)] = 290322, + [SMALL_STATE(8134)] = 290329, + [SMALL_STATE(8135)] = 290336, + [SMALL_STATE(8136)] = 290343, + [SMALL_STATE(8137)] = 290350, + [SMALL_STATE(8138)] = 290357, + [SMALL_STATE(8139)] = 290364, + [SMALL_STATE(8140)] = 290371, + [SMALL_STATE(8141)] = 290378, + [SMALL_STATE(8142)] = 290385, + [SMALL_STATE(8143)] = 290392, + [SMALL_STATE(8144)] = 290399, + [SMALL_STATE(8145)] = 290406, + [SMALL_STATE(8146)] = 290413, + [SMALL_STATE(8147)] = 290420, + [SMALL_STATE(8148)] = 290427, + [SMALL_STATE(8149)] = 290434, + [SMALL_STATE(8150)] = 290441, + [SMALL_STATE(8151)] = 290448, + [SMALL_STATE(8152)] = 290455, + [SMALL_STATE(8153)] = 290462, + [SMALL_STATE(8154)] = 290469, + [SMALL_STATE(8155)] = 290476, + [SMALL_STATE(8156)] = 290483, + [SMALL_STATE(8157)] = 290490, + [SMALL_STATE(8158)] = 290497, + [SMALL_STATE(8159)] = 290504, + [SMALL_STATE(8160)] = 290511, + [SMALL_STATE(8161)] = 290518, + [SMALL_STATE(8162)] = 290525, + [SMALL_STATE(8163)] = 290532, + [SMALL_STATE(8164)] = 290539, + [SMALL_STATE(8165)] = 290546, + [SMALL_STATE(8166)] = 290553, + [SMALL_STATE(8167)] = 290560, + [SMALL_STATE(8168)] = 290567, + [SMALL_STATE(8169)] = 290574, + [SMALL_STATE(8170)] = 290581, + [SMALL_STATE(8171)] = 290588, + [SMALL_STATE(8172)] = 290595, + [SMALL_STATE(8173)] = 290602, + [SMALL_STATE(8174)] = 290609, + [SMALL_STATE(8175)] = 290616, + [SMALL_STATE(8176)] = 290623, + [SMALL_STATE(8177)] = 290630, + [SMALL_STATE(8178)] = 290637, + [SMALL_STATE(8179)] = 290644, + [SMALL_STATE(8180)] = 290651, + [SMALL_STATE(8181)] = 290658, + [SMALL_STATE(8182)] = 290665, + [SMALL_STATE(8183)] = 290672, + [SMALL_STATE(8184)] = 290679, + [SMALL_STATE(8185)] = 290686, + [SMALL_STATE(8186)] = 290693, + [SMALL_STATE(8187)] = 290700, + [SMALL_STATE(8188)] = 290707, + [SMALL_STATE(8189)] = 290714, + [SMALL_STATE(8190)] = 290721, + [SMALL_STATE(8191)] = 290728, + [SMALL_STATE(8192)] = 290735, + [SMALL_STATE(8193)] = 290742, + [SMALL_STATE(8194)] = 290749, + [SMALL_STATE(8195)] = 290756, + [SMALL_STATE(8196)] = 290763, + [SMALL_STATE(8197)] = 290770, + [SMALL_STATE(8198)] = 290777, + [SMALL_STATE(8199)] = 290784, + [SMALL_STATE(8200)] = 290791, + [SMALL_STATE(8201)] = 290798, + [SMALL_STATE(8202)] = 290805, + [SMALL_STATE(8203)] = 290812, + [SMALL_STATE(8204)] = 290819, + [SMALL_STATE(8205)] = 290826, + [SMALL_STATE(8206)] = 290833, + [SMALL_STATE(8207)] = 290840, + [SMALL_STATE(8208)] = 290847, + [SMALL_STATE(8209)] = 290854, + [SMALL_STATE(8210)] = 290861, + [SMALL_STATE(8211)] = 290868, + [SMALL_STATE(8212)] = 290875, + [SMALL_STATE(8213)] = 290882, + [SMALL_STATE(8214)] = 290889, + [SMALL_STATE(8215)] = 290896, + [SMALL_STATE(8216)] = 290903, + [SMALL_STATE(8217)] = 290910, + [SMALL_STATE(8218)] = 290917, + [SMALL_STATE(8219)] = 290924, + [SMALL_STATE(8220)] = 290931, + [SMALL_STATE(8221)] = 290938, + [SMALL_STATE(8222)] = 290945, + [SMALL_STATE(8223)] = 290952, + [SMALL_STATE(8224)] = 290959, + [SMALL_STATE(8225)] = 290966, + [SMALL_STATE(8226)] = 290973, + [SMALL_STATE(8227)] = 290980, + [SMALL_STATE(8228)] = 290987, + [SMALL_STATE(8229)] = 290994, + [SMALL_STATE(8230)] = 291001, + [SMALL_STATE(8231)] = 291008, + [SMALL_STATE(8232)] = 291015, + [SMALL_STATE(8233)] = 291022, + [SMALL_STATE(8234)] = 291029, + [SMALL_STATE(8235)] = 291036, + [SMALL_STATE(8236)] = 291043, + [SMALL_STATE(8237)] = 291050, + [SMALL_STATE(8238)] = 291057, + [SMALL_STATE(8239)] = 291064, + [SMALL_STATE(8240)] = 291071, + [SMALL_STATE(8241)] = 291078, + [SMALL_STATE(8242)] = 291085, + [SMALL_STATE(8243)] = 291092, + [SMALL_STATE(8244)] = 291099, + [SMALL_STATE(8245)] = 291106, + [SMALL_STATE(8246)] = 291113, + [SMALL_STATE(8247)] = 291120, + [SMALL_STATE(8248)] = 291127, + [SMALL_STATE(8249)] = 291134, + [SMALL_STATE(8250)] = 291141, + [SMALL_STATE(8251)] = 291148, + [SMALL_STATE(8252)] = 291155, + [SMALL_STATE(8253)] = 291162, + [SMALL_STATE(8254)] = 291169, + [SMALL_STATE(8255)] = 291176, + [SMALL_STATE(8256)] = 291183, + [SMALL_STATE(8257)] = 291190, + [SMALL_STATE(8258)] = 291197, + [SMALL_STATE(8259)] = 291204, + [SMALL_STATE(8260)] = 291211, + [SMALL_STATE(8261)] = 291218, + [SMALL_STATE(8262)] = 291225, + [SMALL_STATE(8263)] = 291232, + [SMALL_STATE(8264)] = 291239, + [SMALL_STATE(8265)] = 291246, + [SMALL_STATE(8266)] = 291253, + [SMALL_STATE(8267)] = 291260, + [SMALL_STATE(8268)] = 291267, + [SMALL_STATE(8269)] = 291274, + [SMALL_STATE(8270)] = 291281, + [SMALL_STATE(8271)] = 291288, + [SMALL_STATE(8272)] = 291295, + [SMALL_STATE(8273)] = 291302, + [SMALL_STATE(8274)] = 291309, + [SMALL_STATE(8275)] = 291316, + [SMALL_STATE(8276)] = 291323, + [SMALL_STATE(8277)] = 291330, + [SMALL_STATE(8278)] = 291337, + [SMALL_STATE(8279)] = 291344, + [SMALL_STATE(8280)] = 291351, + [SMALL_STATE(8281)] = 291358, + [SMALL_STATE(8282)] = 291365, + [SMALL_STATE(8283)] = 291372, + [SMALL_STATE(8284)] = 291379, + [SMALL_STATE(8285)] = 291386, + [SMALL_STATE(8286)] = 291393, + [SMALL_STATE(8287)] = 291400, + [SMALL_STATE(8288)] = 291407, + [SMALL_STATE(8289)] = 291414, + [SMALL_STATE(8290)] = 291421, + [SMALL_STATE(8291)] = 291428, + [SMALL_STATE(8292)] = 291435, + [SMALL_STATE(8293)] = 291442, + [SMALL_STATE(8294)] = 291449, + [SMALL_STATE(8295)] = 291456, + [SMALL_STATE(8296)] = 291463, + [SMALL_STATE(8297)] = 291470, + [SMALL_STATE(8298)] = 291477, + [SMALL_STATE(8299)] = 291484, + [SMALL_STATE(8300)] = 291491, + [SMALL_STATE(8301)] = 291498, + [SMALL_STATE(8302)] = 291505, + [SMALL_STATE(8303)] = 291512, + [SMALL_STATE(8304)] = 291519, + [SMALL_STATE(8305)] = 291526, + [SMALL_STATE(8306)] = 291533, + [SMALL_STATE(8307)] = 291540, + [SMALL_STATE(8308)] = 291547, + [SMALL_STATE(8309)] = 291554, + [SMALL_STATE(8310)] = 291561, + [SMALL_STATE(8311)] = 291568, + [SMALL_STATE(8312)] = 291575, + [SMALL_STATE(8313)] = 291582, + [SMALL_STATE(8314)] = 291589, + [SMALL_STATE(8315)] = 291596, + [SMALL_STATE(8316)] = 291603, + [SMALL_STATE(8317)] = 291610, + [SMALL_STATE(8318)] = 291617, + [SMALL_STATE(8319)] = 291624, + [SMALL_STATE(8320)] = 291631, + [SMALL_STATE(8321)] = 291638, + [SMALL_STATE(8322)] = 291645, + [SMALL_STATE(8323)] = 291652, + [SMALL_STATE(8324)] = 291659, + [SMALL_STATE(8325)] = 291666, + [SMALL_STATE(8326)] = 291673, + [SMALL_STATE(8327)] = 291680, + [SMALL_STATE(8328)] = 291687, + [SMALL_STATE(8329)] = 291694, + [SMALL_STATE(8330)] = 291701, + [SMALL_STATE(8331)] = 291708, + [SMALL_STATE(8332)] = 291715, + [SMALL_STATE(8333)] = 291722, + [SMALL_STATE(8334)] = 291729, + [SMALL_STATE(8335)] = 291736, + [SMALL_STATE(8336)] = 291743, + [SMALL_STATE(8337)] = 291750, + [SMALL_STATE(8338)] = 291757, + [SMALL_STATE(8339)] = 291764, + [SMALL_STATE(8340)] = 291771, + [SMALL_STATE(8341)] = 291778, + [SMALL_STATE(8342)] = 291785, + [SMALL_STATE(8343)] = 291792, + [SMALL_STATE(8344)] = 291799, + [SMALL_STATE(8345)] = 291806, + [SMALL_STATE(8346)] = 291813, + [SMALL_STATE(8347)] = 291820, + [SMALL_STATE(8348)] = 291827, + [SMALL_STATE(8349)] = 291834, + [SMALL_STATE(8350)] = 291841, + [SMALL_STATE(8351)] = 291848, + [SMALL_STATE(8352)] = 291855, + [SMALL_STATE(8353)] = 291862, + [SMALL_STATE(8354)] = 291869, + [SMALL_STATE(8355)] = 291876, + [SMALL_STATE(8356)] = 291883, + [SMALL_STATE(8357)] = 291890, + [SMALL_STATE(8358)] = 291897, + [SMALL_STATE(8359)] = 291904, + [SMALL_STATE(8360)] = 291911, + [SMALL_STATE(8361)] = 291918, + [SMALL_STATE(8362)] = 291925, + [SMALL_STATE(8363)] = 291932, + [SMALL_STATE(8364)] = 291939, + [SMALL_STATE(8365)] = 291946, + [SMALL_STATE(8366)] = 291953, + [SMALL_STATE(8367)] = 291960, + [SMALL_STATE(8368)] = 291967, + [SMALL_STATE(8369)] = 291974, + [SMALL_STATE(8370)] = 291981, + [SMALL_STATE(8371)] = 291988, + [SMALL_STATE(8372)] = 291995, + [SMALL_STATE(8373)] = 292002, + [SMALL_STATE(8374)] = 292009, + [SMALL_STATE(8375)] = 292016, + [SMALL_STATE(8376)] = 292023, + [SMALL_STATE(8377)] = 292030, + [SMALL_STATE(8378)] = 292037, + [SMALL_STATE(8379)] = 292044, + [SMALL_STATE(8380)] = 292051, + [SMALL_STATE(8381)] = 292058, + [SMALL_STATE(8382)] = 292065, + [SMALL_STATE(8383)] = 292072, + [SMALL_STATE(8384)] = 292079, + [SMALL_STATE(8385)] = 292086, + [SMALL_STATE(8386)] = 292093, + [SMALL_STATE(8387)] = 292100, + [SMALL_STATE(8388)] = 292107, + [SMALL_STATE(8389)] = 292114, + [SMALL_STATE(8390)] = 292121, + [SMALL_STATE(8391)] = 292128, + [SMALL_STATE(8392)] = 292135, + [SMALL_STATE(8393)] = 292142, + [SMALL_STATE(8394)] = 292149, + [SMALL_STATE(8395)] = 292156, + [SMALL_STATE(8396)] = 292163, + [SMALL_STATE(8397)] = 292170, + [SMALL_STATE(8398)] = 292177, + [SMALL_STATE(8399)] = 292184, + [SMALL_STATE(8400)] = 292191, + [SMALL_STATE(8401)] = 292198, + [SMALL_STATE(8402)] = 292205, + [SMALL_STATE(8403)] = 292212, + [SMALL_STATE(8404)] = 292219, + [SMALL_STATE(8405)] = 292226, + [SMALL_STATE(8406)] = 292233, + [SMALL_STATE(8407)] = 292240, + [SMALL_STATE(8408)] = 292247, + [SMALL_STATE(8409)] = 292254, + [SMALL_STATE(8410)] = 292261, + [SMALL_STATE(8411)] = 292268, + [SMALL_STATE(8412)] = 292275, + [SMALL_STATE(8413)] = 292282, + [SMALL_STATE(8414)] = 292289, + [SMALL_STATE(8415)] = 292296, + [SMALL_STATE(8416)] = 292303, + [SMALL_STATE(8417)] = 292310, + [SMALL_STATE(8418)] = 292317, + [SMALL_STATE(8419)] = 292324, + [SMALL_STATE(8420)] = 292331, + [SMALL_STATE(8421)] = 292338, + [SMALL_STATE(8422)] = 292345, + [SMALL_STATE(8423)] = 292352, + [SMALL_STATE(8424)] = 292359, + [SMALL_STATE(8425)] = 292366, + [SMALL_STATE(8426)] = 292373, + [SMALL_STATE(8427)] = 292380, + [SMALL_STATE(8428)] = 292387, + [SMALL_STATE(8429)] = 292394, + [SMALL_STATE(8430)] = 292401, + [SMALL_STATE(8431)] = 292408, + [SMALL_STATE(8432)] = 292415, + [SMALL_STATE(8433)] = 292422, + [SMALL_STATE(8434)] = 292429, + [SMALL_STATE(8435)] = 292436, + [SMALL_STATE(8436)] = 292443, + [SMALL_STATE(8437)] = 292450, + [SMALL_STATE(8438)] = 292457, + [SMALL_STATE(8439)] = 292464, + [SMALL_STATE(8440)] = 292471, + [SMALL_STATE(8441)] = 292478, + [SMALL_STATE(8442)] = 292485, + [SMALL_STATE(8443)] = 292492, + [SMALL_STATE(8444)] = 292499, + [SMALL_STATE(8445)] = 292506, + [SMALL_STATE(8446)] = 292513, + [SMALL_STATE(8447)] = 292520, + [SMALL_STATE(8448)] = 292527, + [SMALL_STATE(8449)] = 292534, + [SMALL_STATE(8450)] = 292541, + [SMALL_STATE(8451)] = 292548, + [SMALL_STATE(8452)] = 292555, + [SMALL_STATE(8453)] = 292562, + [SMALL_STATE(8454)] = 292569, + [SMALL_STATE(8455)] = 292576, + [SMALL_STATE(8456)] = 292583, + [SMALL_STATE(8457)] = 292590, + [SMALL_STATE(8458)] = 292597, + [SMALL_STATE(8459)] = 292604, + [SMALL_STATE(8460)] = 292611, + [SMALL_STATE(8461)] = 292618, + [SMALL_STATE(8462)] = 292625, + [SMALL_STATE(8463)] = 292632, + [SMALL_STATE(8464)] = 292639, + [SMALL_STATE(8465)] = 292646, + [SMALL_STATE(8466)] = 292653, + [SMALL_STATE(8467)] = 292660, + [SMALL_STATE(8468)] = 292667, + [SMALL_STATE(8469)] = 292674, + [SMALL_STATE(8470)] = 292681, + [SMALL_STATE(8471)] = 292688, + [SMALL_STATE(8472)] = 292695, + [SMALL_STATE(8473)] = 292702, + [SMALL_STATE(8474)] = 292709, + [SMALL_STATE(8475)] = 292716, + [SMALL_STATE(8476)] = 292723, + [SMALL_STATE(8477)] = 292730, + [SMALL_STATE(8478)] = 292737, + [SMALL_STATE(8479)] = 292744, + [SMALL_STATE(8480)] = 292751, + [SMALL_STATE(8481)] = 292758, + [SMALL_STATE(8482)] = 292765, + [SMALL_STATE(8483)] = 292772, + [SMALL_STATE(8484)] = 292779, + [SMALL_STATE(8485)] = 292786, + [SMALL_STATE(8486)] = 292793, + [SMALL_STATE(8487)] = 292800, + [SMALL_STATE(8488)] = 292807, + [SMALL_STATE(8489)] = 292814, + [SMALL_STATE(8490)] = 292821, + [SMALL_STATE(8491)] = 292828, + [SMALL_STATE(8492)] = 292835, + [SMALL_STATE(8493)] = 292842, + [SMALL_STATE(8494)] = 292849, + [SMALL_STATE(8495)] = 292856, + [SMALL_STATE(8496)] = 292863, + [SMALL_STATE(8497)] = 292870, + [SMALL_STATE(8498)] = 292877, + [SMALL_STATE(8499)] = 292884, + [SMALL_STATE(8500)] = 292891, + [SMALL_STATE(8501)] = 292898, + [SMALL_STATE(8502)] = 292905, + [SMALL_STATE(8503)] = 292912, + [SMALL_STATE(8504)] = 292919, + [SMALL_STATE(8505)] = 292926, + [SMALL_STATE(8506)] = 292933, + [SMALL_STATE(8507)] = 292940, + [SMALL_STATE(8508)] = 292947, + [SMALL_STATE(8509)] = 292954, + [SMALL_STATE(8510)] = 292961, + [SMALL_STATE(8511)] = 292968, + [SMALL_STATE(8512)] = 292975, + [SMALL_STATE(8513)] = 292982, + [SMALL_STATE(8514)] = 292989, + [SMALL_STATE(8515)] = 292996, + [SMALL_STATE(8516)] = 293003, + [SMALL_STATE(8517)] = 293010, + [SMALL_STATE(8518)] = 293017, + [SMALL_STATE(8519)] = 293024, + [SMALL_STATE(8520)] = 293031, + [SMALL_STATE(8521)] = 293038, + [SMALL_STATE(8522)] = 293045, + [SMALL_STATE(8523)] = 293052, + [SMALL_STATE(8524)] = 293059, + [SMALL_STATE(8525)] = 293066, + [SMALL_STATE(8526)] = 293073, + [SMALL_STATE(8527)] = 293080, + [SMALL_STATE(8528)] = 293087, + [SMALL_STATE(8529)] = 293094, + [SMALL_STATE(8530)] = 293101, + [SMALL_STATE(8531)] = 293108, + [SMALL_STATE(8532)] = 293115, + [SMALL_STATE(8533)] = 293122, + [SMALL_STATE(8534)] = 293129, + [SMALL_STATE(8535)] = 293136, + [SMALL_STATE(8536)] = 293143, + [SMALL_STATE(8537)] = 293150, + [SMALL_STATE(8538)] = 293157, + [SMALL_STATE(8539)] = 293164, + [SMALL_STATE(8540)] = 293171, + [SMALL_STATE(8541)] = 293178, + [SMALL_STATE(8542)] = 293185, + [SMALL_STATE(8543)] = 293192, + [SMALL_STATE(8544)] = 293199, + [SMALL_STATE(8545)] = 293206, + [SMALL_STATE(8546)] = 293213, + [SMALL_STATE(8547)] = 293220, + [SMALL_STATE(8548)] = 293227, + [SMALL_STATE(8549)] = 293234, + [SMALL_STATE(8550)] = 293241, + [SMALL_STATE(8551)] = 293248, + [SMALL_STATE(8552)] = 293255, + [SMALL_STATE(8553)] = 293262, + [SMALL_STATE(8554)] = 293269, + [SMALL_STATE(8555)] = 293276, + [SMALL_STATE(8556)] = 293283, + [SMALL_STATE(8557)] = 293290, + [SMALL_STATE(8558)] = 293297, + [SMALL_STATE(8559)] = 293304, + [SMALL_STATE(8560)] = 293311, + [SMALL_STATE(8561)] = 293318, + [SMALL_STATE(8562)] = 293325, + [SMALL_STATE(8563)] = 293332, + [SMALL_STATE(8564)] = 293339, + [SMALL_STATE(8565)] = 293346, + [SMALL_STATE(8566)] = 293353, + [SMALL_STATE(8567)] = 293360, + [SMALL_STATE(8568)] = 293367, + [SMALL_STATE(8569)] = 293374, + [SMALL_STATE(8570)] = 293381, + [SMALL_STATE(8571)] = 293388, + [SMALL_STATE(8572)] = 293395, + [SMALL_STATE(8573)] = 293402, + [SMALL_STATE(8574)] = 293409, + [SMALL_STATE(8575)] = 293416, + [SMALL_STATE(8576)] = 293423, + [SMALL_STATE(8577)] = 293430, + [SMALL_STATE(8578)] = 293437, + [SMALL_STATE(8579)] = 293444, + [SMALL_STATE(8580)] = 293451, + [SMALL_STATE(8581)] = 293458, + [SMALL_STATE(8582)] = 293465, + [SMALL_STATE(8583)] = 293472, + [SMALL_STATE(8584)] = 293479, + [SMALL_STATE(8585)] = 293486, + [SMALL_STATE(8586)] = 293493, + [SMALL_STATE(8587)] = 293500, + [SMALL_STATE(8588)] = 293507, + [SMALL_STATE(8589)] = 293514, + [SMALL_STATE(8590)] = 293521, + [SMALL_STATE(8591)] = 293528, + [SMALL_STATE(8592)] = 293535, + [SMALL_STATE(8593)] = 293542, + [SMALL_STATE(8594)] = 293549, + [SMALL_STATE(8595)] = 293556, + [SMALL_STATE(8596)] = 293563, + [SMALL_STATE(8597)] = 293570, + [SMALL_STATE(8598)] = 293577, + [SMALL_STATE(8599)] = 293584, + [SMALL_STATE(8600)] = 293591, + [SMALL_STATE(8601)] = 293598, + [SMALL_STATE(8602)] = 293605, + [SMALL_STATE(8603)] = 293612, + [SMALL_STATE(8604)] = 293619, + [SMALL_STATE(8605)] = 293626, + [SMALL_STATE(8606)] = 293633, + [SMALL_STATE(8607)] = 293640, + [SMALL_STATE(8608)] = 293647, + [SMALL_STATE(8609)] = 293654, + [SMALL_STATE(8610)] = 293661, + [SMALL_STATE(8611)] = 293668, + [SMALL_STATE(8612)] = 293675, + [SMALL_STATE(8613)] = 293682, + [SMALL_STATE(8614)] = 293689, + [SMALL_STATE(8615)] = 293696, + [SMALL_STATE(8616)] = 293703, + [SMALL_STATE(8617)] = 293710, + [SMALL_STATE(8618)] = 293717, + [SMALL_STATE(8619)] = 293724, + [SMALL_STATE(8620)] = 293731, + [SMALL_STATE(8621)] = 293738, + [SMALL_STATE(8622)] = 293745, + [SMALL_STATE(8623)] = 293752, + [SMALL_STATE(8624)] = 293759, + [SMALL_STATE(8625)] = 293766, + [SMALL_STATE(8626)] = 293773, + [SMALL_STATE(8627)] = 293780, + [SMALL_STATE(8628)] = 293787, + [SMALL_STATE(8629)] = 293794, + [SMALL_STATE(8630)] = 293801, + [SMALL_STATE(8631)] = 293808, + [SMALL_STATE(8632)] = 293815, + [SMALL_STATE(8633)] = 293822, + [SMALL_STATE(8634)] = 293829, + [SMALL_STATE(8635)] = 293836, + [SMALL_STATE(8636)] = 293843, + [SMALL_STATE(8637)] = 293850, + [SMALL_STATE(8638)] = 293857, + [SMALL_STATE(8639)] = 293864, + [SMALL_STATE(8640)] = 293871, + [SMALL_STATE(8641)] = 293878, + [SMALL_STATE(8642)] = 293885, + [SMALL_STATE(8643)] = 293892, + [SMALL_STATE(8644)] = 293899, + [SMALL_STATE(8645)] = 293906, + [SMALL_STATE(8646)] = 293913, + [SMALL_STATE(8647)] = 293920, + [SMALL_STATE(8648)] = 293927, + [SMALL_STATE(8649)] = 293934, + [SMALL_STATE(8650)] = 293941, + [SMALL_STATE(8651)] = 293948, + [SMALL_STATE(8652)] = 293955, + [SMALL_STATE(8653)] = 293962, + [SMALL_STATE(8654)] = 293969, + [SMALL_STATE(8655)] = 293976, + [SMALL_STATE(8656)] = 293983, + [SMALL_STATE(8657)] = 293990, + [SMALL_STATE(8658)] = 293997, + [SMALL_STATE(8659)] = 294004, + [SMALL_STATE(8660)] = 294011, + [SMALL_STATE(8661)] = 294018, + [SMALL_STATE(8662)] = 294025, + [SMALL_STATE(8663)] = 294032, + [SMALL_STATE(8664)] = 294039, + [SMALL_STATE(8665)] = 294046, + [SMALL_STATE(8666)] = 294053, + [SMALL_STATE(8667)] = 294060, + [SMALL_STATE(8668)] = 294067, + [SMALL_STATE(8669)] = 294074, + [SMALL_STATE(8670)] = 294081, + [SMALL_STATE(8671)] = 294088, + [SMALL_STATE(8672)] = 294095, + [SMALL_STATE(8673)] = 294102, + [SMALL_STATE(8674)] = 294109, + [SMALL_STATE(8675)] = 294116, + [SMALL_STATE(8676)] = 294123, + [SMALL_STATE(8677)] = 294130, + [SMALL_STATE(8678)] = 294137, + [SMALL_STATE(8679)] = 294144, + [SMALL_STATE(8680)] = 294151, + [SMALL_STATE(8681)] = 294158, + [SMALL_STATE(8682)] = 294165, + [SMALL_STATE(8683)] = 294172, + [SMALL_STATE(8684)] = 294179, + [SMALL_STATE(8685)] = 294186, + [SMALL_STATE(8686)] = 294193, + [SMALL_STATE(8687)] = 294200, + [SMALL_STATE(8688)] = 294207, + [SMALL_STATE(8689)] = 294214, + [SMALL_STATE(8690)] = 294221, + [SMALL_STATE(8691)] = 294228, + [SMALL_STATE(8692)] = 294235, + [SMALL_STATE(8693)] = 294242, + [SMALL_STATE(8694)] = 294249, + [SMALL_STATE(8695)] = 294256, + [SMALL_STATE(8696)] = 294263, + [SMALL_STATE(8697)] = 294270, + [SMALL_STATE(8698)] = 294277, + [SMALL_STATE(8699)] = 294284, + [SMALL_STATE(8700)] = 294291, + [SMALL_STATE(8701)] = 294298, + [SMALL_STATE(8702)] = 294305, + [SMALL_STATE(8703)] = 294312, + [SMALL_STATE(8704)] = 294319, + [SMALL_STATE(8705)] = 294326, + [SMALL_STATE(8706)] = 294333, + [SMALL_STATE(8707)] = 294340, + [SMALL_STATE(8708)] = 294347, + [SMALL_STATE(8709)] = 294354, + [SMALL_STATE(8710)] = 294361, + [SMALL_STATE(8711)] = 294368, + [SMALL_STATE(8712)] = 294375, + [SMALL_STATE(8713)] = 294382, + [SMALL_STATE(8714)] = 294389, + [SMALL_STATE(8715)] = 294396, + [SMALL_STATE(8716)] = 294403, + [SMALL_STATE(8717)] = 294410, + [SMALL_STATE(8718)] = 294417, + [SMALL_STATE(8719)] = 294424, + [SMALL_STATE(8720)] = 294431, + [SMALL_STATE(8721)] = 294438, + [SMALL_STATE(8722)] = 294445, + [SMALL_STATE(8723)] = 294452, + [SMALL_STATE(8724)] = 294459, + [SMALL_STATE(8725)] = 294466, + [SMALL_STATE(8726)] = 294473, + [SMALL_STATE(8727)] = 294480, + [SMALL_STATE(8728)] = 294487, + [SMALL_STATE(8729)] = 294494, + [SMALL_STATE(8730)] = 294501, + [SMALL_STATE(8731)] = 294508, + [SMALL_STATE(8732)] = 294515, + [SMALL_STATE(8733)] = 294522, + [SMALL_STATE(8734)] = 294529, + [SMALL_STATE(8735)] = 294536, + [SMALL_STATE(8736)] = 294543, + [SMALL_STATE(8737)] = 294550, + [SMALL_STATE(8738)] = 294557, + [SMALL_STATE(8739)] = 294564, + [SMALL_STATE(8740)] = 294571, + [SMALL_STATE(8741)] = 294578, + [SMALL_STATE(8742)] = 294585, + [SMALL_STATE(8743)] = 294592, + [SMALL_STATE(8744)] = 294599, + [SMALL_STATE(8745)] = 294606, + [SMALL_STATE(8746)] = 294613, + [SMALL_STATE(8747)] = 294620, + [SMALL_STATE(8748)] = 294627, + [SMALL_STATE(8749)] = 294634, + [SMALL_STATE(8750)] = 294641, + [SMALL_STATE(8751)] = 294648, + [SMALL_STATE(8752)] = 294655, + [SMALL_STATE(8753)] = 294662, + [SMALL_STATE(8754)] = 294669, + [SMALL_STATE(8755)] = 294676, + [SMALL_STATE(8756)] = 294683, + [SMALL_STATE(8757)] = 294690, + [SMALL_STATE(8758)] = 294697, + [SMALL_STATE(8759)] = 294704, + [SMALL_STATE(8760)] = 294711, + [SMALL_STATE(8761)] = 294718, + [SMALL_STATE(8762)] = 294725, + [SMALL_STATE(8763)] = 294732, + [SMALL_STATE(8764)] = 294739, + [SMALL_STATE(8765)] = 294746, + [SMALL_STATE(8766)] = 294753, + [SMALL_STATE(8767)] = 294760, + [SMALL_STATE(8768)] = 294767, + [SMALL_STATE(8769)] = 294774, + [SMALL_STATE(8770)] = 294781, + [SMALL_STATE(8771)] = 294788, + [SMALL_STATE(8772)] = 294795, + [SMALL_STATE(8773)] = 294802, + [SMALL_STATE(8774)] = 294809, + [SMALL_STATE(8775)] = 294816, + [SMALL_STATE(8776)] = 294823, + [SMALL_STATE(8777)] = 294830, + [SMALL_STATE(8778)] = 294837, + [SMALL_STATE(8779)] = 294844, + [SMALL_STATE(8780)] = 294851, + [SMALL_STATE(8781)] = 294858, + [SMALL_STATE(8782)] = 294865, + [SMALL_STATE(8783)] = 294872, + [SMALL_STATE(8784)] = 294879, + [SMALL_STATE(8785)] = 294886, + [SMALL_STATE(8786)] = 294893, + [SMALL_STATE(8787)] = 294900, + [SMALL_STATE(8788)] = 294907, + [SMALL_STATE(8789)] = 294914, + [SMALL_STATE(8790)] = 294921, + [SMALL_STATE(8791)] = 294928, + [SMALL_STATE(8792)] = 294935, + [SMALL_STATE(8793)] = 294942, + [SMALL_STATE(8794)] = 294949, + [SMALL_STATE(8795)] = 294956, + [SMALL_STATE(8796)] = 294963, + [SMALL_STATE(8797)] = 294970, + [SMALL_STATE(8798)] = 294977, + [SMALL_STATE(8799)] = 294984, + [SMALL_STATE(8800)] = 294991, + [SMALL_STATE(8801)] = 294998, + [SMALL_STATE(8802)] = 295005, + [SMALL_STATE(8803)] = 295012, + [SMALL_STATE(8804)] = 295019, + [SMALL_STATE(8805)] = 295026, + [SMALL_STATE(8806)] = 295033, + [SMALL_STATE(8807)] = 295040, + [SMALL_STATE(8808)] = 295047, + [SMALL_STATE(8809)] = 295054, + [SMALL_STATE(8810)] = 295061, + [SMALL_STATE(8811)] = 295068, + [SMALL_STATE(8812)] = 295075, + [SMALL_STATE(8813)] = 295082, + [SMALL_STATE(8814)] = 295089, + [SMALL_STATE(8815)] = 295096, + [SMALL_STATE(8816)] = 295103, + [SMALL_STATE(8817)] = 295110, + [SMALL_STATE(8818)] = 295117, + [SMALL_STATE(8819)] = 295124, + [SMALL_STATE(8820)] = 295131, + [SMALL_STATE(8821)] = 295138, + [SMALL_STATE(8822)] = 295145, + [SMALL_STATE(8823)] = 295152, + [SMALL_STATE(8824)] = 295159, + [SMALL_STATE(8825)] = 295166, + [SMALL_STATE(8826)] = 295173, + [SMALL_STATE(8827)] = 295180, + [SMALL_STATE(8828)] = 295187, + [SMALL_STATE(8829)] = 295194, + [SMALL_STATE(8830)] = 295201, + [SMALL_STATE(8831)] = 295208, + [SMALL_STATE(8832)] = 295215, + [SMALL_STATE(8833)] = 295222, + [SMALL_STATE(8834)] = 295229, + [SMALL_STATE(8835)] = 295236, + [SMALL_STATE(8836)] = 295243, + [SMALL_STATE(8837)] = 295250, + [SMALL_STATE(8838)] = 295257, + [SMALL_STATE(8839)] = 295264, + [SMALL_STATE(8840)] = 295271, + [SMALL_STATE(8841)] = 295278, + [SMALL_STATE(8842)] = 295285, + [SMALL_STATE(8843)] = 295292, + [SMALL_STATE(8844)] = 295299, + [SMALL_STATE(8845)] = 295306, + [SMALL_STATE(8846)] = 295313, + [SMALL_STATE(8847)] = 295320, + [SMALL_STATE(8848)] = 295327, + [SMALL_STATE(8849)] = 295334, + [SMALL_STATE(8850)] = 295341, + [SMALL_STATE(8851)] = 295348, + [SMALL_STATE(8852)] = 295355, + [SMALL_STATE(8853)] = 295362, + [SMALL_STATE(8854)] = 295369, + [SMALL_STATE(8855)] = 295376, + [SMALL_STATE(8856)] = 295383, + [SMALL_STATE(8857)] = 295390, + [SMALL_STATE(8858)] = 295397, + [SMALL_STATE(8859)] = 295404, + [SMALL_STATE(8860)] = 295411, + [SMALL_STATE(8861)] = 295418, + [SMALL_STATE(8862)] = 295425, + [SMALL_STATE(8863)] = 295432, + [SMALL_STATE(8864)] = 295439, + [SMALL_STATE(8865)] = 295446, + [SMALL_STATE(8866)] = 295453, + [SMALL_STATE(8867)] = 295460, + [SMALL_STATE(8868)] = 295467, + [SMALL_STATE(8869)] = 295474, + [SMALL_STATE(8870)] = 295481, + [SMALL_STATE(8871)] = 295488, + [SMALL_STATE(8872)] = 295495, + [SMALL_STATE(8873)] = 295502, + [SMALL_STATE(8874)] = 295509, + [SMALL_STATE(8875)] = 295516, + [SMALL_STATE(8876)] = 295523, + [SMALL_STATE(8877)] = 295530, + [SMALL_STATE(8878)] = 295537, + [SMALL_STATE(8879)] = 295544, + [SMALL_STATE(8880)] = 295551, + [SMALL_STATE(8881)] = 295558, + [SMALL_STATE(8882)] = 295565, + [SMALL_STATE(8883)] = 295572, + [SMALL_STATE(8884)] = 295579, + [SMALL_STATE(8885)] = 295586, + [SMALL_STATE(8886)] = 295593, + [SMALL_STATE(8887)] = 295600, + [SMALL_STATE(8888)] = 295607, + [SMALL_STATE(8889)] = 295614, + [SMALL_STATE(8890)] = 295621, + [SMALL_STATE(8891)] = 295628, + [SMALL_STATE(8892)] = 295635, + [SMALL_STATE(8893)] = 295642, + [SMALL_STATE(8894)] = 295649, + [SMALL_STATE(8895)] = 295656, + [SMALL_STATE(8896)] = 295663, + [SMALL_STATE(8897)] = 295670, + [SMALL_STATE(8898)] = 295677, + [SMALL_STATE(8899)] = 295684, + [SMALL_STATE(8900)] = 295691, + [SMALL_STATE(8901)] = 295698, + [SMALL_STATE(8902)] = 295705, + [SMALL_STATE(8903)] = 295712, + [SMALL_STATE(8904)] = 295719, + [SMALL_STATE(8905)] = 295726, + [SMALL_STATE(8906)] = 295733, + [SMALL_STATE(8907)] = 295740, + [SMALL_STATE(8908)] = 295747, + [SMALL_STATE(8909)] = 295754, + [SMALL_STATE(8910)] = 295761, + [SMALL_STATE(8911)] = 295768, + [SMALL_STATE(8912)] = 295775, + [SMALL_STATE(8913)] = 295782, + [SMALL_STATE(8914)] = 295789, + [SMALL_STATE(8915)] = 295796, + [SMALL_STATE(8916)] = 295803, + [SMALL_STATE(8917)] = 295810, + [SMALL_STATE(8918)] = 295817, + [SMALL_STATE(8919)] = 295824, + [SMALL_STATE(8920)] = 295831, + [SMALL_STATE(8921)] = 295838, + [SMALL_STATE(8922)] = 295845, + [SMALL_STATE(8923)] = 295852, + [SMALL_STATE(8924)] = 295859, + [SMALL_STATE(8925)] = 295866, + [SMALL_STATE(8926)] = 295873, + [SMALL_STATE(8927)] = 295880, + [SMALL_STATE(8928)] = 295887, + [SMALL_STATE(8929)] = 295894, + [SMALL_STATE(8930)] = 295901, + [SMALL_STATE(8931)] = 295908, + [SMALL_STATE(8932)] = 295915, + [SMALL_STATE(8933)] = 295922, + [SMALL_STATE(8934)] = 295929, + [SMALL_STATE(8935)] = 295936, + [SMALL_STATE(8936)] = 295943, + [SMALL_STATE(8937)] = 295950, + [SMALL_STATE(8938)] = 295957, + [SMALL_STATE(8939)] = 295964, + [SMALL_STATE(8940)] = 295971, + [SMALL_STATE(8941)] = 295978, + [SMALL_STATE(8942)] = 295985, + [SMALL_STATE(8943)] = 295992, + [SMALL_STATE(8944)] = 295999, + [SMALL_STATE(8945)] = 296006, + [SMALL_STATE(8946)] = 296013, + [SMALL_STATE(8947)] = 296020, + [SMALL_STATE(8948)] = 296027, + [SMALL_STATE(8949)] = 296034, + [SMALL_STATE(8950)] = 296041, + [SMALL_STATE(8951)] = 296048, + [SMALL_STATE(8952)] = 296055, + [SMALL_STATE(8953)] = 296062, + [SMALL_STATE(8954)] = 296069, + [SMALL_STATE(8955)] = 296076, + [SMALL_STATE(8956)] = 296083, + [SMALL_STATE(8957)] = 296090, + [SMALL_STATE(8958)] = 296097, + [SMALL_STATE(8959)] = 296104, + [SMALL_STATE(8960)] = 296111, + [SMALL_STATE(8961)] = 296118, + [SMALL_STATE(8962)] = 296125, + [SMALL_STATE(8963)] = 296132, + [SMALL_STATE(8964)] = 296139, + [SMALL_STATE(8965)] = 296146, + [SMALL_STATE(8966)] = 296153, + [SMALL_STATE(8967)] = 296160, + [SMALL_STATE(8968)] = 296167, + [SMALL_STATE(8969)] = 296174, + [SMALL_STATE(8970)] = 296181, + [SMALL_STATE(8971)] = 296188, + [SMALL_STATE(8972)] = 296195, + [SMALL_STATE(8973)] = 296202, + [SMALL_STATE(8974)] = 296209, + [SMALL_STATE(8975)] = 296216, + [SMALL_STATE(8976)] = 296223, + [SMALL_STATE(8977)] = 296230, + [SMALL_STATE(8978)] = 296237, + [SMALL_STATE(8979)] = 296244, + [SMALL_STATE(8980)] = 296251, + [SMALL_STATE(8981)] = 296258, + [SMALL_STATE(8982)] = 296265, + [SMALL_STATE(8983)] = 296272, + [SMALL_STATE(8984)] = 296279, + [SMALL_STATE(8985)] = 296286, + [SMALL_STATE(8986)] = 296293, + [SMALL_STATE(8987)] = 296300, + [SMALL_STATE(8988)] = 296307, + [SMALL_STATE(8989)] = 296314, + [SMALL_STATE(8990)] = 296321, + [SMALL_STATE(8991)] = 296328, + [SMALL_STATE(8992)] = 296335, + [SMALL_STATE(8993)] = 296342, + [SMALL_STATE(8994)] = 296349, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -542270,1138 +544144,1138 @@ 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(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), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8593), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7969), [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), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), [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), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8681), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8553), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8018), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7706), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8887), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8643), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8362), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8093), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8437), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), [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(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(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(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), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8365), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8375), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8751), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8755), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7842), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8498), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7859), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8467), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8507), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8508), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8838), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8650), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8768), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7891), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8811), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8812), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8742), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8743), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8837), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6544), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), [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), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8810), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8161), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8783), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7833), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8630), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8895), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8896), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), + [373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 81), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 81), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(907), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6760), + [387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8742), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5868), [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(8574), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7924), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8743), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7802), [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(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), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5317), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3830), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3196), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2758), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8681), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6544), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6671), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8553), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8018), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3756), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2369), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5766), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3190), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3107), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8174), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7324), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7808), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8249), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7843), [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), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8810), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8146), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8161), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8783), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7833), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8630), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8200), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8093), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8204), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6864), + [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4311), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7422), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7126), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8437), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(4271), [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), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7813), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6750), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8895), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8896), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7923), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5124), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), [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(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), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6756), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8124), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5760), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8593), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7969), [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), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5317), + [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(932), [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), + [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(3774), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3196), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8681), + [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6586), + [684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6671), + [687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), + [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8553), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8018), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3756), + [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2369), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5766), + [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3190), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8174), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), + [723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8057), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1274), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8887), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7763), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8643), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8155), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8362), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8135), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8200), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8093), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8204), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6864), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4866), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7422), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7126), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4944), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8437), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4271), [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(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(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(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(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), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(73), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7169), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6609), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1591), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6754), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8365), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8375), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1266), + [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7923), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5124), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(904), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6719), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8234), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5870), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8141), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7967), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3838), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2759), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6585), + [905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3115), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7442), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7956), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8521), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7810), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8894), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1042), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8253), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8261), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8151), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8699), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7965), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6714), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8917), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8909), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6719), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8141), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7956), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7810), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8894), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8253), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8699), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7965), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8917), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8909), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(899), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6743), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8751), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(5855), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8755), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7839), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6600), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(3090), + [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7592), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7842), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8498), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7859), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8467), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8507), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8508), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8838), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7723), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8650), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(7891), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(6748), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8811), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(8812), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8611), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7725), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6652), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), [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), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), [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), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7724), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), + [1291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [1302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3830), + [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2054), + [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3190), + [1311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8681), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6671), + [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7441), + [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8553), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [1326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2369), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5820), + [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8174), + [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), + [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), + [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), + [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5218), + [1353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7324), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7808), + [1359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7843), + [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [1365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8810), + [1368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8146), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8161), + [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8783), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7833), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8630), + [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8200), + [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8093), + [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8204), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6864), + [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4311), + [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7422), + [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7126), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), + [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8437), + [1425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5285), + [1428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7724), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7813), + [1434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), + [1440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), + [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1469), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7923), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5124), + [1455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), [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(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(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), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(906), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3774), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7706), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8057), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7763), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8643), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8155), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8362), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8135), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8028), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8611), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1170), + [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1266), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(898), + [1541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(649), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(448), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3838), + [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7442), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7956), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7810), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8894), + [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1042), + [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8253), + [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8261), + [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8151), + [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), + [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8699), + [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7965), + [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1131), + [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1132), + [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), + [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(893), + [1601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(510), + [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(458), + [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [1610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7592), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7842), + [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7859), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8467), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1035), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8507), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8508), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8838), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7723), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8650), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7891), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1180), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1443), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8907), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8526), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7717), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8602), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(901), + [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3834), + [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7490), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8051), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7961), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8907), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1044), + [1733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8525), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8526), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8240), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7717), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8602), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7755), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1486), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8904), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8667), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7848), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8828), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), [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), + [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8470), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8958), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8989), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8472), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8533), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8719), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8967), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8992), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), [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(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), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8668), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8961), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8990), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6868), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2248), [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), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1487), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1487), + [2034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1290), + [2037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(510), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1296), [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), + [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6671), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7441), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(40), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5820), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7251), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7592), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7842), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1442), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8498), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7859), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(216), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8467), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1035), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8507), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8508), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8838), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7723), + [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8650), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1542), + [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1181), + [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8200), + [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8093), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8204), + [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6864), + [2117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(4311), + [2120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7422), + [2123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7126), + [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3982), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3921), + [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8184), + [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7724), + [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7891), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1385), + [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1177), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1180), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1443), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7923), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1268), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5124), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5445), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2236), + [2176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(263), + [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(52), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7324), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7808), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1478), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8249), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7843), [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), + [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8810), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1039), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8146), + [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8161), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8783), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7833), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8630), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7813), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1214), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1222), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1469), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2234), + [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(649), + [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(63), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7442), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7956), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1485), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8521), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7810), [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(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(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 = 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), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8894), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1042), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8253), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8261), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8151), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7981), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8699), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7965), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1131), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1132), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1479), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2229), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(409), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(56), + [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7706), + [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8057), + [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1274), + [2319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8887), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7763), + [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(188), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8643), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1032), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8155), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8362), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8135), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8028), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8611), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8002), + [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1170), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1171), + [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1266), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2244), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(959), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(67), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7490), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8051), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1468), + [2411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8904), + [2414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7961), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(202), + [2420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8907), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1044), + [2426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8525), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8526), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8240), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7717), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8602), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7755), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1152), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1153), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1486), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(2249), + [2464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7342), + [2467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7879), + [2470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8667), + [2473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7848), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7870), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8739), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8970), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8993), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), + [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), + [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8047), + [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2096), + [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(164), + [2556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1487), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1290), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1290), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1296), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6671), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5820), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7251), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8184), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7724), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 46), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 46), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 9), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 9), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8047), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 106), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 106), [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), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 170), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 170), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [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_statement, 1, 0, 0), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 155), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 155), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 156), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 156), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 160), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 160), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 161), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 161), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 107), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 107), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 176), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 176), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 177), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 177), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 137), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 137), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 189), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 189), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 206), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 206), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 117), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 117), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 52), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 52), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 54), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 54), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 9), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 9), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 120), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 120), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 137), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 137), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 68), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 68), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 88), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 88), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 52), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 52), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 9), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 9), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 88), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 88), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 53), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 53), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 133), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 133), [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), @@ -543450,5809 +545324,5825 @@ static const TSParseActionEntry ts_parse_actions[] = { [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), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 79), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 79), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 80), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 80), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 81), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 81), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 82), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 82), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 41), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 41), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 95), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 95), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 96), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 96), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 97), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 97), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 60), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 60), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 59), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 59), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 118), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 118), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 122), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 122), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 127), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 127), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 130), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 130), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 131), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 131), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 132), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 132), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 81), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 81), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 5, 0, 138), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 5, 0, 138), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 139), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 139), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 145), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 145), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 146), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 146), + [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8303), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8942), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8221), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8876), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8925), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 171), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 171), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 173), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 173), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), + [3063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(2096), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1296), + [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(6671), + [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(7251), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8184), + [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(7724), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 180), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 180), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 184), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 184), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 185), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 185), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 187), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 187), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 219), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 219), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 26), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 26), + [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8013), + [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8698), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8964), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8991), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8721), + [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), [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), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 81), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 81), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7892), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [3274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(2096), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1296), + [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(6671), + [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(7251), + [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8184), + [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(7724), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(2096), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1296), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(6671), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), + [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(7251), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8184), + [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(7724), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7892), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), + [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8466), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2240), + [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1522), + [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6700), + [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7183), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 57), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 57), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 56), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 56), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 4, 0, 0), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 4, 0, 0), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 47), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 47), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 110), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 110), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 47), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 47), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 166), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 166), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 110), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 110), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 47), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 47), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 5, 0, 111), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 5, 0, 111), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 112), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 112), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 47), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 47), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 111), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 111), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 166), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 166), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 112), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 112), + [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 56), + [3467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 56), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), + [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 57), + [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 57), + [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), + [3488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8303), + [3491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5859), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8167), + [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7726), + [3502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4875), + [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8849), + [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2958), + [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5317), + [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5317), + [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(606), + [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3142), + [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3840), + [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3196), + [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3190), + [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8681), + [3535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6601), + [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), + [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7488), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8553), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8018), + [3550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2369), + [3553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8221), + [3556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [3559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3126), + [3562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8174), + [3565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2740), + [3568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6399), + [3571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5126), + [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5227), + [3577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5229), + [3580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8437), + [3586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4271), + [3589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5250), + [3592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8876), + [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7163), + [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), + [3604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8925), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), + [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 3, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 3, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), + [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8140), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8417), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7943), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8908), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [3721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8140), + [3724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5862), + [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8417), + [3730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7943), + [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3074), + [3739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3832), + [3742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6572), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [3747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), + [3750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7253), + [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1680), + [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8908), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8356), + [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5869), + [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8897), + [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8017), + [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(838), + [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3159), + [3785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3842), + [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6615), + [3791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3133), + [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7188), + [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1672), + [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8932), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8356), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8897), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8932), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8227), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [3951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2243), + [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1414), + [3957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6670), + [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7248), + [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2340), + [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1301), + [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6675), + [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7162), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8912), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8513), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8901), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8921), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8918), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8929), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7175), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8938), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8933), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8935), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8926), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8718), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [4085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [4095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [4097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(411), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [4188] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [4197] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [4201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1698), + [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(147), + [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1320), + [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1345), + [4213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6664), + [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5820), + [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7773), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(140), + [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1257), + [4228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1344), + [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1344), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [4244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2350), + [4247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(168), + [4250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1557), + [4253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1557), + [4256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1543), + [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6699), + [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1558), + [4265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1226), + [4268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8200), + [4271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8093), + [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8204), + [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6864), + [4280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(4311), + [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7422), + [4286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7126), + [4289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3982), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3921), + [4295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1559), + [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7923), + [4301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1560), + [4304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5107), + [4307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(5445), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8916), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [4396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2096), + [4399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(164), + [4402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), + [4405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1487), + [4408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1290), + [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(2761), + [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), + [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6671), + [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), + [4423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), + [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5820), + [4428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), + [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), + [4434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), + [4437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8200), + [4440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8093), + [4443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8204), + [4446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6864), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4311), + [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7422), + [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7126), + [4458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3982), + [4461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), + [4464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8184), + [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6684), + [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7724), + [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7923), + [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), + [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5124), + [4485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [4494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(421), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8617), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8604), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8653), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8171), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), [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), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8548), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8550), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8152), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8890), + [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8095), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8099), + [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8114), + [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8115), + [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8118), + [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8119), + [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8121), + [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8131), + [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8132), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 108), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8825), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 108), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 199), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 81), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 159), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8855), + [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8857), + [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8882), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8884), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8188), + [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8195), + [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8154), + [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8183), + [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8197), + [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8202), + [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8225), + [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8276), + [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8304), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8311), + [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8491), + [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8637), + [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8645), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8758), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8834), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8239), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8725), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8246), + [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8292), + [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8841), + [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8845), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8482), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8678), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8361), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8836), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8138), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8988), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8528), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8369), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8464), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 33), + [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 33), REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [4924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), + [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [4929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(408), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [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, 3, 2, 0), + [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 16), + [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 17), + [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 16), REDUCE(sym_template_function, 2, 0, 17), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 16), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 17), + [5011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 16), REDUCE(sym_template_function, 2, 0, 17), + [5014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(379), + [5049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(379), + [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), + [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [5064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1623), + [5067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8772), + [5070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(415), + [5073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(420), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), + [5086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(392), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), + [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8772), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [5114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2262), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [5131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2281), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [5138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 40), + [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 40), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8757), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 74), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 74), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 67), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 67), + [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 32), + [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 32), + [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 75), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 75), + [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 183), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 183), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 55), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 55), + [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 21), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 21), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 129), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 129), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 128), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 128), + [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1689), + [5215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8757), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1691), + [5245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8792), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [5260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [5263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8174), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [5308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8788), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [5363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), + [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8697), + [5369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1685), + [5372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), + [5375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8788), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(418), + [5389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1699), + [5392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1702), + [5395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7801), + [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [5403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7157), + [5408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8058), + [5411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), + [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7801), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [5421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [5423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 154), + [5425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 154), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [5431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [5437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [5441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1910), + [5444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(1729), + [5447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8718), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), + [5460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [5462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 205), + [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 205), + [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 191), + [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 191), + [5470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 33), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 33), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), + [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 192), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 192), + [5480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8465), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8666), + [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [5506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(415), + [5509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [5513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 68), + [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 68), + [5517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 211), + [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 211), + [5521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [5525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 191), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 191), + [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 212), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 212), + [5533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 192), + [5535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 192), + [5537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 185), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 185), + [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 205), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 205), + [5549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 221), + [5551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 221), + [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [5561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 58), + [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 58), + [5565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 68), + [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 68), + [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 69), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 69), + [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 211), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 211), + [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 68), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 68), + [5581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 212), + [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 212), + [5585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 221), + [5587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 221), + [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 58), + [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 58), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [5597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 132), + [5599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 132), + [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8737), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), + [5615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 81), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 81), + [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 133), + [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 133), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 220), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 220), + [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 68), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 68), + [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), + [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8113), + [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 81), + [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 81), + [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 82), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 82), + [5653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [5655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [5657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 104), + [5659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 104), + [5661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3573), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), + [5674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [5682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 97), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 97), + [5686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 50), + [5688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 50), + [5690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(425), + [5693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 105), + [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 105), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 99), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 99), + [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 27), + [5707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 27), + [5709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 102), + [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), + [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 46), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 46), + [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 152), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 152), + [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), + [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [5735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(435), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7821), + [5745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), + [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), + [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), + [5753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [5757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), + [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), + [5761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3564), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [5768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 9), + [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 9), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 9), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 9), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [5792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7732), + [5795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [5799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 150), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 150), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 151), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 151), + [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 100), + [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 100), + [5811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [5815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [5817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [5827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 46), + [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 46), + [5831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [5835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [5839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [5843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 33), SHIFT(418), + [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 20), + [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 20), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 45), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 45), + [5878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(418), + [5881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 93), + [5883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 93), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 65), + [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 65), + [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [5891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), + [5897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 18), + [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 18), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 123), + [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 123), + [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 26), + [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 26), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 20), + [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 20), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 35), + [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 35), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 45), + [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 45), + [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 77), + [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 77), + [5937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [5940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 42), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 42), + [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [5948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 181), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 181), + [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 20), + [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 20), + [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 35), + [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 35), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 45), + [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 45), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [5970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 77), + [5976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 77), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), + [5991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8781), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 89), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 89), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 26), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 26), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8696), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), + [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), + [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 99), + [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 99), + [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 101), + [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 101), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [6075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [6082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(408), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [6089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), + [6092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7085), + [6095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8070), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(6193), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8781), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 50), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 50), + [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 9), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 9), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [6141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2238), + [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7255), + [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8055), + [6150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 46), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 46), + [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(429), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 150), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 150), + [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 41), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 41), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 179), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 179), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 102), + [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [6189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), + [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 151), + [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 151), + [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [6200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 87), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 87), + [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 9), + [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 9), + [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 105), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 105), + [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 46), + [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 46), + [6216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(7913), + [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8613), + [6222] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6193), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 97), + [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 97), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [6234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2263), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 116), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 116), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [6248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(425), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [6261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 22), + [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 22), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 64), + [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 64), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [6283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [6294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2316), + [6297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7074), + [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8066), + [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 142), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 142), + [6307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 92), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 92), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 55), + [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 55), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [6321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7541), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [6330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 124), + [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 124), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [6356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2661), + [6359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1693), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8174), + [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 174), + [6377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 174), + [6379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), + [6381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), + [6383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), SHIFT(418), + [6386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2632), + [6389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1693), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [6394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8174), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 72), + [6403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), SHIFT(418), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8756), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8985), + [6418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 86), + [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 86), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), + [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 174), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 174), + [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 33), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 33), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [6468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [6474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), + [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 0, 76), + [6478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(418), + [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 55), + [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 55), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 20), + [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 20), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [6497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [6503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2440), + [6506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7069), + [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8065), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8717), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8717), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [6522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [6526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 40), + [6528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 40), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 17), + [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 17), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 188), + [6540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 188), + [6542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), + [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), + [6546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 217), + [6548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 217), + [6550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 218), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 218), + [6554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 162), + [6556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 162), + [6558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [6562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 164), + [6564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 164), + [6566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), + [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), + [6570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 91), + [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 91), + [6574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 7), + [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 7), + [6578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [6580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [6582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [6584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [6586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [6590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [6598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 225), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 225), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 226), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 226), + [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 229), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 229), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [6624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 175), + [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 175), + [6628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 140), + [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 140), + [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 141), + [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 141), + [6636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 200), + [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 200), + [6640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 202), + [6642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 202), + [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [6646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [6648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 63), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 63), + [6652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), + [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 45), + [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 45), + [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 114), + [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 114), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8780), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 109), + [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 109), + [6678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [6680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [6682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [6686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [6690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 8), + [6692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 8), + [6694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 73), + [6696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 73), + [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 115), + [6700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 115), + [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [6704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [6710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 55), + [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 55), + [6714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [6716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [6722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [6724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [6730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 86), + [6732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 86), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [6744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 20), + [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 20), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [6750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1036), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [6757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [6765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), + [6767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [6769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [6771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3093), + [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), + [6777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), + [6780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8463), + [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7320), + [6786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8465), + [6789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8666), + [6792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(415), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [6817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(425), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8771), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [6842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [6849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), + [6852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7179), + [6855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8052), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [6870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [6894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), + [6898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [6902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(429), + [6905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [6907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [6929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 66), + [6931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 66), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), + [6973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), + [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [7009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), + [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), + [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 126), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 126), + [7017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), + [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), + [7021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 182), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 182), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [7035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), + [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [7057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [7062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [7066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [7074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8665), + [7077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8665), + [7080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(7519), + [7083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), + [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6880), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [7095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5913), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), + [7102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5557), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), + [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8681), + [7147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(7320), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [7152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(6880), + [7155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(6880), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8665), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), + [7276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5563), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [7357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [7389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5518), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [7394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 135), + [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 135), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(6204), + [7403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5552), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5514), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8681), + [7444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(8681), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [7449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1040), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), + [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7555), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [7509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5560), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 113), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [7522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), SHIFT(415), + [7525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), + [7528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7083), + [7531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8069), + [7534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7567), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [7573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [7583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(408), + [7588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(379), + [7591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), SHIFT(415), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6236), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [7640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [7642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [7644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3853), + [7647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8414), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8733), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [7732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [7736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3093), + [7739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3294), + [7742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), + [7745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8463), + [7748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(7320), + [7751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8465), + [7754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8666), + [7757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4271), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 1, 125), SHIFT(425), + [7771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(415), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 144), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [7794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 72), SHIFT(425), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [7799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [7802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3358), + [7805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3190), + [7808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8681), + [7811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7488), + [7814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8553), + [7817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8174), + [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [7824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [7902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 0, 76), SHIFT(425), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [7913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(435), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [7925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 23), SHIFT(5559), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [7944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3579), + [7947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7064), + [7950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8064), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), + [8005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [8014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8759), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [8042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [8060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), + [8063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8738), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6737), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8782), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [8100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [8102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [8132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(392), + [8135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8439), + [8145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4104), + [8148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4073), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [8179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [8183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4041), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [8188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8738), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 58), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [8213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4041), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [8218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8738), + [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [8251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [8263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), SHIFT(420), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 20), + [8268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 20), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8985), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6208), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [8386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4387), + [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [8391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8795), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [8396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), + [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [8401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4387), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [8406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8795), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 20), + [8437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 20), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [8443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [8459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 149), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 149), + [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [8497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [8503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [8515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4387), + [8518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8795), + [8521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4359), + [8524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(8466), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [8565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [8575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(1719), + [8578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8697), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6160), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [8603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(1719), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [8608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8697), + [8611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [8619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [8621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(1693), + [8624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4275), + [8627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3190), + [8630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8681), + [8633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), + [8636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8553), + [8639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(8174), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), + [8660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4314), + [8663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2343), + [8666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(8781), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [8671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2343), + [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [8676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(8781), + [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [8681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [8683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8681), + [8686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8681), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 184), + [8745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 184), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), + [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8787), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 84), + [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [8829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8665), + [8832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(8665), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 119), + [8841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 194), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [8923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 147), SHIFT(1157), + [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 147), + [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1157), + [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [9003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 148), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), + [9017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 169), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 205), + [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [9051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8317), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 157), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 158), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 84), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 195), + [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 196), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 213), + [9103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 198), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 190), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 55), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7320), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [9168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 85), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [9172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), + [9174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8665), + [9177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8665), + [9180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(7519), + [9183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5913), + [9216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5557), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7383), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), + [9251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 55), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [9270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 197), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [9290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 214), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [9314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(7320), + [9317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(6880), + [9320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(6880), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [9325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5563), + [9328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), + [9330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [9337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5518), + [9340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8681), + [9343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(8681), + [9346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(6204), + [9349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5514), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [9356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5552), + [9359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5087), + [9362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5089), + [9365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(5085), + [9368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5090), + [9371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5079), + [9374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(5065), + [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7429), + [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [9385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5560), + [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), + [9390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8665), + [9393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8665), + [9396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(7519), + [9399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), + [9401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5913), + [9404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5557), + [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [9411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(6880), + [9414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(6880), + [9417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(7320), + [9420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1045), + [9423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5563), + [9426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [9436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [9440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [9450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [9452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8670), + [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [9464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 45), SHIFT(5112), + [9467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(6204), + [9470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5552), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8700), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [9495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 20), + [9497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 20), + [9499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 18), SHIFT(1968), + [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8773), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [9524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 20), SHIFT(1968), + [9527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8681), + [9530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(8681), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [9543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5518), + [9546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 35), SHIFT(1968), + [9549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(1968), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [9556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8789), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [9574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 20), SHIFT(5071), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [9579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 35), SHIFT(5078), + [9582] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(1968), + [9586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 77), SHIFT(5119), + [9589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [9591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [9593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5514), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8741), + [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [9636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), + [9639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5334), + [9642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(5335), + [9645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(1968), + [9648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 45), SHIFT(1968), + [9651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 23), SHIFT(5559), + [9654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 77), SHIFT(1968), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [9683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5560), + [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [9692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [9698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(5106), + [9701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), + [9703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8665), + [9706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8665), + [9709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(7519), + [9712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), + [9714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 23), SHIFT(5559), + [9717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [9719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [9721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 20), + [9723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 20), + [9725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5913), + [9728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5557), + [9731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(7320), + [9734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(6880), + [9737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(6880), + [9740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5563), + [9743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(6204), + [9746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5552), + [9749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5514), + [9752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8681), + [9755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(8681), + [9758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5518), + [9761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5560), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7087), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [9812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [9816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [9834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [9836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 23), SHIFT(5559), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [9875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [9877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [9885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [9929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), + [9935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), + [9937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5913), + [9940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5563), + [9943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), + [9945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), + [9947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5913), + [9950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5563), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [9961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6726), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [9969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7134), + [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), + [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [9991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [10001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [10005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [10009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6634), + [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7712), + [10023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [10029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7893), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [10083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [10087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [10111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), + [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [10125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), + [10127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [10133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), + [10135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), + [10137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [10139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [10141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [10143] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [10151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [10153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [10155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5913), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [10160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5557), + [10163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5557), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [10170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [10172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [10176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), + [10178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [10184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 55), + [10216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 55), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7682), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [10298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), + [10316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), + [10326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [10340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [10342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [10348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [10368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7519), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [10411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [10463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), + [10465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 7), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [10471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7557), + [10493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 23), + [10495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 23), + [10497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 59), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5920), + [10527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(7415), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), + [10532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5518), + [10535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 59), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [10541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [10543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [10551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [10553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [10557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [10563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 134), + [10565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 134), + [10567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [10571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 26), + [10573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 26), + [10575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [10577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [10579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 24), + [10581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 24), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [10585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 39), + [10587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 39), + [10589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [10591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [10601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [10603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [10605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 23), + [10607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 186), + [10609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 186), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [10613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 181), + [10615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 181), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [10619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), + [10621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 123), + [10623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 123), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [10627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 23), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [10633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), + [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 26), + [10645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 26), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [10655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5518), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [10670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(6204), + [10673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5514), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7026), + [10680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6204), + [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [10693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(6204), + [10696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5514), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6357), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [10713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), + [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), + [10725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), + [10727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6082), + [10730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(7208), + [10733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8062), + [10736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [10738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8463), + [10741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [10743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(8666), + [10746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [10748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), + [10754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [10758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5552), + [10761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 41), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [10765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 41), + [10767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 136), + [10769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 136), + [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 87), + [10773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 87), + [10775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [10799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 123), + [10801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 123), + [10803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 26), + [10805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 26), + [10807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [10809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [10813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 38), + [10815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 38), + [10817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [10819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [10821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 83), + [10827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 83), + [10829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 64), + [10831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 64), + [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [10837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [10841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8384), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), + [10848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 26), + [10850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 26), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [10856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [10858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [10864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [10866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [10868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 181), + [10870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 181), + [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [10880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [10882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [10884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [10886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [10888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5552), + [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [10897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 24), + [10899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 24), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 87), + [10911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 87), + [10913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 87), + [10915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 87), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [10923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 41), + [10925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 41), + [10927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 179), + [10929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 179), + [10931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [10933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [10935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [10937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [10939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5560), + [10942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 179), + [10944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 179), + [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 41), + [10948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 41), + [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [10958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), + [10966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [10968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [10976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [10978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [10980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 81), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), + [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), + [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [11022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 68), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [11026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5560), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [11099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [11109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 23), SHIFT(5559), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [11114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 178), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [11120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 103), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [11124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 103), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7059), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7036), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6899), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6849), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [11168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [11170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [11180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [11182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [11184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), + [11186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6697), + [11189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 123), + [11191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 123), + [11193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [11195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [11197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 26), + [11199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 26), + [11201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 24), + [11203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 24), + [11205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 26), + [11207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 26), + [11209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 181), + [11211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 181), + [11213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [11215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [11217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7313), + [11220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), + [11223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8378), + [11226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7969), + [11229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7121), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), + [11247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 81), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), + [11255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [11257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 81), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [11275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 26), + [11277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 26), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6720), + [11283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 23), SHIFT(5559), + [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6753), + [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6806), + [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8822), + [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6801), + [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), + [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6749), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7107), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [11334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [11336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [11340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), + [11354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 81), + [11356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), + [11358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [11364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [11366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), [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), + [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [11394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), + [11406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [11420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), + [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), + [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8357), + [11440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [11442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [11448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), + [11450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), + [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8385), + [11464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7110), + [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7228), + [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8007), + [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7935), + [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [11482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), + [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), + [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [11498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8014), + [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), [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), + [11504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [11506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7917), + [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7615), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), + [11512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [11514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8021), + [11516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [11520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), + [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [11526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [11528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [11530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), + [11534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [11536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [11538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7820), + [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [11544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [11546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7926), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [11552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 59), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [11566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 59), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [11574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [11576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [11586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 23), [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), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), + [11594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(6193), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [11611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [11613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [11619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 23), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [11631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [11633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [11639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(6830), + [11642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [11644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [11648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 60), + [11650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7313), + [11653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [11655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), + [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8768), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [11683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [11687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [11705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [11707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(7056), + [11710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 68), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), + [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [11734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 58), + [11736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), + [11739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [11741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(8768), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [11748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [11758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 132), + [11760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 132), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [11764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [11772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [11774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 81), + [11782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 81), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [11812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 81), + [11814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 81), + [11816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [11818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [11834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 82), + [11836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 82), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [11850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [11856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 185), + [11858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 185), + [11860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [11884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 133), + [11886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 133), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [11900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [11902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 121), SHIFT_REPEAT(5927), + [11905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 121), + [11907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 121), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [11925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 143), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [11935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7794), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), + [11945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), + [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8019), + [11957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [11967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [11973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 193), SHIFT_REPEAT(6078), + [11976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 193), + [11978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 193), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [11984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [11988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7846), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [11992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), + [11994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [12000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 204), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [12004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [12008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7899), + [12010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 168), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [12014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), + [12016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(8562), + [12019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 90), + [12021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 90), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [12035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [12057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8815), + [12059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 19), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [12071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), + [12073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [12077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [12079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [12083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [12089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [12091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), + [12093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [12097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [12099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 227), SHIFT_REPEAT(6250), + [12102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 227), + [12104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [12106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [12108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [12110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), + [12114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [12116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [12120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [12124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7078), + [12126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [12130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [12134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), + [12136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [12140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [12144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [12146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [12148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), + [12152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7086), + [12154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [12156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [12168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [12174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [12176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [12188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 33), + [12190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [12194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [12204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 215), SHIFT_REPEAT(6791), + [12207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 215), + [12209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [12213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [12219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), + [12221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [12225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8712), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), + [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [12247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [12249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [12251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [12255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 215), SHIFT_REPEAT(6783), + [12258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 215), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [12262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [12266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [12276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 223), + [12278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [12280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [12290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 201), + [12292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 210), + [12294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 210), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [12298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 163), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [12302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8565), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [12306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [12312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [12316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [12326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8483), + [12328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 201), + [12330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [12334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), + [12336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [12346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 216), + [12348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [12352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), + [12354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [12358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7191), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [12362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [12366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8398), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [12370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [12372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7184), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [12377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), + [12379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [12381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [12383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 163), + [12385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [12387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7193), + [12390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(7193), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [12397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 94), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [12405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8396), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [12409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [12411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [12415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [12419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [12423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [12425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [12429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8870), + [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [12435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [12443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 208), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [12447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [12449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8435), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [12457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [12473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [12475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [12479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), + [12481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [12485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [12489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8442), + [12491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [12495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [12497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [12501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [12527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(6007), + [12530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), + [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [12576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [12578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8367), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), + [12582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 228), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), + [12624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [12626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), + [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8647), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [12662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 121), SHIFT_REPEAT(4738), + [12665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 121), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [12671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 59), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [12681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [12717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5856), + [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [12726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 230), SHIFT_REPEAT(8622), + [12729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 230), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [12737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 231), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [12745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 231), + [12747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), + [12750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), + [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [12768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), + [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [12774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(7791), + [12777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [12781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 222), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [12797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 163), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [12807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 68), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [12817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [12821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 70), + [12823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 153), + [12825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 163), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [12831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8187), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [12847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1058), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [12858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7099), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7958), + [12862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 103), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), + [12868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [12880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), + [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [12904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [12938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 61), + [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), + [12958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [12966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 224), + [12968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1707), + [12971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [13013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [13017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [13033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), + [13055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8548), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [13073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8604), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [13095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [13103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [13105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3805), + [13108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), + [13110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 23), + [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [13118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(7301), + [13121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [13123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [13137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [13140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [13160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [13178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [13188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1028), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), + [13197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [13209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [13213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8613), + [13216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), + [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [13222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), + [13224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [13226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [13228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [13230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [13244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [13250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [13254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 209), + [13256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6088), + [13259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [13289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), + [13292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3787), + [13295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [13311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(455), + [13314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [13320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 98), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [13326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [13330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6464), + [13333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [13341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [13347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), + [13349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 222), + [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [13357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), + [13359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 216), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8749), + [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [13373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [13383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [13391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [13395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [13397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [13405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8109), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [13413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [13415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [13419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 208), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [13423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8644), + [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), + [13427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [13429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 207), + [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [13433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [13439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), + [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [13443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [13445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [13447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), + [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [13451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8570), + [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [13457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 94), + [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [13463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8333), + [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [13467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8868), + [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [13473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 224), + [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), + [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [13479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), + [13481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), + [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), + [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), + [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [13499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), + [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [13503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8247), + [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [13507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 103), + [13509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), + [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), + [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [13515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8558), + [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [13521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [13525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 143), + [13527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 59), + [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [13531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 167), + [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8959), + [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), + [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [13543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8867), + [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [13555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8411), + [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8683), + [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8962), + [13565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), + [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8709), + [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), + [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), + [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), + [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), + [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), + [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), + [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), + [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8974), + [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), + [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8975), + [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), + [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8976), + [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), + [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8977), + [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), + [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), + [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8798), + [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), + [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), + [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8980), + [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8802), + [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), + [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8804), + [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8982), + [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), + [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), + [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8843), + [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), + [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), + [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8988), + [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [13681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 23), + [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), + [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), + [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [13707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 185), + [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [13717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 132), + [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [13725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 132), + [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), + [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), + [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8669), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [13793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), + [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), + [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8380), + [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8220), + [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), + [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8406), + [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [13847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), + [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [13871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 133), + [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [13881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 133), + [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), + [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [13917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 133), + [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [13941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 82), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), + [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), + [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), + [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8924), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8701), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), + [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), + [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [14053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 185), + [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), + [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8662), + [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8934), + [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8937), + [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), + [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [14133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 185), + [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8827), + [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), + [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), + [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [14175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 132), + [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), + [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), [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), + [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), + [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), + [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), + [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), + [14223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 133), + [14225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), + [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8776), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8464), + [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8196), + [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [14285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 133), + [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), + [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [14309] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), + [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), + [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8214), + [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8528), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8401), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [14405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8427), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [14429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), + [14449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 185), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [14459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 185), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7884), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), + [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [14509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 132), + [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [14519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8517), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8369), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8927), + [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [14573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 82), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), + [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), + [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), + [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), + [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), + [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), + [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), + [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), + [14671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), [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), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [14693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 132), + [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), + [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), + [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8923), + [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8432), + [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), + [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), + [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), + [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8452), + [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), + [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), + [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), + [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), + [14781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 55), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), + [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [14803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 81), + [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), + [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), + [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [14851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 82), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [14855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 82), + [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [14861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 59), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), + [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [14881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), + [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), + [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [14901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 82), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), + [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), + [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8728), + [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [14939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8734), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8747), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), + [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8764), + [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [14965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8769), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [14971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), + [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), + [14975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), + [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), + [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8972), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8794), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8797), + [14987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(8631), + [14990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), + [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), + [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8808), + [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8803), + [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), + [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [15006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), + [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8829), + [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), + [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8913), + [15022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), + [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [15028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), + [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [15034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8936), + [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8939), + [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8941), + [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), + [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), + [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8947), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8951), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8953), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8955), + [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), + [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8690), + [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [15070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index acaf288..fc5ffe4 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -1431,6 +1431,8 @@ Explicit template instantiations template A::A(char *, size_t); +extern template int Foo::foo(); + -------------------------------------------------------------------------------- (translation_unit @@ -1450,7 +1452,18 @@ template A::A(char *, size_t); (primitive_type) (abstract_pointer_declarator)) (parameter_declaration - (primitive_type)))))) + (primitive_type))))) + (template_instantiation + (primitive_type) + (function_declarator + (qualified_identifier + (namespace_identifier) + (template_function + (identifier) + (template_argument_list + (type_descriptor + (primitive_type))))) + (parameter_list)))) ================================================================================ Structured binding declarations